
        /* Color Variables */
        :root {
                   --primary-gold: #d6a019;
            --primary-gold-light: #ffcc00;
            --bg-dark: #0a0a0a;
            --bg-glass: rgba(255, 255, 255, 0.08);
            --bg-glass-hover: rgba(255, 255, 255, 0.12);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.8);
            --text-tertiary: rgba(255, 255, 255, 0.65);
            --text-dark: #000000;
            --border-glass: rgba(255, 255, 255, 0.15);
            --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.4);
            --blur-amount: 20px;
            --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-color: #fff;
    color: #fff;
    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: 10rem;
            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: 140px;
            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 */
        /* Small Desktop Screens (12-14 inches) */
        @media (min-width: 1024px) and (max-width: 1366px) {
            .nav {
                width: 92%;
                max-width: 1200px;
                padding: 0.4rem 0.8rem;
            }
            
            .nav__brand img {
                width: 9rem;
            }
            
            .nav__links {
                gap: 1.2rem;
            }
            
            .nav__links a {
                font-size: 0.88rem;
                padding: 0.6rem 0.7rem;
            }
            
            .nav__action a {
                font-size: 0.85rem;
                padding: 0.6rem 1.2rem;
            }
            
            .mega-dropdown .dropdown-content {
                min-width: 650px;
                padding: 1.3rem;
            }
            
            .mega-content {
                gap: 1.3rem;
            }
        }

        @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;
            }
        }





      /* Hero Section Styles */
        .hero-section {
            min-height: 130vh;
            display: grid;
            grid-template-columns: 1fr 400px;
            align-items: center;
            gap: 4rem;
            padding: 0 5%;
            background: 
                linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%),
                radial-gradient(circle at 20% 80%, rgba(214, 160, 25, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.05) 0%, transparent 50%),
                url('../images/oilandgas.jpg') no-repeat center center;
          
            background-attachment: fixed;
            position: relative;
            background-size: 120%;
            animation: heroZoom 9s ease-in-out infinite;
        }



        @keyframes heroZoom {
            0% {
                background-size: 100%;
            }
            50% {
                background-size: 120%;
            }
            100% {
                background-size: 100%;
            }
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 10, 0.2) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1100px;
            margin-top: 50px;
        }

        .hero-title {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(3.0rem, 7vw, 6rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            position: relative;
        }

        .hero-title .line {
            display: block;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }

        .hero-title span {
            display: inline-block;
            opacity: 0;
            transform: translateY(100px) rotateX(-90deg);
            animation: sophisticatedReveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
            transform-origin: center bottom;
        }

        .hero-title .accent-word {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .hero-title .accent-word::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            border-radius: 2px;
            opacity: 0;
            animation: underlineReveal 0.8s ease forwards 1.5s;
        }

        /* Sophisticated animation delays */
        .hero-title span:nth-child(1) { animation-delay: 0.1s; }
        .hero-title span:nth-child(2) { animation-delay: 0.15s; }
        .hero-title span:nth-child(3) { animation-delay: 0.2s; }
        .hero-title span:nth-child(4) { animation-delay: 0.25s; }
        .hero-title span:nth-child(5) { animation-delay: 0.3s; }
        .hero-title span:nth-child(6) { animation-delay: 0.35s; }
        .hero-title span:nth-child(7) { animation-delay: 0.4s; }
        .hero-title span:nth-child(8) { animation-delay: 0.6s; }
        .hero-title span:nth-child(9) { animation-delay: 0.65s; }
        .hero-title span:nth-child(10) { animation-delay: 0.7s; }
        .hero-title span:nth-child(11) { animation-delay: 0.75s; }
        .hero-title span:nth-child(12) { animation-delay: 0.8s; }
        .hero-title span:nth-child(13) { animation-delay: 0.85s; }
        .hero-title span:nth-child(14) { animation-delay: 0.9s; }

        @keyframes sophisticatedReveal {
            0% {
                opacity: 0;
                transform: translateY(100px) rotateX(-90deg);
            }
            50% {
                opacity: 0.5;
                transform: translateY(20px) rotateX(-30deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) rotateX(0deg);
            }
        }

        @keyframes underlineReveal {
            to {
                opacity: 1;
                transform: scaleX(1);
            }
        }

        .hero-subtitle {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            line-height: 1.8;
            margin-bottom: 3rem;
            color: var(--text-secondary);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards 1.2s;
            max-width: 600px;
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards 1.5s;
        }

        .cta-button {
            font-family: 'Libre Baskerville', serif;
            font-size: 1rem;
            font-weight: 600;
            padding: 18px 32px;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            border: none;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--accent-glow);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px var(--accent-glow);
        }

        .secondary-cta {
            font-family: 'Rosario', sans-serif;
            font-size: 1rem;
            color: var(--text-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 0;
            border-bottom: 2px solid transparent;
            transition: var(--transition-smooth);
            font-weight: 500;
        }

        .secondary-cta:hover {
            border-bottom-color: var(--primary-gold);
            color: var(--primary-gold-light);
        }

        /* Highlight Cards */
        .highlight-cards {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .highlight-card {
            padding: 2rem;
            border-radius: 20px;
            background: var(--bg-glass);
            backdrop-filter: blur(var(--blur-amount));
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-primary);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .highlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .highlight-card:hover::before {
            transform: scaleX(1);
        }

        .highlight-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            background: var(--bg-glass-hover);
            border-color: var(--primary-gold);
        }

        .card-title {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-gold-light);
            letter-spacing: -0.01em;
        }

        .card-description {
            font-family: 'Libre Baskerville', serif;
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .learn-more-link {
            font-family: 'Rosario', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary-gold-light);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition-smooth);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .learn-more-link:hover {
            color: var(--text-primary);
            transform: translateX(5px);
        }

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

        .learn-more-link:hover .arrow-icon {
            transform: translateX(3px);
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Floating elements for visual interest */
        .geometric-accent {
            position: absolute;
            z-index: 1;
            opacity: 0.1;
        }

        .geometric-accent.circle-1 {
            top: 10%;
            right: 15%;
            width: 200px;
            height: 200px;
            border: 2px solid var(--primary-gold);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .geometric-accent.square-1 {
            bottom: 20%;
            left: 10%;
            width: 100px;
            height: 100px;
            border: 2px solid var(--primary-gold-light);
            transform: rotate(45deg);
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-section {
              grid-template-columns: 1fr;
                gap: 3rem;
                padding: 3rem 5%;
                text-align: center;
                background-attachment: scroll;
                background-size: 120%;
            }
            
            .highlight-cards {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .highlight-card {
                flex: 1;
                min-width: 280px;
                max-width: 350px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
              padding: 2rem 5%;
                gap: 2rem;
                background-attachment: scroll;
                background-size: 120%;
                background-position: center center;
            }
            
            .hero-title {
                font-size: clamp(2.5rem, 6vw, 4rem);
                margin-bottom: 1.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .cta-group {
                flex-direction: column;
                gap: 1rem;
            }
            
            .highlight-cards {
                flex-direction: column;
            }
            
            .highlight-card {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                 padding: 1.5rem 4%;
                background-attachment: scroll;
                background-size:cover;
                background-position: center center;
            
          
            background-attachment: fixed;
            position: relative;
            
            animation: none;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .highlight-card {
                padding: 1.5rem;
            }
        }

/* 
About Section
 */

        /* Ultra Modern Section Layout */
        .section-layout {
            position: relative;
            padding: 8rem 4rem;
            background: linear-gradient(135deg, 
                rgba(248, 249, 250, 0.95) 0%, 
                rgba(255, 255, 255, 0.98) 30%, 
                rgba(241, 243, 244, 0.95) 100%);
            backdrop-filter: blur(20px);
        }

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

        .content-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            margin-bottom: 10rem;
            position: relative;
        }

        .content-section:last-child {
            margin-bottom: 0;
        }

        .content-section.reverse {
            grid-template-columns: 1fr 1fr;
        }

        /* Ultra Modern Text Content */
        .text-content {
            position: relative;
            z-index: 2;
        }

        .text-content::before {
            content: '';
            position: absolute;
            top: -2rem;
            left: -2rem;
            right: -2rem;
            bottom: -2rem;
            background: linear-gradient(135deg, 
                rgba(214, 160, 25, 0.03) 0%, 
                rgba(255, 204, 0, 0.05) 50%, 
                rgba(214, 160, 25, 0.02) 100%);
            border-radius: 3rem;
            filter: blur(40px);
            z-index: -1;
        }

        .text-content h2 {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(1.8rem, 4.5vw, 4.2rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-dark);
            margin-bottom: 2rem;
            position: relative;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            -webkit-background-clip: text;
            background-clip: text;
            text-align: left;
        }

        .text-content h2::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 4rem;
            height: 0.25rem;
            background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            border-radius: 2px;
        }

        /* Sophisticated Letter Animation */
        .text-content h2 span {
            display: inline-block;
            opacity: 0;
            transform: translateY(30px) rotateX(90deg);
            animation: sophisticatedReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            transition: all 0.3s ease;
        }

        .text-content h2 span:hover {
            transform: translateY(-5px) scale(1.05);
            color: var(--primary-gold);
            text-shadow: 0 10px 20px rgba(214, 160, 25, 0.3);
        }

        .text-content h2 span:nth-child(1) { animation-delay: 0.1s; }
        .text-content h2 span:nth-child(2) { animation-delay: 0.15s; }
        .text-content h2 span:nth-child(3) { animation-delay: 0.2s; }
        .text-content h2 span:nth-child(4) { animation-delay: 0.25s; }
        .text-content h2 span:nth-child(5) { animation-delay: 0.3s; }
        .text-content h2 span:nth-child(6) { animation-delay: 0.35s; }
        .text-content h2 span:nth-child(7) { animation-delay: 0.4s; }
        .text-content h2 span:nth-child(8) { animation-delay: 0.45s; }
        .text-content h2 span:nth-child(9) { animation-delay: 0.5s; }
        .text-content h2 span:nth-child(10) { animation-delay: 0.55s; }
        .text-content h2 span:nth-child(11) { animation-delay: 0.6s; }
        .text-content h2 span:nth-child(12) { animation-delay: 0.65s; }
        .text-content h2 span:nth-child(13) { animation-delay: 0.7s; }
        .text-content h2 span:nth-child(14) { animation-delay: 0.75s; }
        .text-content h2 span:nth-child(15) { animation-delay: 0.8s; }

        .text-content p {
            font-size: 1.25rem;
            line-height: 1.8;
            color: rgba(26, 26, 26, 0.8);
            margin-bottom: 3rem;
            font-weight: 400;
            letter-spacing: 0.01em;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUpSmooth 0.8s ease forwards 1.2s;
        }

        /* Ultra Modern Button Group */
        .button-group {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUpSmooth 0.8s ease forwards 1.4s;
        }

        .btn-primary {
            position: relative;
            padding: 1rem 2.5rem;
            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: 1rem;
            border-radius: 50px;
            transition: var(--transition-smooth);
            border: none;
            cursor: pointer;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(214, 160, 25, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(214, 160, 25, 0.4);
        }

        .btn-secondary {
            position: relative;
            padding: 1rem 2.5rem;
            background: transparent;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            border: 2px solid rgba(214, 160, 25, 0.3);
            border-radius: 50px;
            transition: var(--transition-smooth);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(214, 160, 25, 0.1);
            border-color: var(--primary-gold);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(214, 160, 25, 0.2);
        }

        /* Ultra Modern Image Content */
        .image-content {
            position: relative;
            z-index: 2;
        }

        .image-wrapper {
            position: relative;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            transition: var(--transition-smooth);
            background: linear-gradient(135deg, 
                rgba(214, 160, 25, 0.1) 0%, 
                rgba(255, 204, 0, 0.05) 100%);
            padding: 1rem;
            backdrop-filter: blur(20px);
        }

        .image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                rgba(214, 160, 25, 0.1) 0%, 
                transparent 50%, 
                rgba(214, 160, 25, 0.05) 100%);
            border-radius: 2rem;
            z-index: 1;
        }

        .image-wrapper:hover {
            transform: translateY(-10px) rotateY(5deg);
            box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
        }

        .image-wrapper img {
            width: 100%;
            height: auto;
            border-radius: 1.5rem;
            position: relative;
            z-index: 2;
            transition: var(--transition-smooth);
        }

        /* Sophisticated Background Elements */
        .background-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, 
                rgba(214, 160, 25, 0.1) 0%, 
                rgba(255, 204, 0, 0.05) 100%);
            backdrop-filter: blur(40px);
            animation: floatGentle 20s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: -10%;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .floating-element:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: -5%;
            animation-delay: -8s;
            animation-duration: 30s;
        }

        .floating-element:nth-child(3) {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 20%;
            animation-delay: -15s;
            animation-duration: 35s;
        }

        /* Grid Lines */
        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            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: 100px 100px;
            z-index: 0;
        }

        /* Animations */
        @keyframes sophisticatedReveal {
            0% {
                opacity: 0;
                transform: translateY(30px) rotateX(90deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) rotateX(0deg);
            }
        }

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

        @keyframes floatGentle {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-30px) rotate(90deg);
            }
            50% {
                transform: translateY(-60px) rotate(180deg);
            }
            75% {
                transform: translateY(-30px) rotate(270deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .section-layout {
                padding: 6rem 2rem;
            }
            
            .content-section {
                grid-template-columns: 1fr;
                gap: 4rem;
                text-align: center;
            }

            .text-content h2 {
                text-align: center;
                font-size: clamp(1.5rem, 4vw, 2.5rem);
                line-height: 1.3;
            }
            
            .content-section.reverse {
                grid-template-columns: 1fr;
            }
            
            .content-section.reverse .text-content {
                order: 2;
            }
            
            .content-section.reverse .image-content {
                order: 1;
            }

            
        }

        @media (max-width: 768px) {
            .section-layout {
                padding: 4rem 1.5rem;
            }
            
            .text-content h2 {
                font-size: clamp(1.2rem, 3.5vw, 1.8rem);
                text-align: center;
                line-height: 1.4;
                margin-bottom: 1.5rem;
            }
            
            .text-content p {
                font-size: 1.1rem;
            }
            
            .button-group {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }
            
            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

.waver{
    background: linear-gradient(135deg, rgba(214, 160, 25, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%)
}
 /* Certifications Section Container */
        .certifications-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            overflow: hidden;
        }

        /* Animated Background Pattern */
        .certifications-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(214, 160, 25, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 204, 0, 0.05) 0%, transparent 50%),
                linear-gradient(45deg, transparent 48%, rgba(214, 160, 25, 0.02) 50%, transparent 52%);
            animation: backgroundShift 20s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes backgroundShift {
            0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
            33% { transform: translateX(-10px) translateY(10px) rotate(0.5deg); }
            66% { transform: translateX(10px) translateY(-5px) rotate(-0.3deg); }
        }

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

        /* Left Side: Content */
        .certifications-content {
            position: relative;
            z-index: 3;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-glass);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(var(--blur-amount));
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--primary-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.2s;
        }

        .section-badge::before {
            content: '🏆';
            font-size: 1rem;
        }

        .certifications-content h2 {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.4s;
        }

        .certifications-content h2 .highlight {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .certifications-content p {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 90%;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.6s;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.8s;
        }

        .stat-item {
            background: var(--bg-glass);
            border: 1px solid var(--border-glass);
            backdrop-filter: blur(var(--blur-amount));
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
            transition: var(--transition-smooth);
        }

        .stat-item:hover {
            background: var(--bg-glass-hover);
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

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

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .learn-more-btn {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 1s;
        }

        .learn-more-btn a {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition-bounce);
            box-shadow: var(--shadow-primary);
            position: relative;
            overflow: hidden;
        }

        .learn-more-btn a::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.5s;
        }

        .learn-more-btn a:hover::before {
            left: 100%;
        }

        .learn-more-btn a:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        .learn-more-btn a::after {
            content: '→';
            transition: var(--transition-smooth);
        }

        .learn-more-btn a:hover::after {
            transform: translateX(5px);
        }

        /* Right Side: Certifications List */
        .certifications-showcase {
            position: relative;
            height: 700px;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .certification-card {
            background: var(--bg-glass);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(var(--blur-amount));
            border-radius: 24px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition-smooth);
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 0.8s ease forwards;
        }

        .certification-card:nth-child(1) { animation-delay: 0.5s; }
        .certification-card:nth-child(2) { animation-delay: 0.7s; }

        .certification-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            transform: scaleX(0);
            transition: var(--transition-smooth);
        }

        .certification-card:hover::before {
            transform: scaleX(1);
        }

        .certification-card:hover {
            background: var(--bg-glass-hover);
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .cert-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .cert-logo {
            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;
            font-weight: 700;
            color: var(--text-dark);
            box-shadow: 0 10px 20px rgba(214, 160, 25, 0.3);
        }

        .cert-status {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

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

        .cert-description {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

 
        .cert-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cert-details a{
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition-smooth);
        }
        .cert-date {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .download-btn {
            background: rgba(214, 160, 25, 0.1);
            border: 1px solid var(--glass-border);
            color: var(--primary-gold);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .download-btn:hover {
            background: var(--primary-gold);
            color: var(--text-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(214, 160, 25, 0.3);
        }

        .download-btn::before {
            content: '📥';
            font-size: 1rem;
        }


        /* Floating Elements */
        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }

        .floating-icon:nth-child(1) {
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            bottom: 15%;
            left: 5%;
            animation-delay: 2s;
        }

        .floating-icon:nth-child(3) {
            top: 50%;
            right: 5%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

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

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 400px;
                margin: 0 auto 2.5rem;
            }

            .certifications-showcase {
                height: auto;
            }
        }

        @media (max-width: 768px) {
            .certifications-container {
                padding: 0 1rem;
                gap: 2rem;
            }

            .certifications-content h2 {
                font-size: 2.5rem;
            }

            .certifications-content p {
                font-size: 1rem;
                max-width: 100%;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .certification-card {
                padding: 2rem;
            }

            .cert-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .cert-details {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .certifications-section {
                padding: 2rem 0;
            }

            .certifications-content h2 {
                font-size: 2rem;
            }

            .certification-card {
                padding: 1.5rem;
            }

            .cert-logo {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }
        }


/* News Section Styles */
.news-section {
    padding: 5% 10%;
    background-color: #201f1f;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Ensure content doesn't spill out */
}



/* Background Circles */
.news-section .background-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2; /* Behind the parallax circles */
    pointer-events: none;
}

.news-section .background-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 0, 0.10); /* Light yellow */
    animation: moveNewsCircle linear infinite;
    opacity: 0.4;
}

/* Define circles for news-section */
.news-section .background-circles .circle:nth-child(1) {
    width: 180px;
    height: 180px;
    top: 15%;
    left: 25%;
    animation-duration: 50s;
    animation-name: moveNewsCircle1;
}

.news-section .background-circles .circle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 75%;
    transform: translateY(-50%);
    animation-duration: 70s;
    animation-name: moveNewsCircle2;
}

.news-section .background-circles .circle:nth-child(3) {
    width: 160px;
    height: 160px;
    top: 80%;
    left: 40%;
    animation-duration: 90s;
    animation-name: moveNewsCircle3;
}

/* Keyframes for news-section circles */
@keyframes moveNewsCircle1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-150px, 150px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes moveNewsCircle2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(150px, -150px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes moveNewsCircle3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-100px, 100px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

        /* Enhanced News Section */
        .news-section {
            padding: 8rem 5% 6rem;
            background: var(--news-section-bg);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        .news-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-overlay);
            z-index: 1;
            pointer-events: none;
        }

        .news-section::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -25%;
            width: 150%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(214, 160, 25, 0.03) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        /* Enhanced Background Animation */
        .background-circles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .background-circles .circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(214, 160, 25, 0.08), rgba(255, 204, 0, 0.04));
            border: 1px solid rgba(214, 160, 25, 0.1);
            backdrop-filter: blur(10px);
            animation: floatCircle linear infinite;
        }

        .background-circles .circle:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 15%;
            animation-duration: 25s;
            animation-delay: 0s;
        }

        .background-circles .circle:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 20%;
            animation-duration: 35s;
            animation-delay: -10s;
        }

        .background-circles .circle:nth-child(3) {
            width: 120px;
            height: 120px;
            bottom: 20%;
            left: 30%;
            animation-duration: 40s;
            animation-delay: -20s;
        }

        .background-circles .circle:nth-child(4) {
            width: 80px;
            height: 80px;
            top: 30%;
            right: 10%;
            animation-duration: 30s;
            animation-delay: -5s;
        }

        .background-circles .circle:nth-child(5) {
            width: 60px;
            height: 60px;
            bottom: 40%;
            right: 35%;
            animation-duration: 50s;
            animation-delay: -25s;
        }

        @keyframes floatCircle {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
                opacity: 0.4;
            }
            25% {
                transform: translate(30px, -40px) rotate(90deg) scale(1.1);
                opacity: 0.6;
            }
            50% {
                transform: translate(-20px, 30px) rotate(180deg) scale(0.9);
                opacity: 0.3;
            }
            75% {
                transform: translate(40px, 20px) rotate(270deg) scale(1.05);
                opacity: 0.5;
            }
        }

        /* Container */
        .news-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Enhanced Header */
        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 4rem;
            gap: 2rem;
            position: relative;
        }

        .news-header::before {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 0;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-gold), transparent);
        }

        .news-header h2 {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: var(--primary-gold);
            letter-spacing: -0.02em;
            line-height: 1.1;
            position: relative;
            margin-bottom: 0.5rem;
        }

        .news-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 2px;
        }

        .news-header-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 1rem;
        }

        .news-header-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            font-weight: 300;
            text-align: right;
            max-width: 300px;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.5rem;
            background: rgba(214, 160, 25, 0.1);
            border: 1px solid var(--primary-gold);
            border-radius: 50px;
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            transition: var(--transition-smooth);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .view-all-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s;
        }

        .view-all-btn:hover::before {
            left: 100%;
        }

        .view-all-btn:hover {
            background: var(--primary-gold);
            color: var(--text-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(214, 160, 25, 0.3);
        }

        .view-all-btn .arrow {
            transition: transform 0.3s ease;
        }

        .view-all-btn:hover .arrow {
            transform: translateX(4px);
        }

        /* Enhanced News Grid */
        .news-content {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            align-items: start;
        }

        /* Enhanced Main News */
        .main-news {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--card-border);
            transition: var(--transition-smooth);
            height: 500px;
        }

        .main-news:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            border-color: rgba(214, 160, 25, 0.3);
        }

        .main-news-image {
            width: 100%;
            height: 70%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .main-news:hover .main-news-image {
            transform: scale(1.05);
        }

        .main-news-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 50%);
            color: var(--text-primary);
        }

        .main-news-date {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(214, 160, 25, 0.2);
            color: var(--primary-gold);
            font-size: 0.8rem;
            font-weight: 500;
            border-radius: 20px;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(214, 160, 25, 0.3);
        }

        .main-news-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            line-height: 1.3;
            color: var(--text-primary);
        }

        .main-news-excerpt {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Enhanced News List */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .news-item {
            position: relative;
            padding: 1.5rem;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            backdrop-filter: blur(20px);
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        .news-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-gold), transparent);
            border-radius: 2px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .news-item:hover::before {
            opacity: 1;
        }

        .news-item:hover {
            transform: translateX(8px);
            background: var(--bg-glass-hover);
            border-color: rgba(214, 160, 25, 0.3);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .news-item-date {
            display: inline-block;
            font-size: 0.8rem;
            color: var(--primary-gold);
            font-weight: 500;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .news-item-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .news-item:hover .news-item-title {
            color: var(--primary-gold-light);
        }

        .news-item-excerpt {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Read More Indicator */
        .read-more {
            position: absolute;
            bottom: 1rem;
            right: 1.5rem;
            font-size: 0.8rem;
            color: var(--primary-gold);
            opacity: 0;
            transform: translateX(-10px);
            transition: var(--transition-smooth);
        }

        .news-item:hover .read-more {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .news-section {
                padding: 6rem 4% 4rem;
            }
            
            .news-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .main-news {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .news-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
                margin-bottom: 3rem;
            }
            
            .news-header-meta {
                align-items: flex-start;
            }
            
            .news-header-subtitle {
                text-align: left;
                max-width: none;
            }
            
            .main-news {
                height: 350px;
            }
            
            .news-list {
                gap: 1rem;
            }
        }

        /* Loading Animation */
        .news-section * {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .news-header {
            animation-delay: 0.1s;
        }

        .main-news {
            animation-delay: 0.2s;
        }

        .news-item:nth-child(1) {
            animation-delay: 0.3s;
        }

        .news-item:nth-child(2) {
            animation-delay: 0.4s;
        }

        .news-item:nth-child(3) {
            animation-delay: 0.5s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



/* Enhanced Job Postings Section */
        .job-postings {
            position: relative;
            margin: 8rem auto;
            max-width: 1400px;
            padding: 0 2rem;
            z-index: 2;
        }

        /* Sophisticated Background Effects */
        .job-postings::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            right: -10%;
            bottom: -10%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(214, 160, 25, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(214, 160, 25, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
            z-index: -1;
            filter: blur(0.5px);
        }

        /* Animated Particles Background */
        .background-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: var(--primary-gold);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 15s infinite linear;
        }

        .particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 2s; }
        .particle:nth-child(3) { width: 3px; height: 3px; left: 35%; animation-delay: 4s; }
        .particle:nth-child(4) { width: 5px; height: 5px; left: 50%; animation-delay: 6s; }
        .particle:nth-child(5) { width: 4px; height: 4px; left: 65%; animation-delay: 8s; }
        .particle:nth-child(6) { width: 6px; height: 6px; left: 80%; animation-delay: 10s; }
        .particle:nth-child(7) { width: 3px; height: 3px; left: 90%; animation-delay: 12s; }

        /* Header Section */
        .careers-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
        }

        .careers-header::after {
            content: '';
            position: absolute;
            bottom: -2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
        }

        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.2rem;
            text-transform: uppercase;
            color: var(--primary-gold);
            background: rgba(214, 160, 25, 0.08);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            border: 1px solid rgba(214, 160, 25, 0.15);
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease-out;
        }

        .careers-header h2 {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-gold) 0%, #ffcc00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .careers-subtitle {
            font-size: 1.25rem;
            color: #666666;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        /* Statistics Cards */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 4rem 0 6rem 0;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(var(--blur-amount));
            border: 1px solid rgba(214, 160, 25, 0.12);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(214, 160, 25, 0.08), transparent);
            transition: left 0.6s ease;
        }

        .stat-card:hover::before {
            left: 100%;
        }

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

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

        .stat-label {
            font-size: 0.9rem;
            color: #666666 !important;
            font-weight: 500;
        }

        /* Job Listings */
        .job-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .job-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(var(--blur-amount));
            border: 1px solid rgba(214, 160, 25, 0.12);
            border-radius: 24px;
            padding: 2.5rem;
            position: relative;
            transition: var(--transition-smooth);
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out calc(0.8s + var(--delay, 0s)) both;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), #ffcc00);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .job-card:hover::before {
            transform: scaleX(1);
        }

        .job-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-gold);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
        }

        .job-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .job-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-gold), #ffcc00);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .job-title-group {
            flex: 1;
        }

        .job-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .job-department {
            font-size: 0.85rem;
            color: var(--primary-gold);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05rem;
        }

        .job-description {
            color: #666666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .job-requirements {
            margin-bottom: 2rem;
        }

        .job-requirements h4 {
            font-size: 0.9rem;
            color: #333333;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .requirements-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .requirement-tag {
            font-size: 0.75rem;
            background: rgba(214, 160, 25, 0.1);
            color: var(--primary-gold);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            border: 1px solid rgba(214, 160, 25, 0.2);
        }

        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .job-type {
            font-size: 0.8rem;
            color: #666666;
            background: rgba(0, 0, 0, 0.03);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .apply-btn {
            background: linear-gradient(135deg, var(--primary-gold), #ffcc00);
            color: var(--text-dark);
            text-decoration: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition-smooth);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(214, 160, 25, 0.3);
        }

        .apply-btn::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .apply-btn:hover::after {
            transform: translateX(4px);
        }

        /* CTA Section */
        .careers-cta {
            margin-top: 6rem;
            text-align: center;
            padding: 4rem 2rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(var(--blur-amount));
            border: 1px solid rgba(214, 160, 25, 0.12);
            border-radius: 32px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .careers-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(214, 160, 25, 0.03) 0%, rgba(0, 0, 0, 0.02) 100%);
            z-index: -1;
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #333333;
        }

        .cta-description {
            font-size: 1.1rem;
            color: #666666;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            background: transparent;
            color: var(--primary-gold);
            text-decoration: none;
            padding: 1rem 2.5rem;
            border: 2px solid var(--primary-gold);
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition-smooth);
            display: inline-block;
        }

        .cta-btn:hover {
            background: var(--primary-gold);
            color: var(--text-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(214, 160, 25, 0.2);
        }

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

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.1;
            }
            90% {
                opacity: 0.1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .job-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .job-postings {
                padding: 0 1rem;
                margin: 4rem auto;
            }

            .careers-header h2 {
                font-size: 2.5rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .job-card {
                padding: 2rem;
            }

            .job-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

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

            .careers-cta {
                padding: 3rem 1.5rem;
            }

            .particle {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .section-label {
                font-size: 0.65rem;
                padding: 0.4rem 1rem;
            }

            .careers-header h2 {
                font-size: 2rem;
            }

            .careers-subtitle {
                font-size: 1rem;
            }

            .job-card {
                padding: 1.5rem;
            }

            .job-title {
                font-size: 1.25rem;
            }
        }

   /* Enhanced Values Section */
        .values-section {
            position: relative;
            padding: 8rem 5% 10rem;
            background: 
                radial-gradient(circle at 20% 30%, rgba(214, 160, 25, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%),
                linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
            color: var(--text-primary);
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        /* Animated Background Elements */
        .values-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 25%, rgba(214, 160, 25, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 85% 75%, rgba(255, 204, 0, 0.05) 0%, transparent 40%);
            animation: gradientShift 20s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }

        /* Floating Particles */
        .background-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-gold);
            border-radius: 50%;
            opacity: 0.6;
            animation: floatParticle linear infinite;
        }

        .particle:nth-child(1) {
            left: 10%;
            animation-duration: 15s;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            left: 30%;
            animation-duration: 20s;
            animation-delay: -5s;
        }

        .particle:nth-child(3) {
            left: 50%;
            animation-duration: 18s;
            animation-delay: -10s;
        }

        .particle:nth-child(4) {
            left: 70%;
            animation-duration: 22s;
            animation-delay: -3s;
        }

        .particle:nth-child(5) {
            left: 90%;
            animation-duration: 16s;
            animation-delay: -8s;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-10vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Enhanced Geometric Background */
        .geometric-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .geo-shape {
            position: absolute;
            border: 1px solid rgba(214, 160, 25, 0.15);
            border-radius: 12px;
            backdrop-filter: blur(2px);
            animation: floatGeo ease-in-out infinite;
        }

        .geo-shape:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation-duration: 25s;
            animation-delay: 0s;
        }

        .geo-shape:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 8%;
            animation-duration: 30s;
            animation-delay: -8s;
            border-radius: 50%;
        }

        .geo-shape:nth-child(3) {
            width: 120px;
            height: 120px;
            bottom: 15%;
            left: 15%;
            animation-duration: 20s;
            animation-delay: -15s;
            transform: rotate(45deg);
        }

        @keyframes floatGeo {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
                opacity: 0.6;
            }
        }

        /* Main Container */
        .values-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Enhanced Header */
        .values-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .values-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(214, 160, 25, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
        }

        .values-header h2 {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            -webkit-background-clip: text;
         
            background-clip: text;
            text-shadow: 0 0 30px rgba(214, 160, 25, 0.3);
        
        }

        .values-header h2 span {
            display: inline-block;
            opacity: 0;
            transform: translateY(30px) rotateX(90deg);
            animation: letterReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        @keyframes letterReveal {
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0deg);
            }
        }

        /* Sequential delays for letter animation */
        .values-header h2 span:nth-child(1) { animation-delay: 0.1s; }
        .values-header h2 span:nth-child(2) { animation-delay: 0.15s; }
        .values-header h2 span:nth-child(3) { animation-delay: 0.2s; }
        .values-header h2 span:nth-child(4) { animation-delay: 0.25s; }
        .values-header h2 span:nth-child(5) { animation-delay: 0.3s; }
        .values-header h2 span:nth-child(6) { animation-delay: 0.35s; }
        .values-header h2 span:nth-child(7) { animation-delay: 0.4s; }
        .values-header h2 span:nth-child(8) { animation-delay: 0.45s; }
        .values-header h2 span:nth-child(9) { animation-delay: 0.5s; }
        .values-header h2 span:nth-child(10) { animation-delay: 0.55s; }
        .values-header h2 span:nth-child(11) { animation-delay: 0.6s; }
        .values-header h2 span:nth-child(12) { animation-delay: 0.65s; }
        .values-header h2 span:nth-child(13) { animation-delay: 0.7s; }

        .values-subtitle {
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUpDelay 1s ease forwards;
            animation-delay: 1s;
        }

        @keyframes fadeUpDelay {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Enhanced Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            position: relative;
        }

        /* Premium Value Cards */
        .value-card {
            position: relative;
            background: 
                linear-gradient(135deg, 
                    rgba(255, 255, 255, 0.1) 0%, 
                    rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(var(--blur-amount));
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 3rem 2rem;
            transition: var(--transition-smooth);
            cursor: pointer;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            animation: cardReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(214, 160, 25, 0.1) 0%, 
                transparent 50%, 
                rgba(255, 204, 0, 0.05) 100%);
            opacity: 0;
            transition: var(--transition-smooth);
            z-index: 0;
        }

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

        .value-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
            border-radius: 24px;
            z-index: -1;
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .value-card:hover::after {
            opacity: 0.3;
        }

        .value-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(214, 160, 25, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        @keyframes cardReveal {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Card Content */
        .card-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .value-icon {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
            border-radius: 20px;
            transition: var(--transition-bounce);
        }

        .value-icon::before {
            content: '';
            position: absolute;
            inset: 2px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 18px;
            z-index: 0;
        }

        .value-icon i {
            font-size: 2rem;
            color: var(--primary-gold);
            position: relative;
            z-index: 1;
            transition: var(--transition-smooth);
        }

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

        .value-card:hover .value-icon i {
            color: var(--primary-gold-light);
        }

        .value-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
            transition: var(--transition-smooth);
        }

        .value-card:hover .value-title {
            color: var(--primary-gold-light);
        }

        .value-description {
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-tertiary);
            transition: var(--transition-smooth);
        }

        .value-card:hover .value-description {
            color: var(--text-secondary);
        }

        /* Card Animation Delays */
        .value-card:nth-child(1) { animation-delay: 0.2s; }
        .value-card:nth-child(2) { animation-delay: 0.3s; }
        .value-card:nth-child(3) { animation-delay: 0.4s; }
        .value-card:nth-child(4) { animation-delay: 0.5s; }
        .value-card:nth-child(5) { animation-delay: 0.6s; }
        .value-card:nth-child(6) { animation-delay: 0.7s; }

        /* Responsive Design */
        @media (max-width: 768px) {
            .values-section {
                padding: 5rem 3% 6rem;
            }

            .values-header {
                margin-bottom: 3rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .value-card {
                padding: 2rem 1.5rem;
            }

            .values-subtitle {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .values-section {
                padding: 4rem 5% 5rem;
            }

            .value-card {
                padding: 1.5rem 1rem;
            }

            .value-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 1.5rem;
            }

            .value-icon i {
                font-size: 1.5rem;
            }

            .value-title {
                font-size: 1.25rem;
            }

            .values-header h2{
                font-size: 2.2rem;
            }
        }

    

  /* Enhanced Achievements Section */
        .achievements-section {
            position: relative;
            padding: 8rem 0;
            background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 50%, #050505 100%);
            color: var(--text-primary);
            overflow: hidden;
            isolation: isolate;
        }

        .achievements-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-mesh);
            opacity: 0.4;
            z-index: -1;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        /* Enhanced Background Elements */
        .background-elements {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: -2;
            pointer-events: none;
        }

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            filter: blur(60px);
            opacity: 0.6;
            animation: floatOrb 15s ease-in-out infinite;
        }

        .floating-orb:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 15%;
            animation-delay: 0s;
        }

        .floating-orb:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 20%;
            animation-delay: 3s;
        }

        .floating-orb:nth-child(3) {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 70%;
            animation-delay: 6s;
        }

        .grid-pattern {
            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;
            mask: radial-gradient(circle at center, transparent 30%, black 70%);
            -webkit-mask: radial-gradient(circle at center, transparent 30%, black 70%);
        }

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -40px) scale(1.1); }
            66% { transform: translate(-20px, 30px) scale(0.9); }
        }

        /* Enhanced Header */
        .achievements-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .achievements-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            filter: blur(40px);
            z-index: -1;
        }

        .achievements-header h2 {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 50%, #fff8dc 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUpScale 1s ease-out 0.3s forwards;
        }

        .achievements-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            border-radius: 2px;
        }

        .achievements-header p {
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUpScale 1s ease-out 0.6s forwards;
        }

        /* Enhanced Grid */
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        /* Enhanced Achievement Cards */
        .achievement-card {
            position: relative;
            background: var(--bg-glass);
            backdrop-filter: blur(var(--blur-amount));
            -webkit-backdrop-filter: blur(var(--blur-amount));
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition-smooth);
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUpCard 0.8s ease-out forwards;
            isolation: isolate;
        }

        .achievement-card:nth-child(1) { animation-delay: 0.8s; }
        .achievement-card:nth-child(2) { animation-delay: 1s; }
        .achievement-card:nth-child(3) { animation-delay: 1.2s; }
        .achievement-card:nth-child(4) { animation-delay: 1.4s; }

        .achievement-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 100%);
            opacity: 0;
            transition: var(--transition-smooth);
            z-index: -1;
        }

        .achievement-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px var(--primary-gold),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border-color: var(--primary-gold);
        }

        .achievement-card:hover::before {
            opacity: 0.1;
        }

        /* Image Container */
        .achievement-image {
            position: relative;
            height: 220px;
            overflow: hidden;
            border-radius: 16px 16px 0 0;
        }

        .achievement-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
            z-index: 1;
            transition: var(--transition-smooth);
        }

        .achievement-card:hover .achievement-image::before {
            background: linear-gradient(180deg, rgba(214, 160, 25, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
        }

        .achievement-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
            filter: brightness(0.9) contrast(1.1);
        }

        .achievement-card:hover img {
            transform: scale(1.08);
            filter: brightness(1) contrast(1.2);
        }

        /* Card Content */
        .achievement-card-content {
            padding: 2rem;
            position: relative;
        }

        .achievement-card-content h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-gold);
            margin-bottom: 1rem;
            transition: var(--transition-smooth);
            position: relative;
        }

        .achievement-card-content h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold-light);
            transition: var(--transition-smooth);
        }

        .achievement-card:hover .achievement-card-content h3 {
            color: var(--primary-gold-light);
            transform: translateX(5px);
        }

        .achievement-card:hover .achievement-card-content h3::after {
            width: 40px;
        }

        .achievement-card-content p {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-secondary);
            line-height: 1.7;
            transition: var(--transition-smooth);
        }

        .achievement-card:hover .achievement-card-content p {
            color: var(--text-primary);
        }

        /* Card Icon/Badge */
        .achievement-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: var(--bg-glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: var(--transition-smooth);
        }

        .achievement-badge::before {
            content: '✦';
            color: var(--primary-gold);
            font-size: 1.2rem;
            transition: var(--transition-smooth);
        }

        .achievement-card:hover .achievement-badge {
            background: var(--primary-gold);
            transform: rotate(180deg) scale(1.1);
        }

        .achievement-card:hover .achievement-badge::before {
            color: var(--bg-dark);
            transform: scale(1.2);
        }

        /* Enhanced Curves */
        .curve-top, .curve-bottom {
            position: absolute;
            left: 0;
            width: 100%;
            height: auto;
            z-index: 1;
        }

        .curve-top {
            top: -1px;
        }

        .curve-bottom {
            bottom: -1px;
        }

        .curve-top path, .curve-bottom path {
            fill: #1a1a1a;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        /* Enhanced Animations */
        @keyframes fadeUpScale {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes fadeUpCard {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                padding: 0 1.5rem;
            }
            
            .achievements-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .achievements-section {
                padding: 6rem 0;
            }

            .container {
                padding: 0 1rem;
            }

            .achievements-header {
                margin-bottom: 3rem;
            }

            .achievements-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .achievement-image {
                height: 180px;
            }

            .achievement-card-content {
                padding: 1.5rem;
            }

            .achievement-card-content h3 {
                font-size: 1.3rem;
            }

            .achievement-card-content p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .achievements-section {
                padding: 4rem 0;
            }

            .achievement-image {
                height: 160px;
            }

            .achievement-card-content {
                padding: 1.25rem;
            }

            .achievement-card-content h3 {
                font-size: 1.2rem;
            }

            .achievement-card-content p {
                font-size: 0.9rem;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus states */
        .achievement-card:focus-within {
            outline: 2px solid var(--primary-gold);
            outline-offset: 4px;
        }









     /* Services Section Styles with Enhanced Design */
        .services-section {
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 1) 0%, 
                rgba(248, 250, 252, 1) 30%, 
                rgba(255, 255, 255, 1) 70%, 
                rgba(243, 244, 246, 1) 100%);
            position: relative;
            overflow: hidden;
        }

        /* Enhanced Background Elements */
        .services-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 25% 25%, rgba(214, 160, 25, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(214, 160, 25, 0.02) 0%, transparent 50%);
            z-index: -1;
            animation: backgroundShift 20s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-20px, -20px) rotate(1deg); }
        }

        /* Floating Geometric Elements */
        .background-circles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            pointer-events: none;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, 
                rgba(214, 160, 25, 0.08) 0%, 
                rgba(214, 160, 25, 0.02) 100%);
            border: 1px solid rgba(214, 160, 25, 0.1);
            backdrop-filter: blur(10px);
            animation: floatCircle linear infinite;
        }

        .circle:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 15%;
            animation-duration: 25s;
            animation-name: float1;
        }

        .circle:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 10%;
            animation-duration: 30s;
            animation-name: float2;
        }

        .circle:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 80%;
            left: 20%;
            animation-duration: 35s;
            animation-name: float3;
        }

        .circle:nth-child(4) {
            width: 120px;
            height: 120px;
            top: 30%;
            right: 25%;
            animation-duration: 28s;
            animation-name: float4;
        }

        .circle:nth-child(5) {
            width: 80px;
            height: 80px;
            top: 45%;
            left: 60%;
            animation-duration: 32s;
            animation-name: float5;
        }

        @keyframes float1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
            25% { transform: translate(30px, -40px) rotate(90deg); opacity: 0.6; }
            50% { transform: translate(-20px, -60px) rotate(180deg); opacity: 0.4; }
            75% { transform: translate(-40px, 20px) rotate(270deg); opacity: 0.5; }
        }

        @keyframes float2 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
            33% { transform: translate(-50px, 30px) rotate(120deg); opacity: 0.6; }
            66% { transform: translate(40px, -30px) rotate(240deg); opacity: 0.3; }
        }

        @keyframes float3 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
            50% { transform: translate(60px, -80px) rotate(180deg); opacity: 0.3; }
        }

        @keyframes float4 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
            25% { transform: translate(-30px, 50px) rotate(90deg); opacity: 0.5; }
            50% { transform: translate(20px, 30px) rotate(180deg); opacity: 0.4; }
            75% { transform: translate(40px, -20px) rotate(270deg); opacity: 0.6; }
        }

        @keyframes float5 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
            50% { transform: translate(-40px, 60px) rotate(180deg); opacity: 0.6; }
        }

        /* Services Header Styles */
        .services-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .services-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(214, 160, 25, 0.5) 50%, 
                transparent 100%);
            transform: translate(-50%, 150%);
            border-radius: 2px;
        }

        .services-header h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-family: 'Libre Baskerville', serif;
            color: var(--text-dark);
            font-weight: 700;
            letter-spacing: 0.02em;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .services-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
            border-radius: 2px;
            animation: underlineExpand 2s ease-out 0.5s forwards;
        }

        @keyframes underlineExpand {
            to { width: 100%; }
        }

        .services-header h2 span {
            opacity: 0;
            transform: translateY(30px);
            animation: letterReveal 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
            display: inline-block;
            position: relative;
        }

        @keyframes letterReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sequential animation delays */
        .services-header h2 span:nth-child(1) { animation-delay: 0.1s; }
        .services-header h2 span:nth-child(2) { animation-delay: 0.15s; }
        .services-header h2 span:nth-child(3) { animation-delay: 0.2s; }
        .services-header h2 span:nth-child(4) { animation-delay: 0.25s; }
        .services-header h2 span:nth-child(5) { animation-delay: 0.3s; }
        .services-header h2 span:nth-child(6) { animation-delay: 0.35s; }
        .services-header h2 span:nth-child(7) { animation-delay: 0.4s; }
        .services-header h2 span:nth-child(8) { animation-delay: 0.45s; }
        .services-header h2 span:nth-child(9) { animation-delay: 0.5s; }
        .services-header h2 span:nth-child(10) { animation-delay: 0.55s; }
        .services-header h2 span:nth-child(11) { animation-delay: 0.6s; }

