/* ==============================================
           COLOR VARIABLES & RESET
           ============================================== */
:root {
    --primary-aqua: #00a8a3;
    --primary-orange: #ff4e05;
    --secondary-orange: #ffa773;
    --primary-dark: #1b1b1b;
    --text-gray: #666666;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    overflow-x: hidden;
    font-size: 1.1rem;
    font-weight: lighter;
}

#page-loader {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOutAfter 1.5s forwards;
}
#page-loader .spinner {
    background: #fff;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding: 10px;
}
#page-loader .spinner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #ddd;
    border-top: 2px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.text-aqua {
    color: var(--primary-aqua) !important;
}
#page-loader .spinner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#page-loader .spinner .ripple {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: var(--primary-orange);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: loaderWaveEffect 2s infinite;
}
#page-loader .spinner .ripple::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    background: var(--primary-aqua);
    border-radius: 50%;
    animation: loaderWaveEffect 2s infinite;
    animation-delay: 1s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeOutAfter {
    0% {
        opacity: 1;
        visibility: visible;
    }
    90% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

@keyframes loaderWaveEffect {
    0% {
        transform: scale(0.2);
        opacity: 0.8;
    }
    70% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==============================================
   NAVIGATION STYLES
   ============================================== */
.navbar {
    padding: 15px 0;
    background: var(--white) !important;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    z-index: 1050;
    position: sticky;
    top: 0;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-hover);
}

.navbar-brand img {
    width: 200px;
    transition: height 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--primary-dark) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
    font-size: 17px;
}
/* Hover effect */
.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important; /* Change text color on hover */
}

/* Underline animation effect */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}
.header-action {
    gap: 10px;
    .btn {
        padding: 8px 10px;
        border-radius: 4px;
        font-weight: 400;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        width: 115px;
    }
}
/* Common button base */
.btn-login,
.btn-join-us {
    position: relative;
    overflow: hidden;
    transition:
        color 0.4s ease,
        border-color 0.8s ease,
        box-shadow 0.8s ease;
    z-index: 1;
}

/* Circular overlay */
.btn-login::before,
.btn-join-us::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    border-radius: 50%;
    transform: scale(0) translate(-50%, -50%);
    transform-origin: center;
    z-index: -1;
    transition: transform 1.2s ease;
}

/* ---------------- LOGIN BUTTON ---------------- */
.btn-login {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
}

.btn-login::before {
    background: var(--primary-dark);
}

.btn-login:hover::before {
    transform: scale(1) translate(-50%, -50%);
}

.btn-login:hover {
    color: var(--white) !important;
    border: 1px solid var(--primary-dark);
}

/* ---------------- JOIN US BUTTON ---------------- */
.btn-join-us {
    background: var(--white);
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
}

.btn-join-us::before {
    background: var(--primary-orange);
}

.btn-join-us:hover::before {
    transform: scale(1) translate(-50%, -50%);
}

.btn-join-us:hover {
    color: #fff !important;
    border: 1px solid var(--primary-orange);
    background: transparent;
}

/* ==========================
   DROPDOWN / MEGA MENU
   ========================== */
/* Parent nav-item relative for proper alignment */
.nav-item.dropdown {
    position: relative;
}
/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    min-width: 330px;
    max-width: 100%;
    padding: 20px;
}

/* Default dropdown menus */
.nav-item.dropdown .dropdown-menu {
    background-color: var(--primary-aqua); /* teal semi-transparent */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    border-radius: 8px;
    padding: 0.75rem 0;
}

.nav-item.dropdown .dropdown-menu .dropdown-item {
    color: #fff;
    font-weight: 300;
    padding: 10px;
    /* transition: all 0.3s ease; */
}

.nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-orange);
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

/* Mega Menu */
.dropdown-mega {
    position: static;
}

.dropdown-mega .dropdown-menu {
    display: none;
    position: absolute; /* absolute relative to parent nav-item */
    /* top: 80px; right below the nav item */
    left: 30%; /* adjust as needed */
    width: 100%;
    max-width: 735px; /* full width or as needed */
    padding: 1rem;
    border-radius: 8px;
    background-color: var(--primary-aqua);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999; /* ensure on top */
}

@media (max-width: 992px) {
    .dropdown-mega .dropdown-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        padding: 1rem;
    }
}

.dropdown-mega:hover .dropdown-menu {
    display: block;
}

/* Prevent flicker by removing gap */
.nav-item.dropdown > .dropdown-menu {
    margin-top: 0;
}
.mega-menu-links a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    border-radius: 6px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}
.mega-menu-links a:hover,
.mega-menu-links a.active {
    background-color: var(--primary-orange);
    color: #fff;
    font-weight: 600;
}

.mega-menu-image img {
    max-height: 220px;
    border-radius: 8px;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

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

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section {
    position: relative;
    height: calc(100vh - 110px);
    min-height: 600px;
    overflow: hidden;
    z-index: 1;
}

.hero-section .swiper-slide {
    background: #f5f5f5;
    height: calc(100vh - 110px);
}

.hero-section .swiper-slide .hero-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-section .swiper-slide .hero-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(#099aad33, #099aad33, #099aad55);
    z-index: 0;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    max-width: 100vw;
    min-height: 100%;
    width: 100%;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover; /* ensures video covers area */
}

.hero-section .swiper-slide .hero-slide .hero-slide-content {
    height: 100%;
    position: relative;
    z-index: 3;
}
.hero-section h1 {
    position: absolute;
    bottom: 150px;
    height: auto;
    padding: 5px 25px;
    color: #ffffff;
    left: 10%;
    font-weight: 700;
    max-width: 85%;
    display: inline-block;
    align-items: end;
    text-shadow:
        1px 1px 2px rgba(0, 0, 0, 0.5),
        3px 3px 6px rgba(0, 0, 0, 0.3);
    z-index: 16;
    font-size: 3rem;
    width: auto;
    display: inline-block;
}

/* prevent breaking letters */
.hero-swiper {
    position: relative;
}
.hero-swiper-pagination {
    position: absolute !important;
    bottom: 100px !important;
    left: 10% !important;
    z-index: 10;
    display: inline-block !important;
    max-width: max-content !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    background: #fff !important;
    width: 20px !important;
    height: 4px !important;
    border-radius: 0px !important;
    opacity: 1 !important;
    width: 20px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-orange) !important;
    width: 30px !important;
    border-radius: 0px !important;
}

