:root {
            --brand: #0a3d62;
            --brand-light: #1e6ba8;
            --brand-dark: #062740;
            --accent: #00a8e8;
            --soft: #f0f5fa;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: #fff;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            padding: 0.8rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.12);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--brand) !important;
            letter-spacing: -0.5px;
        }
		
		.navbar-brand img{
            width: 220px; 
			height: auto; 
        }

        .navbar-brand span {
            color: var(--accent);
        }

        .nav-link {
            font-weight: 500;
            font-size: 0.95rem;
            color: #333 !important;
            padding: 0.5rem 1rem !important;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--brand-light) !important;
        }

        /* Underline uses ::before so dropdown arrow can use ::after */
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            transform: scaleX(1);
        }

        /* Don't show underline on CTA button */
        .say-helllo .nav-link::before {
            display: none;
        }

        .btn-brand {
			background: #ffffff;
			color: #195e95;
			border: none;
			font-weight: 600;
			padding: 0.6rem 1.5rem;
			border-radius: 6px;
			line-height: 28px;
			transition: all 0.3s ease;
		} 

        .btn-brand:hover {
            background: var(--brand-light);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(10, 61, 98, 0.3);
        }

        .btn-outline-light-custom {
            border: 2px solid #fff;
            color: #fff;
            font-weight: 600;
            padding: 0.6rem 1.5rem;
            border-radius: 6px;
            transition: all 0.3s ease;
			line-height: 24px; 
        }

        .btn-outline-light-custom:hover {
            background: #fff;
            color: var(--brand);
        }

        /* ===== MEGA MENU ===== */
        .nav-item.mega-dropdown {
            position: static;
        }

        .mega-menu {
            width: 100%;
            left: 0 !important;
            right: 0 !important;
            padding: 2rem 0;
            border: none;
            border-radius: 0;
            box-shadow: 0 15px 40px rgba(10, 61, 98, 0.12);
            margin-top: 0;
            border-top: 1px solid #e8eef4;
        }

        .mega-menu .mega-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        } 

        .mega-menu .mega-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--brand);
            margin-bottom: 1.25rem;
        }

        .mega-services-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem 1.25rem;
        }

        .mega-service-item {
            text-align: center;
            text-decoration: none;
            color: #333;
            transition: all 0.25s ease;
            padding: 0.5rem;
            border-radius: 8px;
        }

        .mega-service-item:hover {
            color: var(--brand);
            background: #f5f9fc;
        }

        .mega-service-icon {
            width: 64px;
            height: 64px;
            background: var(--brand);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.6rem;
            transition: all 0.3s ease;
        }

        .mega-service-item:hover .mega-service-icon {
            background: var(--brand-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 18px rgba(10, 61, 98, 0.25);
        }

        .mega-service-icon i {
            font-size: 1.5rem;
            color: #fff;
        }

        .mega-service-item span {
            display: block;
            font-size: 0.8rem;
            font-weight: 500;
            line-height: 1.3;
        }

        .mega-cta-box {
            background: #f5f9fc;
            border-radius: 10px;
            padding: 1.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .mega-cta-box h6 {
            font-weight: 700;
            color: var(--brand);
            font-size: 1rem;
            margin-bottom: 0.6rem;
        }

        .mega-cta-box p {
            font-size: 0.85rem;
            color: #5a6a7a;
            margin-bottom: 1rem;
            line-height: 1.55;
        }

        .mega-cta-box .btn {
            align-self: flex-start;
            background: #1a1a2e;
            color: #fff;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.5rem 1.2rem;
            border-radius: 4px;
            border: none;
        }

        .mega-cta-box .btn:hover {
            background: var(--brand);
            color: #fff;
        }

        /* Show mega menu on hover (desktop) */
        @media (min-width: 992px) {
            .mega-dropdown:hover > .mega-menu,
            .mega-dropdown .mega-menu:hover {
                display: block;
            }

            .mega-menu {
                display: none;
            }

            .mega-dropdown:hover > .nav-link {
                color: var(--brand-light) !important;
            }
        }

        @media (max-width: 1199.98px) {
            .mega-services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 991.98px) {
            .mega-menu {
                position: static !important;
                box-shadow: none;
                border: none;
                padding: 0.5rem 0;
                background: #f8fafc;
            }

            .mega-services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .mega-service-icon {
                width: 48px;
                height: 48px;
            }

            .mega-service-icon i {
                font-size: 1.15rem;
            }

            .mega-cta-box {
                margin-top: 1rem;
            }
        }

        /* ===== LOGO STRIP ===== */
        .logo-strip {
            background: var(--soft);
            padding: 2rem 0;
            overflow: hidden;
            border-bottom: 1px solid #e0e8f0;
        }

        .logo-track {
            display: flex;
            gap: 3.5rem;
            animation: marquee 25s linear infinite;
            width: max-content;
        }

        .logo-track:hover {
            animation-play-state: paused;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

		.logo-item {
			font-weight: 600; 
			white-space: nowrap;
			font-size: 0.95rem;
			display: flex;
			align-items: center;
			gap: 0.5rem;
			transition: all 0.3s;
		} 
		
		.logo-item img{
			max-width: 210px;
			height: auto;
		}   
    
       .logo-item:hover {
            opacity: 1;
            color: var(--brand);
        }

        .logo-item i {
            font-size: 1.2rem;
        }

        /* ===== SECTION COMMON ===== */
		
		
        .section-title {
            font-weight: 800;
            color: var(--brand-dark);
            margin-bottom: 0.5rem;
        }

		.section-subtitle {
			color: #062740; 
			max-width: 780px;
			margin: 0 auto 3rem;
			font-weight: 500;  
		} 

        /* ===== PROJECTS (Owl Carousel) ===== */
        .projects-carousel .owl-stage {
            display: flex;
            padding-top: 8px;
            padding-bottom: 20px;
        }

        .projects-carousel .owl-item {
            display: flex;
            height: auto;
        }

        .project-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(10,61,98,0.08);
            transition: all 0.4s ease;
            height: 100%;
            width: 100%;
            margin: 0 8px;
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(10,61,98,0.15);
        }

        .project-card .card-img-top {
            height: 210px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .project-card:hover .card-img-top {
            transform: scale(1.08);
        }

        .project-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--brand);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .project-card .card-body {
            padding: 1.25rem;
        }

        .project-card .card-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--brand-dark);
            margin-bottom: 0.3rem;
        }

        .project-card .card-text {
            font-size: 0.85rem;
            color: #6c7a89;
        }

        /* Owl nav & dots */
        .projects-carousel .owl-nav {
            position: absolute;
            top: 40%;
            width: 100%;
            margin: 0;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .projects-carousel .owl-nav button {
            pointer-events: all;
            width: 44px;
            height: 44px;
            border-radius: 50% !important;
            background: #fff !important;
            box-shadow: 0 4px 15px rgba(10,61,98,0.15);
            color: var(--brand) !important;
            font-size: 1.2rem !important;
            transition: all 0.3s ease;
            position: absolute;
        }

        .projects-carousel .owl-nav button:hover {
            background: var(--brand) !important;
            color: #fff !important;
        }

        .projects-carousel .owl-nav .owl-prev {
            left: -10px;
        }

        .projects-carousel .owl-nav .owl-next {
            right: -10px;
        }

        .projects-carousel .owl-dots {
            text-align: center;
            margin-top: 1.5rem;
        }

        .projects-carousel .owl-dots .owl-dot span {
            width: 15px;
            height: 15px;
            background: #c5d0dc;
            border-radius: 50%;
            display: inline-block;
            margin: 0 7px;
            transition: all 0.3s ease;
        } 

        .projects-carousel .owl-dots .owl-dot.active span,
        .projects-carousel .owl-dots .owl-dot:hover span {
            background: var(--brand);
            width: 28px;
            border-radius: 5px;
        }

        @media (max-width: 991.98px) {
            .projects-carousel .owl-nav .owl-prev { left: -5px; }
            .projects-carousel .owl-nav .owl-next { right: -5px; }
        }

        @media (max-width: 575.98px) {
            .projects-carousel .owl-nav { display: none; }
            .project-card { margin: 0 4px; }
        }

        /* ===== SERVICES ===== */
        .services-section {
            background: var(--soft);
        }

        .service-card {
            background: #fff;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            border: 1px solid transparent;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 0;
            background: var(--accent);
            transition: height 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(10,61,98,0.1);
            border-color: #e0e8f0;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: #e8f1f8;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--brand);
        }

        .service-icon i {
            font-size: 1.4rem;
            color: var(--brand);
            transition: color 0.3s ease;
        }

        .service-card:hover .service-icon i {
            color: #fff;
        }

        .service-card h5 {
            font-weight: 700;
            color: var(--brand-dark);
            margin-bottom: 0.75rem;
        }

        .service-card p {
            font-size: 0.9rem;
            color: #062740;
            line-height: 1.7;
            margin-bottom: 1.25rem;
			font-weight: 500; 
        } 

        .learn-link {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--brand-light);
            text-decoration: none;
        }

        .learn-link:hover {
            color: var(--brand);
        }

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

        .learn-link:hover i {
            transform: translateX(4px);
        }

        /* ===== SUSTAINABILITY ===== */
        .sustain-section {
            background: var(--brand);
            color: #fff;
            overflow: hidden;
        }

        .sustain-section .content-side {
            padding: 5rem 3rem 5rem 7rem;  
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sustain-section h2 {
            font-weight: 800;
            margin-bottom: 1.25rem;
        }

        .sustain-section p {
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 600px;
			font-weight: 400;
        }   

        .sustain-img {
            height: 100%;
            min-height: 400px;
            object-fit: cover;
            width: 100%;
            transition: transform 0.8s ease;
        }

        .sustain-section:hover .sustain-img {
            transform: scale(1.04);
        }

        /* ===== WHY US ===== */
        .why-card {
            text-align: center;
            transition: all 0.35s ease;
        }

        .why-card:hover {
            transform: translateY(-6px);
        }

        .why-img-wrap {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 30px rgba(10,61,98,0.1);
            height: 220px;
        }

        .why-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .why-card:hover .why-img-wrap img {
            transform: scale(1.08);
        }

        .why-card h5 {
            font-weight: 700;
            color: var(--brand-dark);
            margin-bottom: 0.75rem;
        }

       .why-card p {
			font-size: 14px;
			color: #062740;
			line-height: 1.7;
			font-weight: 500; 
		}

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
            color: #fff;
            text-align: center;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
			z-index: 3;  
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-section h2 {
            font-weight: 800;
            margin-bottom: 0.75rem;
            position: relative;
        }

        .cta-section p {
            opacity: 0.9;
            margin-bottom: 2rem;
            position: relative;
        }

        .btn-cta {
            background: #fff;
            color: var(--brand);
            font-weight: 700;
            padding: 0.9rem 2.5rem;
            border-radius: 6px;
            border: none;
            position: relative;
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgb(0 0 0 / 93%); 
            color: #ffffff; 
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--brand-dark);
            color: #fff;
            padding-top: 4rem;
        }

        footer h4 {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 16px;
            margin-bottom: 1rem; 
        }  

        footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 14px;
			font-weight: 500; 
            transition: all 0.25s;
        } 
		
		footer p { 
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 14px;
			font-weight: 500; 
            transition: all 0.25s;
        } 

        footer a:hover {
            color: #fff;
            padding-left: 3px;
        }

        footer .footer-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: #fff;
        }

        footer .footer-brand span {
            color: var(--accent);
        }
		
		.text-white-80 {
			color: rgba(255,255,255,.8); 
		}

        .social-btn {
			width: 40px;
			height: 40px;
			border-radius: 50%;
			background: rgb(255 255 255);
			display: inline-flex;
			align-items: center;
			justify-content: center;
			color: #062740;
			transition: all 0.3s;
			margin-right: 0.5rem;
		}  

        .social-btn:hover {
            background: #fff;
            color: var(--brand);
            transform: translateY(-3px);
        }

		.footer-bottom {
			border-top: 1px solid rgba(255,255,255,0.1);
			padding: 1.25rem 0;
			margin-top: 3rem;
			font-size: 13px;
			color: rgba(255,255,255,1);
		}  
		
		.page-header {
            padding: 140px 0 20px;
            background: #fff;
        } 

        .page-header h1 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            color: var(--brand);
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1rem;
            color: #17202a; 
            max-width: 100%;
            line-height: 1.7;
            margin-bottom: 0.4rem;
        } 

        /* ===== ANIMATIONS ===== */
        .reveal {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }

        /* ===== FILTER TABS ===== */
        .project-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            margin: 2rem 0 2.5rem;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(10, 61, 98, 0.08);
        }
		
		.project-tabs::-webkit-scrollbar-button {
		  display: none; 
		} 

        .project-tabs .tab-btn {
            flex: 1;
            min-width: 110px;
            padding: 0.85rem 1rem;
            border: none;
            background: var(--brand);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            white-space: nowrap;
        }

        .project-tabs .tab-btn:hover {
            background: var(--brand-light);
        }

        .project-tabs .tab-btn.active {
            background: #4da6e8;
            color: #fff;
        }

        /* Progress bar under tabs */
        .tab-progress {
            height: 4px;
            background: #e0e8f0;
            border-radius: 2px;
            margin-top: -2px;
            margin-bottom: 2.5rem;
            overflow: hidden;
        }

        .tab-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--brand-light), #4da6e8);
            width: 35%;
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        /* ===== PROJECT CAROUSEL CARDS ===== */
        /* Owl nav arrows */
        .projects-page-carousel .owl-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            margin: 0;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .projects-page-carousel .owl-nav button {
            pointer-events: all;
            width: 48px;
            height: 48px;
            border-radius: 50% !important;
            background: #fff !important;
            box-shadow: 0 4px 18px rgba(10, 61, 98, 0.18);
            color: var(--brand) !important;
            font-size: 1.15rem !important;
            transition: all 0.3s ease;
            position: absolute;
        }

        .projects-page-carousel .owl-nav button:hover {
            background: var(--brand) !important;
            color: #fff !important;
        }

        .projects-page-carousel .owl-nav .owl-prev {
            left: -8px;
        }

        .projects-page-carousel .owl-nav .owl-next {
            right: -8px;
        }

        .projects-page-carousel .owl-dots {
            display: none;
        }

        /* Empty state */
        .no-projects {
            text-align: center;
            padding: 3rem;
            color: #6c7a89;
            display: none;
        }

		
        /* ===== RESPONSIVE ===== */
        @media (max-width: 991.98px) {
            .sustain-section .content-side {
                padding: 3.5rem 2rem;
            }
            .projects-page-carousel {
                padding: 0 30px;
            }
            .project-tabs .tab-btn {
                min-width: 90px;
                font-size: 0.8rem;
                padding: 0.7rem 0.6rem;
            }
        }

        @media (max-width: 575.98px) {  
			 .projects-page-carousel {
                padding: 0 15px;
            }
            .projects-page-carousel .owl-nav {
                display: none;
            }
            .project-tabs {
                overflow-x: auto;
                flex-wrap: nowrap;
            }
            .project-tabs .tab-btn {
                flex: 0 0 auto;
                min-width: 100px;
            }
        }
		
		/* Desktop: hide theme mobile buttons + show submenu arrows */
		@media (min-width: 992px) {
			.navbar-nav .submenu-expand,
			.navbar-nav .mobile-parent-nav-menu-item {
				display: none !important;
			}

			.navbar-nav .dropdown-menu {
				display: none;
				margin-top: 0;
				border: none;
				border-radius: 8px;
				box-shadow: 0 10px 40px rgba(0,0,0,0.12);
				padding: 0.5rem 0;
				min-width: 220px;
			}
			.navbar-nav .dropdown-menu.show,
			.navbar-nav .dropdown:hover > .dropdown-menu {
				display: block;
			}

			.navbar-nav .nav-link {
				font-weight: 600;
				font-size: 0.9rem;
				text-transform: uppercase;
				padding: 0.5rem 0.9rem !important;
			}

			/* Arrow beside menu items that have a submenu */
			.navbar-nav .menu-item-has-children > .nav-link.dropdown-toggle::after,
			.navbar-nav .dropdown > .nav-link.dropdown-toggle::after {
				display: inline-block;
				margin-left: 0.45em;
				vertical-align: 0.15em;
				content: "";
				border-top: 0.35em solid currentColor;
				border-right: 0.35em solid transparent;
				border-bottom: 0;
				border-left: 0.35em solid transparent;
				transition: transform 0.25s ease;
			}

			.navbar-nav .dropdown:hover > .nav-link.dropdown-toggle::after,
			.navbar-nav .dropdown.show > .nav-link.dropdown-toggle::after {
				transform: rotate(180deg);
			}
		}

		/* Mobile: style theme buttons cleanly */
		@media (max-width: 991.98px) {
			/* Hide Bootstrap caret – use .submenu-expand SVG instead */
			.navbar-nav .dropdown-toggle::after {
				display: none !important;
			}
			.navbar-nav > .menu-item-has-children {
				display: flex;
				flex-wrap: wrap;
				align-items: center;
			}
			.navbar-nav > .menu-item-has-children > .nav-link {
				flex: 1;
			}
			.navbar-nav .submenu-expand {
				background: none;
				border: none;
				padding: 0.4rem 0.55rem;
				margin-left: auto;
				color: #333;
				cursor: pointer;
				line-height: 1;
				display: inline-flex;
				align-items: center;
				justify-content: center;
			}
			.navbar-nav .submenu-expand svg {
				width: 20px;
				height: 20px;
				transition: transform 0.25s ease;
			}
			.navbar-nav .menu-item-has-children.show > .submenu-expand svg,
			.navbar-nav .menu-item-has-children.is-open > .submenu-expand svg {
				transform: rotate(180deg);
			}
			.navbar-nav .dropdown-menu {
				position: static !important;
				width: 100%;
				border: none;
				box-shadow: none;
				background: #f8fafc;
			}
			
			.hero-carousel .hero-content {
				max-width: 440px; 
			} 
			.career-application-modal .modal-dialog {
				max-width: 90%;
				overflow: scroll;
			} 
			.modal.fade .modal-dialog {
				transform: translate(0,-146px);
			}  
			.project-badge {
				top: 18px;
				left: 5px;
				font-size: 0.6rem; 
			} 
		}  
		
		ul.sub-menu.hidden-links {
				display: none;
		} 
		button.submenu-expand.main-menu-more-toggle.is-empty {
			display: none;
		}  
		.main-menu-more {
			display: none;
		}    
		
		
		.say-helllo {
			border: 1px solid #195e95;
			background: #195e95; 
			border-radius: 5px;
		}
		
		.say-helllo a.nav-link{
			color: #ffffff !important
		} 
		
		.say-helllo a.nav-link::before,
		.say-helllo a.nav-link::after {
			display: none !important;
		}
		
		
