        /* CSS Variables for Light/Dark Mode */
        :root {
            --primary: #1a4b8c;
            --secondary: #f8b739;
            --accent: #2c6e49;
            --light: #f5f5f5;
            --dark: #333;
            --white: #ffffff;
            --bg-color: #ffffff;
            --text-color: #333333;
            --card-bg: #ffffff;
            --header-bg: rgba(255, 255, 255, 0.95);
            --footer-bg: #1a1a1a;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            overflow-x: hidden;
            transition: var(--transition);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            border: 2px solid var(--primary);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--primary);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--dark);
            border: 2px solid var(--secondary);
        }

        .btn-secondary:hover {
            background-color: transparent;
            color: var(--secondary);
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-color);
            opacity: 0.8;
            margin-bottom: 3rem;
            max-width: 600px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--header-bg);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        header.scrolled {
            background-color: var(--header-bg);
            padding: 10px 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-right: 10px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
        }

        .nav-links li {
            position: relative;
            margin-left: 1.5rem;
        }

        .nav-links > li > a {
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            display: flex;
            align-items: center;
        }

        .nav-links > li > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }

        .nav-links > li > a:hover::after {
            width: 100%;
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 220px;
            background-color: var(--card-bg);
            box-shadow: var(--shadow);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
        }

        .dropdown li {
            margin: 0;
            width: 100%;
        }

        .dropdown a {
            display: block;
            padding: 12px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .dropdown a:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-icon {
            margin-left: 5px;
            transition: var(--transition);
        }

        .nav-links li:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        .theme-toggle {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--text-color);
            cursor: pointer;
            margin-left: 1.5rem;
            transition: var(--transition);
        }

        .theme-toggle:hover {
            color: var(--primary);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--text-color);
            z-index: 1002;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://images.pexels.com/photos/267885/pexels-photo-267885.jpeg?auto=compress&cs=tinysrgb&w=1920') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: white !important;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

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

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

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

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 2rem;
        }

        .hero-btns .btn {
            min-width: 160px;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: var(--light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }

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

        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* About Section */
        .about {
            padding: 100px 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-text h2 {
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-color);
            opacity: 0.8;
        }


        /* History & Mission Section - Unique Classes */
.dga-about-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.dga-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mission & Vision Wrapper */
.dga-mission-vision-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.dga-mission-block, .dga-vision-block {
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border-top: 5px solid var(--primary);
}

.dga-vision-block {
    border-top-color: var(--secondary);
}

.dga-mission-block:hover, .dga-vision-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dga-block-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #0d3a6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 32px;
}

.dga-vision-block .dga-block-icon {
    background: linear-gradient(135deg, var(--secondary), #e6a532);
}

.dga-block-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.dga-block-text {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.dga-mission-highlights, .dga-vision-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dga-highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--light);
    border-radius: 10px;
    transition: var(--transition);
}

.dark-mode .dga-highlight-item {
    background: #3d3d3d;
}

.dga-highlight-item:hover {
    transform: translateX(5px);
    background: var(--primary);
    color: white;
}

.dga-highlight-item i {
    color: var(--accent);
    font-size: 16px;
}

.dga-highlight-item:hover i {
    color: white;
}

/* History Timeline */
.dga-history-section {
    margin-bottom: 80px;
}

.dga-section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.dga-section-title {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.dga-section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.dga-section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 18px;
}

.dga-timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.dga-timeline-container:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: translateX(-50%);
    opacity: 0.3;
}

