@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

:root {
    --primary: #002e5f;
    --accent: #00bfff;
    --dark: #222;
    --light-bg: #f2f2f2;
    --text-main: #333;
    --radius: 16px;
    --container: 1140px;
}

/* ========== GLOBAL RESET & BASE ========== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    transition: all 0.2s linear;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== SECTION HEADINGS ========== */

.heading,
.clients .section-header h2,
.section-head h1,
.section-head h2,
.testimonials .section-header h2,
.section-head-1 h4 {
    margin: 2rem;
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.5rem;
    color: var(--primary);
    position: relative;
    letter-spacing: 0.2rem;
    text-transform: capitalize;
}

.heading::before,
.heading::after,
.clients .section-header h2::before,
.clients .section-header h2::after,
.section-head h1::before,
.section-head h1::after,
.section-head h2::before,
.section-head h2::after,
.testimonials .section-header h2::before,
.testimonials .section-header h2::after,
.section-head-1 h4::before,
.section-head-1 h4::after {
    content: '';
    position: absolute;
    height: 2.5rem;
    width: 2.5rem;
    border-top: 0.4rem solid var(--primary);
    border-left: 0.4rem solid var(--primary);
}

.heading::before,
.clients .section-header h2::before,
.section-head h1::before,
.section-head h2::before,
.testimonials .section-header h2::before,
.section-head-1 h4::before {
    top: 5.8rem;
    left: -2rem;
}

.heading::after,
.clients .section-header h2::after,
.section-head h1::after,
.section-head h2::after,
.testimonials .section-header h2::after,
.section-head-1 h4::after {
    bottom: -0.5rem;
    right: -2rem;
    transform: rotate(180deg);
}

/* FAQ heading uses accent color for borders */
.faq .heading::before,
.faq .heading::after {
    border-top-color: var(--accent);
    border-left-color: var(--accent);
}

/* ========== BUTTONS ========== */

.row .btn,
.communicate .btn,
.contact-form-btn {
    outline: none;
    border: 1px groove var(--primary);
    border-radius: 5rem;
    background: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.3);
}

.row .btn:hover,
.contact-form-btn:hover {
    letter-spacing: 0.1rem;
    opacity: 0.9;
    color: #fff;
    background: var(--primary);
}

.communicate .btn:hover {
    letter-spacing: 0.1rem;
    opacity: 0.9;
    color: #fff;
    background: var(--accent);
}

/* ========== HEADER & NAVBAR ========== */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 59, 112, .12);
    background: rgba(247, 251, 255, .94);
    box-shadow: 0 .25rem 1.2rem rgba(0, 46, 95, .14);
    backdrop-filter: blur(12px);
}

.header .logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    line-height: 0;
}

.header .logo img {
    display: block;
    height: clamp(5.4rem, 5vw, 6.6rem);
    max-height: none;
    width: auto;
}

.header .navbar ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header .navbar ul li {
    margin: 0 1.5rem;
}

.header .navbar ul li a {
    font-size: 2rem;
    color: #003b70;
    text-transform: capitalize;
}

.header .navbar ul li a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Hamburger icon */
.header .fa-bars {
    color: #003b70;
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

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

.home {
    min-height: min(88rem, 100vh);
    width: 100%;
    background:
        radial-gradient(circle at 50% 52%, rgba(204, 242, 255, .96) 0%, rgba(225, 245, 255, .84) 30%, transparent 58%),
        linear-gradient(135deg, #f6fbff 0%, #e8f6ff 52%, #f2f9ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(7.8rem, 7vw, 9rem) 0 0;
    position: relative;
    overflow: hidden;
}

/* The new hero artwork already contains its own clean visual hierarchy. */
.home::before {
    content: none;
}

.home-hero-art {
    position: absolute;
    top: 7.2rem;
    right: 0;
    display: block;
    width: 49%;
    height: calc(100% - 7.2rem);
    object-fit: cover;
    object-position: right center;
    max-width: none;
}

.hero-brand-panel {
    position: absolute;
    left: clamp(4rem, 6vw, 10rem);
    top: 53%;
    z-index: 3;
    display: grid;
    justify-items: start;
    width: 40%;
    transform: translateY(-46%);
}

.hero-brand-logo {
    display: block;
    width: clamp(20rem, 22vw, 30rem);
    height: auto;
    object-fit: contain;
}

.hero-brand-tagline {
    margin: 1.4rem 0 2.4rem;
    padding-top: 1.4rem;
    width: min(100%, 48rem);
    border-top: 2px solid rgba(0, 143, 211, .7);
    color: #33495f;
    font-size: clamp(1.45rem, 1.4vw, 2rem);
    line-height: 1.45;
}

.hero-brand-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-brand-services span {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .9rem 1.2rem;
    border: 1px solid rgba(0, 59, 112, .13);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 .8rem 2rem rgba(0, 46, 95, .07);
    color: #003b70;
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
}

.hero-brand-services i {
    color: #008fd3;
    font-size: 1.45rem;
}

.product-orbit {
    position: absolute;
    left: 50%;
    top: 54%;
    right: auto;
    z-index: 4;
    width: min(68vw, 72rem);
    aspect-ratio: 1.16;
    transform: translate(-50%, -48%);
    pointer-events: none;
}

.hero-value-panel {
    --swap-shift: 0;
    position: absolute;
    top: 52%;
    z-index: 5;
    width: clamp(19rem, 16vw, 25rem);
    padding: 2.2rem 2rem;
    transform: translateY(-50%);
    border: 1px solid rgba(0, 143, 211, .18);
    border-radius: 1.8rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, .8), rgba(230, 247, 255, .68));
    box-shadow: 0 1.8rem 4.5rem rgba(0, 74, 132, .1);
    backdrop-filter: blur(8px);
    transition: opacity .42s ease, transform .42s ease, box-shadow .3s ease;
}

