/* Base Styles */
:root {
    --primary-color: #6d73e0;
    --primary-light: #4a8c4b;
    --primary-dark: #1e421f;
    --secondary-color: #004e7c;
    --accent-color: #ff6b35;
    --light-color: #f7f9fc;
    --dark-color: #333333;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn.secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn.secondary:hover {
    background-color: #003a5d;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn.outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn.outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.text-center {
    text-align: center;
}


/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
}

.logo {
    height: 40px;
    width: auto; /* add this */
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 2rem;
}

.main-nav ul li a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Blog Dropdown Styles */
.has-dropdown {
    position: relative;
}

.blog-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    /* Important: Override the flex display */
    display: block !important;
    flex-direction: column !important;
}

/* --- Fix for Page Header overlap --- */
.page-header {
    padding: 120px 20px 60px; /* pushes content below the fixed header */
    background: linear-gradient(135deg, #f8f9ff, #eef2ff);
    text-align: center;
}

.page-header .section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-header p {
    font-size: 1.1rem;
    color: #555;
}

/* --- Hero Section Responsive Adjustments --- */
.hero-section {
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1 1 450px;
    text-align: left;
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.05rem;
    margin: 15px 0 25px;
}

.hero-image {
    flex: 1 1 400px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .page-header {
        padding-top: 150px; /* more space on mobile under header */
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-image img {
        width: 90%;
        margin-top: 20px;
    }
}


/* Reset the flex properties for dropdown list items */
.blog-dropdown li {
    margin: 0 !important;
    margin-left: 0 !important;
    width: 100%;
    display: block;
}

.blog-dropdown li a {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    /* Remove any flex properties */
    display: block !important;
}

.blog-dropdown li:last-child a {
    border-bottom: none;
}

.blog-dropdown li a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* Show dropdown on hover */
.has-dropdown:hover .blog-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .has-dropdown:hover .blog-dropdown {
        opacity: 0;
        visibility: hidden;
    }
    
    .blog-dropdown {
        position: static;
        box-shadow: none;
        display: none !important;
    }
    
    .blog-dropdown.active {
        display: block !important;
    }
}
/* --- Course Structure Flashy Styles --- */

/* Use a color from your brand palette for the primary color. 
   Assuming you have a variable like --color-primary in your existing style.css */
:root {
    --color-primary: #007BFF; /* Example Blue */
    --color-secondary: #0056b3; /* Darker Blue */
    --color-text: #333;
    --color-background-light: #f9f9f9;
    --color-white: #ffffff;
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.course-structure h4 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 10px;
    display: inline-block;
}

.modules-grid {
    display: grid;
    /* 3 columns on large screens, 2 on medium, 1 on small */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.course-card-flashy {
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    /* Soft initial shadow */
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease-in-out;
    border-left: 5px solid var(--color-primary); /* Brand highlight */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden; /* For pseudo-elements/effects */
}

/* Hover effect for 'flashy' feel */
.course-card-flashy:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-left: 5px solid var(--color-secondary); /* Color shift on hover */
}

.module-icon {
    font-size: 3rem;
    color: var(--color-primary); /* Primary color for icons */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    background: rgba(0, 123, 255, 0.1); /* Light background for the icon */
    border-radius: 8px;
    width: fit-content;
    transition: color 0.3s;
}

.course-card-flashy:hover .module-icon {
    color: var(--color-secondary);
}

.module-content h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
    padding-top: 5px;
}

.module-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.module-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #e9ecef; /* Light gray tag background */
    color: #6c757d; /* Darker text */
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #dee2e6;
}