.hero-slide-content-scroll-down {
    background: transparent;
    border-radius: 50%;
    border: none;
    position: absolute;
    bottom: 100px;
    right: 5%;
    z-index: 3;
}

.btn-primary-orange {
    background: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    color: var(--white);
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 35px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 20px;
    font-size: 16px;
}

.btn-primary-orange:hover {
    background: transparent;
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(225, 126, 44, 0.3);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 35px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-orange) !important;
    background: rgba(255, 255, 255, 0.9);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    margin-top: -25px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    width: 20px !important;
    height: 4px !important;
    border-radius: 4px !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-orange) !important;
    width: 30px !important;
    border-radius: 6px !important;
}
/* ==============================================
           Services SECTION STYLES
============================================== */
.service-wrapper {
    position: relative;
    width: 100%;
    min-height: 450px;
    z-index: 1; /* keep content above */
}

.services-section {
    padding: 80px 0px;
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    margin-top: 80px;
}

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

.services-title {
    font-size: 48px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.services-subtitle {
    font-size: 18px;
    color: var(--primary-dark);
    line-height: 1.6;
    /* max-width: 400px; */
    margin: 0 auto;
    font-weight: lighter;
}

.service-card {
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    perspective: 1000px;
    grid-row: span 2;
    min-height: var(--content-height, 350px) !important;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    perspective: 1000px; /* adds depth for rotation */
}

.service-card-inner .front,
.service-card-inner .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition:
        transform 0.7s ease,
        opacity 0.7s ease;
    border-radius: 12px;
    backface-visibility: hidden; /* prevent mirror text */
}

/* Front is visible by default */
.service-card-inner .front {
    z-index: 2;
    /* transform: translateX(0) rotateY(0deg); */
    transform: translateY(0) rotateX(0deg);
}

/* Back starts off to the right (slightly rotated in 3D) */
.service-card-inner .back {
    z-index: 1;
    /* transform: translateX(100%) rotateY(15deg); */
    transform: translateY(100%) rotateX(15deg);
    opacity: 0;
}

/* On hover: Front slides left out */
.service-card:hover .service-card-inner .front {
    /* transform: translateX(-100%) rotateY(-15deg); */
    transform: translateY(-100%) rotateX(-15deg);
    opacity: 0;
}

/* On hover: Back slides in smoothly */
.service-card:hover .service-card-inner .back {
    /* transform: translateX(0) rotateY(0deg); */
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
}

.service-card.front::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: inherit;
}

/* .service-card:hover {
  transform: translateY(-5px) scale(1.02);
} */

.service-card.large .service-card-inner .front {
    background-image: url("../images/services/1- Geotechnical and Structural Monitoring- -1.jpg");
    background-size: cover;
    background-position: center;
}

.service-card.health .service-card-inner .front {
    background-image: url("../images/services/2- Structural Health Monitoring (SHM)-H.jpg");
    background-size: cover;
    background-position: center;
}

.service-card.noise .service-card-inner .front {
    background-image: url("../images/services/3-Noise, Dust & Environmental Monitoring - H.jpg");
    background-size: cover;
    background-position: center;
}

.service-card.data .service-card-inner .front {
    background-image: url("../images/services/4- Data Management & AI Solutions - H.jpg");
    background-size: cover;
    background-position: center;
}

.service-card .back {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7f0 100%);
    padding: 40px;
    display: flex;
    flex-direction: column; /* stack content vertically */
    justify-content: space-between; /* push last item to bottom */
}

.service-card .back > div:first-child {
    flex-grow: 1; /* content takes available space */
}
.service-content {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.45;
    margin-bottom: 20px;
}

.service-card .front .service-title {
    color: var(--white);
}
.service-card .back .service-title {
    color: var(--primary-aqua);
}

.service-description {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
    color: #141414;
}

.service-card.health .service-description {
    color: #666;
}

.service-card-inner .service-arrow {
    width: 50px;
    height: 50px;
    background-color: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    align-self: flex-end;
    transition: transform 0.3s ease;
    position: relative;
    color: #fff;
    text-decoration: none;
}

.service-card-inner .service-arrow i {
    color: var(--white);
}

.service-card-inner .service-arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform-origin: center;
    transform: scale(0);
    border-radius: 50%;
    background: var(--white);
    opacity: 1;
    z-index: 0;
    transition: transform 0.5s ease;
}

.service-card-inner .service-arrow:hover::after {
    transform: scale(1);
    border: 1px solid var(--primary-orange);
}