.hero-value-panel-left {
    --swap-shift: -1.8rem;
    left: clamp(2rem, 4vw, 7rem);
    border-left: .35rem solid #008fd3;
}

.hero-value-panel-right {
    --swap-shift: 1.8rem;
    right: clamp(2rem, 4vw, 7rem);
    border-right: .35rem solid #63b32e;
}

.hero-value-panel.is-switching {
    opacity: 0;
    transform: translateY(-50%) translateX(var(--swap-shift));
}

.hero-value-panel:hover,
.hero-value-panel:focus-within {
    box-shadow: 0 2.2rem 5rem rgba(0, 74, 132, .16);
}

.hero-value-kicker {
    display: inline-block;
    margin-bottom: .7rem;
    color: #008fd3;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.home .hero-value-panel h2 {
    margin: 0 0 1.5rem;
    color: #003b70;
    font-size: clamp(1.8rem, 1.7vw, 2.4rem);
    font-weight: 750;
    line-height: 1.18;
    text-align: left;
    text-shadow: none;
}

.hero-value-panel ul {
    display: grid;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-value-panel li {
    display: grid;
    grid-template-columns: 2.8rem 1fr;
    align-items: center;
    gap: .9rem;
    color: #184c74;
    font-size: 1.25rem;
    font-weight: 650;
    line-height: 1.3;
}

.hero-value-panel li i {
    display: grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: .85rem;
    background: rgba(0, 143, 211, .1);
    color: #008fd3;
    font-size: 1.2rem;
}

.hero-value-panel-right li i {
    background: rgba(99, 179, 46, .11);
    color: #4d9922;
}

@media (max-width: 1280px) {
    .hero-value-panel {
        width: 19rem;
        padding: 1.7rem 1.5rem;
    }

    .hero-value-panel-left {
        left: 1.5rem;
    }

    .hero-value-panel-right {
        right: 1.5rem;
    }

    .hero-value-panel li {
        font-size: 1.12rem;
    }
}

@media (max-width: 1080px) {
    .hero-value-panel {
        display: none;
    }
}

.orbit-core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: clamp(10rem, 10vw, 14rem);
    aspect-ratio: 1;
    padding: 1.8rem;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 143, 211, .2);
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 2rem 5rem rgba(0, 76, 140, .18), inset 0 0 3rem rgba(0, 191, 255, .08);
    backdrop-filter: blur(8px);
    text-align: center;
}

.orbit-core img {
    width: 6.8rem;
    height: 7.4rem;
    object-fit: contain;
}

.orbit-core span {
    color: #003b70;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 143, 211, .16);
    border-radius: 50%;
    animation: product-orbit-spin 34s linear infinite;
    will-change: transform;
}

.orbit-ring-inner {
    inset: 18%;
    animation-duration: 42s;
}

.orbit-product {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1px;
    height: 1px;
    transform: rotate(var(--angle)) translateX(clamp(13rem, 17vw, 24rem)) rotate(var(--counter-angle));
}

.orbit-ring-inner .orbit-product {
    transform: rotate(var(--angle)) translateX(clamp(8.5rem, 10.5vw, 14rem)) rotate(var(--counter-angle));
}

.orbit-product-card {
    display: grid;
    place-items: center;
    gap: .45rem;
    width: clamp(7.6rem, 7vw, 10.5rem);
    min-height: clamp(7.2rem, 6.5vw, 9.4rem);
    padding: .8rem;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 59, 112, .14);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 1.2rem 2.8rem rgba(0, 46, 95, .13);
    animation: product-orbit-counter 34s linear infinite;
    color: #003b70;
    text-align: center;
}

.orbit-product-card img,
.orbit-product-card i {
    width: clamp(3.2rem, 3vw, 4.5rem);
    height: clamp(3.2rem, 3vw, 4.5rem);
    object-fit: contain;
    border-radius: .7rem;
}

.orbit-product-card i {
    display: grid;
    place-items: center;
    background: #edf8ff;
    color: #008fd3;
    font-size: 2rem;
}

.orbit-product-card span {
    font-size: clamp(.9rem, .85vw, 1.2rem);
    font-weight: 700;
    line-height: 1.15;
}

.orbit-ring-inner .orbit-product-card {
    width: clamp(6.4rem, 5.8vw, 8.2rem);
    min-height: clamp(6rem, 5.4vw, 7.6rem);
    padding: .55rem;
    animation-duration: 42s;
}

.orbit-ring-inner .orbit-product-card span {
    font-size: clamp(.82rem, .72vw, 1rem);
}

@keyframes product-orbit-spin {
    to { transform: rotate(360deg); }
}

@keyframes product-orbit-counter {
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .orbit-ring,
    .orbit-product-card {
        animation-play-state: paused;
    }

    .hero-value-panel {
        transition: none;
    }
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Keep hero headings above the overlay */
.home h1,
.home h2 {
    position: relative;
    z-index: 2;
    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.75),
        0 0 24px rgba(0, 0, 0, 0.35);
}

/* Keep waves above overlay but below text; also prevent blocking clicks */
.home .wave {
    z-index: 1;
    pointer-events: none;
}

.home h1 {
    color: #fff;
    font-size: 5.5rem;
}

.home h2 {
    color: #fff;
    font-size: 3rem;
}

.home .banner-chat-options {
    position: relative;
    z-index: 2;
    max-width: 92rem;
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 1.8vw, 2.2rem);
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .78);
}

/* Waves animation */
.home .wave {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    height: 11rem;
    width: 100%;
    background: url(../images/wave.png);
    background-size: 100rem 11rem;
    animation: waves 8s linear infinite;
    background-repeat: repeat-x;
}