/* ===== HERO SLIDER (ACF Repeater) ===== */
.hero-slider-section {
    position: relative;
    margin-top: 76px; /* fixed navbar height */
}
.hero-carousel .hero-slide {
    position: relative;
    min-height: 76vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}   
.hero-carousel .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.88) 0%, rgb(30 107 168 / 25%) 27%, rgb(10 61 98 / 16%) 100%);
    z-index: 1;
} 
.hero-carousel .hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, #0a3d62 0%, rgb(10 61 98 / 58%) 100%);
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}  
.hero-carousel .container {
    position: relative;
    z-index: 2;
}
.hero-carousel .hero-content {
    max-width: 580px;
    color: #fff;
    padding: 40px 0;
}
.hero-carousel .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 1.2rem;
}
.hero-carousel h1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #fff;
} 
.hero-carousel h1 strong{
    font-weight: 800;
    line-height: 2;
    margin-bottom: 1rem;
} 

.hero-carousel h1 span {
    color: #7ec8ff;
}
.hero-carousel .hero-location {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #fff;
}
.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    margin: 0;
    transform: translateY(-50%);
    pointer-events: none;
}
.hero-carousel .owl-nav button {
    pointer-events: all;
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    font-size: 1.1rem !important;
    position: absolute;
}
.hero-carousel .owl-nav button:hover {
    background: #fff !important;
    color: #0a3d62 !important;
}
.hero-carousel .owl-nav .owl-prev { left: 20px; }
.hero-carousel .owl-nav .owl-next { right: 20px; }
.hero-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
}
.hero-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}
.hero-carousel .owl-dots .owl-dot.active span {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}
@media (max-width: 991.98px) {
    .hero-carousel .hero-overlay::before {
        width: 100%;
        clip-path: none;
        background: linear-gradient(to bottom, rgba(10,61,98,0.9), rgba(10,61,98,0.65));
    }
    .hero-carousel .owl-nav { display: none; }
	
	.hero-carousel h1 {
		font-size: 20px;
		font-weight: 500;
		line-height: 1;
		margin-bottom: 1.2rem;
		color: #fff;
		text-align: center; 
	 } 
	 .hero-carousel .hero-location {
		font-size: 14px;
		margin-bottom: 1rem; 
		text-align: center; 
	 } 
	 .hero-content .d-flex { 
		justify-content: center;
	}  
	.hero-carousel .hero-badge {
		display: flex; 
		align-items: center;
		justify-content: center;
	}
}
@media (max-width: 575.98px) {
    .hero-slider-section { margin-top: 70px; }
    .hero-carousel .hero-slide { min-height: 60vh; }
} 

