/* CSS for Power Surge Website */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #003366;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #0055a5;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #003366 0%, #002244 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    background-color: #ff6b00;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #e55a00;
}

/* Section Headers */
.page-header {
    background-color: #003366;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.page-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #003366;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #f0f7ff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #003366;
    margin-bottom: 0.75rem;
}

/* Stats Section */
.stats {
    padding: 3rem 0;
    background-color: #e6f0ff;
}

.stats h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #003366;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-card h3 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 0.5rem;
}

/* Program Details */
.program-details {
    padding: 3rem 0;
    background-color: white;
}

.program-details .container {
    max-width: 1000px;
}

.program h3 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.program h4 {
    color: #003366;
    margin: 1.5rem 0 0.75rem;
}

.program ul {
    margin: 0.75rem 0 1.5rem 1.5rem;
}

.program .curriculum h5 {
    color: #003366;
    margin-top: 1rem;
    font-size: 1.25rem;
}

/* Services Content */
.services-content {
    padding: 3rem 0;
    background-color: white;
}

.services-content .container {
    max-width: 1000px;
}

.service h3 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service h4 {
    color: #003366;
    margin: 1.5rem 0 0.75rem;
}

.process-steps {
    margin: 1.5rem 0;
}

.step {
    background-color: #f0f7ff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.step h5 {
    color: #003366;
    margin-bottom: 0.75rem;
}

/* About Content */
.about-content {
    padding: 3rem 0;
    background-color: white;
}

.about-content .container {
    max-width: 1000px;
}

.mission,
.vision,
.values,
.services-offered,
.market-analysis {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #003366;
    border-radius: 0 8px 8px 0;
}

.mission h3,
.vision h3,
.values h3,
.services-offered h3,
.market-analysis h3 {
    color: #003366;
    margin-bottom: 1rem;
}

.values ul,
.services-offered ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.market-analysis h4 {
    color: #003366;
    margin: 1.5rem 0 0.75rem;
}

.market-analysis ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

/* Contact Content */
.contact-content {
    padding: 3rem 0;
    background-color: white;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-details h4 {
    color: #003366;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #003366;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.25rem 0.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .features h2,
    .stats h2,
    .page-header h2 {
        font-size: 1.75rem;
    }
    
    .feature-grid,
    .stat-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}