/* Fix: Career Section Text Visibility */
.career-highlight-section {
    color: #fff;
}

.career-highlight-section h4 {
    color: #677888 !important;
}

.career-highlight-section p,
.career-highlight-section a {
    color: #0d0c0c !important;
}

.career-highlight-section a.btn {
    background-color: #fac400 !important;
    color: #000 !important;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 40px;
    margin-top: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    border: none;
}


.career-highlight-section a.btn:hover {
    background-color: #ffe082 !important;
    color: #222 !important;
}

:root {
    --primary-color: #00AEEF;
    --primary-hover: #0088CC;
    --secondary-accent: #fac400;
    --secondary-color: #1f2021;
    --dark-bg: #0b0b0b;
    --light-bg: #f5f5f5;
    --text-main: #000000;
    --text-muted: #333333;
    --text-white: #FFFFFF;
    --transition-fast: transform 0.2s ease-in-out, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    --transition-normal: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

/* Base Styles */
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,

h6 {
    font-weight: 700;
    color: var(--secondary-color);
}

a {
    transition: var(--transition-fast);
    text-decoration: none;
    will-change: transform, opacity;
}



/* Navbar Navigation */
.navbar {
    padding: 0.8rem 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    background-color: var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backface-visibility: hidden;
}

.navbar-transparent:not(.scrolled) {
    background-color: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

.navbar-transparent:not(.scrolled) .nav-link {
    color: var(--text-white) !important;
}

.navbar-transparent:not(.scrolled) .btn-contact {
    border-color: rgba(255, 255, 255, 0.5) !important;
}





.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: var(--text-white) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 150, 0.1);
}

.navbar.scrolled .nav-link {
    color: var(--text-main) !important;
}

/* EYE-CATCHING LOGO VISIBILITY - Base rules */
.navbar-brand img {
    height: 92px !important;
    transform: scale(1.16);
    transform-origin: center;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* On transparent backgrounds, keep the logo visible */
.navbar-transparent:not(.scrolled) .navbar-brand img {
    filter: none !important;
}

/* Scrolled state sizing */
.navbar.scrolled .navbar-brand img {
    height: 68px !important;
    transform: scale(1.12);
}

h2 {
    color: #677888;
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, letter-spacing 0.3s ease, text-shadow 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    letter-spacing: 1px;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.4);
}

.btn-contact {
    background-color: var(--primary-color);
    color: var(--text-white) !important;
    border-radius: 50px;
    padding: 12px 28px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
}

.btn-contact:hover {
    background-color: var(--primary-hover);
    color: var(--text-white) !important;
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
}

/* Mobile Navbar: ensure transparent nav becomes dark on small screens and collapsed menu is a dark sheet */
@media (max-width: 991.98px) {
    .navbar.navbar-transparent:not(.scrolled) {
        background-color: var(--dark-bg) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar.navbar-transparent:not(.scrolled) .navbar-collapse {
        background-color: var(--dark-bg) !important;
    }

    .navbar.navbar-transparent:not(.scrolled) .nav-link {
        color: var(--text-white) !important;
    }

    .navbar.navbar-transparent:not(.scrolled) .navbar-toggler-icon {
        filter: invert(1) !important;
    }

    .navbar.navbar-transparent:not(.scrolled) .navbar-brand img {
        filter: brightness(0) invert(1) !important;
    }

    /* Stronger mobile collapse override: make opened collapse a fixed dark sheet */
    .navbar.navbar-transparent:not(.scrolled) .navbar-collapse.show {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 100vh !important;
        background: var(--dark-bg) !important;
        z-index: 2500 !important;
        padding-top: 80px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .navbar.navbar-transparent:not(.scrolled) .navbar-collapse.show .nav-link {
        color: var(--text-white) !important;
    }

    .navbar.navbar-transparent:not(.scrolled) .navbar-collapse.show .btn-contact {
        color: var(--text-white) !important;
        background: var(--primary-color) !important;
    }

    /* ensure toggler (X) is white on dark sheet */
    .navbar.navbar-transparent:not(.scrolled) .navbar-toggler {
        color: var(--text-white) !important;
    }
}

/* Stronger mobile collapse override: make opened collapse a fixed white sheet */
@media (max-width: 991.98px) {
    .navbar.navbar-transparent:not(.scrolled) .navbar-collapse.show {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 2500 !important;
        padding-top: 80px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .navbar.navbar-transparent:not(.scrolled) .navbar-collapse.show .nav-link {
        color: var(--text-main) !important;
    }

    .navbar.navbar-transparent:not(.scrolled) .navbar-collapse.show .btn-contact {
        color: var(--text-main) !important;
        background: var(--primary-color) !important;
    }

    /* ensure toggler (X) is dark on white sheet */
    .navbar.navbar-transparent:not(.scrolled) .navbar-toggler.collapsed {
        color: var(--text-main) !important;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background-image: url('../img/5076404.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-white);
    margin-top: 0;
    /* Remove offset for transparent overlap */
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Service Cards (Grid) */
.services-section {
    background-color: var(--light-bg);
}

.image-service-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.image-service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

/* Image overlay setup */
.image-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition-normal);
    z-index: 1;
}

/* Inner frame on hover */
.image-service-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0);
    z-index: 3;
    transition: var(--transition-normal);
    pointer-events: none;
}

.image-service-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    z-index: 2;
}

/* On hover changes */
.image-service-card:hover::after {
    background: rgba(0, 174, 239, 0.85);
    /* Cyan overlay */
}

.image-service-card:hover::before {
    border-color: rgba(255, 255, 255, 1);
}

.image-service-card:hover .image-service-card-image {
    transform: scale(1.1);
}

.image-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.3);
}

/* Industries Section */
.industry-section {
    position: relative;
    padding: 150px 0;
    color: var(--text-white);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

/* Technology Stack */
.tech-stack-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.tech-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Social Proof / Testimonials */
.testimonial-section {
    background: var(--secondary-color);
    color: var(--text-white);
}

.star-rating {
    color: #FFD700;
    margin-bottom: 15px;
}

/* Footer */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding-top: 0px;
    padding-bottom: 0px;

}

.footer-logo {
    max-width: 180px;
    margin-bottom: 24px;
}

.footer-title {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    z-index: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--text-white);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* Hover Transform Effects */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.img-zoom-container {
    overflow: hidden;
    border-radius: inherit;
}

.img-zoom {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom:hover {
    transform: scale(1.08);
}

.text-shift {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.text-shift:hover {
    transform: translateX(5px);
    color: var(--primary-color) !important;
}

.card-interactive {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    will-change: transform, box-shadow;
}

.card-interactive:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.25), 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Utils */
.text-cyan {
    color: var(--primary-color);
}

/* --- Services Overhaul (WhiteAuraX Style) --- */

/* 1. Split Hero Section */
.services-hero-tv {
    padding: 78px 0 50px;
    background: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}


.services-hero-tv .hero-text-area {
    max-width: 760px;
    padding-right: 58px;
    z-index: 2;
    position: relative;
    margin-top: 0;
}

.services-hero-tv .hero-img-container {
    position: relative;
    z-index: 1;
}

.services-hero-tv .hero-curved-img {
    width: 100%;
    height: clamp(340px, 29vw, 565px);
    object-fit: cover;
    border-top-left-radius: 70px;
    border-bottom-right-radius: 38px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.08);
}