.footer-brand.text-style h3{
	font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
	src: url('assets/MicrogrammaDExtendedBold.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}   

@media (max-width: 991.98px) {
	.projects-carousel .owl-dots {
		text-align: center;
		margin-top: 1.5rem;
		display: none;
	}
} 

ul#menu-policy-pages li {
    list-style-type: none;
    padding: 0 5px;
} 


/*******SERVICE DETAILS PAGE*************/ 

.service-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
} 

.service-page-content p {  
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 10px;
}

 /**************DEFAULT PAGE**************************/
 
 
.default-page-header {
	background: #195e95;  
    padding: 250px 0 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}   

.default-page-header::before {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.58) 0%, rgb(0 179 228 / 15%) 77%);
    z-index: 1;
}  

.default-page-header .container {
  position: relative;
  z-index: 2;
}

.default-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
	border-radius: 20px; 
} 

h1.page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 2rem; 
}

.default-page-content p { 
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 10px;
}

.default-details-content {
    padding: 50px 0;
    background: #ffffff !important;
    z-index: 3;
    position: relative;
}  

.default-page-header h1 {
    color: #6ee0ff;
    text-shadow: 3px 4px black;
} 

.default-page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 1000px;
    margin: 0;
    line-height: 1.7;
    color: #ffffff;
}  