.service-card-inner .service-arrow:hover i {
    color: var(--primary-orange) !important;
    z-index: 2;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .service-card.large {
        grid-row: span 1;
    }

    .services-title {
        font-size: 36px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-content {
        padding: 30px;
    }
}
/* ---------- Animated dot overlay for service cards ---------- */
/* tweak these CSS variables as needed */
.service-card {
    --dot-size: 1.5px; /* size of each dot */
    --dot-gap: 25px; /* distance between dots (grid spacing) */
    --dot-color: rgba(255, 255, 255, 0.2); /* dot color & opacity */
    --dots-speed: 6s; /* animation duration (slower -> larger value) */
}

/* create a dotted pattern using repeating radial gradient */
.service-card .front::after,
.service-card .back::after {
    content: "";
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    pointer-events: none; /* allow clicks through overlay */
    z-index: 1; /* sits above ::before overlay but below .service-content (which has z-index:2) */
    background-image: radial-gradient(
        circle,
        var(--dot-color) var(--dot-size),
        transparent calc(var(--dot-size) * 1.2)
    );
    background-size:
        var(--dot-gap) var(--dot-gap),
        calc(var(--dot-gap) * 1.5) calc(var(--dot-gap) * 1.5);
    background-position:
        0 0,
        calc(var(--dot-gap) / 2) calc(var(--dot-gap) / 2);
    mix-blend-mode: overlay; /* makes dots blend nicely with background */
    opacity: 1;
    animation: moveDots linear infinite;
    animation-duration: var(--dots-speed);
}

/* gentle hover effect to increase contrast of dots */
.service-card:hover .front::after,
.service-card:hover .back::after {
    opacity: 1; /* you can increase to 1.1 in some browsers, usually 1 is fine */
    animation-duration: 3.5s; /* speed up on hover for a lively effect */
}

/* keyframes to slowly move the dot-grid diagonally */
@keyframes moveDots {
    from {
        background-position:
            0 0,
            calc(var(--dot-gap) / 2) calc(var(--dot-gap) / 2);
    }
    to {
        background-position:
            calc(var(--dot-gap) * 1) calc(var(--dot-gap) * 1),
            calc(var(--dot-gap) / 2 + var(--dot-gap))
                calc(var(--dot-gap) / 2 + var(--dot-gap));
    }
}

/* optional: reduce motion for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .service-card .front::after,
    .service-card .back::after {
        animation: none;
        background-position:
            0 0,
            calc(var(--dot-gap) / 2) calc(var(--dot-gap) / 2);
    }
}

/* ==============================================
           PROJECTS SECTION STYLES
============================================== */
.projects-section {
    padding: 80px 0px;
    max-width: 100%;
    margin: 0;
}
/* Project Card */
.project-card {
    background: #eef6fb;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    /* transition: transform 0.3s ease; */
    width: 100%;
}

/* Image Side */
.project-image {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.project-image:hover img {
    /* transform: scale(1.5); */
}

/* Content Side */
.project-content {
    padding: 40px;
    background: #eef6fb;
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 100%;
}
.project-meta {
    font-size: 0.85rem;
    line-height: 1rem;
    color: var(--primary-aqua);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: normal;
}
.project-content h4 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-aqua);
}
.project-content p {
    font-size: 1rem;
    color: #555;
}

/* Controls Container */
.projects-controls,
.blog-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 5;
    margin-top: 60px;
}
/* Remove default swiper arrows */
.projects-controls .swiper-button-prev::after,
.projects-controls .swiper-button-next::after,
.blog-controls .swiper-button-prev::after,
.blog-controls .swiper-button-next::after {
    display: none;
}
/* Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 1;
    cursor: pointer;
}

/* Ripple effect background */
.swiper-button-prev::before,
.swiper-button-next::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top/right/bottom/left: 0 */
    transform: scale(0);
    transform-origin: center;
    border-radius: 50%;
    background: #fff;
    transition:
        transform 0.5s ease,
        border 0.2s ease;
    z-index: 0; /* keep ripple behind icon */
}

/* Expand ripple on hover */
.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
    transform: scale(1);
    border: 1px solid var(--primary-orange);
}

/* Icon inside button stays above ripple */
.swiper-button-prev i,
.swiper-button-next i {
    position: relative;
    z-index: 2; /* ensures arrow is visible above ripple */
    color: var(--white);
    transition: color 0.3s ease;
}

/* On hover → arrow color changes */
.swiper-button-prev:hover i,
.swiper-button-next:hover i {
    color: var(--primary-orange);
}

/* Pagination in Middle */
.projects-controls .swiper-pagination,
.blog-controls .swiper-pagination {
    position: static;
    max-width: fit-content;
    min-width: 250px;
    height: 50px;
}
.projects-controls .swiper-pagination-bullet,
.blog-controls .swiper-pagination-bullet {
    width: 30px !important;
    background: var(--primary-orange) !important;
    opacity: 0.5;
    border-radius: 4px;
}
.projects-controls .swiper-pagination-bullet-active,
.blog-controls .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .project-image {
        max-height: 250px;
    }
    .project-content {
        padding: 20px;
    }
}

/* Read More Button with Water Fill Effect */
.project-content .read-more {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 400;
    transition:
        color 0.3s ease,
        border 0.3s ease;
    max-width: 140px;
    margin-top: auto;
    font-size: 14px;
    height: 40px;
    line-height: 30px;
    border: 1px solid var(--primary-orange);
}

/* Icon spacing */
.read-more i {
    margin-left: 5px;
    transition: color 0.3s ease;
}

/* Pseudo-element for water fill effect */
.project-content .read-more::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff; /* fill color on hover */
    z-index: 0;
    transition: height 0.4s ease;
    border-radius: 6px;
    mix-blend-mode: lighten;
}

/* Hover effect: fill from bottom and text color change */
.project-content .read-more:hover::before {
    height: 100%;
}

.project-content .read-more:hover {
    color: var(--primary-orange) !important;
    border-color: var(--primary-orange);
}

/* Ensure text stays above the fill */
.project-content .read-more span,
.project-content .read-more i {
    position: relative;
    z-index: 1;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
    background: var(--primary-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
}
.text-muted{
    color: var(--primary-dark) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
}

/* Dim non-active slides */
.projects-slider .swiper-slide {
    opacity: 0.5;
    transform: scale(0.95);
    transition: all 0.4s ease;
    filter: grayscale(50%);
    height: auto;
    min-height: unset !important;
}

.projects-slider .swiper-slide:hover .project-image {
    animation: zoomBg 0.6s ease forwards;
}

/* Highlight active one */
.projects-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: none;
    z-index: 2;
}

/* Ensure next/prev are visible but behind */
.projects-slider .swiper-slide-next,
.projects-slider .swiper-slide-prev {
    opacity: 0.7;
    filter: grayscale(30%);
}
/* ==============================================
   BLOG SECTION STYLES
============================================== */
.blog-section {
    /* background: var(--white); */
    padding: 80px 0px;
    max-width: 100%;
    margin: 0;
}
.blog-section .blog-slider {
    padding: 50px 0;
}
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    padding: 12px;
}