.services-hero-tv .section-eyebrow {
    margin-bottom: 25px;
    font-size: 0.95rem;
    letter-spacing: 4px;
}

.services-hero-title {
    color: #08bfe9;
    font-size: clamp(3.5rem, 4.15vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.services-hero-copy {
    max-width: 780px;
    font-size: clamp(1.25rem, 1.35vw, 1.63rem);
    line-height: 1.72;
    color: #6d7882 !important;
}

.services-hero-cta {
    min-width: 268px;
    min-height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    letter-spacing: 0;
}

@media (max-width: 991.98px) {
    .services-hero-tv {
        padding: 56px 0 46px;
        text-align: center;
    }

    .services-hero-tv .hero-text-area {
        max-width: 680px;
        padding-right: 0;
        margin: 0 auto;
    }

    .services-hero-copy {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575.98px) {
    .services-hero-tv {
        padding-top: 42px;
    }

    .services-hero-tv .section-eyebrow {
        font-size: 0.78rem;
        letter-spacing: 2.5px;
    }

    .services-hero-title {
        font-size: 3rem;
    }

    .services-hero-copy {
        font-size: 1.05rem;
        line-height: 1.65;
    }

    .services-hero-cta {
        min-width: 220px;
        min-height: 60px;
        font-size: 1rem;
    }
}

.services-hero-tv .hero-bg-cyan {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 300px;
    height: 300px;
    background: rgba(0, 174, 239, 0.05);
    border-radius: 50%;
    z-index: 0;
}

/* 2. Impact Section with Overlapping Images */
.impact-tv {
    background-color: #f8fbff;
    padding: 100px 0;
}

.img-overlap-container {
    position: relative;
    height: 450px;
    width: 100%;
}

.img-main {
    width: 80%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    z-index: 1;
    position: relative;
}

.img-sub {
    width: 60%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 2;
    border: 8px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.floating-badge-tv {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border-left: 5px solid var(--primary-color);
}

/* 3. Service Hub Grid (Image Overlays) */
.service-hub-grid {
    padding: 80px 0;
}

.service-hub-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-hub-card .hub-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.6s ease;
}

.service-hub-card .hub-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 34, 64, 0.4), rgba(11, 34, 64, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.service-hub-card h4 {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 1.4rem;
    transition: all 0.4s ease;
}

.service-hub-card:hover .hub-img {
    transform: scale(1.1);
}

.service-hub-card:hover .hub-overlay {
    background: rgba(0, 174, 239, 0.85);
}

.service-hub-card:hover h4 {
    transform: scale(1.05);
}

/* 4. Why Section (Dark Blue) */
.why-tv {
    background-color: #0b2240;
    padding: 100px 0;
    color: #fff;
}

.why-icon-box {
    text-align: left;
    margin-bottom: 40px;
}

.why-icon-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.why-icon-box h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-icon-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* 5. Detail Service Cards */
.service-details-tv {
    padding: 100px 0;
    background: #fdfdfd;
}

.detail-card-tv {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow: hidden;
    padding: 0;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.detail-card-tv:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.15);
}

.detail-card-tv .card-img-top {
    height: 200px;
    object-fit: cover;
}

.detail-card-tv .card-body-tv {
    padding: 30px;
}

.detail-card-tv h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b2240;
}

.detail-card-tv p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.detail-card-tv .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card-tv .feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-card-tv .feature-list li::before {
    content: "\F272";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

.bg-cyan {
    background-color: var(--primary-color);
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 15px;
}

.heading-transform {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.heading-transform:hover {
    letter-spacing: 1.5px;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .navbar {
        background: var(--secondary-color) !important;
    }
}

.navbar-brand img,
.navbar-logo-img {

    width: auto;
}

/* WhiteAuraX Who We Are specific styles */

.hero-split {
    min-height: 80vh;
    padding-top: 130px;
    padding-bottom: 60px;
    background-color: var(--text-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slant {
    position: absolute;
    top: 150px;
    right: 0;
    width: 55%;
    height: calc(100% - 150px);
    overflow: hidden;
    background: var(--primary-color);
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    z-index: 0;
}

.hero-slant img {
    width: 78%;
    height: 84%;
    object-fit: cover;
    border-radius: 24px;
    margin-right: 20px;
}

.tv-arrow {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
}

.tv-card-left-icon {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    padding-left: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-card-left-icon:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 45px rgba(0, 174, 239, 0.1);
    border-color: var(--primary-color);
}

.tv-card-left-icon .icon-wrapper {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;

    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
}

.tv-card-top-icon {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    margin-top: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-card-top-icon:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 174, 239, 0.15);
}

.tv-card-top-icon .icon-wrapper {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--text-white);
    border: 2px solid rgba(0, 174, 239, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.15);
}

.tv-team-card {
    text-align: center;
}

.tv-team-card .team-img-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px auto;
}

.tv-team-card .team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-team-card:hover .team-img-wrapper img {
    transform: scale(1.1) rotate(2deg);
    border-color: var(--primary-color);
}

.tv-team-card .team-img-wrapper .share-btn {
    position: absolute;
    bottom: 0;
    left: 5px;
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.bg-tech-dark {
    background-color: var(--secondary-color);
    background-image: radial-gradient(circle at 80% 20%, rgba(0, 174, 239, 0.1) 0%, transparent 40%);
}

/* Testimonial Marquee */
.testimonial-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-marquee-track {
    display: inline-flex;
    gap: 24px;
    animation: marquee-scroll 60s linear infinite;
}

.testimonial-marquee-track:hover {
    animation-play-state: paused;
}

.testimonial-card-item {
    min-width: 380px;
    white-space: normal;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

.testimonial-card-item {
    display: flex;
    flex-direction: column;
}

.testimonial-marquee-wrapper {
    mask-image: none !important;
    -webkit-mask-image: none !important;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0b1a2a;
    /* Solid Deep Navy Background */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease-out;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

#preloader .preloader-logo {
    max-width: 250px;
    height: auto;
    animation: preloader-pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 174, 239, 0.3));
}

@keyframes preloader-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* Preloader animation removed in favor of logo pulse */


/* --- Homepage Redesign Styles --- */
.homepage-hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.homepage-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 54, 75, 0.7);
    /* Dark teal overlay */
}

.homepage-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.homepage-hero-title {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.homepage-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #e0e0e0;
}

/* Insights Cards */
.insight-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.insight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(11, 10, 56, 0.95) 100%);
    transition: background 0.4s ease;
}

.insight-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 190, 240, 0.4) 10%, rgba(0, 190, 240, 0.95) 100%);
}

.insight-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: white;
    z-index: 2;
    transition: transform 0.4s ease;
}

.insight-card-hover-text {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    transition: all 0.4s ease;
    font-size: 0.85rem;
    line-height: 1.6;
}

.insight-card:hover .insight-card-hover-text {
    max-height: 150px;
    opacity: 1;
    margin-top: 15px;
}

/* Industries Masonry/Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    grid-auto-rows: 250px;
}

.industry-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 54, 75, 0.6);
    transition: background 0.3s ease;
}

.industry-card:hover::before {
    background: rgba(0, 190, 240, 0.85);
    /* Bright cyan overlay */
}

.industry-card::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.industry-card:hover::after {
    border-color: rgba(255, 255, 255, 0.9);
}

.industry-card h4 {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: 1.25rem;
}