/* Breadcrumb */
.default-breadcrumb {
  margin-bottom: 1.5rem;
}

.default-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.4rem;
} 

.default-breadcrumb li {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    text-transform: uppercase;
} 
.default-breadcrumb li a{ 
    font-weight: 700;
	color: #ffffff;  
	font-style: italic;
} 

.default-breadcrumb li:not(:last-child)::after {
  content: '>';
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
} 

.default-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.25s ease;
}

.default-breadcrumb a:hover {
  color: #7ec8ff;
}

.default-breadcrumb li.active {
  color: #fff;
  font-weight: 600;
}


@media (max-width: 575.98px) {
  
  .default-page-header {
    padding: 130px 0 50px;
  }
  .default-breadcrumb li {
    font-size: 0.8rem;
  } 
   
} 


/* =========================================================
   GLOBAL LEADERSHIP TEAM
========================================================= */

.team-section {
    padding: 90px 0 100px;
    background: #f7f8fa;
}


/* Section Heading */

.team-section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-section-heading .team-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #f36f21;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.team-section-heading h2 {
    margin: 0 0 15px;
    color: #17202a;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.team-section-heading p {
    max-width: 650px;
    margin: auto;
    color: #737d88;
    font-size: 16px;
    line-height: 1.8;
}

.our-team-content-section p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--rs-muted);
    margin: 0px 0 29px;
} 