.blog-image {
    height: 250px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    transition:
        all 0.6s ease,
        filter 0.6s ease,
        background-size 0.6s ease;
}
/* Mobile */
/* ===== BLOG CARD MOBILE ===== */
@media (max-width: 768px) {
    .blog-page .blog-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
        margin-bottom: 15px !important;
    }

    .blog-page .blog-thumb {
        flex: 0 0 110px;
    }

    .blog-page .blog-thumb img {
        width: auto !important;
        height: 150px !important;
        object-fit: cover;
        border-radius: 8px;
    }

    .blog-page .blog-card .flex-grow-1 {
        display: flex;
        flex-direction: column;
    }

    .blog-page .blog-card .badge {
        font-size: 11px;
        padding: 4px 8px;
        margin-bottom: 4px;
        width: fit-content;
    }

    .blog-page .blog-card h4 {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .blog-page .blog-card .text-muted.small {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .blog-page .blog-card .text-muted.mb-3 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .blog-page .blog-card .btn {
        font-size: 12px;
        padding: 5px 12px;
        border-radius: 6px;
    }

    .blog-page .sidebar-card p {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .blog-page .sidebar-card .small {
        font-size: 11px;
    }
}
/* overlay */
/* .blog-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); 
    transition: 0.6s ease;
} */
/* default: all slides BW */
.blog-slider .swiper-slide .blog-image {
    filter: grayscale(100%);
    transition:
        filter 0.6s ease,
        transform 0.6s ease;
    will-change: filter, transform;
}

/* correct selector for the active Swiper slide */
.blog-slider .swiper-slide.swiper-slide-active .blog-image {
    filter: grayscale(0%);
}

/* stronger fallback if another rule is overriding it */
.blog-slider .swiper-slide.swiper-slide-active .blog-image {
    filter: grayscale(0%) !important;
}

.blog-card:hover .blog-image {
    animation: zoomBg 0.6s ease forwards;
}

@keyframes zoomBg {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 120%;
    }
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.blog-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 14px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.blog-content a {
    color: #141414;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.blog-content .read-more {
    font-weight: 500;
    color: #ff4c00; /* primary orange */
    text-decoration: none;
    font-size: 16px;
}

.blog-content .read-more i {
    margin-left: 6px;
    transition: margin-left 0.3s;
}

.blog-content .read-more:hover i {
    margin-left: 12px;
}

/* Swiper Pagination */
.blog-section .swiper-slide {
    min-height: unset !important;
}

/* ==============================================
           WAVE SECTION STYLES
============================================== */
.wave-wrapper {
    padding: 80px 0px;
    position: relative;
    min-height: 100vh;
    /* overflow: hidden; */
    background: linear-gradient(
        315deg,
        rgba(255, 255, 255, 0.8) 10%,
        /* soft white */ rgba(245, 245, 245, 0.6) 40%,
        /* very light grey */ rgba(255, 255, 255, 0.7) 70%,
        /* white again */ rgba(240, 240, 240, 0.5) 100% /* faint light grey */
    );
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    align-items: center;
}

/* Gradient animation */
@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Wave styles */
.wave {
    background: rgba(255, 78, 5, 0.3);
    border-radius: 1000% 1000% 0 0;
    position: absolute; /* relative to section */
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.5;
    bottom: 0;
    left: 0;
    z-index: 1; /* below content */
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-25%);
    }
    50% {
        transform: translateX(-50%);
    }
    75% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(0);
    }
}
/* Optional: content on top */
.map-section,
.cta-section {
    position: relative;
    z-index: 3;
}

/* ==============================================
           MAP SECTION STYLES
============================================== */
.map-section {
    position: relative;
    padding: 80px 0;
    overflow: visible; /* allow background overlap */
    z-index: 1; /* content stays above */
}
.map-container {
    text-align: center;
    position: relative;
    z-index: 2; /* ensure text stays on top */
}

.map-container iframe {
    width: 95%;
    margin: 0px auto;
    max-width: 1024px;
}

/* ==============================================
           CTA SECTION STYLES
============================================== */
.cta-section {
    position: relative;
    margin-bottom: -160px; /* makes it overlap footer */
    z-index: 5;
}

.cta-box {
    background: #eaf6fb;
    border-radius: 16px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-subtitle {
    color: #0099b5;
    font-size: 16px;
    margin-bottom: 10px;
}
.cta-content {
    padding: 40px 50px;
}

.cta-content h3 {
    color: #0099b5;
    font-size: 2.5rem;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 50px;
}

/* ---------------- ORANGE CTA BUTTON ---------------- */
.cta-box .btn-orange {
    position: relative; /* needed for ::before */
    overflow: hidden; /* clip the ripple */
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: lighter;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    z-index: 1;
}

/* Circular overlay effect */
.cta-box .btn-orange::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    border-radius: 50%;
    background: var(--primary-dark); /* same as .btn-login */
    transform: scale(0) translate(-50%, -50%);
    transform-origin: center;
    z-index: -1;
    transition: transform 1.2s ease;
}

/* On hover – overlay expands */
.cta-box .btn-orange:hover::before {
    transform: scale(1) translate(-50%, -50%);
}

/* On hover – text stays white, border changes */
.cta-box .btn-orange:hover {
    color: var(--white) !important;
    border: 1px solid var(--primary-dark);
    background: var(--primary-orange); /* keep base color stable */
}

.cta-box .cta-image {
    max-width: 220px;
}

/* ==============================================
           FOOTER SECTION STYLES
============================================== */