/* Background Pattern */
.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pattern-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 160, 25, 0.08) 0%, transparent 70%);
}

.pattern-element:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    animation: float-slow 20s infinite ease-in-out;
}

.pattern-element:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    animation: float-slow 25s infinite ease-in-out reverse;
}

.pattern-element:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-slow 30s infinite ease-in-out;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Container */
.services-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}


.header-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(214, 160, 25, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Categories Grid */
.services-categories {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Category Section */
.category-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(214, 160, 25, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.category-section:hover::before {
    transform: scaleX(1);
}

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

/* Dark Variant */
.category-section.dark-variant {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-color: rgba(214, 160, 25, 0.2);
}

.dark-variant .category-title,
.dark-variant .service-item h4 {
    color: var(--text-primary);
}

.dark-variant .category-desc,
.dark-variant .service-item p {
    color: var(--text-secondary);
}

.dark-variant .service-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(214, 160, 25, 0.2);
}

.dark-variant .service-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}



.category-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: white;
    flex-shrink: 0;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.category-desc {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
    font-weight: 500;
}




/* Services Row */
.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Service Item */
.service-item {
    background: rgba(250, 250, 250, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(214, 160, 25, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-item:hover::after {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(214, 160, 25, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-item:hover .service-icon {
    background: var(--primary-gold);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.service-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-item p {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-link span {
    position: relative;
}

.service-link span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.service-link:hover span::after {
    width: 100%;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Call to Action */
.services-cta {
    text-align: center;
    margin-top: 4rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-gold-light));
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(214, 160, 25, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(214, 160, 25, 0.4);
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.view-all-btn:hover .btn-arrow {
    background: rgba(0, 0, 0, 0.2);
    transform: translateX(5px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Stagger animation for category sections */
.category-section:nth-child(1) { transition-delay: 0.1s; }
.category-section:nth-child(2) { transition-delay: 0.2s; }
.category-section:nth-child(3) { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 968px) {
    .services-section {
        padding: 80px 0;
    }

    .services-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-section {
        padding: 2rem;
    }

    .services-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-container {
        padding: 0 4%;
    }

    .category-section {
        border-radius: 24px;
        padding: 1.5rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .view-all-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Dark mode adjustments for better contrast */
.dark-variant .service-link {
    color: var(--primary-gold-light);
}

.dark-variant .service-icon {
    background: rgba(214, 160, 25, 0.2);
}



        /* Enhanced Trusted Section */
        .trusted-section {
            position: relative;
            padding: 120px 5% 100px;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 1) 0%, 
                rgba(250, 248, 245, 1) 40%,
                rgba(255, 255, 255, 1) 100%);
            overflow: hidden;
            text-align: center;
            z-index: 1;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /* Sophisticated Background Elements */
        .background-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, 
                rgba(214, 160, 25, 0.08) 0%, 
                rgba(255, 204, 0, 0.04) 50%,
                rgba(214, 160, 25, 0.02) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(214, 160, 25, 0.1);
            animation: floatOrb ease-in-out infinite;
        }

        .floating-orb:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation-duration: 20s;
            animation-delay: 0s;
        }

        .floating-orb:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 20%;
            right: 8%;
            animation-duration: 25s;
            animation-delay: -5s;
        }

        .floating-orb:nth-child(3) {
            width: 120px;
            height: 120px;
            bottom: 15%;
            left: 10%;
            animation-duration: 30s;
            animation-delay: -10s;
        }

        .floating-orb:nth-child(4) {
            width: 80px;
            height: 80px;
            top: 50%;
            left: 20%;
            animation-duration: 18s;
            animation-delay: -8s;
        }

        .floating-orb:nth-child(5) {
            width: 100px;
            height: 100px;
            bottom: 25%;
            right: 15%;
            animation-duration: 22s;
            animation-delay: -12s;
        }

        /* Grid Pattern Overlay */
        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            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: 60px 60px;
            opacity: 0.5;
            animation: gridFloat 40s linear infinite;
        }

        /* Enhanced Typography */
        .trusted-title {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            background: linear-gradient(135deg, 
                var(--primary-gold) 0%, 
                var(--primary-gold-light) 50%,
                var(--primary-gold) 100%);
            -webkit-background-clip: text;
          color: rgba(0, 0, 0, 0.8);
            background-clip: text;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 4px;
            position: relative;
            display: inline-block;
            filter: drop-shadow(0 4px 8px rgba(214, 160, 25, 0.2));
        }

        .trusted-title::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -50px;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-gold));
            transform: translateY(-50%);
        }

        .trusted-title::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50px;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-gold), transparent);
            transform: translateY(-50%);
        }

        .trusted-title span {
            display: inline-block;
            opacity: 0;
            transform: translateY(30px) rotateX(90deg);
            animation: letterReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        .trusted-title span:nth-child(1) { animation-delay: 0.1s; }
        .trusted-title span:nth-child(2) { animation-delay: 0.15s; }
        .trusted-title span:nth-child(3) { animation-delay: 0.2s; }
        .trusted-title span:nth-child(4) { animation-delay: 0.25s; }
        .trusted-title span:nth-child(5) { animation-delay: 0.3s; }
        .trusted-title span:nth-child(6) { animation-delay: 0.35s; }
        .trusted-title span:nth-child(7) { animation-delay: 0.4s; }
        .trusted-title span:nth-child(8) { animation-delay: 0.5s; }
        .trusted-title span:nth-child(9) { animation-delay: 0.55s; }
        .trusted-title span:nth-child(10) { animation-delay: 0.65s; }
        .trusted-title span:nth-child(11) { animation-delay: 0.7s; }
        .trusted-title span:nth-child(12) { animation-delay: 0.75s; }
        .trusted-title span:nth-child(13) { animation-delay: 0.8s; }
        .trusted-title span:nth-child(14) { animation-delay: 0.85s; }
        .trusted-title span:nth-child(15) { animation-delay: 0.9s; }
        .trusted-title span:nth-child(16) { animation-delay: 0.95s; }
        .trusted-title span:nth-child(17) { animation-delay: 1s; }
        .trusted-title span:nth-child(18) { animation-delay: 1.05s; }
        .trusted-title span:nth-child(19) { animation-delay: 1.1s; }
        .trusted-title span:nth-child(20) { animation-delay: 1.15s; }
        .trusted-title span:nth-child(21) { animation-delay: 1.2s; }

        .trusted-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1rem, 2.5vw, 1.4rem);
            font-weight: 400;
            color: rgba(0, 0, 0, 0.8);
            max-width: 700px;
            margin: 0 auto 80px auto;
            line-height: 1.6;
            letter-spacing: 0.5px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUpDelayed 1s ease forwards 1.5s;
            position: relative;
        }

        /* Enhanced Logo Container */
        .logos-container {
            width: 100%;
            position: relative;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(214, 160, 25, 0.1);
            border-radius: 20px;
            padding: 40px 0;
            margin-top: 60px;
            box-shadow: 
                0 20px 40px rgba(214, 160, 25, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeUpDelayed 1s ease forwards 2s;
        }

        .logos-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(214, 160, 25, 0.1), 
                transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        .logos-slider {
            display: flex;
            align-items: center;
            gap: 80px;
            animation: infiniteScroll 50s linear infinite;
            padding: 20px 0;
        }

        /* Premium Logo Items */
        .logo-item {
            flex: 0 0 auto;
            width: 180px;
            height: 120px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(214, 160, 25, 0.1);
            border-radius: 16px;
            padding: 20px;
            transition: var(--transition-smooth);
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(214, 160, 25, 0.06);
        }

        .logo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(214, 160, 25, 0.05) 0%, 
                transparent 50%,
                rgba(255, 204, 0, 0.03) 100%);
            opacity: 0;
            transition: var(--transition-smooth);
            z-index: 1;
        }

        .logo-item:hover::before {
            opacity: 1;
        }

        .logo-item:hover {
            transform: translateY(-8px) scale(1.05);
            border-color: rgba(214, 160, 25, 0.3);
            box-shadow: 
                0 20px 60px rgba(214, 160, 25, 0.15),
                0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .logo-img {
            width: 100%;
            height: auto;
            max-height: 80px;
            object-fit: contain;
            transition: var(--transition-smooth);
            filter: brightness(0.8) contrast(1.1) saturate(0.9);
            position: relative;
            z-index: 2;
        }

        .logo-item:hover .logo-img {
            filter: brightness(1) contrast(1.2) saturate(1.1);
            transform: scale(1.1);
        }

        /* Scroll pause on hover */
        .logos-container:hover .logos-slider {
            animation-play-state: paused;
        }

        /* Enhanced Animations */
        @keyframes floatOrb {
            0%, 100% { 
                transform: translate(0, 0) rotate(0deg) scale(1); 
            }
            25% { 
                transform: translate(30px, -20px) rotate(90deg) scale(1.05); 
            }
            50% { 
                transform: translate(-20px, 30px) rotate(180deg) scale(0.95); 
            }
            75% { 
                transform: translate(-30px, -10px) rotate(270deg) scale(1.02); 
            }
        }

        @keyframes gridFloat {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        @keyframes letterReveal {
            0% {
                opacity: 0;
                transform: translateY(30px) rotateX(90deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) rotateX(0deg);
            }
        }

        @keyframes fadeUpDelayed {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes infiniteScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-260px * 10));
            }
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .trusted-section {
                padding: 100px 4% 80px;
            }
            
            .logo-item {
                width: 160px;
                height: 100px;
            }
            
            .logos-slider {
                gap: 60px;
            }
        }

        @media (max-width: 768px) {
            .trusted-section {
                padding: 80px 5% 60px;
                min-height: 70vh;
            }
            
            .trusted-title {
                letter-spacing: 2px;
                margin-bottom: 25px;
            }
            
            .trusted-title::before,
            .trusted-title::after {
                display: none;
            }
            
            .trusted-subtitle {
                margin-bottom: 60px;
            }
            
            .logos-container {
                margin-top: 40px;
                padding: 30px 0;
                border-radius: 16px;
            }
            
            .logo-item {
                width: 140px;
                height: 90px;
                padding: 15px;
            }
            
            .logos-slider {
                gap: 40px;
            }
            
            .floating-orb {
                opacity: 0.3;
            }
        }

        @media (max-width: 480px) {
            .trusted-section {
                padding: 60px 5% 50px;
            }
            
            .trusted-subtitle {
                margin-bottom: 50px;
            }
            
            .logos-container {
                margin-top: 30px;
                padding: 25px 0;
            }
            
            .logo-item {
                width: 120px;
                height: 80px;
                padding: 12px;
            }
            
            .logo-img {
                max-height: 60px;
            }
            
            .logos-slider {
                gap: 30px;
            }

            .trusted-title{
                font-size: clamp(2rem, 5vw, 3rem);
            }
        }




        /* Enhanced Contact Section */
        .contact-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(var(--primary-gradient), var(--secondary-gradient)), 
                        url('../images/nig.png') center/cover;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 0;
            overflow: hidden;
        }

        /* Animated Background Elements */
        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-mesh);
            opacity: 0.9;
            z-index: 1;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 2;
        }

        .shape {
            position: absolute;
            background: linear-gradient(45deg, var(--accent-glow), transparent);
            border-radius: 50%;
            animation: float 20s infinite linear;
            opacity: 0.1;
        }

        .shape:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 300px;
            height: 300px;
            top: 60%;
            right: 10%;
            animation-delay: -5s;
        }

        .shape:nth-child(3) {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 20%;
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(30px) rotate(240deg); }
        }

        /* Enhanced Map Marker */
        .map-marker {
            position: absolute;
            top: 78%;
            left: 35%;
            transform: translate(-50%, -50%);
            z-index: 4;
            cursor: pointer;
        }

        .marker-pulse {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--background) 0%, transparent 70%);
            position: relative;
            animation: pulse 2s infinite;
        }

        .marker-dot {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: var(--background);
            border: 3px solid white;
            border-radius: 50%;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
            100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
        }

        /* Main Content Container */
        .contact-container {
            position: relative;
            z-index: 3;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }

        /* Enhanced Header */
        .contact-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .contact-header h2 {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 700;
            color: var(--background);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .contact-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--background), transparent);
            border-radius: 2px;
        }

        .contact-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            font-weight: 300;
            letter-spacing: 0.5px;
            margin-top: 30px;
        }

        /* Enhanced Content Grid */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Glass Card Styling */
        .contact-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            transition: var(--transition-smooth);
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--background), transparent);
            opacity: 0.6;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: var(--background);
        }

        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--background), var(--hover-color));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            box-shadow: 0 8px 16px var(--accent-glow);
        }

        .card-icon i {
            font-size: 1.5rem;
            color: var(--text-dark);
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        /* Location Information */
        .location-info {
            margin-bottom: 30px;
        }

        .address {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 12px 0;
            transition: var(--transition-smooth);
        }

        .contact-item:hover {
            color: var(--background);
            transform: translateX(5px);
        }

        .contact-item i {
            width: 24px;
            margin-right: 15px;
            color: var(--background);
            font-size: 1rem;
        }

        .contact-item a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .contact-item a:hover {
            color: var(--background);
        }

        /* Management Section */
        .management-grid {
            display: grid;
            gap: 25px;
        }

        .manager-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 25px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .manager-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--background), var(--hover-color));
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .manager-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--glass-border);
            transform: translateX(8px);
        }

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

        .manager-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .manager-title {
            font-size: 1rem;
            color: var(--background);
            font-weight: 500;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

        .manager-contact {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .manager-contact-item {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            color: var(--text-tertiary);
        }

        .manager-contact-item i {
            width: 16px;
            margin-right: 10px;
            color: var(--background);
            font-size: 0.8rem;
        }

        .manager-contact-item a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .manager-contact-item a:hover {
            color: var(--background);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .contact-content {
                gap: 40px;
            }
            
            .contact-container {
                padding: 0 30px;
            }
        }

        @media (max-width: 968px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .contact-section {
                padding: 80px 0;
            }
            
            .contact-header {
                margin-bottom: 60px;
            }
        }

        @media (max-width: 768px) {
            .contact-container {
                padding: 0 20px;
            }
            
            .contact-card {
                padding: 30px 25px;
            }
            
            .contact-header h2 {
                font-size: 2.5rem;
            }
            
            .card-header {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .card-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .map-marker {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 60px 0;
            }
            
            .contact-card {
                padding: 25px 20px;
                border-radius: 16px;
            }
            
            .contact-header h2 {
                font-size: 2rem;
            }
            
            .contact-subtitle {
                font-size: 1rem;
            }
        }

        /* Loading Animation */
        .contact-section {
            animation: fadeIn 1s ease-in-out;
        }

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

        .contact-card {
            animation: slideUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(50px);
        }

        .contact-card:nth-child(1) { animation-delay: 0.2s; }
        .contact-card:nth-child(2) { animation-delay: 0.4s; }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


  /* 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: var(--text-primary);
            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);
        }

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

        .footer-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);
        }

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

        .footer-stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            display: block;
        }

        .footer-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: var(--text-primary);
            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: var(--text-primary);
            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: var(--text-primary);
            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;
        }

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

        .footer-social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-primary);
            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;
        }

        .footer-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);
        }

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

        .footer-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: var(--text-primary);
            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: var(--text-primary);
            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;
            }

            .footer-ompany-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;
            }

            .footer-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;
            }
            .footer-company-stats{
               display: none; 
            }

            .footer-logo{
                width: 100px;
            }

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

/* No Jobs Message Styles */
.no-jobs-message {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(214, 160, 25, 0.15);
    border-radius: 20px;
    margin: 2rem 0;
    color: var(--text-primary);
}

.no-jobs-message h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.no-jobs-message p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--primary-gold);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition-smooth);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
}

.video-modal-close:hover {
    color: var(--primary-gold-light);
    background: rgba(214, 160, 25, 0.2);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 18px;
    outline: none;
}

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

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Video Modal */
@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95vw;
        max-height: 80vh;
        border-radius: 15px;
    }
    
    .video-modal-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }
    
    .video-container video {
        border-radius: 13px;
    }
}