/* Specific grid spans */
.industry-card.span-2-col {
    grid-column: span 2;
}

/* Services Square Cards */
.service-sq-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.service-sq-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 54, 75, 0.4);
    transition: background 0.3s ease;
}

.service-sq-card:hover::before {
    background: rgba(0, 190, 240, 0.85);
    /* Bright cyan overlay */
}

.service-sq-card::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.service-sq-card:hover::after {
    border-color: rgba(255, 255, 255, 0.9);
}

.service-sq-card h5 {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 700;
    text-align: center;
}

/* Global Map */
.global-map-section {
    background-color: #0b2240;
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
}

.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.4);
}


/* TV Feature Item Hover */
.tv-feature-item {
    cursor: pointer;
}

.tv-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #00bef0;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tv-feature-icon i {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-feature-item:hover .tv-feature-icon {
    background-color: #0b2240;
}

/* Default active state for items to match screenshot */
.tv-feature-item.active .tv-feature-icon {
    background-color: #0b2240;
}

.tv-feature-item.active .tv-feature-icon i {
    transform: rotate(180deg);
}

/* Technology Badge Premium Effect */
.tech-badge-premium {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 220px;
    height: 64px;
    cursor: default;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
    margin: 5px;
}

.tech-badge-premium .icon-area {
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.4s ease;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.tech-badge-premium .icon-area i,
.tech-badge-premium .icon-area strong {
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: all 0.4s ease;
}

.tech-badge-premium .tech-label {
    padding: 0 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.4s ease;
    white-space: nowrap;
}

/* Hover States matching NLP highlight */
.tech-badge-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.15);
    border-color: var(--primary-color);
}

.tech-badge-premium:hover .icon-area {
    background: var(--primary-color);
    border-right-color: transparent;
}

.tech-badge-premium:hover .icon-area i,
.tech-badge-premium:hover .icon-area strong {
    color: #ffffff !important;
}

.tech-badge-premium:hover .tech-label {
    color: var(--primary-color);
}

/* --- Services Fixes: Why Us Heading Contrast --- */
.why-tv h2 {
    color: #ffffff !important;
}

/* --- New Section: Contact Form Premium (Talk to Us) --- */
.talk-to-us {
    background-color: #ffffff;
    padding: 100px 0;
}

.talk-to-us .form-eyebrow {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
    display: block;
}

.talk-to-us .main-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-family: 'DM Sans', sans-serif;
}

.talk-to-us .form-card-premium {
    padding: 20px;
    background: transparent;
}