.home .wave2 {
    animation-direction: reverse;
    animation-duration: 6s;
    opacity: 0.3;
}

.home .wave3 {
    animation-duration: 4s;
    opacity: 0.5;
}

@keyframes waves {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 100rem;
    }
}

/* ========== ABOUT SECTION ========== */

.about {
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 191, 255, 0.12), transparent 28rem),
        radial-gradient(circle at 88% 18%, rgba(18, 140, 126, 0.1), transparent 26rem),
        linear-gradient(180deg, #f8fcff 0%, #eef7fb 100%);
    min-height: 55vh;
    width: 100vw;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem;
}

.about::after {
    border: 1px solid rgba(0, 46, 95, 0.08);
    border-radius: 50%;
    content: "";
    height: 24rem;
    position: absolute;
    right: -8rem;
    top: 8rem;
    width: 24rem;
}

.about .row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
}

.about .row .content {
    text-align: center;
}

.about .row .content h3 {
    font-size: 3rem;
    color: #000;
}

.about .row .content p {
    font-size: 2rem;
    color: var(--text-main);
    padding: 1rem 0;
}

/* ========== SECTION HEADERS (SERVICES / PRODUCTS) ========== */

.services-band {
    background:
        linear-gradient(180deg, #eef7fb 0%, #f8fbfc 100%),
        radial-gradient(circle at 10% 30%, rgba(0, 191, 255, 0.1), transparent 28rem);
    position: relative;
    padding-top: 6rem !important;
}

.services-band .section-head {
    margin-top: 0;
}

.services-band #service {
    scroll-margin-top: 9rem;
}

.products-band {
    background:
        radial-gradient(circle at 12% 20%, rgba(18, 140, 126, 0.1), transparent 28rem),
        radial-gradient(circle at 88% 12%, rgba(0, 191, 255, 0.1), transparent 30rem),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 55%, #f3f8fb 100%);
    position: relative;
}

.section-head {
    margin-bottom: 60px;
    text-align: center;
    margin-top: -8rem;
}

.section-head p {
    font-size: 2rem;
    line-height: 2.8rem;
    text-align: center;
    color: var(--text-main);
}

.section-head-1 {
    margin-bottom: 60px;
}

.section-head-1 p {
    color: var(--text-main);
    font-size: 2rem;
    line-height: 2.8rem;
    text-align: center;
}

/* ========== CARD ITEMS (SERVICES & PRODUCTS) ========== */

.item {
    background: rgba(255, 255, 255, 0.94);
    text-align: center;
    padding: 3rem 2.5rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: all 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(6px);
}

.item .icon {
    margin-bottom: 2.5rem;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;

    /* Center either an <i> icon or an <img> */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

.item .icon i {
    font-size: 3.8rem;
}

.item .icon img{
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Colored icon backgrounds */
.item .feature_box_col_one {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.18), rgba(0, 46, 95, 0.12));
    color: #002e5f;
}
.item .feature_box_col_two {
    background: linear-gradient(135deg, rgba(18, 140, 126, 0.18), rgba(0, 191, 255, 0.14));
    color: #128c7e;
}
.item .feature_box_col_three {
    background: linear-gradient(135deg, rgba(82, 171, 152, 0.18), rgba(0, 46, 95, 0.1));
    color: #1b6f83;
}
.item .feature_box_col_four {
    background: linear-gradient(135deg, rgba(0, 108, 255, 0.15), rgba(0, 46, 95, 0.12));
    color: #0b4f9f;
}
.item .feature_box_col_five {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.14), rgba(18, 140, 126, 0.12));
    color: #126a84;
}
.item .feature_box_col_six {
    background: linear-gradient(135deg, rgba(23, 39, 246, 0.12), rgba(0, 191, 255, 0.12));
    color: #1741a6;
}
.item .feature_box_col_whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(18, 140, 126, 0.12));
    color: #128c7e;
}

.item .feature_box_col_whatsapp i {
    font-size: 4rem;
}

.item h6 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #2f2f2f;
}

.item-tag {
    align-self: center;
    background: rgba(0, 46, 95, 0.06);
    border: 1px solid rgba(0, 46, 95, 0.08);
    border-radius: 999px;
    color: #126a84;
    display: inline-flex;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.03rem;
    margin-bottom: 1.6rem;
    padding: 0.55rem 1.2rem;
    text-transform: uppercase;
}

.item p {
    font-size: 1.5rem;
    line-height: 2.6rem;
    flex: 1;
}

/* Hover effect */
.item:hover {
    background-image: linear-gradient(to bottom right, #66ffcc 0%, #ffccff 100%);
    background-position: right;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.item:hover h6,
.item:hover p {
    color: #2b6777;
}

.dri360-product-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 4rem;
    align-items: center;
    margin: 0 0 4rem;
    padding: 3.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 46, 95, 0.12);
    border-radius: 24px;
    background:
        radial-gradient(circle at 8% 12%, rgba(0, 174, 239, 0.13), transparent 20rem),
        linear-gradient(135deg, #ffffff 0%, #f4f9ff 56%, #f1fbf4 100%);
    box-shadow: 0 22px 50px rgba(0, 46, 95, 0.12);
}

.dri360-product-logo {
    padding: 2.4rem;
    border: 1px solid rgba(0, 46, 95, 0.08);
    border-radius: 18px;
    background: #fff;
}

.dri360-product-logo img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
}

.dri360-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: #087b3c;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.dri360-product-copy h5 {
    margin-bottom: 1.4rem;
    color: var(--primary);
    font-size: 3rem;
    font-weight: 700;
}