/* =========================================================
   LEADERSHIP CARD
========================================================= */

.leadership-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e9ed;
    box-shadow: 0 8px 30px rgba(20, 32, 45, 0.06);
    transition: all .35s ease;
}

.leadership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(20, 32, 45, 0.14);
}


/* =========================================================
   IMAGE
========================================================= */

.leadership-image {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
    background: #eef1f4;
}

.leadership-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s ease;
}

.leadership-card:hover .leadership-image img {
    transform: scale(1.06);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.leadership-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 30px;

    background: linear-gradient(
        to top,
        rgba(15, 24, 33, .92) 0%,
        rgba(15, 24, 33, .60) 35%,
        rgba(15, 24, 33, 0) 75%
    );

    opacity: 0;
    transition: all .35s ease;
}

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

.leadership-overlay-content {
    transform: translateY(20px);
    transition: transform .4s ease;
}

.leadership-card:hover .leadership-overlay-content {
    transform: translateY(0);
}

.leadership-overlay-content span {
    display: block;
    margin-bottom: 7px;
    color: #f36f21;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.leadership-overlay-content h4 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
}

.leadership-overlay-content p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 14px;
}


/* =========================================================
   INFO AREA
========================================================= */

.leadership-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 24px 25px;
}

.leadership-info-content {
    min-width: 0;
}