.footer {
    position: relative;
    background-color: #1e1e24; /* Primary Dark */
    color: var(--white, #fff);
    padding: 180px 0 40px;
    z-index: 0;
    overflow: hidden;
}
.footer.low-padding-top {
    padding-top: 80px;
}

.footer::before {
    content: "";
    position: absolute;
    bottom: 0; /* stick to bottom */
    right: 0; /* stick to right */
    width: 65%; /* only 30% width of footer */
    height: 100%; /* full height of footer */

    /* background: url("../images/W-bg-1.png"); */
    background-size: contain; /* so image fits */
    background-position: right bottom;
    background-repeat: no-repeat;

    opacity: 0.5;
    z-index: 1;
    pointer-events: none; /* avoid blocking clicks */
}

/* Content stays above background */
.footer-content {
    position: relative;
    z-index: 2;
}

/* Top columns */
.footer-top {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white, #fff);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--primary-orange, #e17e2c);
}

.footer-contact i {
    width: 18px;
    margin-right: 8px;
    color: var(--primary-orange, #e17e2c);
}

/* Social (LinkedIn circle) */
.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    transition: all 0.25s ease;
    margin-top: 12px;
}
.footer-social a:hover {
    background: var(--primary-orange, #e17e2c);
    border-color: var(--primary-orange, #e17e2c);
}

/* Bottom bar */
.footer-bottom {
    margin-top: 30px;
    padding-top: 24px;
}

.footer-brand img {
    display: block;
    margin-bottom: 12px;
}

.brand-copy {
    color: rgba(255, 255, 255, 0.8);
    max-width: 420px;
    margin: 0;
    font-size: 0.95rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

/* Small tweaks */
@media (max-width: 767.98px) {
    .footer {
        padding-top: 140px;
    }
    .brand-copy {
        max-width: 100%;
    }
}

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

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

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

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

/* ==============================================
           RESPONSIVE DESIGN
           ============================================== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .video-play-btn {
        right: 5%;
        width: 80px;
        height: 80px;
        font-size: 30px;
    }

    .mega-menu-content {
        flex-direction: column;
        gap: 30px;
    }

    .mega-menu-image {
        height: 150px;
    }

    .cta-content h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .video-play-btn {
        position: static;
        margin-top: 30px;
        margin: 30px auto 0;
    }

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

    .section-title {
        margin-bottom: 50px;
    }

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

    .btn-primary-orange,
    .btn-outline-white,
    .btn-white {
        padding: 15px 30px;
        font-size: 14px;
        margin-right: 0;
        margin-bottom: 15px;
        display: block;
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }

    .mega-menu-content {
        text-align: left;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .service-card-content,
    .project-content,
    .blog-content {
        padding: 25px;
    }

    .strength-item {
        padding: 40px 20px;
    }
}

/* ==============================================
           UTILITY CLASSES
           ============================================== */
.text-orange {
    color: var(--primary-orange);
}

.bg-orange {
    background: var(--primary-orange);
}

.border-orange {
    border-color: var(--primary-orange);
}

.shadow-custom {
    box-shadow: var(--shadow-light);
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.blog-lighting {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%232d3748"/><g fill="%23E17E2C" opacity="0.6"><path d="M100,50 Q200,20 300,50 Q250,100 200,80 Q150,100 100,50"/><circle cx="200" cy="60" r="25"/></g><g fill="rgba(255,255,255,0.2)"><rect x="50" y="120" width="300" height="60" rx="10"/><rect x="80" y="140" width="240" height="8" rx="4"/><rect x="80" y="155" width="200" height="8" rx="4"/></g></svg>');
}

.blog-tunnel {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%234a4a4a"/><g fill="%23E17E2C" opacity="0.5"><path d="M0,100 Q100,50 200,100 Q300,150 400,100 L400,200 L0,200 Z"/><circle cx="200" cy="100" r="30" fill="rgba(255,255,255,0.1)"/></g><g fill="rgba(255,255,255,0.1)"><rect x="150" y="80" width="100" height="40" rx="20"/><rect x="170" y="90" width="60" height="6" rx="3"/><rect x="170" y="105" width="50" height="6" rx="3"/></g></svg>');
}

.blog-industry {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%23567890"/><g fill="%23E17E2C" opacity="0.4"><rect x="100" y="80" width="80" height="100" rx="5"/><rect x="200" y="60" width="60" height="120" rx="5"/><rect x="280" y="90" width="50" height="90" rx="5"/></g><g fill="rgba(255,255,255,0.15)"><circle cx="140" cy="120" r="12"/><circle cx="230" cy="110" r="10"/><circle cx="305" cy="130" r="8"/></g></svg>');
}

/* ANIMATION FOR BG */
.animated-bg-with-logo {
    position: relative;
    overflow: hidden;
}
.animated-bg-with-logo::after {
    /* background: url("../images/W-bg-1.png") no-repeat center center/cover; */
    content: "";
    position: absolute;
    display: block;
    height: 400%;
    width: 200%;
    top: -100%;
    left: -50%;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            var(--primary-orange) 10px,
            var(--primary-orange) 11px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            var(--primary-orange) 10px,
            var(--primary-orange) 11px
        );
    z-index: -1;
    opacity: 0.04;

    /* Animation */
    animation: diagonalSlide 60s linear infinite;
}

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

.animated-bg-with-logo::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: url(../images/bg-2.jpg) no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    /* animation: move-bg 30s linear infinite;  */
}
@keyframes move-bg {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -100% 0;
    }
}
.strength-grid .strength-item {
    position: relative;
    border-radius: 8px; /* optional */
    overflow: hidden; /* keep border tidy */
}

.strength-grid .strength-item::before {
    content: "";
    position: absolute;
    inset: 0; /* full cover */
    padding: 4px; /* border thickness */
    border-radius: 8px; /* match parent */

    background: linear-gradient(
        270deg,
        var(--primary-orange),
        white,
        var(--primary-aqua),
        var(--secondary-orange)
    );
    background-size: 400% 100%;
    animation: moveGradient 6s linear infinite;

    /* mask so only border is visible */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.bounce-text {
    display: inline-block;
    transition: transform 0.3s ease;
}

.bounce-text:hover {
    animation: bounceAnim 0.6s ease;
}

@keyframes bounceAnim {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(0);
    }
    70% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}
/* dripping color overlay */
.lines {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 90vw;
    display: flex;
    justify-content: space-between; /* Distribute lines evenly */
    /* z-index: 2; */
}

.line {
    position: relative;
    width: 1px;
    height: 100%;
    /*background: #ffffff;  /* Line color */
    overflow: hidden;
}

.line::after {
    content: "";
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #ffffff 75%,
        #ffffff 100%
    );
    animation: drop 7s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

/* Different colors for each line's pseudo-element */
.line:nth-child(1)::after {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #ff4500 75%,
        #ff4500 100%
    );
    animation-delay: 0.5s;
}

.line:nth-child(2)::after {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #32cd32 75%,
        #32cd32 100%
    );
    animation-delay: 1s;
}

.line:nth-child(3)::after {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #1e90ff 75%,
        #1e90ff 100%
    );
    animation-delay: 1.5s;
}

.line:nth-child(4)::after {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #ffd700 75%,
        #ffd700 100%
    );
    animation-delay: 2s;
}

.line:nth-child(5)::after {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #8a2be2 75%,
        #8a2be2 100%
    );
    animation-delay: 2.5s;
}