.dri360-product-copy > p {
    margin-bottom: 1.7rem;
    color: #3d4a57;
    font-size: 1.55rem;
    line-height: 2.7rem;
}

.dri360-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.8rem;
    margin-bottom: 2.2rem;
    list-style: none;
}

.dri360-card-features li {
    color: #17324d;
    font-size: 1.35rem;
    font-weight: 600;
}

.dri360-card-features i {
    margin-right: 0.5rem;
    color: #36a82b;
}

.dri360-product-link {
    display: inline-flex;
    gap: 0.9rem;
    align-items: center;
    padding: 1.1rem 1.8rem;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 1.45rem;
    font-weight: 700;
}

.dri360-product-link:hover,
.dri360-product-link:focus {
    background: #087b3c;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.whatsapp-reporting-product {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 3rem;
    align-items: center;
    background: #f7fbf9;
    border: 1px solid rgba(0, 46, 95, 0.1);
    border-radius: 20px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    margin: 1rem 0 3rem;
    overflow: hidden;
    padding: 3rem;
    height: calc(100% - 3rem);
}

.whatsapp-reporting-copy span {
    color: #128c7e;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.whatsapp-reporting-copy h5 {
    color: var(--primary);
    font-size: 2.8rem;
    line-height: 3.6rem;
    margin-bottom: 1.5rem;
}

.whatsapp-reporting-copy p {
    color: var(--text-main);
    font-size: 1.6rem;
    line-height: 2.8rem;
    margin-bottom: 2rem;
}

.whatsapp-reporting-link {
    align-items: center;
    background: #128c7e;
    border: 0;
    border-radius: 5rem;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 1.5rem;
    font-weight: 500;
    justify-content: center;
    min-height: 4rem;
    padding: 0.9rem 2rem;
}

.whatsapp-reporting-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.whatsapp-reporting-link--outline {
    background: #fff;
    border: 1px solid #128c7e;
    color: #128c7e;
}

.module-modal {
    align-items: center;
    background: rgba(0, 22, 45, 0.76);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 2rem;
    position: fixed;
    z-index: 10000;
}

.module-modal.is-open {
    display: flex;
}

.module-modal__panel {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    height: min(86vh, 82rem);
    max-width: 98rem;
    overflow: hidden;
    width: min(96vw, 98rem);
}

.module-modal__header {
    align-items: center;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 1.4rem 1.8rem;
}

.module-modal__header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.module-modal__close {
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    line-height: 1;
}

.module-modal__pages {
    background: #eef5f8;
    height: calc(100% - 5.2rem);
    overflow-y: auto;
    padding: 1.8rem;
}

.module-modal__note {
    color: #42556b;
    font-size: 1.4rem;
    margin: 0 auto 1.4rem;
    max-width: 74rem;
    text-align: center;
}

.module-page {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(0, 22, 45, 0.16);
    display: block;
    margin: 0 auto 1.8rem;
    max-width: 100%;
    pointer-events: auto;
    user-select: none;
    width: min(100%, 82rem);
}

.whatsapp-reporting-link:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

.whatsapp-reporting-video video {
    background: #111;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    display: block;
    height: auto;
    width: 100%;
}

@media (min-width: 992px) {
    .whatsapp-reporting-product {
        margin-top: 1rem;
    }

    .whatsapp-reporting-video video {
        margin-left: auto;
        max-width: 62rem;
    }
}

/* ========== COUNTERS SECTION ========== */

.counters {
    background:
        linear-gradient(135deg, rgba(0, 46, 95, 0.96), rgba(18, 140, 126, 0.9)),
        radial-gradient(circle at 20% 20%, rgba(0, 191, 255, 0.22), transparent 32%);
    color: #fff;
    overflow: hidden;
    padding: 4rem 2rem;
    position: relative;
}

.counters::after {
    background: url(../images/img1.png) center / contain no-repeat;
    content: "";
    inset: 1.5rem 8%;
    opacity: 0.08;
    pointer-events: none;
    position: absolute;
}

.counters .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3rem;
    position: relative;
    text-align: center;
    z-index: 1;
}

.counters i {
    color: #fff;
    margin-bottom: 0.5rem;
}

.counters .counter {
    font-size: 4.5rem;
    margin: 1rem 0;
}

/* ========== WHY CHOOSE SECTION ========== */

.why-choose {
    background:
        radial-gradient(circle at 10% 15%, rgba(0, 191, 255, 0.12), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #eef7fb 100%);
    padding: 7rem 0;
    text-align: center;
}

.why-choose .section-header h2 {
    color: var(--primary);
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-choose .section-header p {
    color: #526173;
    font-size: 1.75rem;
    line-height: 2.8rem;
    margin: 0 auto;
    max-width: 78rem;
}

.why-grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 3.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 46, 95, 0.08);
    border-top: 4px solid rgba(0, 191, 255, 0.55);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    min-height: 25rem;
    padding: 2.5rem 2rem;
    text-align: left;
}

.why-card i {
    align-items: center;
    background: rgba(0, 191, 255, 0.12);
    border-radius: 999px;
    color: var(--primary);
    display: inline-flex;
    font-size: 2.4rem;
    height: 5rem;
    justify-content: center;
    margin-bottom: 1.6rem;
    width: 5rem;
}

.why-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: #526173;
    font-size: 1.38rem;
    line-height: 2.25rem;
    margin: 0;
}

.why-card:hover {
    border-color: rgba(0, 191, 255, 0.45);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
}

/* ========== COMMUNICATE / CTA SECTION ========== */

