
        /* Color Variables */
        :root {
                   --primary-gold: #d6a019;
            --primary-gold-light: #ffcc00;
            --bg-dark: #0a0a0a;
             --bg-light: #fafafa;
            --bg-glass: rgba(255, 255, 255, 0.08);
            --bg-glass-hover: rgba(255, 255, 255, 0.12);
             --text-primary: #1a1a1a;
             --text-secondary: rgba(26, 26, 26, 0.7);
            --text-tertiary: rgba(26, 26, 26, 0.5);
            --text-dark: #000000;
           --border-glass: rgba(214, 160, 25, 0.3);
           --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.4);
            --blur-amount: 20px;
             --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            --background: rgb(214, 160, 25);
            --hover-color: #ffcc00;
            --primary-gradient: rgba(0, 0, 0, 0.8);
            --secondary-gradient: rgba(0, 0, 0, 1);
            --shadow-color: rgba(0, 0, 0, 0.3);
            --overlay-color: rgba(0, 0, 0, 0.5);
            --accent-glow: rgba(214, 160, 25, 0.3);
            --glass-border: rgba(214, 160, 25, 0.2);
            --news-section-bg: #141414;
            --card-bg: rgba(20, 20, 20, 0.6);
            --card-border: rgba(214, 160, 25, 0.15);
            --gradient-overlay: linear-gradient(135deg, rgba(214, 160, 25, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
             --gradient-mesh: linear-gradient(135deg, rgba(214, 160, 25, 0.15) 0%, rgba(255, 204, 0, 0.08) 50%, rgba(0, 0, 0, 0.3) 100%);
       
            --footer-bg:  rgb(214, 160, 25); /* Dark Yellow Shade */
            --footer-text: #000; /* Black Text */
            --footer-link-hover:  rgb(214, 160, 25); /* Lighter Shade of Yellow for Hover */
            --footer-border: #fff; /* White Border for Social Icons */
        }
/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
}


   

     body {
    margin: 0;
    padding: 0;
    font-family: 'Epilogue', sans-serif;
      background: var(--bg-light);
            color: var(--text-primary);
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100vw; /* Ensure body doesn't exceed viewport width */
}
       
        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: background-color 0.3s ease, padding 0.3s ease;
        }

        .header.scrolled {
            background-color: transparent;
            padding: 0.3rem 1rem;
        }

        .header.scrolled .nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 40px;
            padding: 0.5rem 1rem;
            margin: 1rem auto;
            width: 95%;
            max-width: 1400px;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        /* Brand Styles */
        .nav__brand {
            display: flex;
            align-items: center;
        }

        .nav__brand img {
            width: 5.7rem;
            height: auto;
            transition: opacity 0.3s ease;
        }

        .logo-light {
            opacity: 1;
        }

        .logo-dark {
            opacity: 0;
            position: absolute;
        }

        .header.scrolled .logo-light {
            opacity: 0;
        }

        .header.scrolled .logo-dark {
            opacity: 1;
        }

        /* Navigation Links */
        .nav__links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            justify-content: center;
            flex: 1;
        }

        .nav__links > li {
            position: relative;
        }

        .nav__links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .header.scrolled .nav__links a {
            color: #000;
        }

        .nav__links a:hover {
            color: var(--primary-gold) !important;
            background: rgba(214, 160, 25, 0.1);
        }

        .nav__links a i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

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

        .dropdown-content a {
            color: #333 !important;
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            margin: 0.25rem;
            display: block;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background: rgba(214, 160, 25, 0.1);
            color: var(--primary-gold) !important;
        }

        /* Mega Dropdown for Services */
        .mega-dropdown .dropdown-content {
            min-width: 900px;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
            border: 1px solid rgba(214, 160, 25, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .mega-dropdown:hover .dropdown-content {
            transform: translateX(-50%) translateY(0);
        }

        .mega-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .mega-section {
            position: relative;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            border: 1px solid rgba(214, 160, 25, 0.1);
            transition: all 0.3s ease;
        }

        .mega-section:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 160, 25, 0.15);
            border-color: rgba(214, 160, 25, 0.3);
        }

        .mega-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
            border-radius: 12px 12px 0 0;
        }

        .mega-section h4 {
            color: #2c3e50;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid rgba(214, 160, 25, 0.2);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mega-section h4::before {
            content: '';
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mega-section:nth-child(1) h4::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        .mega-section:nth-child(2) h4::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        .mega-section:nth-child(3) h4::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66C7.07 17.96 9.75 12.35 17 10c7.42-2.42 6.86-7.4 6.86-7.4s-5.1-.45-6.86 5.4z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        .mega-section ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mega-section ul li {
            margin: 0;
        }

        .mega-section ul li a {
            color: #4a5568 !important;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.75rem 1rem;
            border: none;
            margin: 0;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid transparent;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
        }

        .mega-section ul li a::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--primary-gold);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .mega-section ul li a:hover {
            background: rgba(214, 160, 25, 0.1) !important;
            color: var(--primary-gold) !important;
            border-color: rgba(214, 160, 25, 0.3);
            transform: translateX(8px);
            box-shadow: 0 4px 15px rgba(214, 160, 25, 0.1);
        }

        .mega-section ul li a:hover::before {
            background: var(--primary-gold);
            width: 8px;
            height: 8px;
        }

        .mega-section ul li a::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(214, 160, 25, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .mega-section ul li a:hover::after {
            left: 100%;
        }

        /* Special styling for different service categories */
        .mega-section:nth-child(1) {
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
        }

        .mega-section:nth-child(2) {
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
        }

        .mega-section:nth-child(3) {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
        }

        /* Mega dropdown footer */
        .mega-footer {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 2px solid rgba(214, 160, 25, 0.2);
            text-align: center;
        }

        .mega-footer a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 2rem;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
            color: white !important;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(214, 160, 25, 0.3);
        }

        .mega-footer a:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 160, 25, 0.4);
        }

        /* Action Button */
        .nav__action {
            display: flex;
            align-items: center;
        }

        .nav__action a {
            padding: 0.7rem 1.5rem;
            border: 2px solid #ffcc00;
            border-radius: 25px;
            color: #ffcc00;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .header.scrolled .nav__action a {
            color: #000;
            border-color: #FFD700;
        }

        .nav__action a:hover {
            background: #ffcc00;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
        }

        /* Mobile Toggle Button */
        .toggle-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            background: var(--bg-glass);
            backdrop-filter: blur(15px);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            cursor: pointer;
            position: fixed;
            top: 1.5rem;
            right: 1.5rem;
            z-index: 1003;
            transition: var(--transition-smooth);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .toggle-btn:hover {
            background: var(--bg-glass-hover);
            transform: scale(1.05);
        }

        .toggle-btn span {
            display: block;
            width: 24px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            margin: 2px 0;
            transition: var(--transition-smooth);
        }

        .header.scrolled .toggle-btn {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
        }

        .header.scrolled .toggle-btn span {
            background: #000;
        }

        .toggle-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .toggle-btn.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .toggle-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(30px);
            border-right: 1px solid var(--border-glass);
            z-index: 1002;
            transition: var(--transition-bounce);
            display: flex;
            flex-direction: column;
            padding: 2rem;
            overflow-y: auto;
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav__header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border-glass);
        }

        .mobile-nav__header img {
            width: 80px;
            height: auto;
        }

        .mobile-nav__links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 3rem;
        }

        .mobile-nav__links > li > a {
            color: var(--bg-light) !important;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 1rem 1.5rem;
            border-radius: 16px;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.08);
            margin-bottom: 0.5rem;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .mobile-nav__links > li > a::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(214, 160, 25, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .mobile-nav__links > li > a:hover {
            background: var(--bg-glass-hover);
            transform: translateX(10px);
            color: var(--primary-gold) !important;
            border-color: var(--border-glass);
            box-shadow: 0 4px 15px rgba(214, 160, 25, 0.2);
        }

        .mobile-nav__links > li > a:hover::after {
            left: 100%;
        }

        .mobile-nav__links i {
            width: 20px;
            text-align: center;
            color: var(--primary-gold);
        }

        /* Mobile Dropdown */
        .mobile-dropdown {
            margin-left: 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            margin-top: 0.5rem;
        }

        .mobile-dropdown.active {
            max-height: 800px;
            padding: 0.5rem;
        }

        .mobile-dropdown a {
            color: #ffffff !important;
            text-decoration: none !important;
            font-weight: 400 !important;
            font-size: 0.9rem !important;
            padding: 0.75rem 1.25rem !important;
            border-radius: 10px !important;
            background: rgba(255, 255, 255, 0.08) !important;
            margin-bottom: 0.25rem !important;
            border: 1px solid transparent !important;
            display: flex !important;
            align-items: center !important;
            gap: 0.75rem !important;
            transition: all 0.3s ease !important;
            position: relative !important;
            overflow: hidden !important;
        }

        .mobile-dropdown a::before {
            content: '→';
            color: var(--primary-gold);
            font-weight: bold;
            font-size: 0.8rem;
            min-width: 12px;
        }

        .mobile-dropdown a:hover {
            background: rgba(214, 160, 25, 0.15) !important;
            color: var(--primary-gold) !important;
            border-color: rgba(214, 160, 25, 0.3) !important;
            transform: translateX(8px) !important;
            box-shadow: 0 4px 15px rgba(214, 160, 25, 0.2) !important;
        }

        .mobile-dropdown a:hover::before {
            color: #ffffff;
        }

        /* Special styling for main category items */
        .mobile-dropdown a[href="#epc"],
        .mobile-dropdown a[href="#offshore"],
        .mobile-dropdown a[href="#environmental"],
        .mobile-dropdown a[href="#oil-spill"] {
            font-weight: 500 !important;
            background: rgba(214, 160, 25, 0.1) !important;
            color: var(--primary-gold) !important;
        }

        .mobile-dropdown a[href="#epc"]::before,
        .mobile-dropdown a[href="#offshore"]::before,
        .mobile-dropdown a[href="#environmental"]::before,
        .mobile-dropdown a[href="#oil-spill"]::before {
            content: '●';
            color: var(--primary-gold);
            font-size: 0.6rem;
        }

        .mobile-nav__action {
            margin-top: auto;
            padding-top: 2rem;
            border-top: 1px solid var(--border-glass);
        }

        .mobile-nav__action a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.25rem 2rem;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(214, 160, 25, 0.3);
            transition: var(--transition-smooth);
        }

        .mobile-nav__action a:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(214, 160, 25, 0.4);
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
            z-index: 1001;
        }

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

  
        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav__links {
                gap: 1.5rem;
            }
            
            .nav__links a {
                font-size: 0.9rem;
                padding: 0.6rem 0.8rem;
            }

            .mega-dropdown .dropdown-content {
                min-width: 700px;
                padding: 1.5rem;
            }

            .mega-content {
                gap: 1.5rem;
            }

            .mega-section {
                padding: 1rem;
            }

                  .nav {
                width: calc(90% - 80px);
                margin-right: 70px;
                padding: 0.5rem 1rem;
                display:none;
            }

        }

        @media (max-width: 1000px) {
            .toggle-btn {
                display: flex;
            }

            .nav__links,
            .nav__action {
                display: none;
            }

            .nav {
                width: calc(90% - 80px);
                margin-right: 70px;
                padding: 0.5rem 1rem;
            }

            /* Hide mega dropdown on tablet/mobile */
            .mega-dropdown .dropdown-content {
                display: none;
            }
        }

        /* Smooth animations */
        @keyframes slideInFromLeft {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .mobile-nav.active .mobile-nav__links > li > a {
            animation: slideInFromLeft 0.6s ease-out forwards;
        }

        .mobile-nav.active .mobile-nav__links > li:nth-child(1) > a { animation-delay: 0.1s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(2) > a { animation-delay: 0.2s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(3) > a { animation-delay: 0.3s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(4) > a { animation-delay: 0.4s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(5) > a { animation-delay: 0.5s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(6) > a { animation-delay: 0.6s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(7) > a { animation-delay: 0.7s; }
        .mobile-nav.active .mobile-nav__links > li:nth-child(8) > a { animation-delay: 0.8s; }

        @media (max-width: 480px) {
            .mobile-nav {
                max-width: 100%;
            }

            .nav {
                width: calc(90% - 70px);
                margin-right: 60px;
            }

            .toggle-btn {
                right: 1rem;
                width: 45px;
                height: 45px;
            }
        }






  /* Modern Hero Section */
        .about-hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 0 clamp(20px, 8vw, 120px);
            background: 
                var(--gradient-mesh),
                linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('axflo/enviroment.jpg') center/cover no-repeat;
            background-attachment: fixed;
        }

        /* Hero Background Image Animation */
        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('axflo/axflo13.jpg') center/cover no-repeat;
            background-attachment: fixed;
            animation: subtleZoom 20s ease-in-out infinite alternate;
            z-index: -1;
        }

        /* Dark Overlay for Better Text Readability */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
            z-index: 0;
        }

        /* Dynamic Background Pattern */
        .hero-background {
            position: absolute;
            inset: 0;
            opacity: 0.6;
            background: 
                radial-gradient(circle at 20% 80%, rgba(214, 160, 25, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(214, 160, 25, 0.08) 0%, transparent 50%);
        }

        /* Animated Grid Overlay */
        .grid-overlay {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(214, 160, 25, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(214, 160, 25, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            z-index: 1;
        }

        /* Floating Geometric Elements */
        .geometric-elements {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
        }

        .geometric-shape {
            position: absolute;
            background: linear-gradient(45deg, var(--accent-glow), rgba(255, 204, 0, 0.1));
            backdrop-filter: blur(var(--blur-amount));
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            animation: floatRotate 15s ease-in-out infinite;
        }

        .shape-1 {
            width: 200px;
            height: 100px;
            top: 15%;
            right: 10%;
            animation-delay: 0s;
            clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            right: 20%;
            animation-delay: 5s;
            border-radius: 50%;
        }

        .shape-3 {
            width: 120px;
            height: 60px;
            top: 60%;
            right: 5%;
            animation-delay: 10s;
            transform: rotate(45deg);
        }

        /* Glassmorphism Card */
        .glass-accent {
            position: absolute;
            top: 50%;
            right: 8%;
            transform: translateY(-50%);
            width: 300px;
            height: 400px;
            background: var(--bg-glass);
            backdrop-filter: blur(var(--blur-amount));
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            z-index: 2;
            animation: glassFloat 8s ease-in-out infinite;
        }

        .glass-accent::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-overlay);
            border-radius: inherit;
            animation: gradientShift 10s ease-in-out infinite;
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            animation: contentSlideIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
            transform: translateY(60px);
        }

        /* Status Badge */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--accent-glow);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--primary-gold-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 32px;
            animation: badgePulse 2s ease-in-out infinite;
        }

        .status-dot {
            width: 6px;
            height: 6px;
            background: var(--primary-gold-light);
            border-radius: 50%;
            animation: dotBlink 1.5s ease-in-out infinite;
        }

        /* Hero Title */
        .hero-title {
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 800;
            line-height: 0.9;
            color: var(--text-primary);
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, rgba(214, 160, 25, 0.3) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGlow 3s ease-in-out infinite;
        }

        /* Hero Subtitle */
        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            font-weight: 400;
            line-height: 1.6;
            color:  rgba(255, 255, 255, 0.8);
            max-width: 500px;
            margin-bottom: 40px;
        }

        /* CTA Button */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 50px;
            transition: var(--transition-smooth);
            box-shadow: 0 10px 30px var(--accent-glow);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(214, 160, 25, 0.5);
            background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--hover-color) 100%);
        }

        .cta-arrow {
            transition: transform 0.3s ease;
        }

        .cta-button:hover .cta-arrow {
            transform: translateX(4px);
        }

        /* Animations */
        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        @keyframes floatRotate {
            0%, 100% { 
                transform: translateY(0) rotate(0deg); 
                opacity: 0.4;
            }
            50% { 
                transform: translateY(-20px) rotate(180deg); 
                opacity: 0.7;
            }
        }

        @keyframes glassFloat {
            0%, 100% { 
                transform: translateY(-50%) translateX(0); 
            }
            50% { 
                transform: translateY(-50%) translateX(-10px); 
            }
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.7; }
        }

        @keyframes contentSlideIn {
            0% { 
                opacity: 0; 
                transform: translateY(60px); 
            }
            100% { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes dotBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        @keyframes titleGlow {
            0%, 100% { 
                filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1)); 
            }
            50% { 
                filter: drop-shadow(0 0 30px var(--accent-glow)); 
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-hero {
                padding: 0 20px;
                text-align: center;
            }

            .glass-accent,
            .geometric-elements {
                display: none;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-subtitle {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .status-badge {
                font-size: 0.7rem;
                padding: 6px 12px;
            }

            .cta-button {
                padding: 14px 28px;
                font-size: 0.9rem;
            }
        }

   /* Advanced Background Effects */
        .bg-effects {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
            filter: blur(80px);
            opacity: 0.3;
            animation: float 20s ease-in-out infinite;
        }

        .orb-1 { width: 400px; height: 400px; top: -200px; left: -200px; animation-delay: 0s; }
        .orb-2 { width: 300px; height: 300px; top: 50%; right: -150px; animation-delay: -7s; }
        .orb-3 { width: 500px; height: 500px; bottom: -250px; left: 30%; animation-delay: -14s; }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.1); }
            50% { transform: translate(-20px, 20px) scale(0.9); }
            75% { transform: translate(20px, 30px) scale(1.05); }
        }


 

        