.talk-to-us .img-joined-hands {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.talk-to-us .form-control-premium {
    background: #f2f2f2 !important;
    border: none !important;
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #333;
    box-shadow: none !important;
}

.talk-to-us .form-control-premium::placeholder {
    color: #999;
}

.talk-to-us .form-control-premium:focus {
    background: #e9e9e9 !important;
}

.talk-to-us .btn-connect {
    background-color: #0b2240;
    color: #ffffff;
    width: 100%;
    padding: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 5px;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 0.85rem;
}

.talk-to-us .btn-connect:hover {
    background-color: #1d3b4b;
    transform: translateY(-2px);
}

/* --- Animations & Keyframes --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Consolidated preloader styles moved to line 1026 */


.text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    background: linear-gradient(90deg, #00ccff 0%, #004d6e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 190, 240, 0.2);
    font-size: 4rem;
    letter-spacing: -1px;
}

/* Hero Text Transformations & Reveal Animations */
.hero-title-styled {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff 0%, #00bef0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 190, 240, 0.2);
    font-size: 4rem;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .hero-title-styled {
        font-size: 2.8rem;
    }
}

.hero-animate-1 {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-animate-2 {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

.hero-animate-1,
.hero-animate-2 {
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Specific Revamp */
.footer-heading {
    font-size: 1.1rem;
    color: #000 !important;
    margin-bottom: 25px !important;
}

.footer-links li a {
    color: #000 !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.1rem;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.social-icon.fb {
    background-color: #3b5998;
}

.social-icon.x {
    background-color: #000000;
}

.social-icon.yt {
    background-color: #ff0000;
}

.social-icon.ln {
    background-color: #0077b5;
}

/* Insight Cards & Customer Stories */
.insight-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border: none;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.insight-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.insight-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insight-card:hover .insight-img-wrapper img {
    transform: scale(1.1);
}

.insight-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color, #007bff);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.read-more-link {
    color: var(--primary-color, #007bff);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover {
    color: #0056b3;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

.insight-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: #222;
}

.insight-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Case Study Cards & Visual Overlays */
.case-study-card {
    position: relative;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.case-study-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 35%, rgba(10, 15, 30, 0.9) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.case-study-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.4s ease;
}

.case-study-card:hover img {
    transform: scale(1.15);
    filter: brightness(0.85);
}

.case-study-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 35px 25px;
    width: 100%;
    z-index: 2;
}

.case-study-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.case-study-category {
    color: var(--primary-color, #00bef0);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

/* Insights Overhaul Styles */
.insights-hero {
    background: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.insights-hero-content {
    position: relative;
    z-index: 2;
}

.insights-hero h1 {
    color: #08bfe9 !important;
}

.insights-hero-image-container {
    position: absolute;
    top: 0;
    right: -12%;
    width: 65%;
    height: 100%;
    z-index: 1;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: var(--primary-color, #00bef0);
}

.insights-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
}

.section-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.section-tagline .nav-arrow {
    width: 50px;
    height: 1.5px;
    background: var(--primary-color, #00bef0);
    position: relative;
}

.section-tagline .nav-arrow::after {
    content: "";
    position: absolute;
    left: 0;
    top: -4px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 8px solid var(--primary-color, #00bef0);
}

/* --- Overlapping Images & Brand Bar (Insights) --- */
.overlapping-images-container {
    position: relative;
    padding-bottom: 80px;
    padding-right: 80px;
}

.img-background-portrait {
    width: 85%;
    height: 580px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.img-foreground-landscape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 340px;
    object-fit: cover;
    border-radius: 4px;
    border: 12px solid #fff;
    z-index: 2;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1) !important;
}

.brand-vertical-bar {
    position: absolute;
    left: -30px;
    top: 0;
    width: 6px;
    height: 80px;
    background-color: var(--primary-color, #00bef0);
    border-radius: 0 0 4px 4px;
}

.tagline-arrow {
    display: inline-block;
    width: 35px;
    height: 2px;
    background-color: var(--primary-color, #00bef0);
    vertical-align: middle;
    margin-right: 12px;
    position: relative;
}

/* Recreating the dotted arrow prefix from the reference */
.tagline-arrow::after {
    content: "··· →";
    position: absolute;
    left: -45px;
    top: -12px;
    color: var(--primary-color);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .overlapping-images-container {
        padding-bottom: 40px;
        padding-right: 40px;
        max-width: 500px;
        margin: 0 auto 50px;
    }

    .img-background-portrait {
        width: 100%;
        height: 450px;
    }

    .img-foreground-landscape {
        width: 80%;
        height: 220px;
    }

    .brand-vertical-bar {
        display: none;
    }

    .ps-lg-5 {
        padding-left: 0 !important;
    }
}

/* --- Career Page Modernization (WhiteAuraX) --- */

.career-hero {
    padding: 70px 0 60px !important;
    margin-top: -40px;
}

.breadcrumb-bar {
    margin-top: 95px !important;
    padding-top: 10px !important;
    background: transparent !important;
    border: none !important;
}

.career-hero .hero-main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 30px 30px 0 rgba(0, 174, 239, 0.05);
}

@media (max-width: 991px) {
    .career-hero {
        padding: 140px 0 60px;
    }

    .career-hero .hero-main-img {
        height: 350px;
    }

    .life-wax-img-container {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

/* --- Technologies Page Reference Layout --- */
.tech-hero {
    position: relative;
    min-height: 590px;
    padding: 28px 0 58px;
    background: #ffffff;
    overflow: hidden;
}

.tech-hero .container {
    position: relative;
    z-index: 2;
}

.tech-hero-copy {
    max-width: 730px;
    padding-top: 95px;
}

.tech-hero-copy h1 {
    margin-bottom: 30px;
    color: #08bfe9;
    font-size: clamp(4rem, 5vw, 5.6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.tech-hero-copy p {
    max-width: 720px;
    margin-bottom: 62px;
    color: #646d73;
    font-size: clamp(1.28rem, 1.35vw, 1.55rem);
    line-height: 1.62;
}

.tech-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 218px;
    min-height: 74px;
    padding: 18px 28px;
    border-radius: 4px;
    background: #10bce1;
    color: #ffffff !important;
    font-size: 1.08rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 16px 32px rgba(0, 174, 239, 0.12);
}

.tech-contact-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.tech-hero-image-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50.2vw;
    height: 520px;
    clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}

.tech-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #666e73;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tech-section-label .tech-label-arrow {
    width: 42px;
    height: 2px;
    background: #20c4df;
    position: relative;
    display: inline-block;
}

.tech-section-label .tech-label-arrow::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #20c4df;
    transform: translateY(-50%);
}

.tech-why {
    padding: 58px 0 86px;
    background: #ffffff;
}

.tech-why-image {
    position: relative;
    padding-left: 20px;
}

.tech-why-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 100%;
    background: #14c2e6;
    z-index: 1;
}

.tech-why-image img {
    width: 100%;
    height: 760px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.tech-why h2,
.tech-group h2,
.tech-talk-heading h2 {
    color: #667886;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.tech-why h2 {
    max-width: 690px;
    margin-bottom: 34px;
    font-size: clamp(2.55rem, 3vw, 3.55rem);
    line-height: 1.18;
}

.tech-why p {
    max-width: 780px;
    margin-bottom: 56px;
    color: #6f7176;
    font-size: 1.15rem;
    line-height: 1.7;
}

.tech-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 46px;
}

.tech-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #3d3d3d;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.tech-feature-item i {
    color: #18c2e5;
    font-size: 1.35rem;
    flex: 0 0 auto;
}

.tech-catalog {
    padding: 58px 0 96px;
    background: #f7f8fa;
}

.tech-group {
    margin-bottom: 108px;
    text-align: center;
}

.tech-group:last-child {
    margin-bottom: 0;
}

.tech-group .tech-section-label {
    justify-content: center;
    margin-bottom: 14px;
}

.tech-group h2 {
    margin-bottom: 62px;
    font-size: clamp(2.3rem, 2.6vw, 3rem);
    line-height: 1.15;
}

.tech-grid {
    display: grid;
    gap: 32px;
}

.tech-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tech-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tech-grid-cloud {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tech-grid-cloud .tech-card:nth-child(-n + 3) {
    grid-column: span 2;
}

.tech-grid-cloud .tech-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.tech-grid-cloud .tech-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.tech-card {
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 34px;
    background: #ffffff;
    border: 1px solid #edf0f2;
    border-radius: 3px;
    box-shadow: 0 10px 28px rgba(27, 45, 60, 0.035);
    color: #373737;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tech-card.animate-up {
    transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 174, 239, 0.11);
}

.tech-card i {
    min-width: 32px;
    color: #18c2e5;
    font-size: 1.65rem;
    line-height: 1;
    text-align: center;
}

.tech-card span {
    color: #343434;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.25;
}

.tech-talk {
    padding: 82px 0 64px;
    background: #ffffff;
}

.tech-talk-heading {
    margin-bottom: 88px;
    text-align: center;
}

.tech-talk-heading .tech-section-label {
    justify-content: center;
    margin-bottom: 22px;
}

.tech-talk-heading h2 {
    font-size: clamp(2.5rem, 3vw, 3.45rem);
    line-height: 1.12;
}

.tech-talk-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 98px;
}

.tech-talk-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.tech-form-card {
    display: flex;
    align-items: center;
    padding: 60px;
    background: #f7f8fa;
    border-radius: 6px;
}

.tech-form-card form,
.tech-form-card input,
.tech-form-card textarea,
.tech-form-card button {
    width: 100%;
}

.tech-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.tech-form-card input,
.tech-form-card textarea {
    margin-bottom: 24px;
    padding: 20px 30px;
    border: none;
    border-radius: 4px;
    background: #ffffff;
    color: #343a40;
    font-size: 1.05rem;
    outline: none;
}

.tech-form-card input::placeholder,
.tech-form-card textarea::placeholder {
    color: #6d747b;
}

.tech-form-card input:focus,
.tech-form-card textarea:focus {
    box-shadow: 0 0 0 3px rgba(20, 194, 230, 0.16);
}

.tech-form-card textarea {
    min-height: 150px;
    resize: vertical;
}

.tech-form-card button {
    min-height: 72px;
    border: none;
    border-radius: 6px;
    background: #1d4254;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.tech-form-card button:hover {
    background: #143342;
}

@media (max-width: 1199.98px) {
    .tech-grid-four,
    .tech-grid-three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-grid-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-grid-cloud .tech-card:nth-child(n) {
        grid-column: auto;
    }

    .tech-talk-layout {
        gap: 44px;
    }
}

@media (max-width: 991.98px) {
    .tech-hero {
        min-height: auto;
        padding: 120px 0 58px;
    }

    .tech-hero-copy {
        max-width: 100%;
        padding-top: 0;
        text-align: center;
    }

    .tech-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .tech-hero-image-wrap {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(100%, 820px);
        height: 350px;
        margin: 50px auto 0;
        clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
    }

    .tech-why {
        padding-top: 30px;
    }

    .tech-why-image img {
        height: 520px;
    }

    .tech-why h2,
    .tech-why p {
        max-width: none;
    }

    .tech-talk-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .tech-hero {
        padding-top: 104px;
    }

    .tech-hero-copy h1 {
        font-size: 3.2rem;
    }

    .tech-hero-copy p {
        font-size: 1.05rem;
    }

    .tech-contact-btn {
        min-width: 190px;
        min-height: 60px;
    }

    .tech-hero-image-wrap,
    .tech-why-image img,
    .tech-talk-image {
        height: 300px;
    }

    .tech-feature-grid,
    .tech-grid-four,
    .tech-grid-three,
    .tech-grid-cloud,
    .tech-form-row {
        grid-template-columns: 1fr;
    }

    .tech-group {
        margin-bottom: 76px;
    }

    .tech-group h2,
    .tech-talk-heading h2 {
        font-size: 2.2rem;
    }

    .tech-card {
        min-height: 82px;
        padding: 22px 24px;
    }

    .tech-talk-heading {
        margin-bottom: 48px;
    }

    .tech-form-card {
        padding: 26px;
    }
}

.career-hero .floating-circle {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.life-wax-section {
    padding: 100px 0;
    background: #f8fbff;
}

.life-wax-img-container {
    position: relative;
    padding-right: 50px;
}

.life-wax-img-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.life-wax-img-container::after {
    content: "";
    position: absolute;
    top: -30px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.life-wax-accent-bar {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 25px;
}

.benefit-card-wax {
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.benefit-card-wax:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 174, 239, 0.15);
    border-color: var(--primary-color);
}

.benefit-icon-wax {
    width: 70px;
    height: 70px;
    background: rgba(0, 174, 239, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-card-wax:hover .benefit-icon-wax {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(360deg);
}

.gallery-grid-wax {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px 0;
}

.gallery-item-wax {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-wax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item-wax:hover img {
    transform: scale(1.15);
}

.gallery-overlay-wax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 174, 239, 0.8);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.gallery-item-wax:hover .gallery-overlay-wax {
    opacity: 1;
}

.cta-career {
    background: linear-gradient(135deg, #0b2240 0%, #001530 100%);
    padding: 100px 0;
    color: #fff;
    border-radius: 30px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-career::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(0, 174, 239, 0.05);
    border-radius: 50%;
}

.contact-wax-section {
    padding: 100px 0;
}

.form-control-wax {
    border: none;
    border-bottom: 2px solid #eee;
    padding: 15px 0;
    border-radius: 0;
    background: transparent;
    transition: border-color 0.3s ease;
    margin-bottom: 30px;
}

.form-control-wax:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.submit-btn-wax {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.submit-btn-wax:hover {
    background: #0088CC;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.3);
}

/* --- CONTACT PAGE MODERNIZATION --- */
.contact-hero-wax {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-wax .hero-img-box {
    position: relative;
    z-index: 2;
}

.contact-hero-wax .hero-img-box img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-info-grid-wax {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.contact-method-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-method-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.method-icon-wax {
    width: 60px;
    height: 60px;
    background: rgba(0, 174, 239, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.location-card-wax {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card-wax:hover {
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.08);
    border-color: rgba(0, 174, 239, 0.2);
}

.location-card-wax::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 174, 239, 0.03) 100%);
    border-radius: 50% 0 0 0;
}

.flag-icon-wax {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.location-title-wax {
    color: #0b2240;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.location-details-wax {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.location-details-wax strong {
    color: #333;
}

.btn-email-now {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    margin-top: 20px;
}

.btn-email-now:hover {
    background: #0088CC;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .contact-hero-wax {
        padding: 120px 0 60px;
        text-align: center;
    }

    .contact-hero-wax .hero-img-box {
        margin-top: 40px;
    }

    .contact-info-grid-wax {
        margin-top: 30px;
    }
}

/* --- Extra Small Mobile Footer & Mobile View Enhancements --- */
/* Additional responsive tweaks for forms and UI elements */
@media (max-width: 767.98px) {

    /* Form layout: stack columns and expand inputs */
    #indexContactForm .row,
    #contactForm .row {
        flex-direction: column !important;
    }

    #indexContactForm .col-md-6,
    #contactForm .col-md-6 {
        width: 100% !important;
        margin-bottom: 0.75rem;
    }

    .form-control-premium,
    .form-select,
    textarea.form-control-premium {
        width: 100% !important;
        margin-bottom: 0.75rem;
    }

    /* Buttons: larger tap targets */
    .btn-connect,
    .btn-primary {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
        min-height: 48px;
        cursor: pointer;
    }

    /* Ensure select elements expand to full width on mobile */
    .form-select {
        width: 100% !important;
        margin-bottom: 0.75rem;
        cursor: pointer;
    }

    .btn-connect:focus-visible,
    .btn-primary:focus-visible {
        outline: 3px solid var(--primary-color);
        outline-offset: 2px;
    }

    /* Social icons: increase hit area */
    .site-footer .social-icon {
        width: 36px !important;
        height: 36px !important;
        padding: 6px;
    }

    /* Footer columns: full‑width stacked layout */
    .site-footer .col-lg-3,
    .site-footer .col-lg-2,
    .site-footer .col-lg-4 {
        width: 100% !important;
        margin-bottom: 1.5rem !important;
        text-align: center;
    }

    .site-footer .footer-links {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {

    /* Global Section Padding Reduction for Mobile */
    .section-padding,
    .py-5 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    /* Typography Adjustments */
    h1,
    .display-3,
    .display-5,
    .display-6,
    .text {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    /* Hero Sections Fixes for Mobile */
    .hero-split,
    .insights-hero,
    .hero-tech {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
        text-align: center;
    }

    .hero-slant,
    .insights-hero-image-container,
    .hero-tech-image-container {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        right: 0 !important;
        left: 0 !important;
        clip-path: none !important;
        border-radius: 12px;
        margin-bottom: 30px;
    }

    .hero-slant img {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 12px;
    }

    .talk-to-us .main-heading {
        font-size: 2rem !important;
    }

    /* Extra Small Mobile Footer */
    .site-footer {
        background: #fdfdfd !important;
        padding-top: 25px !important;
        padding-bottom: 10px !important;
        border-top: 2px solid var(--primary-color) !important;
    }

    /* Hide decorative diagonal panels on mobile to save space */
    .site-footer .position-absolute {
        display: none !important;
    }

    .site-footer .row {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .site-footer .col-lg-3,
    .site-footer .col-lg-2,
    .site-footer .col-lg-4 {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .site-footer img[alt="WhiteAuraX"] {
        height: 35px !important;
        margin: 0 auto 10px auto !important;
        display: block;
    }

    .site-footer .footer-heading {
        font-size: 14px !important;
        margin-bottom: 10px !important;
        color: var(--primary-color) !important;
    }

    /* Compact Links horizontally to save vertical space */
    .site-footer .footer-links {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 15px !important;
    }

    .site-footer .footer-links li {
        margin-bottom: 0 !important;
    }

    .site-footer .footer-links a,
    .site-footer p,
    .site-footer a {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    /* Compress Social Icons */
    .site-footer .d-flex.justify-content-start {
        justify-content: center !important;
        margin-top: 10px !important;
        gap: 10px !important;
    }

    .site-footer .social-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
    }

    .site-footer .pt-2.pb-1 {
        padding-top: 15px !important;
        margin-top: 15px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
}

/* --- Responsive Stabilization Layer --- */
html,
body,
#root {
    max-width: 100%;
    overflow-x: hidden;
}

html,
body {
    width: 100%;
}

img,
video,
canvas,
svg {
    max-width: 100%;
}

.container,
.container-fluid {
    min-width: 0;
}

.row > * {
    min-width: 0;
}

.btn,
button,
input,
textarea,
select {
    max-width: 100%;
}

@media (max-width: 1399.98px) {
    .homepage-hero-title,
    .hero-title,
    .text,
    .services-hero-title,
    .tech-hero-copy h1 {
        font-size: clamp(3rem, 5vw, 4.6rem) !important;
    }

    .industry-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .navbar .container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .nav-link {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .btn-contact {
        padding: 10px 22px !important;
    }

    .homepage-hero,
    .hero-section {
        min-height: 680px;
    }

    .hero-split,
    .insights-hero,
    .career-hero,
    .contact-hero-wax {
        padding-top: 120px !important;
        padding-bottom: 70px !important;
    }

    .services-hero-tv {
        padding-top: 64px;
    }

    .service-hub-card,
    .case-study-card {
        height: 320px;
    }

    .industry-grid {
        grid-auto-rows: 220px;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.55rem 0 !important;
        background-color: #ffffff !important;
        box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08) !important;
    }

    .navbar-brand img {
        height: 54px !important;
        transform: scale(1.16);
        filter: none !important;
    }

    .navbar-toggler {
        border: 0;
        box-shadow: none !important;
        padding: 8px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.18) !important;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 18px;
        background: #ffffff !important;
        border-radius: 8px;
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
        max-height: calc(100vh - 88px);
        overflow-y: auto;
    }

    .navbar-collapse .navbar-nav {
        gap: 4px !important;
    }

    .navbar-collapse .nav-link {
        color: #111111 !important;
        display: block;
        padding: 12px 6px !important;
        text-align: center;
    }

    .navbar-collapse .d-flex {
        justify-content: center;
        margin-left: 0 !important;
        margin-top: 12px;
    }

    .breadcrumb-bar {
        margin-top: 72px !important;
        padding-top: 8px !important;
    }

    .homepage-hero,
    .hero-section {
        min-height: 620px;
        background-attachment: scroll;
        text-align: center;
    }

    .homepage-hero-content,
    .hero-content {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-split,
    .insights-hero,
    .career-hero,
    .contact-hero-wax {
        text-align: center;
    }

    .hero-slant,
    .insights-hero-image-container,
    .hero-tech-image-container {
        clip-path: none !important;
        border-radius: 10px;
    }

    .services-hero-tv .row,
    .impact-tv .row,
    .life-wax-section .row,
    .contact-hero-wax .row,
    .talk-to-us .row {
        row-gap: 34px;
    }

    .services-hero-tv .hero-text-area,
    .tech-hero-copy,
    .career-hero .col-lg-6,
    .contact-hero-wax .col-lg-6 {
        text-align: center;
    }

    .services-hero-copy,
    .tech-hero-copy p,
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .services-hero-tv .hero-curved-img,
    .career-hero .hero-main-img,
    .contact-hero-wax .hero-img-box img,
    .img-background-portrait {
        height: 380px !important;
    }

    .img-overlap-container {
        height: auto;
        max-width: 620px;
        margin: 0 auto;
    }

    .img-main,
    .img-sub {
        position: relative;
        width: 100%;
        height: 300px;
        right: auto;
        bottom: auto;
    }

    .img-sub {
        margin-top: 18px;
        border-width: 0;
    }

    .floating-badge-tv {
        left: 18px;
        bottom: 18px;
    }

    .industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-card-large,
    .industry-card-wide {
        grid-column: span 1;
    }

    .talk-to-us,
    .tech-talk,
    .contact-wax-section,
    .life-wax-section,
    .impact-tv,
    .why-tv {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .talk-to-us .img-joined-hands {
        max-height: 420px;
        object-fit: cover;
    }

    .site-footer .container-fluid {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .site-footer .row {
        row-gap: 24px;
    }

    .site-footer .col-lg-3,
    .site-footer .col-lg-2,
    .site-footer .col-lg-4 {
        text-align: center;
    }

    .site-footer img[alt="WhiteAuraX"] {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .site-footer .footer-links {
        align-items: center;
    }

    .site-footer .d-flex.justify-content-start {
        justify-content: center !important;
    }
}

@media (max-width: 767.98px) {
    html,
    body,
    #root {
        width: 100%;
        overflow-x: clip;
    }

    * {
        box-sizing: border-box;
    }

    .container,
    .container-fluid {
        padding-left: 18px !important;
        padding-right: 18px !important;
        max-width: 100% !important;
        overflow-x: clip;
    }

    .homepage-hero-title,
    .hero-title,
    .text,
    .services-hero-title,
    .tech-hero-copy h1 {
        font-size: clamp(2.5rem, 12vw, 3.4rem) !important;
        line-height: 1.05 !important;
        letter-spacing: 0 !important;
    }

    h2,
    .display-4,
    .display-5,
    .display-6,
    .main-heading,
    .tech-group h2,
    .tech-talk-heading h2,
    .talk-to-us .main-heading {
        font-size: clamp(1.9rem, 8vw, 2.45rem) !important;
        line-height: 1.15 !important;
        letter-spacing: 0 !important;
    }

    p,
    .text-secondary,
    .text-muted,
    .services-hero-copy,
    .tech-hero-copy p {
        font-size: 1rem !important;
        line-height: 1.65 !important;
    }

    .section-padding,
    .py-5,
    .service-hub-grid,
    .service-details-tv,
    .tech-catalog,
    .insights-hero,
    .career-hero,
    .contact-hero-wax {
        padding-top: 52px !important;
        padding-bottom: 52px !important;
    }

    .homepage-hero,
    .hero-section {
        min-height: 560px;
        padding: 110px 0 60px;
    }

    .hero-split {
        min-height: auto !important;
        padding-top: 88px !important;
        padding-bottom: 44px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
    }

    .hero-split > .container {
        order: 1;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
        z-index: 2;
    }

    .hero-split > .hero-slant {
        order: 2;
    }

    .hero-split .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-split .row > * {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-split .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        text-align: center;
    }

    .hero-split .d-flex.align-items-center {
        justify-content: flex-start;
        margin-bottom: 28px !important;
        text-align: left;
    }

    .hero-split .text {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-split p {
        max-width: 340px !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px !important;
        text-align: center;
    }

    .skills-say-row {
        margin-top: 26px !important;
        padding-top: 0 !important;
        text-align: center;
    }

    .skills-say-content {
        order: 1;
        margin-bottom: 26px !important;
    }

    .skills-say-content .section-eyebrow {
        justify-content: center;
    }

    .skills-say-content > p {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px !important;
    }

    .skills-say-content .row {
        row-gap: 18px;
    }

    .skills-say-content .col-md-6 {
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .skills-say-content .d-flex {
        align-items: center !important;
    }

    .skills-say-content h6 br {
        display: none;
    }

    .skills-say-visual {
        order: 2;
        padding-left: 0 !important;
        margin-top: 8px !important;
        overflow: visible !important;
    }

    .skills-say-visual > img {
        width: 100% !important;
        height: 260px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    .skills-say-overlay,
    .skills-say-badge {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        box-shadow: none !important;
    }

    .skills-say-overlay {
        padding: 22px !important;
        border-bottom: 12px solid var(--primary-color) !important;
        border-radius: 0 0 8px 8px;
        text-align: left;
    }

    .skills-say-overlay h4 {
        font-size: 1.1rem !important;
        line-height: 1.45 !important;
    }

    .skills-say-badge {
        padding: 14px 18px !important;
        border-radius: 0 0 8px 8px;
        text-align: center;
        font-size: 0.82rem !important;
    }

    .breadcrumb-bar .container {
        margin-top: 0 !important;
    }

    .breadcrumb-bar .d-flex {
        flex-wrap: wrap;
        font-size: 0.92rem;
    }

    .services-hero-tv .hero-curved-img,
    .career-hero .hero-main-img,
    .contact-hero-wax .hero-img-box img,
    .tech-hero-image-wrap,
    .tech-why-image img,
    .tech-talk-image,
    .insights-hero-image-container,
    .hero-slant,
    .img-background-portrait,
    .img-foreground-landscape {
        height: 280px !important;
        min-height: 0 !important;
        border-radius: 8px !important;
        clip-path: none !important;
    }

    .tech-hero,
    .services-hero-tv,
    .hero-split,
    .insights-hero,
    .career-hero,
    .contact-hero-wax {
        width: 100%;
        max-width: 100%;
        overflow-x: clip !important;
    }

    .tech-hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .tech-hero > .container {
        display: block;
        order: 1;
    }

    .tech-hero-copy {
        display: block;
        width: 100%;
        text-align: center;
    }

    .tech-hero-copy h1 {
        width: calc(100% - 36px);
        margin: 0 auto 20px !important;
        text-align: center;
    }

    .tech-hero-image-wrap {
        display: none !important;
    }

    .tech-hero-description {
        width: calc(100% - 36px);
        max-width: 360px !important;
        margin: 0 auto 28px !important;
        text-align: center;
    }

    .tech-contact-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .insights-hero {
        display: block !important;
        min-height: auto !important;
        padding-top: 92px !important;
        padding-bottom: 52px !important;
        background: #ffffff !important;
        text-align: center;
    }

    .insights-hero-image-container {
        display: none !important;
    }

    .insights-hero-content {
        position: relative !important;
        z-index: 2;
        width: 100%;
    }

    .insights-hero .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .insights-hero .row > * {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .insights-hero .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .insights-hero h1 {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        color: #1f2021;
        font-size: clamp(2.25rem, 11vw, 3rem) !important;
        line-height: 1.05 !important;
        text-align: center;
    }

    .insights-hero p {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px !important;
        padding-right: 0 !important;
        text-align: center;
    }

    .insights-hero .btn {
        margin-left: auto;
        margin-right: auto;
    }

    .tech-hero-image-wrap,
    .hero-tech-image-container,
    .hero-slant,
    .insights-hero-image-container {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        transform: none;
    }

    .hero-slant {
        background: transparent !important;
        margin-top: 26px !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .tech-hero-image-wrap img,
    .hero-tech-image,
    .hero-slant img,
    .insights-hero-image {
        width: 100% !important;
        max-width: 100% !important;
        display: block;
    }

    .hero-slant img {
        height: 100% !important;
        margin: 0 !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    .reveal-left:not(.visible) {
        transform: translateX(-18px);
    }

    .tech-why-image {
        padding-left: 10px;
    }

    .tech-why-image::before {
        width: 10px;
    }

    .service-hub-card,
    .detail-card-tv,
    .case-study-card,
    .gallery-item-wax {
        height: auto;
        min-height: 240px;
    }

    .service-hub-card {
        height: 240px;
    }

    .detail-card-tv .img-zoom-container,
    .insight-img-wrapper {
        height: 210px;
    }

    .detail-card-tv .img-zoom-container img,
    .insight-img-wrapper img {
        height: 100%;
        object-fit: cover;
    }

    .industry-grid,
    .gallery-grid-wax,
    .tech-feature-grid,
    .tech-grid,
    .tech-grid-four,
    .tech-grid-three,
    .tech-grid-cloud,
    .tech-talk-layout,
    .tech-form-row {
        grid-template-columns: 1fr !important;
    }

    .industry-grid {
        grid-auto-rows: 220px;
    }

    .tech-grid-cloud .tech-card:nth-child(n) {
        grid-column: auto !important;
    }

    .tech-group {
        margin-bottom: 64px;
    }

    .tech-card {
        min-height: 78px;
        padding: 20px 22px;
        gap: 18px;
    }

    .tech-card span {
        font-size: 1rem;
    }

    .tech-section-label,
    .section-eyebrow,
    .section-tagline {
        justify-content: center;
        font-size: 0.78rem;
        letter-spacing: 1.5px;
        text-align: center;
    }

    .form-card-premium,
    .tech-form-card,
    .contact-form-card,
    .contact-method-card,
    .location-card-wax {
        padding: 24px !important;
    }

    .talk-to-us .form-control-premium,
    .tech-form-card input,
    .tech-form-card textarea,
    .form-control-wax,
    .form-control {
        min-height: 50px;
        font-size: 1rem;
    }

    .btn,
    .btn-contact,
    .services-hero-cta,
    .tech-contact-btn,
    .btn-connect,
    .tech-form-card button {
        width: 100%;
        max-width: 320px;
        min-height: 52px;
        margin-left: auto;
        margin-right: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .navbar-collapse .btn-contact {
        display: flex;
    }

    .site-footer {
        background: #fdfdfd !important;
    }

    .site-footer .footer-links {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 8px 14px !important;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 50px !important;
        transform: scale(1.16);
    }

    .navbar .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .breadcrumb-bar {
        margin-top: 62px !important;
    }

    .homepage-hero,
    .hero-section {
        min-height: 500px;
    }

    .hero-split,
    .services-hero-tv,
    .tech-hero,
    .career-hero,
    .contact-hero-wax,
    .insights-hero {
        padding-top: 92px !important;
    }

    .services-hero-tv .hero-curved-img,
    .career-hero .hero-main-img,
    .contact-hero-wax .hero-img-box img,
    .tech-hero-image-wrap,
    .tech-why-image img,
    .tech-talk-image,
    .hero-slant,
    .insights-hero-image-container {
        height: 230px !important;
    }

    .tech-hero-image-wrap,
    .hero-tech-image-container,
    .hero-slant,
    .insights-hero-image-container {
        width: calc(100vw - 28px) !important;
        max-width: calc(100vw - 28px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .img-main,
    .img-sub {
        height: 230px;
    }

    .floating-badge-tv {
        position: static;
        margin-top: 16px;
        width: 100%;
        text-align: center;
    }

    .service-hub-card {
        height: 220px;
    }

    .site-footer .footer-links a,
    .site-footer p,
    .site-footer a {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 380px) {
    .container,
    .container-fluid {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .homepage-hero-title,
    .hero-title,
    .text,
    .services-hero-title,
    .tech-hero-copy h1 {
        font-size: 2.25rem !important;
    }

    h2,
    .display-4,
    .display-5,
    .display-6,
    .main-heading,
    .tech-group h2,
    .talk-to-us .main-heading {
        font-size: 1.75rem !important;
    }

    .tech-card {
        padding: 18px;
    }

    .tech-card i {
        min-width: 24px;
        font-size: 1.35rem;
    }
}

/* --- Premium Mobile Navigation Drawer --- */
@media (max-width: 991.98px) {
    .navbar {
        top: 10px !important;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        padding: 8px 0 !important;
        background: rgba(255, 255, 255, 0.72) !important;
        border: 1px solid rgba(255, 255, 255, 0.68) !important;
        border-radius: 18px;
        box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08) !important;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .navbar .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .navbar-brand {
        position: relative;
        z-index: 2602;
    }

    .navbar-brand img {
        height: 54px !important;
        transform: scale(1.16);
    }

    .navbar-toggler {
        position: relative;
        z-index: 2602;
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.58);
        border: 1px solid rgba(17, 24, 39, 0.08);
        transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.84);
        box-shadow: 0 10px 24px rgba(0, 174, 239, 0.12);
    }

    .navbar-toggler-icon {
        width: 1.25rem;
        height: 1.25rem;
        filter: none !important;
    }

    .navbar:has(.navbar-collapse.show)::before {
        content: "";
        position: fixed;
        inset: -10px;
        z-index: 2500;
        background: rgba(5, 12, 20, 0.48);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        animation: mobileNavBackdrop 0.3s ease both;
    }

    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: min(82vw, 350px) !important;
        height: 100dvh !important;
        max-height: none !important;
        margin-top: 0 !important;
        padding: 88px 22px 28px !important;
        z-index: 2601 !important;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        background: linear-gradient(145deg, rgba(12, 24, 38, 0.74), rgba(7, 13, 22, 0.62)) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 24px 0 0 24px;
        box-shadow: -28px 0 80px rgba(0, 0, 0, 0.32);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        transform: translateX(110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-collapse.collapsing {
        height: 100dvh !important;
        transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease !important;
    }

    .navbar-collapse .navbar-nav {
        width: 100%;
        gap: 8px !important;
        margin: 0 !important;
    }

    .navbar-collapse .nav-item {
        width: 100%;
    }

    .navbar-collapse .nav-link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 56px;
        padding: 0 16px !important;
        border-radius: 16px;
        color: rgba(255, 255, 255, 0.88) !important;
        font-size: 0.95rem;
        font-weight: 800;
        letter-spacing: 0.9px;
        text-align: left;
        text-shadow: none !important;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    .navbar-collapse .nav-link::after {
        content: "";
        width: 7px;
        height: 7px;
        border-top: 2px solid currentColor;
        border-right: 2px solid currentColor;
        opacity: 0.55;
        transform: rotate(45deg);
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link:focus,
    .navbar-collapse .nav-link.active {
        color: #ffffff !important;
        background: rgba(0, 174, 239, 0.18);
        border-color: rgba(0, 174, 239, 0.42);
        transform: translateX(-4px);
    }

    .navbar-collapse .d-flex {
        width: 100%;
        margin: 26px 0 0 !important;
        justify-content: center !important;
    }

    .navbar-collapse .btn-contact,
    .navbar-collapse .btn {
        width: 100%;
        max-width: none;
        min-height: 58px;
        border-radius: 18px;
        border: 1px solid rgba(0, 174, 239, 0.6) !important;
        background: linear-gradient(135deg, #00aeef, #16d6ff) !important;
        color: #02121d !important;
        font-size: 0 !important;
        font-weight: 900;
        letter-spacing: 0.8px;
        box-shadow: 0 18px 40px rgba(0, 174, 239, 0.28);
    }

    .navbar-collapse .btn-contact::after,
    .navbar-collapse .btn::after {
        content: "CONTACT US";
        font-size: 0.86rem;
    }

    .navbar-collapse .btn-contact:hover,
    .navbar-collapse .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 22px 48px rgba(0, 174, 239, 0.36);
    }

    .navbar-collapse::before {
        content: "WhiteAuraX";
        position: absolute;
        top: 28px;
        left: 24px;
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.8rem;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .navbar-collapse::after {
        content: "Digital products, AI and scalable engineering.";
        display: block;
        margin-top: 18px;
        color: rgba(255, 255, 255, 0.54);
        font-size: 0.78rem;
        line-height: 1.5;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .navbar-collapse {
        width: min(84vw, 330px) !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}

@keyframes mobileNavBackdrop {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- Mobile Breadcrumb Alignment For Secondary Pages --- */
@media (max-width: 767.98px) {
    .breadcrumb-bar:has(+ .services-hero-tv),
    .breadcrumb-bar:has(+ .tech-hero),
    .breadcrumb-bar:has(+ .insights-hero) {
        display: block !important;
        position: relative;
        z-index: 5;
        margin-top: 98px !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        background: #ffffff !important;
        overflow: visible !important;
    }

    .breadcrumb-bar:has(+ .services-hero-tv) .container,
    .breadcrumb-bar:has(+ .tech-hero) .container,
    .breadcrumb-bar:has(+ .insights-hero) .container {
        margin-top: 0 !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
        overflow: visible !important;
    }

    .breadcrumb-bar:has(+ .services-hero-tv) .d-flex,
    .breadcrumb-bar:has(+ .tech-hero) .d-flex,
    .breadcrumb-bar:has(+ .insights-hero) .d-flex {
        min-height: 28px;
        justify-content: flex-start;
        font-size: 0.82rem;
        line-height: 1.4;
        white-space: nowrap;
        overflow: visible !important;
    }

    .breadcrumb-bar:has(+ .services-hero-tv) a,
    .breadcrumb-bar:has(+ .services-hero-tv) span,
    .breadcrumb-bar:has(+ .services-hero-tv) i,
    .breadcrumb-bar:has(+ .tech-hero) a,
    .breadcrumb-bar:has(+ .tech-hero) span,
    .breadcrumb-bar:has(+ .tech-hero) i,
    .breadcrumb-bar:has(+ .insights-hero) a,
    .breadcrumb-bar:has(+ .insights-hero) span,
    .breadcrumb-bar:has(+ .insights-hero) i {
        display: inline-flex;
        align-items: center;
    }

    .breadcrumb-bar:has(+ .services-hero-tv) + .services-hero-tv,
    .breadcrumb-bar:has(+ .tech-hero) + .tech-hero {
        padding-top: 18px !important;
    }

    .breadcrumb-bar:has(+ .insights-hero) + .insights-hero {
        padding-top: 36px !important;
    }
}

@media (max-width: 575.98px) {
    .breadcrumb-bar:has(+ .services-hero-tv),
    .breadcrumb-bar:has(+ .tech-hero),
    .breadcrumb-bar:has(+ .insights-hero) {
        margin-top: 96px !important;
    }

    .breadcrumb-bar:has(+ .services-hero-tv) + .services-hero-tv,
    .breadcrumb-bar:has(+ .tech-hero) + .tech-hero {
        padding-top: 16px !important;
    }

    .breadcrumb-bar:has(+ .insights-hero) + .insights-hero {
        padding-top: 34px !important;
    }
}

/* --- Insights Mobile Intro Text Fix --- */
@media (max-width: 767.98px) {
    .insights-intro-section {
        overflow-x: clip !important;
    }

    .insights-intro-section .container,
    .insights-intro-section .row {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: visible !important;
    }

    .insights-intro-section .row > * {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .insights-intro-copy {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 18px !important;
        margin: 0 auto !important;
        text-align: center;
        transform: none !important;
        opacity: 1 !important;
    }

    .insights-intro-copy .section-tagline {
        justify-content: center;
        gap: 12px;
        margin-bottom: 16px !important;
    }

    .insights-intro-copy .tagline-arrow::after {
        left: -34px;
    }

    .insights-intro-copy h2 {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(1.9rem, 8.5vw, 2.35rem) !important;
        line-height: 1.14 !important;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .insights-intro-copy h4 {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(1.18rem, 5.5vw, 1.45rem) !important;
        line-height: 1.25 !important;
        text-align: center;
    }

    .insights-intro-copy p {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 380px) {
    .breadcrumb-bar:has(+ .services-hero-tv),
    .breadcrumb-bar:has(+ .tech-hero) {
        margin-top: 94px !important;
    }

    .breadcrumb-bar:has(+ .insights-hero) {
        margin-top: 98px !important;
    }

    .breadcrumb-bar:has(+ .services-hero-tv) + .services-hero-tv,
    .breadcrumb-bar:has(+ .tech-hero) + .tech-hero {
        padding-top: 14px !important;
    }
}