.dga-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.dga-timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.dga-timeline-year {
    flex: 0 0 120px;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.dga-timeline-item:nth-child(even) .dga-timeline-year {
    margin-right: 40px;
}

.dga-timeline-item:nth-child(odd) .dga-timeline-year {
    margin-left: 40px;
}

.dga-timeline-content {
    flex: 1;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.dga-timeline-item:nth-child(even) .dga-timeline-content {
    margin-left: 20px;
}

.dga-timeline-item:nth-child(odd) .dga-timeline-content {
    margin-right: 20px;
}

.dga-timeline-heading {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.dga-timeline-text {
    color: var(--text-color);
    line-height: 1.6;
}

/* Values Section */
.dga-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dga-value-item {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.dga-value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.dga-value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #0d3a6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
    transition: var(--transition);
}

.dga-value-item:hover .dga-value-icon {
    transform: scale(1.1) rotate(5deg);
}

.dga-value-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.dga-value-text {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 14px;
}

/* Animations */
@keyframes dgaFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dga-fade-element {
    animation: dgaFadeIn 0.8s ease forwards;
}

/* Stagger animation delays */
.dga-mission-block { animation-delay: 0.1s; }
.dga-vision-block { animation-delay: 0.2s; }
.dga-history-section { animation-delay: 0.3s; }
.dga-values-section { animation-delay: 0.4s; }
.dga-timeline-item:nth-child(1) { animation-delay: 0.5s; }
.dga-timeline-item:nth-child(2) { animation-delay: 0.6s; }
.dga-timeline-item:nth-child(3) { animation-delay: 0.7s; }
.dga-timeline-item:nth-child(4) { animation-delay: 0.8s; }
.dga-timeline-item:nth-child(5) { animation-delay: 0.9s; }
.dga-timeline-item:nth-child(6) { animation-delay: 1s; }

/* Responsive Design */
@media (max-width: 768px) {
    .dga-about-section {
        padding: 60px 0;
    }
    
    .dga-mission-vision-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dga-mission-block, .dga-vision-block {
        padding: 40px 30px;
    }
    
    .dga-timeline-container:before {
        left: 30px;
    }
    
    .dga-timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .dga-timeline-year {
        flex: 0 0 80px;
        margin-right: 20px !important;
        margin-left: 0 !important;
    }
    
    .dga-timeline-content {
        margin-left: 20px !important;
        margin-right: 0 !important;
    }
    
    .dga-values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .dga-section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .dga-mission-block, .dga-vision-block {
        padding: 30px 20px;
    }
    
    .dga-values-grid {
        grid-template-columns: 1fr;
    }
    
    .dga-block-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .dga-value-item {
        padding: 30px 20px;
    }
}
        /* Programs Section */
        .programs {
            padding: 100px 0;
            background-color: var(--light);
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .program-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

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

        .program-image {
            height: 200px;
            overflow: hidden;
        }

        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .program-card:hover .program-image img {
            transform: scale(1.1);
        }

        .program-content {
            padding: 25px;
        }

        .program-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }


/* Special Programs Section */
.special-programs {
    padding: 60px 0;
    background-color: var(--light);
}

.special-programs p {
    font-size: 16px;
}

.dark-mode .special-programs {
    background-color: #2d2d2d;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.program-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.program-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.program-card:hover .program-image:before {
    opacity: 0.9;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
    background: white;
}

.program-content {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.3;
}

.program-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
    flex: 1;
}

.program-actions {
    text-align: center;
    margin-top: auto;
}





/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Stagger animation delays */
.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }
.program-card:nth-child(4) { animation-delay: 0.4s; }
.program-card:nth-child(5) { animation-delay: 0.5s; }
.program-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .special-programs {
        padding: 40px 0;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-card {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .program-image {
        height: 140px;
    }
    
    .program-content {
        padding: 20px 15px;
    }
    
    .program-content h3 {
        font-size: 18px;
    }
    
    .program-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .program-card {
        height: 320px;
    }
    
    .program-image {
        height: 120px;
    }
    
    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
        }

        .testimonial {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
            display: none;
        }

        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--text-color);
            opacity: 0.8;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background-color: var(--primary);
        }

        /* Events Section */
        .events {
            padding: 100px 0;
            background-color: var(--light);
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .event-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

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

        .event-date {
            background-color: var(--primary);
            color: var(--white);
            padding: 15px;
            text-align: center;
        }

        .event-date .day {
            font-size: 2rem;
            font-weight: 700;
            display: block;
        }

        .event-date .month {
            font-size: 1rem;
        }

        .event-content {
            padding: 25px;
        }

        .event-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .event-meta {
            display: flex;
            margin-top: 15px;
            color: var(--text-color);
            opacity: 0.8;
            font-size: 0.9rem;
        }

        .event-meta i {
            margin-right: 5px;
            color: var(--primary);
        }

        .event-meta span {
            margin-right: 15px;
        }
            .view_more_div{
                display: flex;
                justify-content:center;
                margin-top: 20px;
            }

        .moreEvents_link {
        padding: 14px 16px;
        background-color: var(--primary);
        color: white;
        border-radius: 5px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .moreEvents_link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background-color: white;
        transition: width 0.3s ease;
    }

    .moreEvents_link:hover::after {
        width: 100%;
    }

    .moreEvents_link:hover {
        filter: brightness(105%);
    }
        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white !important;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        footer {
            background-color: var(--footer-bg);
            color: white !important;
            padding: 80px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: white !important;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-column p {
            margin-bottom: 20px;
            opacity: 0.8;
            color: white !important;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            opacity: 0.8;
            transition: var(--transition);
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--secondary) !important;
            padding-left: 5px;
        }

        .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-color: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            color: white !important;
        }

        .social-links a:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background-color: var(--card-bg);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: var(--transition);
            overflow-y: auto;
            padding: 80px 20px 20px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .mobile-nav-links li {
            margin: 0;
            width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .mobile-nav-links > li > a {
            padding: 15px 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }

        .mobile-dropdown {
            display: none;
            background-color: rgba(0, 0, 0, 0.05);
            border-radius: 0;
            margin-top: 0;
        }

        .mobile-dropdown.active {
            display: block;
        }

        .mobile-dropdown a {
            padding: 12px 15px;
            padding-left: 30px;
            display: block;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .mobile-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-color);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-btns .btn {
                width: 100%;
                max-width: 250px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stats {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .cta h2 {
                font-size: 2rem;
            }

            .mobile-menu {
                width: 100%;
            }
        }