/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: auto;
}

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    max-width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    z-index: 1001;
} */

.nav-brand a {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    gap: 10px; /* Space between logo and text */
    text-decoration: none;
    color: #000000; /* Keeps the text color same as the rest of the navbar */
}

.nav-logo {
    height: 50px; /* Adjust the height as needed */
    width: auto; /* Maintains aspect ratio */
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin-left: auto;
}

.nav-menu a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover {
    color: #3498db;
}

.nav-menu a.active {
    color: #3498db;
    border-bottom: 2px solid #3498db;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #3498db;
    color: white;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.container {
    margin-top: 6rem;
    margin-bottom: 10px;
}


/* Features Section */
.features {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.features h2,
.programs-preview h2,
.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0 ,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Programs Preview */
.programs-preview {
    padding: 6rem 2rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

/* Success Stories */
.success-stories {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: #666;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Programs Page */
.programs-page {
    padding-top: 80px;
}

.programs-hero {
    background-color: #2c3e50;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.program-card.detailed {
    padding: 3rem;
    margin-bottom: 2rem;
}

.program-duration {
    color: #666;
    font-weight: bold;
    margin-bottom: 1rem;
}

.program-features {
    list-style: none;
    margin: 1.5rem 0;
}

.program-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.program-features li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
}

/* Resources Page */
.resources-page {
    padding-top: 80px;
}

.resources-hero {
    background-color: #2c3e50;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.resources-grid {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-category {
    margin-bottom: 4rem;
}

.resource-category h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.resource-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.download-link,
.access-link {
    display: inline-block;
    margin-top: 1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

/* Blog Page */
.blog-page {
    padding-top: 80px;
}

.blog-hero {
    background-color: #2c3e50;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.blog-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.blog-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.post-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    color: #666;
    margin-bottom: 1rem;
}

.post-meta span {
    margin-right: 1rem;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.sidebar-section ul {
    list-style: none;
}

.sidebar-section ul li {
    margin-bottom: 0.5rem;
}

.sidebar-section a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-section a:hover {
    color: #3498db;
}

/* Footer */
footer {
    background-color: orange;
    border-top: 5px solid rgba(26, 23, 23, 0.575);
    color: black;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    margin-right: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex: 1;
}

.newsletter-form button {
    padding: 8px 15px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #2980b9;
}

.newsletter-message {
    margin-top: 10px;
    padding: 8px;
    border-radius: 4px;
    display: none;
}

.newsletter-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
    margin-bottom: 15px;
}

.footer-bottom-links a {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3498db;
}

.footer-bottom .separator {
    color: #000000;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom .separator {
        display: none;
    }
    
    .footer-section h3 {
    font-weight: bold;
    }
    
    .footer-section h2 {
    font-weight: bold;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .blog-content {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem;
        width: 100%;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 60%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 1rem;
        overflow: auto;
    }

    .nav-menu.active {
        display: flex;
        margin-top: 63px;
    }

    .nav-menu li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.4rem;
        padding: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .hamburger {
        display: block;
        width: 25px;
        height: 3px;
        background: #2c3e50;
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: #2c3e50;
        transition: all 0.3s ease;
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        bottom: -8px;
    }

    .nav-toggle.active .hamburger {
        background: transparent !important;
    }

    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .features-grid,
    .programs-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .resource-items {
        grid-template-columns: 1fr;
    }

    .footer-logo p {
        color: black;
        font-size: 1.1rem;
    }
    
    .package-heading {
    font-weight: bold;

    }
}

@media (max-width: 448px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-brand {
        font-size: 1.2rem;
    }
    
    .post-image img {
        height: 200px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }

    .footer-logo p {
        color: black;
        font-size: 1.1rem;
    }
    
    .package-heading {
    font-weight: bold;

    }
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: black;
    font-size: 1.1rem;
}

/* Auth Link Style */
.auth-link {
    background: #3498db;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 5px;
    transition: background-color 0.3s ease !important;
}

.auth-link:hover {
    background: #2980b9 !important;
    color: white !important;
}


/* Plan Stats */
.plan-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    margin: auto 0; /* This will push the stats to the vertical center */
    flex: 1; /* This allows the container to take up available space */
    justify-content: center; /* This centers the stats vertically */
    align-items: center;
}

.content {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.content h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-align: center;  /* Center the main heading */
}

/* Optional: If you want to center the page title above the content box */
.container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: black;
    font-size: 2.5rem;
}

/* Optional: Add a decorative line under the heading */
.container h1:after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #4CAF50;
    margin: 15px auto;
}

.content h2 {
    color: #34495e;
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.content ul, .content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.package-heading {
    background: linear-gradient(45deg, orange, rgb(218, 180, 10));
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 2px 10px rgba(41, 39, 39, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;

}