.line:nth-child(6)::after {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #20b2aa 75%,
        #20b2aa 100%
    );
    animation-delay: 3s;
}

.line:nth-child(7)::after {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #dc143c 75%,
        #dc143c 100%
    );
    animation-delay: 3.5s;
}

.line:nth-child(8)::after {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #00fa9a 75%,
        #00fa9a 100%
    );
    animation-delay: 4s;
}

.line:nth-child(9)::after {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #ff1493 75%,
        #ff1493 100%
    );
    animation-delay: 4.5s;
}

.line:nth-child(10)::after {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #00bfff 75%,
        #00bfff 100%
    );
    animation-delay: 5s;
}

@keyframes drop {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}
/* ==============================================
           Our Core Strength SECTION STYLES
============================================== */
/* ==============================================
           Our Core Strength SECTION STYLES
============================================== */

.core-strength-section {
    position: relative;
    width: 100%;
    min-height: 450px;
    padding: 100px 20px;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    z-index: 1; /* content stays above */
}

/* Circle container */
.core-strength-section .circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -80px;
    position: relative;
    overflow: visible;
}

@media (max-width: 912px) {
    .core-strength-section .circle-container {
        flex-direction: column;
        gap: 10px;
    }
}

/* Circle base styles */
.core-strength-section .circle {
    position: relative;
    width: 350px;
    height: 350px;
    border: 2px dashed var(--primary-orange);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    transition:
        transform 0.6s ease,
        opacity 0.6s ease;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    overflow: hidden;
}

/* Orange fill effect using pseudo-element */
.core-strength-section .circle::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-orange);
    z-index: 0;
    transition: height 0.6s ease;
    border-radius: 50% 50% 0 0;
    clip-path: polygon(
        0% 100%,
        10% 75%,
        20% 80%,
        30% 70%,
        40% 78%,
        50% 65%,
        60% 70%,
        70% 60%,
        80% 68%,
        90% 55%,
        100% 60%,
        100% 100%,
        0% 100%
    );
}

/* Hover: fill up to 65% with wavy effect */
.core-strength-section .circle:hover::before {
    height: 65%;
}

/* Pulsing border effect on hover */
.core-strength-section .circle:hover {
    animation: pulsingBorder 2s infinite;
}

/* Pulsing border animation */
@keyframes pulsingBorder {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    70%,
    100% {
        transform: scale(1.02);
        box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
    }
}

/* Text and icons should stay above fill */
.core-strength-section .circle h3,
.core-strength-section .circle p,
.core-strength-section .circle .strength-icon {
    position: relative;
    z-index: 2;
}

/* Text and icon styles */
.core-strength-section .circle h3 {
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-size: 20px;
}

.core-strength-section .circle p {
    color: var(--primary-dark);
    font-size: 14px;
}

.core-strength-section .circle .strength-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* Arrow Button */
.core-strength-section .service-arrow {
    position: absolute;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.core-strength-section .service-arrow i {
    color: #ff6b35;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Overlap circles using margin */
.circle:nth-child(2) {
    margin: 0 -20px; /* center circle overlaps left and right */
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    overflow: hidden; /* needed for ripple effect */
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

/* Ripple effect */
.back-to-top::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #fff;
    transform: scale(0);
    transform-origin: center;
    transition:
        transform 0.5s ease,
        border 0.2s ease;
    z-index: 0; /* keep ripple behind icon */
}

/* On hover → ripple expands */
.back-to-top:hover::before {
    transform: scale(1);
    border: 1px solid var(--primary-orange);
}

/* Icon/text inside stays above ripple */
.back-to-top i,
.back-to-top svg {
    position: relative;
    z-index: 2;
    color: #fff;
    transition: color 0.3s ease;
}

/* On hover → icon turns orange */
.back-to-top:hover i,
.back-to-top:hover svg {
    color: var(--primary-orange);
}

/* Scroll Down Button */
.hero-slide-content-scroll-down {
    position: absolute;
    bottom: 40px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
    overflow: hidden; /* needed for ripple effect */
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

/* Ripple effect */
.hero-slide-content-scroll-down::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #fff;
    transform: scale(0);
    transform-origin: center;
    transition:
        transform 0.5s ease,
        border 0.2s ease;
    z-index: 0; /* behind arrow */
}

/* On hover → ripple expands */
.hero-slide-content-scroll-down:hover::before {
    transform: scale(1);
    border: 1px solid var(--primary-orange);
}

/* Arrow stays above ripple */
.hero-slide-content-scroll-down i {
    position: relative;
    z-index: 2;
    color: #fff;
    transition: color 0.3s ease;
}

/* On hover → arrow turns orange */
.hero-slide-content-scroll-down:hover i {
    color: var(--primary-orange);
}
.career-btn {
    position: absolute;
    left: 10%;
    bottom: 50px;
}
.career-btn a {
    padding: 10px 20px;
}

.logo-bg-section {
    position: relative;
    background-image: url("../images/wang-bg.png");
    background-repeat: no-repeat;
    background-size: calc(100% + 100px);
    transition: all ease-in-out 1s;
    background-position: -50px -100%;
}
/* ==============================================
           Inside page header title section
============================================== */
.wang-page-header {
    display: flex;
    align-items: stretch;
    min-height: 400px;
    overflow: hidden;
}

.wang-header-text {
    flex: 0 0 35%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    z-index: 2;
}

.wang-header-text h1 {
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.wang-header-text p {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 0;
}

.wang-header-image {
    flex: 0 0 65%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    position: relative;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.wang-header-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .wang-page-header {
        flex-direction: row; /* keep left-right */
        min-height: 220px;
    }

    .wang-header-text {
        flex: 0 0 50%;
        padding: 20px;
    }

    .wang-header-text h1 {
        font-size: 22px;
    }

    .wang-header-text p {
        font-size: 13px;
    }

    .wang-header-image {
        flex: 0 0 50%;
        height: auto;
        min-height: 220px;
        clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
        background-position: center;
        background-size: cover;
    }
}

/* @media (max-width: 991px) {
    .wang-page-header {
        flex-direction: column;
    }

    .wang-header-text,
    .wang-header-image {
        flex: 1 1 100%;
        clip-path: none;
    }

    .wang-header-text {
        padding: 40px 20px;
        text-align: center;
    }
} */

.page-header .container {
    position: relative;
    z-index: 1;
}
.list-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 260px;
    transition: transform 0.3s ease;
}

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

.list-card:hover img {
    transform: scale(1.1);
}

.list-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.65)
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: all 0.4s ease;
}

