:root {
            --primary-bg: #0E1117;
            --secondary-bg: #151A23;
            --tertiary-bg: #1A202C;
            --primary-text: #F5F5F5;
            --secondary-text: #A0AEC0;
            --accent-color: linear-gradient(135deg, #C0C0C0, #A9A9A9);
            --highlight-color: #F4A460;
            --highlight-hover: #e69550;
            --section-padding: 100px 0;
            --card-radius: 16px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-bg);
            color: var(--primary-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--secondary-bg);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--highlight-color);
            border-radius: 10px;
            border: 2px solid var(--secondary-bg);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--highlight-hover);
        }

        /* Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            flex-direction: column;
        }
        
        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(244, 164, 96, 0.3);
            border-radius: 50%;
            border-top-color: var(--highlight-color);
            animation: spin 1.5s ease-in-out infinite;
            margin-bottom: 20px;
        }
        
        .loader-text {
            font-size: 1.2rem;
            color: var(--secondary-text);
            font-weight: 500;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Navbar Styles */
        .navbar {
            background-color: rgba(14, 17, 23, 0.95);
            backdrop-filter: blur(15px);
            padding: 18px 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 32px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
        }
        
        .logo-img {
            height: 45px;
            margin-right: 12px;
            transition: var(--transition);
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(15deg);
        }
        
        .nav-link {
            color: var(--primary-text) !important;
            font-weight: 500;
            margin: 0 12px;
            transition: var(--transition);
            position: relative;
            padding: 8px 0 !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background: var(--highlight-color);
            transition: var(--transition);
            border-radius: 2px;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--highlight-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-text);
            padding: 8px 12px;
            font-size: 1.2rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Page Banner */
        .page-banner {
            background: linear-gradient(135deg, rgba(14, 17, 23, 0.9) 0%, rgba(26, 32, 44, 0.8) 100%), url('../assets/images/aboutTeam.jpg');
            background-size: cover;
            background-position: center;
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .page-banner-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .page-title {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(to right, #F5F5F5, #F4A460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .page-subtitle {
            font-size: 1.4rem;
            color: var(--secondary-text);
            margin-bottom: 30px;
            font-weight: 400;
        }
        
        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-bottom: 0;
        }
        
        .breadcrumb-item a {
            color: var(--highlight-color);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--secondary-text);
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: var(--secondary-text);
        }
        
        /* Section Titles */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: var(--highlight-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-text);
            max-width: 700px;
            margin: 30px auto 0;
            font-weight: 400;
        }
        
        /* About Intro Section */
        .about-intro {
            padding: var(--section-padding);
            background-color: var(--secondary-bg);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-description {
            font-size: 1.1rem;
            color: var(--secondary-text);
            margin-bottom: 30px;
        }
        
        .highlight-text {
            color: var(--highlight-color);
            font-weight: 600;
        }
        
        /* Mission & Vision Section */
        .mission-vision {
            padding: var(--section-padding);
        }
        
        .mission-card, .vision-card {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            padding: 50px 40px;
            height: 100%;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .mission-card:before, .vision-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(244, 164, 96, 0.05), transparent);
            transition: all 0.8s;
            z-index: -1;
        }
        
        .mission-card:hover:before, .vision-card:hover:before {
            left: 100%;
        }
        
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: var(--highlight-color);
        }
        
        .mission-icon, .vision-icon {
            width: 80px;
            height: 80px;
            background: var(--accent-color);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .mission-card:hover .mission-icon, .vision-card:hover .vision-icon {
            transform: rotateY(180deg) scale(1.1);
            background: var(--highlight-color);
        }
        
        .mission-icon i, .vision-icon i {
            font-size: 35px;
            color: var(--primary-bg);
            transition: var(--transition);
        }
        
        .mission-card:hover .mission-icon i, .vision-card:hover .vision-icon i {
            transform: rotateY(-180deg);
        }
        
        .mission-title, .vision-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .mission-text, .vision-text {
            color: var(--secondary-text);
            font-size: 1.05rem;
        }
        
        /* Values Section */
        .values-section {
            padding: var(--section-padding);
            background-color: var(--secondary-bg);
        }
        
        .value-card {
            background: var(--primary-bg);
            border-radius: var(--card-radius);
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .value-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(244, 164, 96, 0.05), transparent);
            transition: all 0.8s;
            z-index: -1;
        }
        
        .value-card:hover:before {
            left: 100%;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: var(--highlight-color);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: var(--transition);
        }
        
        .value-card:hover .value-icon {
            transform: scale(1.1);
            background: var(--highlight-color);
        }
        
        .value-icon i {
            font-size: 30px;
            color: var(--primary-bg);
        }
        
        .value-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .value-description {
            color: var(--secondary-text);
            font-size: 1rem;
        }
        
        /* Team Section */
        .team-section {
            padding: var(--section-padding);
        }
        
        .team-card {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 100%;
            position: relative;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: var(--highlight-color);
        }
        
        .team-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .team-card:hover .team-image {
            transform: scale(1.05);
        }
        
        .team-content {
            padding: 30px 25px;
            text-align: center;
        }
        
        .team-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .team-position {
            color: var(--highlight-color);
            margin-bottom: 15px;
            font-size: 1rem;
            font-weight: 500;
        }
        
        .team-description {
            color: var(--secondary-text);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }
        
        .team-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-text);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .team-social a:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
            transform: translateY(-5px);
        }
        
        /* Video Section - Fixed for Mobile */
        .video-section {
            padding: var(--section-padding);
            background-color: var(--secondary-bg);
        }
        
        .video-container {
            position: relative;
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            max-width: 900px;
            margin: 0 auto;
        }
        
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }
        
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(14, 17, 23, 0.85) 0%, rgba(26, 32, 44, 0.7) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 30px;
            opacity: 1;
            transition: var(--transition);
            z-index: 2;
        }
        
        .video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
            z-index: 0;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: var(--highlight-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-bg);
            font-size: 2rem;
            margin-bottom: 20px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(244, 164, 96, 0.3);
            position: relative;
            z-index: 3;
        }
        
        /* Mobile-specific play button styling */
        @media (max-width: 767px) {
            .play-button {
                width: 70px;
                height: 70px;
                font-size: 1.7rem;
            }
            
            .video-title {
                font-size: 1.7rem;
            }
            
            .video-description {
                font-size: 1rem;
            }
            
            /* Ensure video overlay is properly sized on mobile */
            .video-overlay {
                padding: 20px;
            }
        }
        
        /* Extra small devices */
        @media (max-width: 360px) {
            .play-button {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .video-title {
                /* font-size: 1.4rem; */
                display: none;
            }
            
            .video-description {
                /* font-size: 0.9rem; */
                display: none;
            }
        }
        
        /* Enhanced Video Play Button for Very Small Screens (300px) */
        @media (max-width: 300px) {
            .play-button {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                margin-bottom: 15px;
            }
            
            .video-title {
                /* font-size: 1.2rem;
                margin-bottom: 10px; */
                display: none;
            }
            
            .video-description {
                /* font-size: 0.8rem;
                margin-bottom: 15px; */
                display: none;
            }
            
            .video-overlay {
                padding: 15px;
            }
            
            /* Make the entire overlay clickable on very small screens */
            .video-overlay {
                cursor: pointer;
            }
            
            .video-play-text {
                font-size: 0.9rem;
            }
        }
        
        .play-button:hover {
            transform: scale(1.1);
            background: var(--highlight-hover);
            box-shadow: 0 15px 40px rgba(244, 164, 96, 0.4);
        }
        
        .video-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .video-description {
            font-size: 1.1rem;
            color: var(--secondary-text);
            max-width: 600px;
        }
        
        /* Image Grid Section */
        .image-grid-section {
            padding: var(--section-padding);
        }
        
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .grid-item {
            position: relative;
            border-radius: var(--card-radius);
            overflow: hidden;
            height: 300px;
            cursor: pointer;
        }
        
        .grid-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .grid-item:hover .grid-image {
            transform: scale(1.1);
        }
        
        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(14, 17, 23, 0.9));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            transition: var(--transition);
        }
        
        .grid-item:hover .grid-overlay {
            opacity: 1;
        }
        
        .grid-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: var(--transition);
        }
        
        .grid-item:hover .grid-title {
            transform: translateY(0);
        }
        
        .grid-description {
            color: var(--secondary-text);
            font-size: 0.95rem;
            transform: translateY(20px);
            transition: var(--transition);
            transition-delay: 0.1s;
        }
        
        .grid-item:hover .grid-description {
            transform: translateY(0);
        }
        
        /* Stats Section */
        .stats-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--tertiary-bg) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .stats-section:before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(244, 164, 96, 0.05) 0%, transparent 70%);
            top: -150px;
            right: -150px;
        }
        
        .stats-section:after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
        }
        
        .stat-card {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--card-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .stat-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(244, 164, 96, 0.05), transparent);
            transition: all 0.8s;
            z-index: -1;
        }
        
        .stat-card:hover:before {
            left: 100%;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(244, 164, 96, 0.2);
        }
        
        .stat-icon {
            width: 70px;
            height: 70px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: var(--transition);
        }
        
        .stat-card:hover .stat-icon {
            transform: scale(1.1);
            background: var(--highlight-color);
        }
        
        .stat-icon i {
            font-size: 30px;
            color: var(--primary-bg);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--highlight-color);
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }
        
        .stat-text {
            font-size: 1.2rem;
            color: var(--secondary-text);
            font-weight: 500;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 140px 0;
            background: linear-gradient(135deg, rgba(244, 164, 96, 0.95) 0%, rgba(230, 149, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .cta-container {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .cta-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            color: var(--primary-bg);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 1rem;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .cta-badge i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .cta-title {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--primary-bg);
            line-height: 1.1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .cta-description {
            font-size: 1.4rem;
            margin-bottom: 45px;
            color: rgba(14, 17, 23, 0.9);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
            line-height: 1.6;
        }
        
        .cta-btn {
            background: var(--primary-bg);
            border: none;
            color: var(--highlight-color);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s;
            z-index: -1;
        }
        
        .cta-btn:hover:before {
            left: 100%;
        }
        
        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            background: var(--secondary-bg);
        }
        
        /* Footer */
        .footer {
            background: var(--primary-bg);
            padding: 80px 0 0;
            position: relative;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--highlight-color);
        }
        
        .footer-logo {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 32px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-description {
            color: var(--secondary-text);
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--secondary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-text);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
            transform: translateY(-5px);
        }
        
        .footer-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--highlight-color);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--secondary-text);
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            font-size: 1.05rem;
        }
        
        .footer-links a:hover {
            color: var(--highlight-color);
            transform: translateX(8px);
        }
        
        .footer-links a i {
            margin-right: 10px;
            font-size: 12px;
            color: var(--highlight-color);
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 12px;
            color: var(--highlight-color);
            margin-top: 5px;
            font-size: 1.1rem;
        }
        
        .contact-info div {
            flex: 1;
        }
        
        .contact-info strong {
            display: block;
            margin-bottom: 5px;
            color: var(--primary-text);
        }
        
        .contact-info p {
            color: var(--secondary-text);
            margin: 0;
        }
        
        .copyright {
            text-align: center;
            padding: 25px 0;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--secondary-text);
            font-size: 0.95rem;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--highlight-color);
            color: var(--primary-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
            box-shadow: 0 5px 15px rgba(244, 164, 96, 0.3);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--highlight-hover);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(244, 164, 96, 0.4);
        }
        
        /* Responsive Styles */
        @media (max-width: 1199px) {
            .page-title {
                font-size: 4rem;
            }
            
            .section-title {
                font-size: 2.8rem;
            }
            
            .cta-title {
                font-size: 3.2rem;
            }
        }
        
        @media (max-width: 991px) {
            .page-title {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .cta-title {
                font-size: 2.8rem;
            }
            
            .cta-description {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 767px) {
            .page-banner {
                padding: 150px 0 100px;
            }
            
            .page-title {
                font-size: 2.8rem;
            }
            
            .page-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .cta-description {
                font-size: 1.1rem;
            }
            
            .image-grid {
                grid-template-columns: 1fr;
            }
            
            .mission-card, .vision-card {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 575px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            .cta-description {
                font-size: 1rem;
            }
            
            .cta-badge {
                font-size: 0.9rem;
                padding: 8px 20px;
            }
        }
        
        /* Enhanced Interactive Elements */
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(244, 164, 96, 0.7);
            }
            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 15px rgba(244, 164, 96, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(244, 164, 96, 0);
            }
        }
        
        .floating-animation {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .glow-on-hover {
            transition: var(--transition);
        }
        
        .glow-on-hover:hover {
            box-shadow: 0 0 20px rgba(244, 164, 96, 0.5);
        }
        
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        /* Interactive Cards */
        .interactive-card {
            position: relative;
            overflow: hidden;
        }
        
        .interactive-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(244, 164, 96, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: var(--transition);
            z-index: 1;
        }
        
        .interactive-card:hover::before {
            opacity: 1;
        }
        
        /* Enhanced Video Section */
        .video-play-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
        }
        
        .video-play-text {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            text-align: center;
            z-index: 4;
            color: var(--primary-text);
            font-weight: 600;
            font-size: 1rem;
            opacity: 0.8;
            transition: var(--transition);
        }
        
        .video-overlay:hover .video-play-text {
            opacity: 1;
            transform: translateY(-5px);
        }

        /* Enhanced Design Elements */
        .gradient-border {
            position: relative;
            border-radius: var(--card-radius);
            padding: 2px;
            background: linear-gradient(135deg, var(--highlight-color), var(--secondary-text));
        }
        
        .gradient-border > div {
            background: var(--secondary-bg);
            border-radius: calc(var(--card-radius) - 2px);
            padding: 30px;
            height: 100%;
        }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--highlight-color), var(--secondary-text));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--highlight-color), transparent);
            margin: 60px 0;
        }
        
        .hover-lift {
            transition: var(--transition);
        }
        
        .hover-lift:hover {
            transform: translateY(-10px);
        }
        
        /* Enhanced Stats Section */
        .stats-counter {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--highlight-color);
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }
        
        /* Enhanced Video Play Button for Small Screens */
        @media (max-width: 300px) {
            .play-button {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .video-title {
                font-size: 1.2rem;
            }
            
            .video-description {
                font-size: 0.8rem;
            }
            
            .video-overlay {
                padding: 15px;
            }
            
            /* Make the entire overlay clickable on very small screens */
            .video-overlay {
                cursor: pointer;
            }
            
            .video-play-text {
                font-size: 0.9rem;
            }
        }