/* Optional: Different colors for different modules for extra flash */
.course-card-flashy:nth-child(2) { border-left-color: #28a745; }
.course-card-flashy:nth-child(2) .module-icon { color: #28a745; background: rgba(40, 167, 69, 0.1); }

.course-card-flashy:nth-child(3) { border-left-color: #ffc107; }
.course-card-flashy:nth-child(3) .module-icon { color: #ffc107; background: rgba(255, 193, 7, 0.1); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
}
/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
     transform: translateY(-40%); 
    max-width: 50%;
}

.hero-image img {
  /* Add a smooth transition for the transform property */
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  /* Scale the image up by 10% when hovering over the container */
  transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Courses Preview Section */
.courses-preview {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.course-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.course-image {
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-content {
    padding: 1.5rem;
}

.course-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.course-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}
/* Additional Modal Styles */
.subjects-grid, .facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.subject-card, .facility-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.subject-card i, .facility-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.subject-card h5, .facility-card h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.skill-item {
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.requirements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
}

.requirement-item i {
    color: var(--primary-color);
    width: 20px;
}

.schedule-table {
    margin-top: 15px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.schedule-row:last-child {
    border-bottom: none;
}

.skills-development {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.skill-category h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-items span {
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.outcomes-list {
    margin-top: 15px;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.outcome-item i {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .subjects-grid, .facilities-grid, .skills-list, .skills-development {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .requirements {
        grid-template-columns: 1fr;
    }
}
/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--white);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    text-align: center;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.student-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.student-info h4 {
    margin-bottom: 0.2rem;
}

.student-info span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.slider-prev, .slider-next {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--primary-dark);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        position: relative;
        max-width: 100%;
        margin-top: 3rem;
        transform: none;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }
    
    .main-nav ul li {
        margin: 1rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 8rem 0 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Global Styles */
        :root {
            --primary-color: #4e54c8;
            --secondary-color: #8f94fb;
            --dark-color: #2b2e4a;
            --light-color: #f5f7fa;
            --text-color: #555;
            --white: #ffffff;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 1rem;
            border: 2px solid transparent;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .btn.primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
        }
        
        .btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(78, 84, 200, 0.3);
        }
        
        .btn.outline {
            background: transparent;
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        
        .btn.outline:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        /* Header Styles */
        .header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        
        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e0e5ec 100%);
        }
        
        .hero-content h1 {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-color);
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .hero-image img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
	.hero-image img, .student-info img {
    	/* Ensures a smooth transition for the hover effect */
    	transition: transform 0.4s ease-in-out;
	}
        
        .cta-buttons {
            display: flex;
            gap: 15px;
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--white);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 2px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--white);
            font-size: 1.8rem;
        }
        
        .feature-card h3 {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .feature-card p {
            color: var(--text-color);
            line-height: 1.6;
        }
        
        /* Courses Preview */
        .courses-preview {
            padding: 100px 0;
            background: var(--light-color);
        }
        
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .course-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .course-image {
            height: 200px;
            overflow: hidden;
        }
        
        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .course-card:hover .course-image img {
            transform: scale(1.1);
        }
        
        .course-content {
            padding: 25px;
        }
        
        .course-content h3 {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .course-content p {
            color: var(--text-color);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: var(--white);
        }
        
        .testimonial-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            display: none;
        }
        
        .testimonial.active {
            display: block;
        }
        
        .testimonial-content p {
            font-size: 1.1rem;
            color: var(--text-color);
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
        }
        
        .testimonial-content p::before,
        .testimonial-content p::after {
            content: '"';
            font-size: 2rem;
            color: var(--primary-color);
            opacity: 0.3;
        }
        
        .student-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .student-info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }
        
        .student-info h4 {
            color: var(--dark-color);
            margin-bottom: 5px;
        }
        
        .student-info span {
            color: var(--text-color);
            font-size: 0.9rem;
        }
        
        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none;
        }
        
        .slider-prev, .slider-next {
            background: var(--primary-color);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            pointer-events: auto;
            transition: all 0.3s ease;
        }
        
        .slider-prev:hover, .slider-next:hover {
            background: var(--dark-color);
            transform: scale(1.1);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            text-align: center;
        }
        
        .cta-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #2b2e4a 0%, #1a1a2e 100%);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .footer-col h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-color);
        }
        
        .footer-logo img {
            height: 40px;
            margin-bottom: 15px;
        }
        
        .footer-logo span {
            font-weight: 600;
            font-size: 1.3rem;
        }
        
        .footer-col p {
            color: #b8b8b8;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #b8b8b8;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--white);
            text-decoration: none;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .contact-info li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: #b8b8b8;
        }
        
        .contact-info i {
            color: var(--primary-color);
            width: 20px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            color: #b8b8b8;
            font-size: 0.9rem;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-links a {
            color: #b8b8b8;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }

         /* Additional styles for contact page improvements */
        .contact-main {
            padding: 4rem 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        
        .contact-info {
            background: #f9f9f9;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .info-card {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            align-items: flex-start;
        }
        
        .info-icon {
            background: #4e54c8;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .social-links {
            margin-top: 3rem;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #4e54c8;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #1e421f;
            transform: translateY(-3px);
        }
        
        /* Modern form styles */
        .contact-form-container {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-form {
            display: grid;
            gap: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #333;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #2c5f2d;
            outline: none;
            box-shadow: 0 0 0 3px rgba(44,95,45,0.1);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        .submit-btn {
            background: #2c5f2d;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .submit-btn:hover {
            background: #1e421f;
            transform: translateY(-2px);
        }
        
        .error-message {
            color: #e74c3c;
            font-size: 0.8rem;
            margin-top: 0.3rem;
            display: none;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }

         /* Global Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 1rem;
            border: 2px solid transparent;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .btn.primary {
            background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
            color: white;
        }
        
        .btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(78, 84, 200, 0.3);
        }
        
        .btn.outline {
            background: transparent;
            border-color: #4e54c8;
            color: #4e54c8;
        }
        
        .btn.outline:hover {
            background: #4e54c8;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Program Description Styles */
        .course-info h3 {
            color: #4e54c8;
            font-size: 1.8rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .course-info h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
            border-radius: 3px;
        }
        
        .course-info > p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 30px;
            padding: 20px;
            background: #f9faff;
            border-radius: 8px;
            border-left: 4px solid #4e54c8;
        }
        
        /* Module Highlight Styles */
        .module {
            position: relative;
            padding: 20px;
            margin-bottom: 15px;
            border-radius: 8px;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-left: 3px solid #e0e5ec;
        }
        
        .module:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            border-left-color: #4e54c8;
        }
        
        .module h5 {
            color: #4e54c8;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Special highlight for Capstone project */
        .module:nth-child(5) {
            background: linear-gradient(135deg, #f5f7fa 0%, #e0e5ec 100%);
            border-left: 4px solid #4e54c8;
        }
        
        /* Course Highlights */
        .course-highlights {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .course-highlights h4 {
            color: #4e54c8;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .course-highlights ul {
            list-style: none;
            padding: 0;
        }
        
        .course-highlights li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .course-highlights li:last-child {
            border-bottom: none;
        }
        
        .course-highlights i {
            color: #4e54c8;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        /* Course CTA buttons spacing */
        .course-cta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        /* Grade tabs styling */
        .tab-buttons {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .tab-btn {
            padding: 10px 20px;
            background-color: #f5f7fa;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            color: #555;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .tab-btn.active {
            background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
            color: white;
            box-shadow: 0 4px 8px rgba(78, 84, 200, 0.3);
        }
        
        .tab-btn:hover:not(.active) {
            background-color: #e0e5ec;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        
        /* Tab content styling */
        .tab-content {
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            transition: opacity 0.3s ease;
        }
        
        .tab-content h5 {
            color: #4e54c8;
            margin-top: 15px;
            font-size: 1.1rem;
        }
        
        .tab-content p {
            margin-bottom: 15px;
            color: #555;
        }
        
        /* Course cards in learning options */
        .option-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .option-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .option-card.highlight {
            border: 2px solid #4e54c8;
        }
        
        .option-icon {
            font-size: 2.5rem;
            color: #4e54c8;
            margin-bottom: 20px;
        }
        
        /* Footer styling */
        .footer {
            background: linear-gradient(135deg, #2b2e4a 0%, #1a1a2e 100%);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-logo img {
            height: 40px;
            margin-bottom: 15px;
        }
        
        .footer-links h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #b8b8b8;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            text-decoration: none;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #4e54c8;
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 40px;
            text-align: center;
            color: #b8b8b8;
            font-size: 0.9rem;
        }
        
        /* Section headers */
        .section-header h2 {
            color: #4e54c8;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .hero,
.page-hero {
    padding-top: 100px;
}
}