/* Our Company Section */
.company-content {
    margin-top: 3rem;
}

.company-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.glass-panel h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.glass-panel p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vision-mission-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2rem;
}

.vm-item {
    margin-bottom: 2rem;
}

.vm-item:last-child {
    margin-bottom: 0;
}

.vm-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.vm-item h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.vm-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Board of Directors Section */
.board-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(214, 160, 25, 0.05) 100%);
}

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

.board-member-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
}

.board-member-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.board-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.member-image {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.memberimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.9);
}

.member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transform: translateY(100%);
    transition: var(--transition);
}

.board-member-card:hover .member-overlay {
    transform: translateY(0);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.position {
    color: var(--primary-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.bio {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.member-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.achievement-badge {
    background: rgba(214, 160, 25, 0.1);
    color: var(--primary-gold);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(214, 160, 25, 0.2);
}

/* HSE Section */
.hse-section {
    background: var(--bg-dark);
    color: #ffffff;
}

.hse-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hse-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.commitment-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(214, 160, 25, 0.3);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
}

.commitment-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.commitment-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.hse-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(214, 160, 25, 0.3);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(214, 160, 25, 0.2);
}

.metric-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.metric-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.hse-policies {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(214, 160, 25, 0.3);
    border-radius: 24px;
    padding: 3rem;
}

.hse-policies h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

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

.policy-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.policy-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Our People Section */
.people-section {
    background: var(--bg-light);
}

.people-showcase {
    display: grid;
    gap: 3rem;
}

.team-overview {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem;
}

.team-overview h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.team-overview p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.team-metrics {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(214, 160, 25, 0.2);
}

.team-metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.metric-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.personnel-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.personnel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.personnel-header {
    margin-bottom: 1rem;
}

.personnel-header i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.personnel-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(214, 160, 25, 0.3);
    transition: var(--transition);
}

.personnelimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.personnel-card:hover .personnel-image {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(214, 160, 25, 0.5);
}

.personnel-header h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.personnel-header span {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.personnel-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Milestones Section */
.milestones-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(214, 160, 25, 0.05) 100%);
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    padding-right: 3rem;
}