.leadership-info h3 {
    margin: 0 0 7px;
    color: #17202a;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.leadership-role {
    display: block;
    color: #195e95; 
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
} 


/* =========================================================
   ARROW
========================================================= */

.leadership-arrow {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #f3f5f7;
    color: #17202a;

    transition: all .3s ease;
}

.leadership-card:hover .leadership-arrow {
    background: #f36f21;
    color: #ffffff;
    transform: rotate(-45deg);
}


/* =========================================================
   TOP ORANGE ACCENT
========================================================= */

.leadership-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: #f36f21;
    z-index: 5;

    transition: width .4s ease;
}

.leadership-card:hover::before {
    width: 100%;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .leadership-image {
        height: 350px;
    }

}

@media (max-width: 991px) {

    .team-section {
        padding: 70px 0 80px;
    }

    .team-section-heading h2 {
        font-size: 35px;
    }

    .leadership-image {
        height: 360px;
    }

}

@media (max-width: 767px) {

    .team-section {
        padding: 60px 0 70px;
    }

    .team-section-heading {
        margin-bottom: 35px;
    }

    .team-section-heading h2 {
        font-size: 30px;
    }

    .leadership-image {
        height: 400px;
    }

    .leadership-overlay {
        opacity: 1;
    }

    .leadership-overlay-content {
        transform: translateY(0);
    }

}

@media (max-width: 575px) {

    .leadership-image {
        height: 380px;
    }

    .leadership-info {
        padding: 20px;
    }

}


/* =========================================================
   RYDBERG ENGINEERING - COMPANY VALUES
========================================================= */

.re-company-values {
    --rv-dark: #101820;
    --rv-dark-2: #18242d;
    --rv-text: #26343d;
    --rv-muted: #68757d;
    --rv-light: #f5f7f8;
    --rv-white: #ffffff;
    --rv-accent: #d49a35;
    --rv-border: #e2e7ea;
    font-family: inherit;
    color: var(--rv-text);
    overflow: hidden;
}


/* Container */
.re-company-values .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */


.re-values-eyebrow,
.re-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.re-values-eyebrow {
    color: #fff;
    margin-bottom: 25px;
}

.re-values-eyebrow span {
    width: 35px;
    height: 2px;
    background: var(--rv-accent);
    display: inline-block;
}


/* =========================================================
   INTRO
========================================================= */

.re-values-intro {
    padding: 110px 0 80px;
    background: #fff;
}

.re-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.re-section-label {
    color: #195e95;
    margin-bottom: 20px;
}

.re-intro-grid h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    margin: 0;
    color: var(--rv-dark);
    letter-spacing: -1.5px;
}

.re-intro-grid h2 strong {
    display: block;
    font-weight: 700;
}

.re-intro-grid p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--rv-muted);
    margin: 0 0 18px;
}
  

/* =========================================================
   VALUE CARDS
========================================================= */

.re-values-cards {
    padding: 30px 0;
    background: #fff;
}

.re-value-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.re-value-card {
    position: relative;
    min-height: 320px;
    padding: 38px;
    text-decoration: none !important;
    color: #195e95; 
    background: var(--rv-light);
    border: 1px solid #00000026;
    transition: all .35s ease;
}   

.re-value-card:hover {
    transform: translateY(-8px);
    background: var(--rv-dark);
    color: #c7d3c8; 
    border-color: var(--rv-dark);
    box-shadow: 0 25px 60px rgba(16,24,32,.18);
}  

.re-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center; 
}

.re-card-number {
    font-size: 13px;
    font-weight: 700;
    color: #195e95;
    letter-spacing: 1px; 
}

.re-value-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid var(--rv-border);
    transition: .35s ease;
}

.re-value-card:hover .re-value-icon {
    border-color: rgba(255,255,255,.25);
}