.list-card:hover .list-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.8)
    );
    padding-bottom: 35px;
}

.list-overlay h5 {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.list-card:hover .list-overlay h5 {
    transform: translateY(-8px);
    opacity: 0.95;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-top: 10px;
}
.resource-card {
    position: relative;
    height: 230px;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.resource-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.resource-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: background 0.3s ease;
    padding: 20px;
}

.resource-card:hover .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}
.resource-image {
    height: 100%;
}
.resource-card .overlay a {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 8px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

/* ==============================================
           CAREER SECTION STYLES
============================================== */
#career .section-title {
    font-weight: 500;
    border-left: 4px solid var(--primary-orange);
    padding-left: 10px;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

#career .accordion-button {
    font-weight: 500;
    background-color: var(--secondary-orange);
    color: var(--text-gray);
    border-radius: 8px !important;
    transition: background-color 0.3s ease;
}

#career .accordion-button:not(.collapsed) {
    background-color: var(--primary-orange);
    color: var(--white);
}

#career .accordion-body {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
}

#career .btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

#career .btn-primary:hover {
    background-color: var(--secondary-orange);
}

.filter-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-btn {
    border: 1px solid var(--primary-orange);
    background: #fff;
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    border: 1px solid var(--primary-dark);
}
.coming-soon {
    text-align: center;
    padding: 100px 0;
}

.coming-soon h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.coming-soon p {
    color: var(--primary-dark);
    font-size: 1rem;
}
.mission-vision-values {
    position: relative;
    background: url("../images/mission-vision.jpg") no-repeat center
        center/cover;
    padding: 100px 0;
    overflow: hidden;
}

.mission-vision-values .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 36, 8, 0.2); /* Dark blue overlay for contrast */
    z-index: 0;
}

.mission-vision-values .container {
    position: relative;
    z-index: 2;
}

.mission-vision-values .info-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 40px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.mission-vision-values .info-card:hover {
    transform: translateY(-8px);
    background: #fff;
}

.mission-vision-values .icon-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #fff;
    position: relative;
}

.mission-vision-values .info-card.mission .icon-box {
    background: linear-gradient(
        145deg,
        var(--primary-orange),
        var(--secondary-orange)
    );
}

.mission-vision-values .info-card.vision .icon-box {
    background: linear-gradient(
        145deg,
        var(--primary-orange),
        var(--secondary-orange)
    );
}

.mission-vision-values .info-card.values .icon-box {
    background: linear-gradient(
        145deg,
        var(--primary-orange),
        var(--secondary-orange)
    );
}

.mission-vision-values h4 {
    font-size: 1.25rem;
    color: #222;
}

.mission-vision-values p {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-top: 10px;
    line-height: 1.6;
}
.core-values {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    padding-bottom: 100px;
}

.values-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hex-card {
    position: relative;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.hex-card:hover {
    transform: translateY(-10px);
}

.hex-shape {
    position: relative;
    width: 220px;
    height: 260px;
    margin: 0 auto;
    background: #fff;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hex-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
}

.hex-inner .hex-number {
    position: absolute;
    top: 10px;
    font-weight: 600;
    font-size: 18px;
    opacity: 0.6;
    color: var(--primary-dark);
}

.hex-inner i {
    font-size: 30px;
    margin-bottom: 10px;
}

.hex-inner h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.hex-inner p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
}

