        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-dark: #151E26;
            --primary-gold: #D3C029;
            --secondary-cream: #F2D399;
            --white: #FFFFFF;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--white);
            background: var(--primary-dark);
            overflow-x: hidden;
        }
        
        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        .logo {
          width: 200px;
          
          animation: fadeInDown 1.5s ease-out;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(21, 30, 38, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(211, 192, 41, 0.2);
        }
        
        .navbar.scrolled {
            padding: 0.8rem 0;
            background: rgba(21, 30, 38, 0.98);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }
        
        .logo-container {
            width: 200px;
            height: 60px;
            background: var(--secondary-cream);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover {
            transform: scale(1.05);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .nav-links a:hover {
            color: var(--primary-gold);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Dropdown arrow styling */
        .dropdown > a .dropdown-arrow {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
            margin-left: 0.3rem;
        }
        
        .dropdown:hover > a .dropdown-arrow {
            transform: rotate(180deg);
        }
        
        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(21, 30, 38, 0.98);
            backdrop-filter: blur(15px);
            min-width: 200px;
            border: 1px solid rgba(211, 192, 41, 0.2);
            border-radius: 8px;
            padding: 0.8rem 0;
            z-index: 1001;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        .dropdown-content a {
            color: var(--white);
            padding: 0.7rem 1.5rem;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-radius: 4px;
            margin: 0.2rem 0.5rem;
        }
        
        .dropdown-content a:hover {
            background: rgba(211, 192, 41, 0.2);
            color: var(--primary-gold);
        }
        
        /* Mobile menu button */
        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
            padding: 0.8rem;
        }
        
        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--white);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .mobile-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .mobile-menu.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(21, 30, 38, 0.98);
            backdrop-filter: blur(15px);
            z-index: 999;
            padding-top: 100px;
            overflow-y: auto;
        }
        
        .mobile-nav.active {
            display: block;
        }
        
        .mobile-nav-content {
            max-width: 400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .mobile-nav a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(211, 192, 41, 0.1);
            display: block;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0.3rem 0;
        }
        
        .mobile-nav a:hover {
            color: var(--primary-gold);
            background: rgba(211, 192, 41, 0.1);
        }
        
        /* Mobile dropdown */
        .mobile-dropdown {
            margin: 0.3rem 0;
        }
        
        .mobile-dropdown-toggle {
            color: var(--white);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(211, 192, 41, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border-radius: 8px;
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }
        
        .mobile-dropdown-toggle:hover {
            color: var(--primary-gold);
            background: rgba(211, 192, 41, 0.1);
        }
        
        .mobile-dropdown-arrow {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .mobile-dropdown.active .mobile-dropdown-arrow {
            transform: rotate(180deg);
        }
        
        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(211, 192, 41, 0.05);
            border-radius: 8px;
            margin-top: 0.3rem;
        }
        
        .mobile-dropdown.active .mobile-dropdown-content {
            max-height: 300px;
        }
        
        .mobile-dropdown-content a {
            font-size: 0.95rem;
            padding: 0.8rem 2rem;
            margin: 0;
            border-bottom: none;
            border-radius: 0;
        }
        
        .mobile-dropdown-content a:hover {
            background: rgba(211, 192, 41, 0.15);
        }
        
        /* Responsive breakpoints */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: flex;
            }
            
            .nav-container {
                padding: 0 1rem;
            }
            
            .logo-container {
                width: 150px;
                height: 50px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .logo-container {
                width: 120px;
                height: 45px;
                font-size: 0.9rem;
            }
            
            .mobile-nav a {
                font-size: 1rem;
                padding: 0.9rem 1.2rem;
            }
            
            .mobile-dropdown-toggle {
                font-size: 1rem;
                padding: 0.9rem 1.2rem;
            }
            
            .mobile-dropdown-content a {
                font-size: 0.9rem;
                padding: 0.7rem 1.8rem;
            }
        }
        

        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2832 50%, var(--primary-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Background Image Slider */
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .slide.active {
            opacity: 0.15;
        }

        .slide:nth-child(1) {
            background-image: url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        .slide:nth-child(2) {
            background-image: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        .slide:nth-child(3) {
            background-image: url('https://images.unsplash.com/photo-1514320291840-2e0a9bf2a9ae?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        .slide:nth-child(4) {
            background-image: url('https://images.unsplash.com/photo-1506157786151-b8491531f063?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        /* Subtle floating elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .floating-note {
            position: absolute;
            font-size: 2.5rem;
            color: var(--primary-gold);
            opacity: 0.5;
            animation: floatAround 12s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .floating-note:nth-child(1) {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-note:nth-child(2) {
            top: 70%;
            right: 15%;
            animation-delay: 3s;
        }

        .floating-note:nth-child(3) {
            top: 85%;
            left: 60%;
            animation-delay: 6s;
        }

        .floating-note:nth-child(4) {
            top: 25%;
            right: 8%;
            animation-delay: 9s;
            font-size: 2rem;
        }

        .floating-note:nth-child(5) {
            top: 40%;
            left: 5%;
            animation-delay: 2s;
            font-size: 1.8rem;
        }

        .floating-note:nth-child(6) {
            top: 55%;
            left: 85%;
            animation-delay: 7s;
            font-size: 3rem;
        }

        /* Hero content slider */
        .hero-content-slider {
            position: relative;
            z-index: 3;
            max-width: 800px;
            padding: 0 2rem;
            width: 100%;
            height: 400px; /* Fixed height to prevent layout shift */
            display: flex;
            align-items: center;
        }

        .content-slide {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1.2s ease, transform 1.2s ease;
            position: absolute;
            width: 100%;
            left: 0;
            top: 50%;
            transform: translateY(-50%) translateY(30px);
            visibility: hidden;
        }

        .content-slide.active {
            opacity: 1;
            transform: translateY(-50%) translateY(0);
            visibility: visible;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 4.5rem);
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--primary-gold), var(--secondary-cream));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--primary-gold);
            border-radius: 1px;
            animation: slideIn 1s ease 0.5s both;
        }

        .hero .motto {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: var(--secondary-cream);
            margin-bottom: 2rem;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .hero .mission-brief {
            font-size: clamp(1rem, 2vw, 1.2rem);
            line-height: 1.8;
            margin-bottom: 3rem;
            color: var(--white);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Enhanced CTA buttons */
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .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: left 0.6s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--primary-gold);
            color: var(--primary-dark);
            box-shadow: 0 4px 15px rgba(211, 192, 41, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--primary-gold);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(211, 192, 41, 0.4);
        }

        .btn-secondary:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 4;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: var(--primary-gold);
            transform: scale(1.2);
        }

        .nav-dot:hover {
            background: var(--secondary-cream);
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 4;
            background: rgba(0, 0, 0, 0.4);
            border: none;
            color: var(--white);
            font-size: 1.8rem;
            width: 50px;
            height: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .slider-controls:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
            transform: translateY(-50%) scale(1.1);
        }

        .prev {
            left: 2rem;
        }

        .next {
            right: 2rem;
        }

        /* Subtle accent elements */
        .hero-accent {
            position: absolute;
            bottom: 6rem;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            opacity: 0.6;
            animation: pulse 2s ease-in-out infinite;
        }

        /* Keyframe Animations */
        @keyframes floatAround {
            0% { 
                transform: translateX(0) translateY(0) rotate(0deg); 
                opacity: 0.5; 
            }
            25% { 
                transform: translateX(20px) translateY(-30px) rotate(90deg); 
                opacity: 0.7; 
            }
            50% { 
                transform: translateX(-15px) translateY(-20px) rotate(180deg); 
                opacity: 0.6; 
            }
            75% { 
                transform: translateX(25px) translateY(15px) rotate(270deg); 
                opacity: 0.8; 
            }
            100% { 
                transform: translateX(0) translateY(0) rotate(360deg); 
                opacity: 0.5; 
            }
        }

        @keyframes slideIn {
            0% { width: 0; }
            100% { width: 60px; }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content-slider {
                padding: 0 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                max-width: 280px;
            }

            .floating-note {
                font-size: 1.2rem;
            }

            .slider-controls {
                display: none;
            }
            .hero .mission-brief {
                font-size: clamp(1rem, 2vw, 1.2rem);
                line-height: 1.8;
                margin-bottom: 3rem;
                max-width: 500px;
            }
        }

        @media (max-width: 480px) {
            .hero-content-slider {
                padding: 0 1rem;
            }
            
            .hero .mission-brief {
                font-size: clamp(1rem, 2vw, 1.2rem);
                line-height: 1.8;
                margin-bottom: 3rem;
                max-width: 500px;
            }
        
        }
        
        
        
        
        /* About Section */
        .about {
            padding: 8rem 0;
            background: linear-gradient(135deg, #1a2832 0%, var(--primary-dark) 100%);
            position: relative;
            z-index: 2;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            color: var(--primary-gold);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 4rem;
            align-items: center;
        }
        
        .about-content h3 {
            color: var(--primary-gold);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }
        
        .about-image {
            background: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
            height: 400px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(211, 192, 41, 0.3), rgba(242, 211, 153, 0.2));
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .about {
                padding: 4rem 0;
            }
        }

        @media (max-width: 480px) {
            .about {
                padding: 4rem 0;
            }
        }
        
        
        
        
        /* Services Section */
        .services {
            padding: 8rem 0;
            background: var(--primary-dark);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }
        
        .service-card {
            background: linear-gradient(135deg, #1a2832, #243540);
            padding: 3rem 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(211, 192, 41, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(211, 192, 41, 0.2);
            border-color: var(--primary-gold);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: var(--primary-dark);
        }
        
        .service-card h3 {
            color: var(--primary-gold);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .service-card p {
            opacity: 0.9;
            line-height: 1.6;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .services {
                padding: 4rem 0;
            }
        }

        @media (max-width: 480px) {
            .services {
                padding: 4rem 0;
            }
        }
        
        
        /* Artists Section */
        .artists {
            padding: 8rem 0;
            background: linear-gradient(135deg, #1a2832 0%, var(--primary-dark) 100%);
        }
        
        .artists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }
        
        .artist-card {
            background: var(--primary-dark);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(211, 192, 41, 0.1);
        }
        
        .artist-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .artist-image {
            height: 300px;
            background-position: top center;
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .artist-card:hover .artist-image {
            transform: scale(1.03);
        }
        
        .artist-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(21, 30, 38, 0.8));
        }
        
        .artist-info {
            padding: 2rem;
        }
        
        .artist-info h3 {
            color: var(--primary-gold);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .artist-genre {
            color: var(--secondary-cream);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            opacity: 0.8;
        }
        
        .artist-info p {
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        /* Artist Links */
        .artist-links {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }
        
        /* Icon (Listen) */
        .artist-links .icon-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background-color: #eee;
            border-radius: 50%;
            text-decoration: none;
            transition: background-color 0.2s ease;
        }
        
        .artist-links .icon-link i {
            font-size: 18px;
            color: #333;
        }
        
        .artist-links .icon-link:hover {
            background-color: #ccc;
        }
        
        /* Button (Profile) */
        .artist-links a:not(.icon-link) {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1.2rem;
            background-color: var(--primary-gold);
            color: var(--primary-dark);
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            line-height: 1;
            transition: background-color 0.2s ease;
        }
        
        .artist-links a:not(.icon-link):hover {
            background-color: #c3af1e;
        }
        
        /* Responsive Styling */
        @media (max-width: 768px) {
            .artists {
                padding: 4rem 1.5rem;
            }
        
            .artist-image {
                height: 260px;
            }
        
            .artist-info {
                padding: 1.5rem;
            }
        
            .artist-links {
                gap: 0.8rem;
            }
        
            .artist-links a,
            .artist-links .icon-link {
                margin-bottom: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .artists {
                padding: 4rem 1.5rem;
            }
        }


        
        
        /* Leadership Section */
        .leadership {
            padding: 8rem 0;
            background: var(--primary-dark);
        }
        
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }
        
        .leader-card {
            background: linear-gradient(135deg, #1a2832, #243540);
            padding: 3rem 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(211, 192, 41, 0.1);
        }
        
        .leader-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(211, 192, 41, 0.2);
        }
        
        .leader-avatar {
            width: 120px;
            height: 120px;
            background: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 3rem;
            color: var(--primary-dark);
            font-weight: bold;
        }
        
        .leader-card h3 {
            color: var(--primary-gold);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .leader-title {
            color: var(--secondary-cream);
            font-size: 1rem;
            margin-bottom: 1rem;
            opacity: 0.8;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .leadership {
                padding: 4rem 0;
            }
        }

        @media (max-width: 480px) {
            .leadership {
                padding: 4rem 0;
            }
        }
        
        
        
        
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a2832 0%, var(--primary-dark) 100%);
            color: var(--white);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            font-weight: 700;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .contact-info h3,
        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-weight: 600;
            color: var(--white);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .contact-icon {
            margin-right: 15px;
            padding: 12px;
            background: var(--primary-gold);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }
        
        .contact-icon svg {
            width: 20px;
            height: 20px;
            color: var(--primary-dark);
        }
        
        .contact-details h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-weight: 600;
            color: var(--white);
        }
        
        .contact-details p {
            font-size: 0.95rem;
            opacity: 0.85;
            color: var(--white);
        }
        
        /* Form Styles */
        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            color: var(--white);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .form-group {
            margin-bottom: 10px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--white);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #ccc;
            font-family: 'Montserrat', sans-serif;
        }

        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-btn {
            display: inline-block;
            padding: 15px 30px;
            background: var(--primary-gold);
            color: var(--primary-dark);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .form-btn:hover {
            background: var(--white);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease-in-out;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        
            .contact {
                padding: 50px 0;
            }
        
            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
                padding: 0 10px;
            }
        
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        
            .contact-info h3,
            .contact-form h3 {
                font-size: 1.5rem;
                margin-bottom: 25px;
                padding: 0 5px;
            }
        
            .contact-item {
                margin-bottom: 20px;
                padding: 16px;
                flex-direction: row;
                align-items: flex-start;
            }
        
            .contact-icon {
                margin-right: 12px;
                padding: 10px;
                width: 36px;
                height: 36px;
            }
        
            .contact-icon svg {
                width: 18px;
                height: 18px;
            }
        
            .contact-details h4 {
                font-size: 1rem;
                margin-bottom: 4px;
            }
        
            .contact-details p {
                font-size: 0.9rem;
                line-height: 1.4;
            }
        
            .contact-form {
                padding: 25px 20px;
                margin: 0 5px;
            }
        
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
                margin-bottom: 15px;
            }
        
            .form-group {
                margin-bottom: 16px;
            }
        
            .form-group label {
                margin-bottom: 6px;
                font-size: 0.9rem;
            }
        
            .form-group input,
            .form-group textarea {
                padding: 10px 12px;
                font-size: 0.9rem;
            }
        
            .form-group textarea {
                min-height: 100px;
            }
        
            .form-btn {
                width: 100%;
                padding: 12px 25px;
                font-size: 0.95rem;
            }
        }
        
        /* Small Mobile Devices */
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
        
            .contact {
                padding: 40px 0;
            }
        
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 35px;
            }
        
            .contact-info h3,
            .contact-form h3 {
                font-size: 1.3rem;
                margin-bottom: 20px;
            }
        
            .contact-item {
                padding: 14px;
                margin-bottom: 16px;
            }
        
            .contact-form {
                padding: 20px 16px;
                margin: 0 2px;
            }
        
            .form-group {
                margin-bottom: 14px;
            }
        
            .form-group input,
            .form-group textarea {
                padding: 9px 10px;
            }
            
            .form-btn {
                width: 100%;
                padding: 12px 25px;
                font-size: 0.95rem;
            }
        }


        /* Footer */
        .footer {
            background: #0f1419;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(211, 192, 41, 0.2);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h3 {
            color: var(--primary-gold);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-section p,
        .footer-section a {
            color: var(--white);
            opacity: 0.8;
            text-decoration: none;
            line-height: 1.6;
            margin-bottom: 0.7rem;
        }
        
        .footer-section a:hover {
            color: var(--primary-gold);
            opacity: 1;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--primary-gold);
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--secondary-cream);
            transform: scale(1.1);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(211, 192, 41, 0.1);
            opacity: 0.7;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .motto {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .about-grid,
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .logo-container {
                width: 150px;
                height: 50px;
                font-size: 1rem;
            }
            
            .dropdown-content {
                position: static;
                display: block;
                background: rgba(211, 192, 41, 0.1);
                margin-top: 0.5rem;
                border-radius: 5px;
            }
            
            .dropdown > a::after {
                display: none;
            }
        }
        
        /* Scroll reveal animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        
        /* Back to Top Button */
        #backToTop {
            position: fixed;
            bottom: 40px;
            right: 30px;
            z-index: 1000;
            background: var(--primary-gold);
            color: var(--primary-dark);
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            transition: background 0.3s, transform 0.3s;
            display: none;
        }
        
        #backToTop:hover {
            background: var(--secondary-cream);
            transform: scale(1.1);
        }