.re-value-icon svg {
    width: 25px;
    height: 25px;
    stroke: currentColor;
    stroke-width: 1.5;
}

.re-value-card h3 {
    font-size: 28px;
    margin: 15px 0; 
    color: #195e95; 
}

.re-value-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--rv-muted);
    margin: 0;
}

.re-value-card:hover h3 {
    color: #ffffff; 
}

.re-value-card:hover p {
    color: #d5d5d5; 
}  

.re-card-link {
    position: absolute;
    left: 38px;
    bottom: 35px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
}

.re-card-link b {
    color: #195e95;
    font-size: 18px;
    margin-left: 8px;
}


/* =========================================================
   DETAIL SECTIONS
========================================================= */

html {
    scroll-behavior: smooth;
}

#customer-focus, #integrity, #results{
	scroll-margin-top: 120px;
}  

.re-value-detail {
    padding: 30px 0 30px;
    background: #fff;
}    

.re-detail-light {
    background: var(--rv-light);
}

.re-detail-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 10px;
    max-width: 1050px;
    margin: 0 auto;
}   

.re-detail-number { 
    padding-top: 22px;
}

.re-detail-number span {
    display: block;
    font-size: 68px;
    line-height: 1;
    font-weight: 700;
    color: rgba(16,24,32,.10);
    letter-spacing: -3px;
}

.re-detail-number small {
    display: block;
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--rv-muted);
}

.re-detail-content {
    max-width: 900px;
} 

.re-detail-content h2 {
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    color: var(--rv-dark);
    margin: 0 0 30px;
}

.re-detail-content h2 strong {
    display: block;
    color: #195e95; 
}

.re-detail-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--rv-muted);
    margin: 0 0 10px;
} 

.re-value-statement { 
    padding: 5px 0 5px 10px;  
    border-left: 4px solid #195e95; 
    font-size: 18px;
    line-height: 1.6;
    color: var(--rv-dark);
}   

.re-value-statement strong {
    color: #195e95; 
} 


/* =========================================================
   CLOSING CTA
========================================================= */

.re-values-closing {
    background:
        linear-gradient(110deg, #101820, #1d2b34);
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.re-values-closing::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    right: -250px;
    top: -300px;
}

.re-closing-inner {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.re-closing-inner .re-section-label {
    color: var(--rv-accent);
}

.re-closing-inner h2 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 25px;
}

.re-closing-inner h2 em {
    color: var(--rv-accent);
    font-style: normal;
}

.re-closing-inner p {
    max-width: 600px;
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 35px;
}

.re-values-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 25px;
    background: var(--rv-accent);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .3s ease;
}

.re-values-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.re-values-btn span {
    font-size: 20px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .re-intro-grid {
        gap: 45px;
    }

    .re-value-card-grid {
        grid-template-columns: 1fr;
    }

    .re-value-card {
        min-height: 300px;
		padding: 20px;  
    }
	.re-card-link {
		left: 20px;
		font-size: 12px;
	} 

    .re-detail-grid {
        grid-template-columns: 120px 1fr;
        gap: 45px;
    }

    .re-detail-number span {
        font-size: 52px;
    }
}


@media (max-width: 767px) {

    .re-company-values .container {
        width: min(100% - 30px, 1180px);
    }

  
    .re-values-intro {
        padding: 45px 0 0;  
    }

    .re-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .re-values-cards {
        padding-bottom: 5;
    }  

    .re-value-detail {
        padding: 20px 0;
    }

    .re-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .re-detail-number {
        display: flex;
        align-items: center;
        gap: 15px;
        border-top: 0;
        padding-top: 0;
    }

    .re-detail-number span {
        font-size: 42px;
    }

    .re-detail-number small {
        margin-top: 0;
    }

    .re-detail-content h2 {
        letter-spacing: -1px;
		font-size: 28px; 
    }

    .re-values-closing {
        padding: 80px 0;
    }
	.re-value-card h3 {
		margin: 10px 0 15px; 
	}


}

/* ===== HERO: fix delayed / blank banner ===== */
.hero-slider-section {
    position: relative;
    margin-top: 76px; /* match fixed navbar height */
}
.hero-carousel .hero-slide {
    position: relative;
    min-height: 76vh;
    overflow: hidden;
    background-color: #0a3d62; /* solid color instead of white flash */
    display: flex;
    align-items: center;
}
.hero-carousel .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.hero-carousel .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-carousel .container {
    position: relative;
    z-index: 2;
}
.hero-carousel .hero-content {
    position: relative;
    z-index: 2;
}
@media (max-width: 575.98px) {
    .hero-slider-section {
        margin-top: 70px;
    }
    .hero-carousel .hero-slide {
        min-height: 60vh;
    }
}



/******************COMMON CSS*************/

.projects-carousel {
	min-height: 400px;
} 

a.home-project-link {
    text-decoration: none;
} 

.wpcf7 input[type="file"] {
    border: 1px solid #dddddd;
    height: unset;
    padding: 10px;
}  