.timeline-item.right {
    left: 50%;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    border: 4px solid var(--bg-light);
    z-index: 2;
}

.timeline-item.left .timeline-marker {
    right: -10px;
}

.timeline-item.right .timeline-marker {
    left: -10px;
}

.timeline-content {
    padding: 2rem;
    position: relative;
}

.timeline-content h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .company-grid {
        grid-template-columns: 1fr;
    }
    
    .board-member-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .member-image {
        min-height: 200px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 3rem;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        padding-right: 0;
    }
    
    .timeline-marker {
        left: 10px !important;
    }
}

@media (max-width: 768px) {
    .company-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .team-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hse-metrics {
        grid-template-columns: 1fr;
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
    }
}





        /* Sections */
        .section {
            padding: 8rem 0;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        /* Glass Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .glass-card {
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 24px;
            padding: 2.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-mesh);
            opacity: 0;
            transition: var(--transition);
        }

        .glass-card:hover::before {
            opacity: 1;
        }

        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .card-content {
            position: relative;
            z-index: 2;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .card-description {
            color: var(--text-secondary);
            line-height: 1.7;
        }







        /* Technical Specifications */
        .tech-specs {
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 24px;
            padding: 3rem;
            margin: 4rem 0;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .spec-item {
            padding: 1.5rem;
            background: rgba(214, 160, 25, 0.05);
            border-radius: 16px;
            border-left: 4px solid var(--primary-gold);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .spec-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
        }

        .spec-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Animation Keyframes */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .floating-stats {
                position: static;
                transform: none;
                flex-direction: row;
                justify-content: center;
                margin-top: 3rem;
            }
            
            .hero {
                text-align: center;
            }
            
            .cards-grid {
                grid-template-columns: 1fr;
            }
        }


        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }






        /* Responsive Design */
        /* Leadership Section Styles */
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin: 4rem 0;
        }

        .leadership-card {
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 24px;
            padding: 2.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .leadership-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(214, 160, 25, 0.05) 0%, rgba(255, 204, 0, 0.02) 100%);
            opacity: 0;
            transition: var(--transition);
        }

        .leadership-card:hover::before {
            opacity: 1;
        }

        .leadership-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .leadership-content {
            position: relative;
            z-index: 2;
        }

        .leadership-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 25px rgba(214, 160, 25, 0.3);
        }

        .leadership-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .leadership-card p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .achievement-stats {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .achievement-stats .stat {
            background: rgba(214, 160, 25, 0.1);
            color: var(--primary-gold);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid rgba(214, 160, 25, 0.2);
        }

        /* Mission Banner */
        .mission-banner {
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 32px;
            padding: 3rem;
            margin: 6rem 0 4rem;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .mission-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(214, 160, 25, 0.08) 0%, rgba(255, 204, 0, 0.03) 100%);
        }

        .mission-content {
            position: relative;
            z-index: 2;
        }

        .mission-content h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .mission-content p {
            font-size: 1.1rem;
            color: var(--text-primary);
            line-height: 1.8;
            font-weight: bold;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .signature {
            color: var(--primary-gold);
            font-weight: 600;
        }

        .mission-visual {
            position: relative;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-elements {
            position: relative;
            width: 150px;
            height: 150px;
        }

        .element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            opacity: 0.6;
            animation: floatElement 6s ease-in-out infinite;
        }

        .element-1 {
            width: 60px;
            height: 60px;
            top: 20px;
            left: 45px;
            animation-delay: 0s;
        }

        .element-2 {
            width: 40px;
            height: 40px;
            top: 80px;
            left: 20px;
            animation-delay: -2s;
        }

        .element-3 {
            width: 50px;
            height: 50px;
            top: 60px;
            right: 30px;
            animation-delay: -4s;
        }

        @keyframes floatElement {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
            50% { transform: translateY(-15px) scale(1.1); opacity: 0.8; }
        }

        @media (max-width: 768px) {
            .leadership-grid {
                grid-template-columns: 1fr;
            }
            
            .mission-banner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .mission-visual {
                height: 120px;
            }
            
            .floating-elements {
                width: 100px;
                height: 100px;
            }
        }


        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-gold);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-gold-light);
        }















        
  /* Enhanced Footer Section */
        .footer-section {
            position: relative;
            background: 
                linear-gradient(135deg, 
                    rgba(20, 20, 20, 0.98) 0%,
                    rgba(30, 30, 30, 0.95) 25%,
                    rgba(25, 25, 25, 0.97) 50%,
                    rgba(15, 15, 15, 0.98) 75%,
                    rgba(10, 10, 10, 0.99) 100%
                ),
                radial-gradient(circle at 20% 80%, rgba(214, 160, 25, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(214, 160, 25, 0.06) 0%, transparent 50%);
            color: #ffffff;
            padding: 6rem 2rem 4rem;
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(214, 160, 25, 0.03) 50%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, rgba(214, 160, 25, 0.04) 50%, transparent 70%);
            pointer-events: none;
            z-index: 1;
        }

        .footer-section::after {
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%,
                rgba(214, 160, 25, 0.4) 25%,
                rgba(214, 160, 25, 0.6) 50%,
                rgba(214, 160, 25, 0.4) 75%,
                transparent 100%
            );
            z-index: 2;
        }

        .footer-container {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
            align-items: start;
        }

        /* Enhanced Footer Brand */
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .footer-logo {
            width: 180px;
            height: auto;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
            transition: var(--transition-smooth);
        }

        .footer-logo:hover {
            transform: scale(1.05) translateY(-2px);
            filter: drop-shadow(0 8px 24px rgba(214, 160, 25, 0.4));
        }

        .footer-brand p {
            font-size: 1.125rem;
            line-height: 1.7;
            max-width: 400px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            letter-spacing: 0.02em;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .company-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(214, 160, 25, 0.15);
            transition: var(--transition-smooth);
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
            border-color: rgba(214, 160, 25, 0.25);
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            display: block;
        }

        .stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.25rem;
        }

        /* Enhanced Footer Links */
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-links h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
            position: relative;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold-light), var(--primary-gold));
            border-radius: 2px;
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: var(--transition-smooth);
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0;
        }

        .footer-links ul li a::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--primary-gold-light);
            border-radius: 50%;
            transition: var(--transition-smooth);
            opacity: 0;
            transform: translateX(-10px);
        }

        .footer-links ul li a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-links ul li a:hover {
            color: #ffffff;
            transform: translateX(8px);
            text-shadow: 0 2px 8px rgba(255, 204, 0, 0.3);
        }

        /* Enhanced Social Media Section */
        .footer-social {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-social h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            position: relative;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .footer-social h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold-light), var(--primary-gold));
            border-radius: 2px;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.06);
            color: #ffffff;
            border-radius: 14px;
            text-decoration: none;
            font-size: 1.25rem;
            transition: var(--transition-smooth);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(214, 160, 25, 0.2);
            position: relative;
            overflow: hidden;
        }

        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(214, 160, 25, 0.15), transparent);
            transition: var(--transition-smooth);
        }

        .social-icons a:hover::before {
            left: 100%;
        }

        .social-icons a:hover {
            background: rgba(214, 160, 25, 0.1);
            border-color: rgba(214, 160, 25, 0.4);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 25px rgba(214, 160, 25, 0.2);
        }

        .newsletter-signup {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 16px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(214, 160, 25, 0.15);
        }

        .newsletter-signup h4 {
            font-family: 'Libre Baskerville', serif;
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.125rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(214, 160, 25, 0.2);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            font-size: 0.875rem;
            transition: var(--transition-smooth);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: rgba(214, 160, 25, 0.5);
            background: rgba(255, 255, 255, 0.08);
        }

        .newsletter-form button {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
            border: none;
            border-radius: 8px;
            color: var(--text-dark);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
        }

        /* Enhanced Footer Bottom */
        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            position: relative;
            z-index: 3;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.875rem;
            margin: 0;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.875rem;
            transition: var(--transition-smooth);
        }

        .footer-legal a:hover {
            color: var(--primary-gold-light);
        }

        /* Ultra Modern Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top-btn {
            width: 56px;
            height: 56px;
            border: none;
            border-radius: 16px;
            background: 
                linear-gradient(135deg, 
                    rgba(214, 160, 25, 0.9) 0%,
                    rgba(255, 204, 0, 0.8) 50%,
                    rgba(214, 160, 25, 0.9) 100%
                );
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-bounce);
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 8px 32px rgba(214, 160, 25, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .back-to-top-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: var(--transition-smooth);
        }

        .back-to-top-btn:hover::before {
            left: 100%;
        }

        .back-to-top-btn:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 
                0 12px 40px rgba(214, 160, 25, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .back-to-top-btn:active {
            transform: translateY(-2px) scale(1.02);
        }

        .back-to-top-icon {
            width: 20px;
            height: 20px;
            transition: var(--transition-smooth);
        }

        .back-to-top-icon path {
            fill: var(--text-dark);
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
        }

        .back-to-top-btn:hover .back-to-top-icon {
            transform: translateY(-2px);
        }

        /* Progress Ring */
        .progress-ring {
            position: absolute;
            top: -2px;
            left: -2px;
            width: 60px;
            height: 60px;
            transform: rotate(-90deg);
        }

        .progress-ring-circle {
            fill: none;
            stroke: rgba(255, 204, 0, 0.6);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-dasharray: 176;
            stroke-dashoffset: 176;
            transition: stroke-dashoffset 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .company-stats {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            .footer-section {
                padding: 4rem 1rem 3rem;
            }

            .footer-container {
                gap: 2rem;
            }

            .company-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .back-to-top {
                bottom: 1rem;
                right: 1rem;
            }

            .back-to-top-btn {
                width: 48px;
                height: 48px;
                border-radius: 12px;
            }

            .back-to-top-icon {
                width: 16px;
                height: 16px;
            }
            .company-stats{
               display: none; 
            }

            .footer-logo{
                width: 100px;
            }

            .footer-brand{
                align-items: center;
            }
        }