.communicate {
    text-align: center;
    background-image: url(../images/img3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 35vh;
    padding: 4rem 2rem;
}

.communicate h3 {
    margin-top: 3rem;
    font-size: 3rem;
}

.communicate p {
    font-size: 2rem;
}

/* ========== TESTIMONIALS (if used) ========== */

.testimonials {
    position: relative;
    padding: 9rem 0 6rem 0;
    background: var(--light-bg);
}

.testimonials .testimonial-item {
    position: relative;
    margin: 0 1.5rem 3rem 1.5rem;
    background: #fff;
}

.testimonials .testimonial-img {
    position: relative;
    background: #000;
    overflow: hidden;
}

.testimonials .testimonial-text {
    position: relative;
    width: 100%;
    padding: 3rem 1.5rem;
    text-align: center;
    background: #fff;
}

.testimonials .testimonial-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials .testimonial-text h4 {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
}

.testimonials .testimonial-text p {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 300;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 0.5rem;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: #ddd;
}

.testimonials .owl-dot.active {
    background-color: #4F84C4;
}

/* ========== CLIENTS SECTION ========== */

.clients {
    position: relative;
    padding: 9rem 0;
    text-align: center;
}

.clients .section-header p {
    padding-bottom: 1rem;
    margin-top: 2.5rem;
    text-align: center;
    font-size: 2rem;
    color: var(--text-main);
}

.clients img {
    max-width: 100%;
    opacity: 1;
    transition: 0.3s;
    padding: 1.5rem 0;
    margin: 0 auto;
}

.clients img:hover {
    opacity: 0.5;
}

.clients .owl-nav,
.clients .owl-dots {
    margin-top: 0.5rem;
    text-align: center;
}

.clients .owl-dot {
    display: inline-block;
    margin: 0 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: #ddd;
}

.clients .owl-dot.active {
    background-color: #4F84C4;
}

/* ========== TEAM SECTION ========== */

.team {
    width: 100%;
    text-align: center;
    background:
        radial-gradient(circle at 8% 20%, rgba(0, 191, 255, 0.12), transparent 30rem),
        radial-gradient(circle at 92% 80%, rgba(54, 168, 43, 0.1), transparent 30rem),
        #18212c;
    padding: 3rem 0 8rem;
}

.team .heading {
    color: var(--accent);
}

.team .heading::before,
.team .heading::after {
    border-color: var(--accent);
}

.team-intro {
    max-width: 78rem;
    margin: 0 auto 4rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.65rem;
    line-height: 2.8rem;
}

.team-role-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.8rem;
}

.team-role-card {
    min-height: 28rem;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--accent);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
    text-align: left;
    backdrop-filter: blur(8px);
}

.team-role-card:nth-child(2),
.team-role-card:nth-child(5) {
    border-top-color: #4dbb43;
}

.team-role-card:nth-child(3) {
    border-top-color: #ff9a00;
}

.team-role-card:hover {
    border-color: rgba(0, 191, 255, 0.45);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-5px);
}

.team-role-icon {
    display: inline-flex;
    width: 6rem;
    height: 6rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 3.2rem;
    border: 1px solid rgba(0, 191, 255, 0.25);
    border-radius: 16px;
    background: rgba(0, 191, 255, 0.12);
    color: #61d3ff;
    font-size: 2.5rem;
}

.team-role-card:nth-child(2) .team-role-icon,
.team-role-card:nth-child(5) .team-role-icon {
    border-color: rgba(77, 187, 67, 0.3);
    background: rgba(77, 187, 67, 0.12);
    color: #7cdb72;
}

.team-role-card:nth-child(3) .team-role-icon {
    border-color: rgba(255, 154, 0, 0.3);
    background: rgba(255, 154, 0, 0.12);
    color: #ffb443;
}

.team-role-card h2 {
    margin: 0 0 1.2rem;
    color: #fff;
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 2.4rem;
}

.team-role-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 1.3rem;
    line-height: 2.2rem;
}

@media (max-width: 1100px) {
    .team-role-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .team {
        padding-bottom: 6rem;
    }

    .team-intro {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }

    .team-role-grid {
        grid-template-columns: 1fr;
    }

    .team-role-card {
        min-height: auto;
    }
}

/* ========== CONTACT SECTION ========== */

.contact {
    text-align: center;
    align-items: center;
}

.contact .heading {
    margin-bottom: 5rem;
}

.contact-in {
    width: 80%;
    margin: 0 auto 5rem auto;
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 0 10px 0 #666;
}

.contact-map {
    flex: 1 1 50%;
    min-width: 280px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 30rem;
}

.contact-form {
    flex: 1 1 50%;
    min-width: 280px;
    text-align: left;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Contact form fields */

.contact-form-txt,
.contact-form-email,
.contact-form-phone {
    margin-left: 2rem;
    width: 95%;
    height: 4rem;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 5rem;
    outline: none;
    margin-bottom: 2rem;
    padding: 1.5rem;
    font-size: 1.5rem;
}

.contact-form-txtarea {
    margin-left: 2rem;
    width: 95%;
    height: 13rem;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 1rem;
    outline: none;
    margin-bottom: 2rem;
    padding: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
}

.contact-form-txt::placeholder,
.contact-form-email::placeholder,
.contact-form-phone::placeholder,
.contact-form-txtarea::placeholder {
    color: #aaa;
    font-size: 1.5rem;
}

.contact-form-btn {
    margin-left: 2rem;
}

/* ========== FOOTER ========== */

.footer {
    position: relative;
    padding: 0 0 3rem 0;
    background: #333;
    color: #fff;
}

.footer .footer-top {
    background: var(--primary);
    padding: 6rem 0 3rem 0;
}

.footer .footer-top .footer-info,
.footer .footer-top .footer-links,
.footer .footer-top .footer-contact,
.footer .footer-top .footer-newsletter {
    margin-bottom: 3rem;
}

.footer .footer-top .social-links a {
    font-size: 1.8rem;
    display: inline-block;
    background: #fff;
    color: var(--accent);
    line-height: 1;
    padding: 0.9rem 0;
    margin-right: 0.4rem;
    text-align: center;
    width: 3.6rem;
    height: 3.6rem;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    background: var(--accent);
    color: #fff;
}

.footer .footer-top h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
}