.wp-block-image img.aligncenter,
img.aligncenter {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
} 

h2.vc_custom_heading {
    font-weight: 700;
} 

.wpb_wrapper h2 {
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 2rem;
}  

.service-header-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--rs-muted);
    margin: 0px 0 32px;
} 
   
button.menu-item-link-return {
    display: none;
} 


/* ===== Beautified Submenu ===== */
.navbar .dropdown-menu,
.main-menu .sub-menu,
.header-menu .dropdown-menu,
ul.sub-menu {
    min-width: 260px;
    padding: 10px 0;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(23, 32, 42, 0.12);
    overflow: hidden;
    animation: dropdownFade 0.25s ease;
} 

/* Menu items */
.navbar .dropdown-menu li a,
.main-menu .sub-menu li a,
.header-menu .dropdown-menu .dropdown-item,
ul.sub-menu li a {
    display: flex;
	gap: 5px; 
    align-items: center; 
    padding: 12px 24px !important;
    color: #27313b !important;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    background: transparent !important;
    border: none !important;
} 

/* Left accent bar on hover */
.navbar .dropdown-menu li a::before,
.main-menu .sub-menu li a::before,
ul.sub-menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #f36f21;
    transform: scaleY(0);
    transition: transform 0.25s ease;
} 

/* Hover state */
.navbar .dropdown-menu li a:hover,
.main-menu .sub-menu li a:hover,
.header-menu .dropdown-menu .dropdown-item:hover,
ul.sub-menu li a:hover {
    background: #fff7f2 !important;
    color: #f36f21 !important;
    padding-left: 28px !important;
}

.navbar .dropdown-menu li a:hover::before,
.main-menu .sub-menu li a:hover::before,
ul.sub-menu li a:hover::before {
    transform: scaleY(1);
}

/* Active / current item */
.navbar .dropdown-menu li.current-menu-item a,
.main-menu .sub-menu li.current-menu-item a,
ul.sub-menu li.current-menu-item a {
    color: #f36f21 !important;
    background: #fff7f2 !important;
}

a {
    color: rgb(25 94 149);
    text-decoration: none;
} 

.our-team-content-section{
	margin: 0 0 30px 0; 
} 

/* Smooth entrance */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 
@media (max-width: 767px) {
	
	.projects-carousel {
		min-height: 360px;
	}  
	
	.re-intro-grid p {
		font-size: 14px;
		line-height: 1.7; 
		margin: 0 0 12px;
	} 

	.project-badge {
		top: 10px;
		left: 2px;
		font-size: 8px;
		padding: 4px 10px;
		border-radius: 20px;
	}  
  .project-card .card-title {
    font-weight: 500;
    font-size: 10px;
    color: var(--brand-dark);
    margin-bottom: 0.3rem;
  } 
  .project-card .card-text {
    font-size: 10px; 
 }
 .section-subtitle {
    max-width: 100%;
    margin: 0 auto 1rem;	
    font-size: 14px;
  } 
  .sustain-section p { 
    font-size: 14px;
  } 
  .why-card p {
    font-size: 14px; 
    line-height: 1.3;
    font-weight: 500;
 }
 .btn-brand {
    padding: 0.6rem 0.6rem; 
    font-size: 16px;
  }
  .logo-track {
    gap: 2rem; 
    width: fit-content;
  }
  .logo-item img {
    max-width: 160px;
    height: auto;
  } 
  .re-intro-grid h2 {
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -1px;
  } 
  .re-detail-content p {
    font-size: 14px;
    line-height: 1.7; 
  }  
  
  .re-value-statement {
    padding: 0px 0 0px 10px;
    font-size: 16px;
    line-height: 1.6; 
  }
  .cta-section {
	padding: 3rem 0; 
  }
 .cta-section h2 {
	font-weight: 700;
	font-size: 24px; 
 }
 .cta-section p {
    margin-bottom: 1rem;
    font-size: 14px; 
 }
 .btn-cta {
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    font-size: 14px;
 } 
 
 section.py-5.services-section {  
	padding-top: 2rem !important;
	padding-bottom: 2rem !important; 
 } 
 .footer-bottom {
    margin-top: 1rem; 
 } 
 footer { 
    padding-top: 2rem;
 }  
 ul.open-links {
    gap: 15px;
    margin: 19px 10px 10px 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
    padding-left: 0;
 }
 
 .career-intro-text {
    max-width: 100%; 
    font-size: 14px;
    line-height: 1.7;
 }
 .career-section-heading p {
    color: #707b89;
    font-size: 14px;
    line-height: 1.7;
 }
 .career-benefit-card {
    padding: 20px;
 } 
 .benefit-content p { 
    line-height: 1.7;
    font-size: 14px;
 }
  .benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px; 
    font-size: 18px;
 }
 .job-title-area h4 {
    font-size: 18px;
  } 
  .career-cta-section {
    padding: 45px 0;
  }
  .career-cta-btn { 
    padding: 10px 20px;
 }
  
} 