/* Color Themes */
.hex-card.green .hex-shape {
    border: 3px solid #2ecc71;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}
.hex-card.blue .hex-shape {
    border: 3px solid #3498db;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}
.hex-card.red .hex-shape {
    border: 3px solid #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}
.hex-card.dark .hex-shape {
    border: 3px solid #2c3e50;
    background: rgba(255, 167, 115, 0.3);
    color: var(--primary-dark);
}
.hex-card.teal .hex-shape {
    border: 3px solid #1abc9c;
    background: rgba(26, 188, 156, 0.1);
    color: #1abc9c;
}

.hex-card {
    z-index: 1;
}

@media (max-width: 991px) {
    .values-wrapper::before {
        display: none;
    }
}
.quick-links a {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px 10px 0 0;
    /* background: var(--primary-orange); */
    /* color: #fff; */
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

/* ===== Hero Section ===== */
.market-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.market-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.market-hero .content-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0;
    padding: 50px 60px;
    max-width: 45%;
    margin-left: 10%;
    margin-top: auto;
}

.market-hero h1 {
    color: var(--primary-orange);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.market-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--primary-dark);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .market-hero {
        min-height: 400px;
        padding: 40px 20px;
    }

    .market-hero .content-box {
        max-width: 90%;
        margin: 0 auto;
        padding: 40px 25px;
    }

    .market-hero h1 {
        font-size: 1.8rem;
    }
}
.resource-card {
    position: relative;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.resource-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.resource-overlay a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

/* THEME BUTTON */
.btn-hover-animation {
    position: relative;
    overflow: hidden;
    transition:
        color 0.4s ease,
        border-color 0.8s ease,
        box-shadow 0.8s ease;
    z-index: 1;
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    background-color: var(--white);
}
.btn-hover-animation.btn-fill {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-hover-animation:hover {
    color: var(--white);
    border-color: var(--primary-orange);
}

.btn-hover-animation.btn-fill:hover {
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
}

/* Circular overlay */
.btn-hover-animation::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    border-radius: 50%;
    transform: scale(0) translate(-50%, -50%);
    transform-origin: center;
    z-index: -1;
    transition: transform 1.2s ease;
    background: var(--primary-orange);
}

.btn-hover-animation.btn-fill::before {
    background: var(--white);
}
.btn-hover-animation:hover::before {
    transform: scale(1) translate(-50%, -50%);
}

/* THEME BUTTON END */

/* Left blog image */
.blog-card .blog-thumb {
    width: 250px; /* bigger image */
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.blog-card .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures full coverage */
}

/* Sidebar images */
.sidebar-thumb {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    min-width: 100px;
}

.sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Login modasl css */
/* ===== MODAL FIX ===== */
.argus-modal {
    max-width: 900px;
}

.modal-backdrop.show {
    opacity: 0.7;
}

/* ===== CONTAINER ===== */
.login-container-modal {
    display: flex;
    width: 100%;
    min-height: 400px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .login-container-modal {
        flex-direction: column;
    }

    .login-image-side-modal {
        display: none;
    }

    .login-form-side-modal {
        padding: 35px 25px;
    }
}
/* ===== MODAL FIX ===== */
.argus-modal {
    max-width: 800px;
}

.modal-backdrop.show {
    opacity: 0.7;
}

/* ===== CONTAINER ===== */
.login-container-modal {
    display: flex;
    width: 100%;
    min-height: 400px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* ===== RIGHT CONTENT ===== */
.login-form-side-modal {
    flex: 1 1 45%;
    padding: 50px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-side-modal h2 {
    font-weight: 500;
    color: var(--text-gray);
}

/* ===== ARGUS BUTTON ===== */
.login-link-btn {
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 600;
    min-width: 120px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .login-container-modal {
        flex-direction: column;
    }

    .login-image-side-modal {
        display: none;
    }

    .login-form-side-modal {
        padding: 35px 25px;
    }
}
/* */
.normal-bullets {
    list-style-type: disc;
}

.normal-bullets li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
/* ===== Pagination Layout ===== */
.blog-pagination {
    text-align: center;
}

/* remove default margin */
.blog-pagination .pagination {
    margin: 0;
}

/* ===== Remove Bootstrap Blue ===== */
.pagination .page-link {
    color: #ff5a1f; /* your orange */
    border-radius: 8px;
    border: 1px solid #eee;
    margin: 0 3px;
    transition: all 0.3s ease;
}

/* hover */
.pagination .page-link:hover {
    background-color: #ff5a1f;
    color: #fff;
    border-color: #ff5a1f;
}

/* active page */
.pagination .active .page-link {
    background-color: #ff5a1f !important;
    border-color: #ff5a1f !important;
    color: #fff !important;
}

/* remove blue focus glow */
.pagination .page-link:focus {
    box-shadow: none;
}

/* disabled buttons */
.pagination .disabled .page-link {
    color: #ccc;
}

.search-wrapper .dropdown-menu {
    background-color: #fff !important;
    border: 1px solid var(--primary-orange) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    margin-top: 0 !important;
    border-radius: 8px !important;
    padding: 10px !important;
    min-width: 250px;
}
.search-wrapper .dropdown-menu input {
    padding: 5px;
    min-width: 250px;
}
/* Chrome, Safari */
.search-wrapper input::-webkit-input-placeholder {
    font-size: 14px;
}

/* Firefox */
.search-wrapper input::-moz-placeholder {
    font-size: 14px;
}

/* IE */
.search-wrapper input:-ms-input-placeholder {
    font-size: 14px;
}
.form-control:focus {
    color: var(--bs-body-color) !important;
    background-color: #fff;
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgba(255, 255, 255, 0.1) !important;
}
/* ===== Search Page ===== */

.search-section {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.section-heading {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Result Card */
.search-card {
    display: block;
    padding: 15px 18px;
    border-radius: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #333;
    background: #fafafa;
    transition: 0.3s;
}

.search-card:hover {
    background: #fff3ec;
    border-left: 4px solid #ff5a1f;
    transform: translateX(5px);
}

.search-card h6 {
    margin: 0;
}

/* keyword highlight */
mark {
    background: #ffe6db;
    color: #ff5a1f;
    padding: 2px 5px;
    border-radius: 4px;
}
/* ===== HERO UPGRADE SAFE ===== */

.hero-wrapper.upgrade-view {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO BACKGROUND */
.hero-wrapper.upgrade-view .hero-video-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-wrapper.upgrade-view video {
    width: 100%;
    height: calc(100vh - 110px);
    object-fit: cover;
}

/* DARK OVERLAY */
/* .hero-wrapper.upgrade-view::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
} */

/* SWIPER ABOVE VIDEO */
.hero-wrapper.upgrade-view .hero-swiper {
    position: relative;
    height: calc(100vh - 110px);
    z-index: 3;
}

.hero-wrapper.upgrade-view .swiper-slide {
    height: calc(100vh - 110px);
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    background: transparent;
}

.hero-wrapper.upgrade-view h1 {
    position: absolute;
    bottom: 150px;
    height: auto;
    /* padding: 5px 25px; */
    color: #ffffff;
    left: 10%;
    font-weight: 700;
    max-width: 85%;
    display: inline-block;
    align-items: end;
    text-shadow:
        1px 1px 2px rgba(0, 0, 0, 0.5),
        3px 3px 6px rgba(0, 0, 0, 0.3);
    z-index: 16;
    font-size: 3rem;
    width: auto;
    display: inline-block;
}
/* ===== PAGINATION FIX ===== */
.hero-wrapper.upgrade-view .swiper-pagination {
    z-index: 5; /* ⭐ ABOVE OVERLAY */
}

/* ===== CAREER BUTTON FIX ===== */
.hero-wrapper.upgrade-view .career-btn {
    z-index: 5; /* ⭐ ABOVE OVERLAY */
}

#contact .section-title {
    font-weight: 500;
    border-left: 4px solid var(--primary-orange);
    padding-left: 10px;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

#contact .contact-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    background: #fff;
}

#contact label {
    font-weight: 500;
}

#contact .form-control {
    border-radius: 6px;
    box-shadow: none;
}

#contact .btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

#contact .btn-primary:hover {
    background-color: var(--primary-dark);
}

iframe {
    border: 0;
    border-radius: 10px;
}

#contact .info-box p {
    margin-bottom: 0.4rem;
    font-weight: lighter;
}

#contact .info-box strong {
    color: var(--text-gray);
}
@media (max-width: 768px) {
    .hero-wrapper.upgrade-view h1 {
        font-size: 2.25rem;
    }
}