.footer .footer-top h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 5rem;
    border-bottom: 2px solid #fff;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-right: 0.8rem;
    color: #fff;
    font-size: 1.6rem;
}

.footer .footer-top .footer-links ul li {
    border-bottom: 1px solid #fff;
    padding: 0.7rem 0;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    font-size: 1.4rem;
    color: #fff;
}

.footer .footer-top .footer-links ul a:hover {
    color: var(--accent);
}

.footer .footer-top .footer-contact p {
    color: #fff;
    line-height: 2.6rem;
}

.footer .footer-top .footer-newsletter input[type="email"] {
    padding: 0.6rem 0.8rem;
    width: 60%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.footer .footer-top .footer-newsletter input[type="submit"] {
    border: 0;
    width: 40%;
    padding: 0.6rem 0;
    text-align: center;
    color: #000;
    border: 1px solid #fff;
    background: #fff;
    transition: 0.3s;
    cursor: pointer;
}

.footer .footer-top .footer-newsletter input[type="submit"]:hover {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
    letter-spacing: 0.2rem;
}

.footer .footer-top .footer-newsletter p {
    color: #fff;
    font-size: 1.4rem;
}

.footer-cta-link {
    align-items: center;
    background: #00bfff;
    border-radius: 999px;
    color: #002e5f;
    display: inline-flex;
    font-size: 1.35rem;
    font-weight: 700;
    justify-content: center;
    margin-top: 1.2rem;
    min-height: 4rem;
    padding: 0.9rem 1.6rem;
}

.footer-cta-link:hover {
    background: #fff;
    color: var(--primary);
    text-decoration: none;
}

.footer .credit,
.footer .copyright {
    text-align: center;
    padding-top: 3rem;
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    .footer .credit {
        text-align: right;
    }
    .footer .copyright {
        text-align: left;
    }
}

/* ========== BACK TO TOP BUTTON ========== */

.back-to-top {
    position: fixed;
    display: none;
    background-color: var(--accent);
    color: #fff;
    width: 4.5rem;
    height: 4.5rem;
    text-align: center;
    line-height: 1;
    font-size: 4.4rem;
    right: 1.5rem;
    bottom: 1.5rem;
    transition: background 0.3s;
    z-index: 9;
}

.back-to-top i {
    color: #fff;
}

.back-to-top i:hover {
    color: #000;
}

/* ========== FAQ SECTION ========== */

.faq {
    min-height: 70vh;
    width: 100vw;
    text-align: center;
    padding: 0 2rem 4rem;
    background: url(../images/faq.jpg) no-repeat center center / cover;
}

.faq .row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.faq .row .accordion-container {
    width: 50%;
    text-align: left;
}

.faq .row .accordion {
    margin: 1rem 2rem 0 1rem;
}

.faq .accordion-header {
    background-color: var(--accent);
    box-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.faq .accordion-header span {
    display: inline-block;
    text-align: center;
    height: 4rem;
    width: 5rem;
    line-height: 4rem;
    font-size: 2rem;
    background: #333;
    color: #fff;
    clip-path: polygon(0% 0%,75% 0%,100% 50%,75% 100%,0% 100%);
}

.faq .accordion-header h3 {
    display: inline;
    color: #333;
    font-weight: 400;
    padding-left: 0.5rem;
    font-size: 1.5rem;
}

.faq .accordion-body {
    padding: 1rem;
    color: #444;
    box-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
    background-color: #fff;
    font-size: 1.3rem;
    display: none;
    margin-left: 1rem;
    margin-right: 2rem;
}

/* ========== RESPONSIVENESS ========== */

/* Slight adjustment for FAQ height */
@media (max-width: 1200px) {
    .faq {
        min-height: 70vh;
    }
}

/* Tablet & below */
@media (max-width: 1000px) {
    html {
        font-size: 50%;
    }

    .header .fa-bars {
        display: block;
        color: #003b70;
        margin-right: 1rem;
    }

    .header .logo img {
        height: 5.4rem;
    }

    .header .fa-bars:hover {
        color: var(--accent);
    }

    .header .navbar {
        position: fixed;
        top: 7.2rem;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 1000;
        border-top: 0.1rem solid rgba(0, 0, 0, 0.3);
        transform: translateY(-125%);
        transition: transform .25s ease;
    }

    .header .navbar ul {
        width: 100%;
        flex-flow: column;
        padding: 1rem 0;
    }

    .header .navbar ul li {
        margin: 1rem 0;
    }

    .header .navbar ul li a {
        color: #777;
        font-size: 2.4rem;
    }

    .header .fa-times {
        transform: rotate(90deg);
    }

    /* Shown when JS adds .nav-toggle */
    .header .navbar.nav-toggle {
        top: 7.2rem;
        transform: translateY(0);
    }

    .home h1 {
        font-size: 4rem;
    }
    .home h2 {
        font-size: 2rem;
    }

    .about {
        min-height: 38vh;
        margin-top: -3rem;
        margin-bottom: -2rem;
    }

    .about .row {
        padding: 0 2rem;
    }

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

    .about .row .content p {
        font-size: 1.3rem;
    }

    .clients {
        padding: 6rem 0;
    }

    .team {
        min-height: auto;
    }

    .team .row {
        flex-direction: column;
    }

    .contact .heading {
        margin-bottom: 3rem;
        margin-top: -2rem;
    }

    .contact-in {
        width: 90%;
    }

    .contact-map,
    .contact-form {
        flex: 1 1 100%;
    }

    .contact-form-txt,
    .contact-form-email,
    .contact-form-phone,
    .contact-form-txtarea {
        width: 90%;
        margin-left: 2rem;
    }

    .contact-form-btn {
        width: 12rem;
    }

    .back-to-top {
        width: 3rem;
        height: 3rem;
        font-size: 3rem;
    }

    .faq {
        padding: 0 0 4rem;
        min-height: 60vh;
    }

    .faq .row {
        padding: 0 1.5rem;
        flex-flow: column;
    }

    .faq .row .accordion-container {
        width: 100%;
    }
}

/* Counters responsive grid */
@media (max-width: 700px) {
    .counters .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters .container > div:nth-of-type(1),
    .counters .container > div:nth-of-type(2) {
        border-bottom: 1px lightskyblue solid;
        padding-bottom: 2rem;
    }
}

/* Small phones */
@media (max-width: 575.98px) {
    html {
        font-size: 55%;
    }

    .counters .container {
        grid-template-columns: 1fr;
    }

    .section-head-1 h4 {
        margin-top: 0 !important;
    }

    .home {
        padding-top: 8rem;
    }
}



/* ========== PROFESSIONAL ALIGNMENT + WHATSAPP CTA ========== */

/* Consistent section spacing */
section{
  scroll-margin-top: 90px;
}

/* Better global container feel */
.container-max{
  width: min(92vw, var(--container));
  margin-inline: auto;
}

/* CONTACT: align form fields nicely */
.contact-in{
  width: min(92vw, var(--container));
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-form form{
  padding: 1rem 1.2rem 2rem 1.2rem;
}

.contact-form-txt,
.contact-form-email,
.contact-form-phone,
.contact-form-txtarea{
  margin-left: 0;
  width: 100%;
}

.contact-actions{
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.contact-form-btn{
  border-radius: 999px;
  padding: 1.2rem 1.8rem;
  font-weight: 600;
}

.contact-form-btn--wa{
  background: #25D366;
}
.contact-form-btn--wa:hover{
  filter: brightness(0.95);
}

/* Floating WhatsApp button */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.wa-float i{
  font-size: 2.2rem;
}

.wa-label{
  font-size: 1.4rem;
  font-weight: 600;
}

/* Make buttons/links feel modern */
.btn, button, .contact-form-btn{
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn:hover, button:hover, .contact-form-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}

/* Small screens: hide label, keep icon */
@media (max-width: 480px){
  .wa-label{ display:none; }
  .wa-float{ padding: 12px 14px; }
}


/* ========== RESPONSIVE TWEAKS ========== */
@media (max-width: 991px){
    .section-head{ margin-top: -4rem; }
    .dri360-product-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .whatsapp-reporting-product{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px){
    html{ font-size: 56.25%; } /* 1rem = 9px */
    .dri360-product-card { padding: 2.2rem; }
    .dri360-product-copy h5 { font-size: 2.5rem; }
    .dri360-card-features { display: grid; }
    .item{ padding: 2rem 1.8rem; }
    .item h6{ font-size: 1.8rem; }
    .item p{ font-size: 1.4rem; line-height: 2.4rem; }
    .section-head p{ font-size: 1.6rem; }
    .whatsapp-reporting-product{ padding: 2rem; }
    .whatsapp-reporting-copy h5{ font-size: 2.2rem; line-height: 3rem; }
    .whatsapp-reporting-copy p{ font-size: 1.45rem; line-height: 2.5rem; }
}

@media (max-width: 480px){
    html{ font-size: 53.125%; } /* 1rem ≈ 8.5px */
    .item .icon{ width: 8rem; height: 8rem; }
}

/* ========== CLEAN CUSTOMER-FACING RESPONSIVE POLISH ========== */

body {
    background: #f8fafc;
}

.header {
    min-height: 7.2rem;
    padding: .65rem clamp(1.6rem, 4vw, 4rem);
    border-bottom-color: rgba(0, 143, 211, .2);
    background: linear-gradient(110deg, rgba(225, 243, 255, .98) 0%, rgba(238, 248, 255, .98) 52%, rgba(247, 251, 255, .98) 100%);
    box-shadow: 0 .45rem 1.6rem rgba(0, 74, 132, .12);
}

.header .logo img {
    height: 5.8rem;
}

.header .navbar ul {
    gap: clamp(0.6rem, 1.5vw, 1.8rem);
}

.header .navbar ul li {
    margin: 0;
}

.header .navbar ul li a {
    font-size: clamp(1.35rem, 1vw, 1.7rem);
    font-weight: 500;
}

.home {
    min-height: min(88rem, 100vh);
    padding: 7.2rem 0 0;
}

.home h1 {
    font-size: clamp(3.6rem, 6vw, 6.8rem);
    font-weight: 700;
    line-height: 1.08;
    max-width: 100rem;
    text-align: center;
}

.home h2 {
    font-size: clamp(2rem, 3vw, 3.4rem);
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2.4rem;
    position: relative;
    z-index: 2;
}

.hero-btn {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 1.55rem;
    font-weight: 600;
    justify-content: center;
    min-height: 4.6rem;
    min-width: 15rem;
    padding: 1.1rem 2.2rem;
}

.hero-btn-primary {
    background: #00bfff;
    box-shadow: 0 14px 28px rgba(0, 46, 95, 0.28);
    color: #002e5f;
}

.hero-btn-secondary {
    background: rgba(0, 46, 95, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    backdrop-filter: blur(4px);
}

.hero-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.about,
.clients,
.partners,
.contact,
.faq,
.team {
    width: 100%;
}

.section-head,
.section-head-1,
.clients .section-header,
.partners .section-header {
    margin-bottom: 4rem;
}

.item,
.team .row .card,
.client-logo-card,
.partner-card,
.whatsapp-reporting-product,
.contact-in {
    border-radius: 8px;
}

.item {
    border: 1px solid rgba(0, 46, 95, 0.08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    margin-bottom: 2.4rem;
}

.item:hover {
    background-image: none;
    background-color: #eef9fb;
}

.item:hover .icon {
    transform: translateY(-3px) scale(1.04);
}

.item:hover .item-tag {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary);
}

.counters .container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trusted-section {
    background: #fff;
    padding: 8rem 0;
    text-align: center;
}

.trusted-section .section-header h2 {
    color: var(--primary);
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.trusted-section .section-header p {
    color: #526173;
    font-size: 1.75rem;
    line-height: 2.8rem;
    margin: 0 auto;
    max-width: 76rem;
}

.client-logo-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 4rem;
}

.client-logo-card {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 46, 95, 0.09);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    display: flex;
    height: 13rem;
    justify-content: center;
    padding: 2rem;
}

.client-logo-card img {
    max-height: 8rem;
    object-fit: contain;
    padding: 0;
    width: 100%;
}

.client-logo-card:hover {
    border-color: rgba(0, 191, 255, 0.45);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
}

.client-logo-card:hover img {
    opacity: 1;
}

.partners {
    background: #f3f8fb;
}

.partner-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 4rem;
}

.partner-card {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 46, 95, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 15rem;
    padding: 2.4rem 1.6rem;
    text-align: center;
}

.partner-mark {
    align-items: center;
    background: rgba(0, 191, 255, 0.12);
    border-radius: 999px;
    color: var(--primary);
    display: inline-flex;
    font-size: 3rem;
    font-weight: 800;
    height: 6.4rem;
    justify-content: center;
    margin-bottom: 1.8rem;
    width: 6.4rem;
}

.partner-mark-microsoft {
    color: #0078d4;
}

.partner-mark-dynamics {
    color: #002e5f;
}

.partner-mark-azure {
    color: #0078d4;
}

.partner-mark-google {
    color: #4285f4;
}

.partner-mark-whatsapp {
    background: rgba(37, 211, 102, 0.14);
    color: #128c7e;
}

.partner-mark-amazon {
    color: #ff9900;
}

.partner-mark-text {
    color: #128c7e;
    font-size: 2rem;
    letter-spacing: 0.08rem;
}

.partner-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0;
}

.partner-card:hover {
    border-color: rgba(0, 191, 255, 0.45);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
}

.whatsapp-reporting-product {
    background: #fff;
}

.communicate {
    min-height: 28rem;
}

@media (max-width: 1200px) {
    .header .navbar ul {
        gap: 0.8rem;
    }
}

@media (max-width: 1000px) {
    .header .navbar ul {
        gap: 0;
    }

    .header .navbar ul li a {
        font-size: 2rem;
    }

    .client-logo-grid,
    .partner-grid,
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .counters .container,
    .partner-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .client-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .client-logo-card {
        height: 11rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .home {
        min-height: 0;
        padding: 7.2rem 0 0;
    }

    .home-hero-art {
        display: none;
    }

    .hero-brand-panel {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        min-height: 36rem;
        padding: 3.2rem 2rem 2rem;
        transform: none;
        background: linear-gradient(180deg, #f4faff 0%, #eaf7ff 100%);
        justify-items: center;
        text-align: center;
    }

    .hero-brand-logo {
        width: 18rem;
    }

    .hero-brand-tagline {
        margin: .8rem 0 1.6rem;
        padding-top: 1rem;
        font-size: 1.4rem;
    }

    .hero-brand-services {
        justify-content: center;
    }

    .hero-brand-services span {
        padding: .7rem 1rem;
        font-size: 1.05rem;
    }

    .product-orbit {
        position: relative;
        left: auto;
        top: auto;
        right: auto;
        width: 100%;
        height: 38rem;
        margin-top: 0;
        aspect-ratio: auto;
        transform: none;
        background: radial-gradient(circle at center, rgba(196, 239, 255, .8), rgba(239, 248, 255, .96) 55%, #f8fbff 78%);
    }

    .orbit-core {
        width: 9.5rem;
        padding: 1.3rem;
    }

    .orbit-core img {
        width: 5rem;
        height: 5.6rem;
    }

    .orbit-product {
        transform: rotate(var(--angle)) translateX(13rem) rotate(var(--counter-angle));
    }

    .orbit-ring-inner .orbit-product {
        transform: rotate(var(--angle)) translateX(8.2rem) rotate(var(--counter-angle));
    }

    .orbit-product-card {
        width: 7.4rem;
        min-height: 6.8rem;
        padding: .6rem;
    }

    .orbit-product-card span {
        font-size: .95rem;
    }

    .orbit-ring-inner .orbit-product-card {
        width: 6rem;
        min-height: 5.6rem;
        padding: .45rem;
    }

    .orbit-ring-inner .orbit-product-card span {
        font-size: .78rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-btn {
        width: min(100%, 28rem);
    }

    .trusted-section {
        padding: 6rem 0;
    }

    .why-choose {
        padding: 6rem 0;
    }

    .trusted-section .section-header h2 {
        font-size: 2.8rem;
    }

    .trusted-section .section-header p {
        font-size: 1.55rem;
        line-height: 2.5rem;
    }
}
/* Status text for the Microsoft 365-backed contact service. */
.contact-service-status {
    width: 100%;
    min-height: 1.4em;
    margin: 12px 0 0;
    color: #435465;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-service-status.is-success {
    color: #08713f;
}

.contact-service-status.is-error {
    color: #a12222;
}
