@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

        :root {
        /* BRAND COLOR PALETTE */
            --primary-navy: #1A365D;       
            --accent-orange: #E67E22;      
            --text-charcoal: #2C3E50;      
            --bg-light: #F8F9FA;           
        }

        body {
            font-family: Poppins;
            color: var(--text-charcoal);
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--primary-navy);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: #1A365D !important;
            transition: background-color 0.3s, padding 0.3s, box-shadow 0.3s;
            min-height: 85px;
        }

         .navbar-logo {
            height: 70px; 
        }

        .navbar-nav{
            margin-left: auto;
            padding-left: -200px;
        }

        .nav-link {
            color: #ffffffe6 !important;
            transition: color 0.3s;
        }

        .nav-link:hover { 
            color: var(--accent-orange) !important; 
        }

        /* CUSTOM OVERLAY & SLIDING MENU */
        .nav-overlay {
            position: fixed;
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%;
            background-color: #000000a6;
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .custom-mobile-menu {
            position: fixed;
            top: 0;
            right: -100%; 
            width: 80%;
            z-index: 1045;
            background: linear-gradient(180deg, #2C3E50 0%, #1a252f 100%);
            border-top-left-radius: 24px;
            border-bottom-left-radius: 24px;
            box-shadow: -10px 0 30px #00000066;
            transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            font-family: Poppins, sans-serif;
        }

        .custom-mobile-menu.menu-open {
            right: 0; 
        }

        /* FROSTED PILL MOBILE MENU */
        .brand-circle-icon {
            width: 50px;
            height: 50px;
            background: #f8f9fa26; 
            backdrop-filter: blur(10px);
            font-size: 1.3rem;
            color: #F8F9FA;
            border: 1px solid #f8f9fa33;
        }

        /* The Close Button */
        .frosted-close-btn {
            background: #f8f9fa26;
            backdrop-filter: blur(10px);
            border: 1px solid #f8f9fa33;
            color: #F8F9FA;
            width: 35px;
            height: 35px;
            transition: all 0.2s ease;
        }

        .frosted-close-btn:hover {
            background: #f8f9fa4d;
        }

        /* THE PILL LINKS */
        .frosted-pill {
            padding: 10px 20px;            
            background: #f8f9fa1a; 
            color: #F8F9FA !important;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .frosted-pill .frosted-icon {
            font-size: 1.2rem;
            width: 24px;
            opacity: 0.8;
        }

        .frosted-pill:hover, .active-pill {
            background: #F8F9FA !important; 
            color: #2C3E50 !important;      
            transform: scale(1.02);         
        }

        .frosted-pill:hover .frosted-icon, .active-pill .frosted-icon {
            color: #E67E22;
            opacity: 1;
        }

        /* MENU LIST SEPARATORS */
         .menu-list .nav-item {
            border-bottom: 1px solid #f8f9fa1a; 
            padding-bottom: 20px; 
            margin-bottom: 20px; 
        }

        .menu-list .nav-item:last-child {
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        /* BOTTOM CTA BUTTON */
        .frosted-cta {
            background-color: #E67E22;
            color: #F8F9FA;
            text-transform: uppercase;
            letter-spacing: 1px;
            }

        .frosted-cta:hover {
            background-color: #d6711a;
            color: #fff;
        }

        /* --- Buttons --- */
        .btn-accent {
            background-color: var(--accent-orange);
            transition: all 0.3s;
        }

        .btn-accent:hover { 
            background-color: #cf6d18; 
            color: #fff; 
            transform: translateY(-2px); 
            box-shadow: 0 10px 20px #e67e224d;
        }


        .btn-custom-outline {
            color: #fff;
            border: 2px solid #ffffff99;
            transition: all 0.3s;
        }

        .btn-custom-outline:hover {
            border-color: #fff;
            color: var(--primary-navy);
            background-color: #fff;
        }

        /* --- SECTION 1: HERO --- */
        .hero-section {
            padding-top: 100px;
            padding-bottom: 50px;
            background-image: linear-gradient(135deg, #1a365dd9 0%, #142846f2 100%), url('/assets/images/stadium-construction-construction-equipment-and-w-2026-01-11-09-00-08-utc.webp');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }

        .hero-badge {
            background-color: #e67e2226;
            color: var(--accent-orange);
            border: 1px solid #e67e224d;
            box-shadow: 0 4px 15px #0000001a;
        }

        .hero-badge i { 
            color: var(--accent-orange); 
        }

        .hero-title {
            line-height: 1.1;
            margin-bottom: 1.2rem;
            letter-spacing: -1.5px;
        }

        .lead{
            max-width: 600px;
        }

        .hero-card {
            border-radius: 20px;
            box-shadow: 0 15px 35px #00000026;
            transition: transform 0.3s;
        }

        .hero-card:hover { 
            transform: translateY(-5px); 
        }
        
        .hero-card.accent { 
            background-color: var(--primary-navy); 
            border: 1px solid #ffffff1a;
        }

        .hero-card.accent i {
            color: var(--accent-orange); 
        }
        
        .hero-card-img {
            height: 140px;
            border-radius: 12px;
        }

        .hero-card-title{
            color: var(--primary-navy);
        }

        .hero-card-sub{
            color: var(--text-charcoal);
        }

        .avatar-group img {
            width: 40px;
            height: 40px;
            border: 2px solid #fff;
            margin-left: -12px;
        }

        /* --- CREATIVE SECTION 2: LIQUID GLASS BENTO BOX --- */
        .about-glass-section {
            padding: 100px 0;
            background-image: linear-gradient(135deg, #1a365d68 0%, #1428460a 100%), url('/assets/images/BlueRays2001.webp');
            background-size: cover;
            background-position: center center;
            background-attachment: scroll; 
        }

        .glass-card {
            background: #ffffff00; 
            backdrop-filter: blur(16px) saturate(120%);
            -webkit-backdrop-filter: blur(16px) saturate(120%);
            border: 1px solid #ffffff26;
            border-radius: 24px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
            color: #ffffff;
            padding: 40px;
            height: 100%;
            transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px 0 #00000059;
        }

        .glass-card-orange {
            background: #ffffff00;
        }

        .glass-card-header{
            color: var(--accent-orange);
            letter-spacing: 1px;
        }

        .glass-card-sub{
            color: #ffffffd9;
        }

        .small-card-sub{
            color: #fff;
        }
        
        .glass-icon-box {
            background: #ffffff1a;
            width: 60px; 
            height: 60px;
            border-radius: 12px;
            border: 1px solid #ffffff26;
        }

        .stat-huge { 
            font-weight: 900; 
            letter-spacing: -2px; 
        }

        .stat-huge-sub{
            color: #ffffffcc;
        }

        .plus-icon{
            color:#ffffffb3;
        }

        /* --- CREATIVE SECTION 3: EDITORIAL LEADERSHIP --- */
        .leadership-section {
            background-color: var(--primary-navy);
            padding: 120px 0;
        }

        .leadership-watermark {
            top: 50px;
            left: -5%;
            font-size: 12vw;
            font-weight: 900;
            color: #ffffff08;
            white-space: nowrap;
            pointer-events: none;
        }

        .leader-title{
            color: var(--accent-orange);
            letter-spacing: 2px;
        }

        .leader-sub{
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .portrait-wrapper::before {
            content: '';
            position: absolute;
            top: 30px;
            left: -30px;
            width: 100%;
            height: 100%;
            border: 4px solid var(--accent-orange);
            border-radius: 16px;
            z-index: -1;
        }
        
        .portrait-img {
            height: 670px ;
            box-shadow: 0 20px 50px #00000080;
        }

        .credential-list { 
            border-left: 2px solid #ffffff1a; 
            padding-left: 30px; 
        }

        .credential-item { 
            margin-bottom: 25px; 
        }
        
        .credential-item::before {
            content: '';
            position: absolute;
            left: -37px;
            top: 4px;
            width: 12px;
            height: 12px;
            background-color: var(--accent-orange);
            border-radius: 50%;
            box-shadow: 0 0 0 4px var(--primary-navy);
        }

        .reg-badge {
            background: #ffffff0d;
            border: 1px solid #ffffff1a;
            padding: 12px 24px;
            font-family: monospace;
            font-size: 1.1rem;
            color: var(--accent-orange);
        }

        /* --- CREATIVE SECTION 4: INTERACTIVE SERVICE CARDS --- */
        .services-editorial {
            padding: 120px 0;
        }

        .sticky-text-wrapper {
            position: sticky;
            top: 120px;
        }

        .service-header{
            color: var(--accent-orange);
            letter-spacing: 1px;
        }

        .service-main-title {
            font-size: 4.5rem;
            color: var(--primary-navy);
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
        }

        .service-sub{
            color: var(--text-charcoal);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .swipe-card {
            background-color: var(--bg-light);
            padding: 40px;
            min-height: 380px;
            box-shadow: 0 8px 32px 0 #0000001f;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #00000005;
        }

        .swipe-icon {
            width: 65px;
            height: 65px;
            background-color: #1a365d14; 
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.4s ease, color 0.4s ease;
        }

        .swipe-desc {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-charcoal);
            transition: color 0.4s ease;
        }

        .swipe-divider {
            height: 1px;
            background-color: #0000001a;  
            transition: background-color 0.4s ease;
        }

        .swipe-title {
            font-size: 1.1rem;
            color: var(--primary-navy);
            transition: color 0.4s ease;
        }

        .swipe-card:hover {
            background-color: var(--accent-orange);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px #e67e2233;
            border-color: var(--accent-orange);
        }

        .swipe-card:hover .swipe-icon {
            background-color: #ffffff33; 
            color: #fff;
            transform: rotate(15deg) scale(1.15); 
        }

        .swipe-card:hover .swipe-desc,
        .swipe-card:hover .swipe-title {
            color: #fff;
        }

        .swipe-card:hover .swipe-divider {
            background-color: #ffffff66;
        }

        /* --- CREATIVE SECTION 5: OUR WORK (Center-Focus Layout) --- */
        .work-center-section {
            background: #f8f9fa;
            padding: 120px 0;
        }

        .work-header-head{
            color: var(--accent-orange);
            letter-spacing: 2px;
        }

        .work-header-title {
            color: var(--primary-navy);
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .work-headers-sub {
            color: var(--text-charcoal);
            font-size: 1.1rem;
            max-width: 650px;
        }

        .work-card {
            background: #ffffff0f;
            border: 1px solid #ffffff14;
            padding: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px 0 #0000001f;
        }

        .work-card:hover {
            background: #ffffff1a;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px #00000033;
        }

        .work-icon-box {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            box-shadow: 0 4px 10px #0000001a;
        }

        .work-icon-box i {
            color: var(--accent-orange);
            font-size: 1.2rem;
        }

        .work-card-title {
            font-size: 1.15rem;
            color: var(--primary-navy);
            }

        .work-location-badge {
            font-size: 0.75rem;
            background: #e67e2226;
            color: var(--accent-orange);
            padding: 4px 10px;
            font-weight: 600;
        }

        .work-card-desc {
            color: var(--text-charcoal);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .work-center-img-wrapper {
            min-height: 500px;
            border-radius: 24px;
            box-shadow: 0 20px 50px #00000066;
        }

        .work-center-img {
            transition: transform 0.7s ease;
        }

        .work-center-img-wrapper:hover .work-center-img {
            transform: scale(1.05);
        }

        /* --- Contact --- */
        .contact-section { 
            background-color: var(--bg-light); 
            padding: 100px 0;  
        }

        .contact-header{
            color: var(--accent-orange);
            letter-spacing: 1px;
        }

        .contact-info-icon {
            width: 45px;
            height: 45px;
            background: var(--primary-navy);
            margin-right: 15px;
        }

        .contact-info{
            color: var(--primary-navy);
        }

        .contact-form {
            border-radius: 24px;
            padding: 40px;
            border: 1px solid #eaeaea;
            box-shadow: 0 15px 40px #1a365d0d;
        }

        .contact-form-title{
            color: var(--primary-navy);
        }

        .form-control { 
            font-size: 0.75rem;
            background-color: var(--bg-light); 
            border: 1px solid #e0e0e0; 
            padding: 14px; 
        }

        .form-control:focus { 
            border-color: var(--primary-navy); 
            box-shadow: 0 0 0 0.25rem #1a365d1a; 
        }

        .alert{
          background-color: #27ae601a; 
          color: var(--accent-green); 
          border: 1px solid #27ae6033;  
        }

        footer { 
            background-color: var(--primary-navy); 
            color: #a0aec0; 
            padding: 40px 0; 
            font-size: 0.95rem; 
        }