@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

/* --------------------------
Default Code 
-----------------------------*/

body {
    font-family: "Google Sans", sans-serif;
}


.fc-logo-card img {
    width: 100%;
    height: auto;
    display: block;
}


.app-tags ul{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-buttons a {
    width: 50%;
    padding: 15px 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: .3s;
}

.call-btn {
    background: linear-gradient(45deg, #ea4e15, #f7d649);
    color: #fff;
}

.call-btn:hover {
    background: linear-gradient(45deg, #ea4e15, #f7d649);
}

.enquiry-btn {
    background: linear-gradient(to right, #2058a0, #3185c3);
    color: #fff;
}

.enquiry-btn:hover {
    background: linear-gradient(to right, #2058a0, #3185c3);
}

.download-btn {
    background: linear-gradient(to right, #f43636, #c33131);
    color: #fff;
}



/* Sticky Button */
.sticky-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(180deg);
    background: linear-gradient(45deg, #ea4e15, #f7d649);
    color: #fff;
    text-decoration: none;
    padding: 15px 12px;
    border-radius: 0 8px 8px 0;
    font-family: "Google Sans", sans-serif;
    font-size: 19px;
    font-weight: 500;
    writing-mode: vertical-lr;
    z-index: 9999;
    transition: .3s;
}

.sticky-btn:hover {
    background: #222;
}


/* Overlay */
.form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 9998;
}

.form-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Slide Form */
.slide-form {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .15);
    transition: .4s ease;
    z-index: 99999;
    overflow-y: auto;
    padding: 30px;
}

.slide-form.active {
    right: 0;
}

/* Header */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.form-header h3 {
    margin: 0;
    font-size: 19px;
}

.form-header span {
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

/* Form */
.slide-form input,
.slide-form textarea,
.slide-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.slide-form input:focus,
.slide-form textarea:focus {
    border-color: #ea4e15;
}

.slide-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #ea4e15, #f7d649);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    text-align: center !important;
    display: flex;
    justify-content: center;
}

.nav-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #ddd;
    margin: 0 20px;
    max-width: 250px;
    width: 100%;
}

.nav-search input {
    border: none;
    outline: none;
    padding: 10px 15px;
    width: 100%;
    font-size: 14px;
    background: transparent;
}

.nav-search button {
    border: none;
    background: linear-gradient(to right, #2058a0, #3185c3);
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-search button:hover {
    background: linear-gradient(to right, #3185c3, #2058a0);
}


.image-animation {
    position: relative;
}

.image-animation:before {
    content: "";
    /* REQUIRED */
    position: absolute;
    /* REQUIRED */

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 555px;
    height: 555px;

    background-image: url("../images/shape1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    animation: circleimagerotate 30s linear infinite;

    z-index: -9;
    /* control layering */
}

/* Optional: keep main image above */
.image-animation img {
    position: relative;
    z-index: 1;
}

@keyframes circleimagerotate {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    scroll-behavior: smooth;
}

.top {
    width: 98%;
    margin: 0 auto;
    max-width: 1920px;
}

.top2 {
    width: 90%;
    margin: 0 auto;
    max-width: 1920px;
}

.menu-top2 {
    width: 95%;
    margin: 0 auto;
    max-width: 1920px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top3 {
    width: 84%;
    margin: 0 auto;
    overflow: hidden;
}

.top4 {
    width: 87%;
    margin: 0 auto;
    overflow: hidden;
}

.top5 {
    width: 94%;
    margin: 0 auto;
    overflow: hidden;
}


.col_sm1 {
    width: 100%;
}

.col_sm1_1 {
    width: 98%;
    float: left;
    margin: 1%;
}

.col_sm2 {
    width: 48%;
    float: left;
    margin: 1%;
}

.col_sm3 {
    width: 31%;
    float: left;
    margin: 1%;
}

.col_sm1_1 {
    width: 100%;
    float: left;
    margin: 1%;
}


.col_sm3_3 {
    width: 28%;
    float: left;
    margin: 1%;
}

.col_sm4 {
    width: 23%;
    margin: 1%;
    float: left;
}

.col_sm5 {
    width: 18%;
    margin: 1%;
    float: left;
}

.col_sm6 {
    width: 16%;
    margin: 1% 0;
    float: left;
}

.col_sm7 {
    width: 9%;
    margin: 1% 0;
    float: left;
}


.col_sm44 {
    width: 28%;
    margin: 1%;
    float: left;
}

.col_sm8 {
    width: 58%;
    float: left;
    margin: 1%;
}

.col_sm88 {
    width: 38%;
    float: left;
    margin: 1%;
}


.img {
    width: 100%;
}


.logo {
    width: 200px;
}

.logo img {
    width: 200px;
}

.fix_nav {
    position: absolute;
    z-index: 99;
    border-bottom: 1px solid #ffffff1a;
    background: transparent;
}

hr {
    border: 0.5px solid #c7c7c775;
}

/*-----------------------------
Main CSS
-----------------------------*/
.map-flex {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/* â”€â”€ Header â”€â”€ */
.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
}

.header p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin: 28px 0;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}

/* â”€â”€ Map wrap â€” matches the screenshot oval container â”€â”€ */
.map-outer {
    width: 100%;
    max-width: 1000px;
    position: relative;
    /* Mirror the screenshot's oval card */
    background: #DDE9F3;
    border-radius: 50% / 12%;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(14, 40, 80, .12), 0 1px 6px rgba(14, 40, 80, .06);
}

#india-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* â”€â”€ Tooltip â”€â”€ */
#tooltip {
    position: absolute;
    background: #fff;
    border: 1px solid #C0D2E4;
    border-radius: 8px;
    padding: 9px 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .14s ease;
 
    box-shadow: 0 6px 20px rgba(12, 36, 80, .14);
    z-index: 20;
}

#tt-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #0D1F30;
}

#tt-role {
    font-size: 11px;
    color: #3A82C4;
    margin-top: 2px;
    font-weight: 500;
}

/* â”€â”€ Legend â”€â”€ */
.legend {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 14px;
    font-size: 12px;
    color: #5A7890;
    font-weight: 400;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.img-box img{
    width: 600px;
    height: 800px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 29px;
    left: 19%;
}

.img-box {
    position: relative;
    overflow: hidden;
}

.img-box img {
    display: block;
}

.flex {
    display: flex;
    align-items: center;
}

/* shine strip starting at center */
.img-box::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0));

    transform: translateY(-50%) translateY(-100%);
    opacity: 0;

    z-index: 2;
    width: 67%;
}

/* hover trigger */
.img-box:hover::before {
    animation: shineDown 0.7s ease forwards;
}

/* animation: center â†’ bottom */
@keyframes shineDown {
    0% {
        transform: translateY(-50%) translateY(-100%);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) translateY(100%);
        opacity: 1;
    }
}


.img-shine-lr {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.img-shine-lr img {
    display: block;
    width: 100%;
}

/* shine strip (left side start) */
.img-shine-lr::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    /* start outside left */
    width: 50%;
    height: 100%;

    background: linear-gradient(to right,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0));

    opacity: 0;

    z-index: 2;
}

/* ðŸ”¥ hover trigger */
.img-shine-lr:hover::before {
    animation: shineLR 0.8s ease forwards;
}

/* animation: left â†’ right */
@keyframes shineLR {
    0% {
        left: -60%;
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        left: 120%;
        opacity: 1;
    }
}



.banner {
    margin: 1% 0;
}

.banner img {
    border-radius: 10px;
}


.btn-blue a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

background: linear-gradient(45deg, #ea4e15, #f7d649);
    padding: 10px 20px;
    border-radius: 50px;

    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;

    transition: all 0.3s ease-in-out;
}

/* Icon circle */
.btn-blue a .icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;
    border-radius: 50%;

    background: #fff;
    color: #000;

    transition: all 0.3s ease-in-out;
}

.btn-blue a .icon .fa-arrow-right {
    rotate: 320deg;
    transition: all 0.3s ease-in-out;
}

/* Hover effects */
.btn-blue a:hover {
    background: linear-gradient(45deg, #2058a0, #3185c3);
}

.btn-blue a:hover .icon .fa-arrow-right {
    rotate: 360deg;
}



.btn-right a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(45deg, #ea4e15, #f7d649);
    padding: 10px 20px;
    border-radius: 10px;

    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;

    transition: all 0.3s ease-in-out;
}

/* Icon circle */
.btn-right a .icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;
    border-radius: 50%;

    background: #fff;
    color: #000;

    transition: all 0.3s ease-in-out;
}

.btn-right a .icon .fa-arrow-right {
    rotate: 320deg;
    transition: all 0.3s ease-in-out;
}

/* Hover effects */
.btn-right a:hover {
    background: linear-gradient(45deg, #f7d649, #ea4e15);
}

.btn-right a:hover .icon .fa-arrow-right {
    rotate: 360deg;
}



.gradient-action-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(45deg, #ea4e15, #f7d649);
    padding: 10px 20px;
    border-radius: 10px;

    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;

    transition: all 0.3s ease-in-out;
}

/* Icon circle */
.gradient-action-btn a .icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;
    border-radius: 50%;

    background: #fff;
    color: #000;

    transition: all 0.3s ease-in-out;
}

.gradient-action-btn a .icon .fa-arrow-right {
    rotate: 320deg;
    transition: all 0.3s ease-in-out;
}

/* Hover effects */
.gradient-action-btn a:hover {
    background: linear-gradient(45deg, #f7d649, #ea4e15);
}

.gradient-action-btn a:hover .icon .fa-arrow-right {
    rotate: 360deg;
}

.video-img {
    position: absolute;
    top: 40vh;
    left: 7%;
    background: #fff;
    padding: 17px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.video-img img {
    border-radius: 10px;
}

/* vertical text */
.video-img h5 {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    padding: 0px 12px 0px 12px;
    font-family: "Google Sans", sans-serif;
}

.about {
    position: relative;
    background-image: url(https://demo.awaikenthemes.com/genlab/wp-content/uploads/2026/02/section-bg-image-2.png);
    background-position: top 100px right -135px;
    background-repeat: no-repeat;
    background-size: auto;

}

.short-img {
    position: absolute;
    left: 10%;
    top: 23vh;
    z-index: -9;
}


.about-first-img:after,
.about-first-img:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.about-first-img:hover:after,
.about-first-img:hover:after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}


.about h6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(85 132 254 / 22%);
    border: 1px solid rgb(85 132 254 / 22%);
    color: #3d53a8;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin: 24px 0;
    width: fit-content;
    animation: fadeUp 0.6s ease both 0.1s;
}

.about h6::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3d53a8;
    flex-shrink: 0;
}

.about h5 {
    font-family: "Google Sans", sans-serif;
    font-size: 23px;
    font-weight: 400;
    color: #000000;
    line-height: 140%;

}


.about h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;

}

.about h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.about h2 b:hover {
    background-position: right center;
}

.about p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}

.about p a {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
    font-weight: 600;
}

.icon-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.icon-box .icon {
    width: 70px;
    background: linear-gradient(45deg, #3185c3, #2058a0);
    border-radius: 50%;
    padding: 15px;
    height: 70px;
}



.icon-box .icon img {
    filter: brightness(0) invert(1);
}

.icon-box h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 25px !important;
    font-weight: 500;
    color: #000000 !important;
    line-height: 140%;
    margin: 7px 0;

}

.icon-box p {
    font-size: 16px;
    color: #000 !important;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}


.why-choose-us .top {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Video */
.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgb(52 121 188) 0%,
            rgba(26, 60, 143, 0.60) 50%,
            rgba(26, 60, 143, 0.15) 100%);
    z-index: 2;
}

.why-choose-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.why-choose-flex ul{
    display: flex;
    list-style: none;
    width: 100%;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 1%;
    flex-wrap: wrap;
}


.why-choose-flex2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.why-choose-flex2 ul {
    display: flex;
    list-style: none;
    width: 100%;
    gap: 12px;
    justify-content: center;
    margin-top: 1%;
    flex-wrap: wrap;
}

.app-tags li{
list-style: none;
}

/* Content */
.why-choose-us .content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 5% 0;
}

.why-choose-us h6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff2e;
    border: 1px solid #ffffff2e;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin: 24px 0;

    width: fit-content;
    animation: fadeUp 0.6s ease both 0.1s;
}

.why-choose-us h6::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-gold);
    flex-shrink: 0;
}


.why-choose-us h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
}


.why-choose-us h2 b {
    font-style: italic;
    font-weight: 500;
    font-family: "Google Sans", sans-serif;
    background: linear-gradient(to right, #f7d649, #ea4e15, #f7d649);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.why-choose-us h2 b:hover {
    background-position: right center;
}

.why-choose-us-sub {
    backdrop-filter: blur(30px);
    text-align: left;
    background: rgb(29, 65, 120);
    padding: 30px 0px;
    border-radius: 13px;
}


.why-choose-us-sub222 li {
    background: #1d4178;
    backdrop-filter: blur(30px);
    padding: 30px 11px;
    text-align: left;
    border-radius: 13px;
    font-size: 20px;
}

.why-choose-us-sub img {
    width: 90px;
    padding: 0 3%;
}

.why-choose-us-sub h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;

    text-align: left;
    padding: 0 3%;
    margin: 3% 1%;

}

.why-choose-us-sub2 {
    background: #fff;
    backdrop-filter: blur(30px);
    padding: 30px 0;
    text-align: left;
    border-radius: 13px;
    margin: 1% 0;

    display: flex;
    align-items: center;
}

.why-choose-us-sub2 h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #225ea7;
    line-height: 140%;

    text-align: left;
    padding: 0 3%;
    margin: 3% 1%;

}

.why-choose-us-sub2 p {
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 140%;
    text-align: left;
    padding: 0 3%;
    margin: 3% 1%;
}

.why-choose-us-sub2-img {
    width: 90px;
    padding: 0 3%;
}

.why-choose-us-sub p {
    font-size: 16px;
    color: #fff;
    line-height: 140%;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: left;
    padding: 0 3%;
    margin: 0% 1%;
}

.services {
    background-image: url(../images/section-bg-image-2.png);
    background-position: top 120px left -150px;
    background-repeat: no-repeat;
    background-size: auto;
}

.services .top3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.services h6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(85 132 254 / 22%);
    border: 1px solid rgb(85 132 254 / 22%);
    color: #3d53a8;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin: 24px 0;
    width: fit-content;
    animation: fadeUp 0.6s ease both 0.1s;
}

.services h6::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-gold);
    flex-shrink: 0;
}

.services h5 {
    font-family: "Google Sans", sans-serif;
    font-size: 23px;
    font-weight: 400;
    color: #000000;
    line-height: 140%;

}


.services h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;

    text-align: center;
}

.services h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.services h2 b:hover {
    background-position: right center;
}

.services p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}


.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: 100%;
    margin: 3% 0;
}

.card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 3.8;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.35s ease;
}

.card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}


.card:hover .card-image {
    transform: scale(1.06);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 55%) !important;
    pointer-events: none;
}

.card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px 24px;
}


.card-body h3 {
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 140%;
    margin: 2% 0;
    animation: fadeUp 0.6s ease both 0.4s;
}

.card-body p {
    font-size: 16px;
    color: #fff;
    line-height: 140%;
    margin: 0;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: left !important;
}


/* =========================
   IMAGE WIPE EFFECT
========================= */

/* Initial state (hidden from left) */
.card-image {
    transition:
        clip-path 1s cubic-bezier(0.77, 0, 0.18, 1),
        transform 0.5s ease;
}

/* When visible */
.card.active .card-image {
    clip-path: inset(0 0 0 0);
}



.card:nth-child(1) .card-image {
    transition-delay: 0.1s;
}

.card:nth-child(2) .card-image {
    transition-delay: 0.25s;
}

.card:nth-child(3) .card-image {
    transition-delay: 0.4s;
}

.card:nth-child(4) .card-image {
    transition-delay: 0.55s;
}



.products-image {
    background-color: #337abc;
    background-image: url(../images/dark-section-bg-image.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 5% 2% 2%;

}

.products h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000;
    line-height: 1.12;
    margin-bottom: 20px;

    text-align: center;
}

.products h2 b {

    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;

}

.products h2 b:hover {
    background-position: right center;
}

.products-sub {
    background: #ffffff29;
    backdrop-filter: blur(29px);
    border-radius: 40px;
    padding: 0 0 50px 0;
}

.products-sub h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin: 7px 0;
    text-align: center;
    padding: 0 3%;
}

.products-sub img {
    border-radius: 40px;
    padding: 31px;
}

.who-we-serve h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin-bottom: 20px;

    text-align: center;
}

.who-we-serve h2 b {
    font-style: italic;
    font-weight: 500;
    font-family: "Google Sans", sans-serif;
    background: linear-gradient(to right, #f7d649, #ea4e15, #f7d649);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.who-we-serve h2 b:hover {
    background-position: right center;
}

.who-we-serve p {
    font-size: 18px;
    color: #fff;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
    padding: 4px;
}

.who-we-serve h3 {
    font-family: "Google Sans", sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
}

.icon-flex {
    display: flex;
    flex-wrap: wrap;
}




.icon-box2 .icon {
    width: 70px;
    background: linear-gradient(45deg, #3185c3, #2058a0);
    border-radius: 50%;
    padding: 15px;
    height: 70px;
}

.icon-box2 .icon img {
    filter: brightness(0) invert(1);
}

.icon-box2 h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin: 7px 0;

    text-align: left;
}

.icon-box2 p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: left;
}


.icon-box {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.ms-carousel {
    position: relative;
    width: 100%;
    height: 110px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-carousel-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.ms-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
}

.ms-carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.ms-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(32, 88, 160, 0.9);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-prev {
    left: 8px;
}

.ms-next {
    right: 8px;
}


.who-we-serve2 p {
    font-size: 16px;
    color: #fff;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
}


@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.icon-box {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 12px;
    padding: 20px 0;
}

.logos {
    overflow: hidden;
 
    position: relative;
}

.logo_items {
    display: inline-block;
    animation: 100s slides infinite linear;
    margin: 2% 0;
}

.logos:hover .logo_items {
    animation-play-state: paused;
}

.logo_items img {
height: 170px;
    padding: 0 0.5%;
    object-fit: contain;
    width: 170px;
}



.solutions h6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff2e;
    border: 1px solid #ffffff2e;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin: 24px 0;
    width: fit-content;
    animation: fadeUp 0.6s ease both 0.1s;
    margin-left: 2%;
}

.solutions h6::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-gold);
    flex-shrink: 0;
}

.solutions h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: left;
    margin-left: 2%;
    z-index: 9;
    position: relative;
}

.solutions h2 b {
    font-style: italic;
    font-weight: 500;
    font-family: "Google Sans", sans-serif;
    background: linear-gradient(to right, #f7d649, #ea4e15, #f7d649);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.solutions h2 b:hover {
    background-position: right center;
}

.solutions p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0;
    text-align: center;
    font-family: "Google Sans", sans-serif;
}

.solutions-hero-grid-pattern {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    opacity: 0.05;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, 0.7) 39px, rgba(255, 255, 255, 0.7) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, 0.7) 39px, rgba(255, 255, 255, 0.7) 40px);
}


.card-flex {
    display: flex;
    margin: 0 1%;
    flex-wrap: wrap;
}

.card2 {
    background: #fff;
    border-radius: 10px;
}

.card2 h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 140%;
    margin: 7px 0;
    text-align: center;
    padding: 0 3%;
}

.card img{
    height: 100%;
    object-fit: cover;
}


.nav-search-form{
    display: flex;
}


.nav-search-results a {
    justify-content: space-between;
    align-items: center;
}

.result-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.result-title { font-weight: 500; }

.result-price {
    font-size: 12px;
    color: #777;
}

.result-badge {
    font-size: 10px;
    text-transform: uppercase;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
    color: #666;
    margin-left: auto;
}

.card2 img {
    border-radius: 10px 10px 0 0;
}

.footer-image {
    background-color: #337abc;
    background-image: url(../images/dark-section-bg-image.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 0.5fr 1fr 0.4fr 0.5fr;
    padding: 15px;
    gap: 20px;

}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    padding: 0 1%;
    justify-content: center;
    align-items: center;
}

.footer-bottom-flex a {
    color: #ffffff;
}


.footer img {
    width: 200px;
}

.footer p {
    font-size: 16px;
    color: #fff;
    line-height: 1.75;
    max-width: 580px;
    margin: 28px 0;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}

.footer .border li{
        border-left: 3px solid #fff;
    padding: 0 8px;
}

.footer ul {
    display: flex;
    flex-wrap: wrap;
}

.footer li {
    font-size: 16px;
    color: #fff;
    line-height: 140%;
    list-style: none;
    font-family: "Google Sans", sans-serif;
    text-align: left;
    animation: 0.6s ease 0.4s 1 normal both running fadeUp;
    margin: 7px 0;
    width: 50%;
}

.footer li a {
    font-size: 16px;
    color: #fff;
    font-family: "Google Sans", sans-serif;

}


.contact li {
    font-size: 16px;
    color: #fff;
    line-height: 140%;
    list-style: none;
    font-family: "Google Sans", sans-serif;
    text-align: left;
    animation: 0.6s ease 0.4s 1 normal both running fadeUp;
    margin: 7px 0;
    width: 100% !important;
}

.contact li a {
    font-size: 16px;
    color: #fff;
    font-family: "Google Sans", sans-serif;

}

.li-main {
    font-size: 16px;
    color: #fff;
    font-family: "Google Sans", sans-serif;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links-sub a {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
}

.social-links-sub a:hover {
    background-color: #fff;
    color: #1d4178;
}

.footer h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin: 7px 0;

    text-align: left;
}

.btn-right {
    text-align: center;
}

.btna {
    align-items: center;
    justify-content: center;
    display: flex;
}

.btna a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;

}

.arrow {
    background: linear-gradient(45deg, #ea4e15, #f7d649);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow:hover {
    background: linear-gradient(45deg, #f7d649, #ea4e15);
}


.phone::before {
    content: "\f095";
    /* Font Awesome phone icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #fff;
    /* change color */
}

.phone {
    list-style: none;
}

.phone a {
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    text-decoration: none;
}


.email::before {
    content: "\f0e0";
    /* envelope icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #fff;
    /* change color */
}

.email {
    list-style: none;
}

.email a {
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    text-decoration: none;
}

/*-----------------------------
Whatsapp up
-----------------------------*/

.whatsapp_float {
    text-decoration: none;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 71px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon {
    margin-top: 16px;
}

/*--------------------------------------------------------------
top_arrow
--------------------------------------------------------------*/
.top_arrow {
    width: 45px;
    height: 45px;
    position: fixed;
    display: flex;
    right: 1%;
    bottom: 2.5%;
    transition-duration: 1s;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    z-index: 9999;
    background-color: #eb621a;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.top_arrow:hover {
    background-color: #317cb6;
}



.animate-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.custom-cursor {
    width: 10px;
    height: 10px;
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s, height 0.2s;
    z-index: 9999;
}


.ms-events-section h6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(85 132 254 / 22%);
    border: 1px solid rgb(85 132 254 / 22%);
    color: #3d53a8;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin: 24px 0;
    width: fit-content;
    animation: fadeUp 0.6s ease both 0.1s;
}

.ms-events-section h6::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-gold);
    flex-shrink: 0;
}

.ms-events-section .top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ms-events-section h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
}

.ms-events-section h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.ms-events-section h2 b:hover {
    background-position: right center;
}

.ms-events-section p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}

.ms-events-section-bg {
    background-color: #f1f1f1;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 3% 2%;
}

.ms-events-section {
    box-sizing: border-box;
    width: 100%;
    font-family: "Google Sans", sans-serif;
    margin-top: -17px;
}

.ms-section-sub {
    font-size: 16px;
    color: #5a6e8a;
    margin: 0 0 36px;
}

.ms-events-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.ms-event-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #d0ddf0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 350px;
}

.ms-event-card:hover {
    border-color: #1a4a9b;
}

.ms-event-card-top {
    background: linear-gradient(to right, #2058a0, #3185c3);
    padding: 18px 20px 14px;
    position: relative;
}

.ms-event-badge {
    display: inline-block;
    background: #e87722;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: "Google Sans", sans-serif;
    margin-bottom: 10px;
}

.ms-event-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.3;
    font-family: "Google Sans", sans-serif;
}

.ms-event-card-body {
    padding: 16px 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ms-event-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #374a6a;
}

.ms-event-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    fill: #1a4a9b;
}

.ms-event-label {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #8a9ab5;
    display: block;
    margin-bottom: 1px;
    font-family: "Google Sans", sans-serif;
}

.ms-event-val {
    font-size: 16px;
    font-weight: 600;
    color: #1a2e5a;
    font-family: "Google Sans", sans-serif;
}

.ms-event-divider {
    height: 1px;
    background: #e8eef7;
    margin: 2px 0;
}

.ms-event-booth {
    background: #f0f5ff;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ms-event-booth-label {
    font-size: 16px;
    color: #5a6e8a;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: "Google Sans", sans-serif;
}

.ms-event-booth-val {
    font-size: 16px;
    font-weight: 700;
    color: #1a4a9b;
    font-family: "Google Sans", sans-serif;
}

.ms-card-footer {
    padding: 0 20px 18px;
    display: flex;
    gap: 8px;
    font-family: "Google Sans", sans-serif;
}

.ms-btn-primary {
    flex: 1;
    background: linear-gradient(to right, #2058a0, #3185c3);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 9px 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.3px;
    font-family: "Google Sans", sans-serif;
}

.ms-btn-primary {
    flex: 1;
    background: transparent;
    color: #1a3a7a;
    border: 1.5px solid #1a3a7a;
    border-radius: 6px;
    padding: 9px 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.ms-btn-primary:hover {
    background: #e87722;
}

.ms-btn-primary:hover {
    background: #f0f4fa;
}

.ms-events-cta-strip {
    margin-top: 32px;
    background: #1a3a7a;
    border-radius: 12px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ms-cta-text {
    color: #fff;
}

.ms-cta-text h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
}

.ms-cta-text p {
    margin: 0;
    font-size: 13px;
    color: #a0b8d8;
}

.ms-cta-btn {
    background: #e87722;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 11px 26px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
 
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}


.aboutbanner {
    margin: 1% 0 0;
}

.aboutbanner-wrap {
    position: relative !important;
    width: 100% !important;
    height: 700px;
    overflow: hidden !important;
    display: block !important;
    border-radius: 10px 10px 0 0;
}

.aboutbanner-wrap img {
    height: 100%;
    object-fit: cover;
}


.aboutbanner-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}


.aboutbanner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgb(4 67 127) 33%, rgb(26 60 143 / 24%) 81%, rgba(26, 60, 143, 0.15) 100%);
    z-index: 2;
    border-radius: 10px 10px 0 0;
}

.ms-about-section {
    padding: 80px 0;
}


.ms-about-grid {
    display: grid;
    grid-template-columns:50% 50%;
    gap: 40px;
    align-items: center;
}

.ms-about-content {
    padding-right: 10px;
}

.ms-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(85, 132, 254, 0.12);
    border: 1px solid rgba(85, 132, 254, 0.18);
    color: #2058a0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.ms-about-section h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
    margin: 0 0 18px;
    text-align: left;
}

.ms-about-section h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.ms-about-section h2 b:hover {
    background-position: right center;
}

.ms-about-section p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0;
    text-align: left;
    font-family: "Google Sans", sans-serif;
}

.ms-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.ms-proof-card {
    background: #fff;
    border: 1px solid rgba(32, 88, 160, 0.10);
    border-radius: 18px;
    padding: 20px 16px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 122px;
    display: flex;
    flex-direction: column;
}

.ms-proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(16, 24, 40, 0.10);
}

.ms-proof-card h3 {
    font-family: "Google Sans", sans-serif;
    font-size: 30px;
    line-height: 140%;
    color: #2058a0;
    margin: 0 0 10px;
    font-weight: 700;
}

.ms-proof-card p {
    margin: 0;
    font-size: 16px;
    line-height: 140%;
    color: #444;
    font-weight: 500;
}

.ms-about-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ms-video-frame {
    width: 100%;
    max-width: 480px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
    position: relative;
}

.ms-video-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
    z-index: 1;
    pointer-events: none;
}

.ms-vertical-video {
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
}

.trust-strip {
    padding: 0;
    border-top: 0.5px solid var(--color-border-tertiary);
    border-bottom: 0.5px solid var(--color-border-tertiary);
    background: var(--color-background-secondary);
    overflow: hidden;
    position: relative;
}

.strip-inner {
    display: flex;
    align-items: stretch;
    min-height: 72px;
    background: linear-gradient(to right, #2058a0, #3185c3);
}

.strip-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 28px 0 24px;
    border-right: 0.5px solid var(--color-border-tertiary);
    gap: 8px;
    position: relative;
    z-index: 2;
    background: var(--color-background-secondary);
}

.strip-label-line {
    width: 2px;
    height: 32px;
    background: #f6c442;
    border-radius: 2px;
    flex-shrink: 0;
}

.strip-label-text {
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    margin: 0;
    text-align: left;
    font-family: "Google Sans", sans-serif;
}



.marquee-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.fade-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, var(--color-background-secondary), transparent);
    z-index: 1;
    pointer-events: none;
}

.fade-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, var(--color-background-secondary), transparent);
    z-index: 1;
    pointer-events: none;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marquee 22s linear infinite;
 
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.strip-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    border-right: 0.5px solid var(--color-border-tertiary);
    height: 72px;
}

.item-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f6c442;
    flex-shrink: 0;
}

.item-text {
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    margin: 0;
    text-align: left;
    font-family: "Google Sans", sans-serif;
}

.ba-container {
    max-width: 700px;
    width: 100%;
    overflow: hidden;
}

.ba-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.ba-img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.after {
    position: absolute;
    top: 0;
    left: 0;
    clip-path: inset(0 50% 0 0);
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    cursor: ew-resize;
    z-index: 2;
}

.ba-slider-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
}

.ba-slider h6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(85 132 254 / 22%);
    border: 1px solid rgb(85 132 254 / 22%);
    color: #3d53a8;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin: 24px 0;
    width: fit-content;
    animation: fadeUp 0.6s ease both 0.1s;
}

.ba-slider h6::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3d53a8;
    flex-shrink: 0;
}

.ba-slider h5 {
    font-family: "Google Sans", sans-serif;
    font-size: 23px;
    font-weight: 400;
    color: #000000;
    line-height: 140%;

}


.ba-slider h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 38px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;

}

.ba-slider h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.ba-slider h2 b:hover {
    background-position: right center;
}

.ba-slider p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}

/* COUNTER SECTION */

.counter-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    background: linear-gradient(105deg, rgb(52 121 188) 0%, rgb(26 60 143 / 95%) 50%);
    border-radius: 10px;
}

/* background glow */

.counter-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: #00bfff30;
    border-radius: 50%;
    top: -100px;
    left: -100px;
    filter: blur(80px);
}

.counter-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #00ffd530;
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    filter: blur(80px);
}

.counter-container {

    margin: auto;
    position: relative;
    z-index: 2;
}

.counter-heading {
    text-align: center;
    margin-bottom: 70px;
}

.counter-heading h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
}

.counter-heading p {
    color: #b7c7d6;
    font-size: 17px;
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
}

.counter-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.counter-card {
    position: relative;
    padding: 45px 25px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    text-align: center;
    transition: 0.4s ease;
    overflow: hidden;
    width: 31%;
}

.counter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.counter-card:hover::before {
    transform: translateX(100%);
}

.counter-card:hover {
    transform: translateY(-12px);
    border-color: #ffffff;
    box-shadow: 0 15px 40px rgb(255 255 255 / 25%);
}

.counter-icon {
    width: 85px;
    height: 85px;
    margin: auto auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ea4e15, #f7d649);
    transition: 0.4s ease;
}

.counter-card:hover .counter-icon {
    transform: rotateY(180deg);
}

.counter-icon i {
    font-size: 34px;
    color: #fff;
}

.counter-number {
    font-family: "Google Sans", sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin: 7px 0;
    text-align: center;
    padding: 0 3%;
}

.counter-text {
    font-family: "Google Sans", sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin: 7px 0;
    text-align: center;
    padding: 0 3%;
}



.counter-label {
    font-size: 22px;
    color: #fff;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
}

/* responsive */



.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #2676BE;
    margin-bottom: 10px;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0D1F30;
    margin-bottom: 8px;
    line-height: 1.3;
}

.subtitle {
    font-size: 16px;
    color: #5A7085;
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 28px;
}

#map-wrap {
    position: relative;
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}

#map-svg {
    width: 100%;
    height: auto;
    display: block;
}

#tooltip {
    position: absolute;
    background: #ffffff;
    border: 1px solid #CBD5E0;
    border-radius: 8px;
    padding: 10px 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
 
    min-width: 160px;
    box-shadow: 0 4px 16px rgba(20, 50, 80, 0.12);
    z-index: 10;
}

#tt-name {
    font-size: 16px;
    font-weight: 600;
    color: #0D1F30;
    margin-bottom: 3px;
}

#tt-country {
    font-size: 12px;
    color: #5A7085;
    margin-bottom: 3px;
}

#tt-role {
    font-size: 12px;
    color: #2676BE;
    font-weight: 500;
}

.legend {
    display: flex;
    gap: 24px;
    margin-top: 14px;
    font-size: 12px;
    color: #5A7085;
    align-items: center;
}

.legend-item {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}

.stats-row {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #D4DDE8;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 26px;
    font-weight: 700;
    color: #0D1F30;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: #7A90A4;
    margin-top: 4px;
    letter-spacing: 0.5px;
}


.global-outlook h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
}

.global-outlook h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.global-outlook h2 b:hover {
    background-position: right center;
}

.global-outlook p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}


/* =========================
PROOF BAR CSS
========================= */

.proof-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.proof-flex img {
    width: 80px;
}


.proof-content {
    width: 90%;
}

.proof-bar {
    background: linear-gradient(to right, #2058a0, #3185c3);
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.proof-container {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.proof-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.proof-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.proof-item h2 {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.proof-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.seahorse-bullet ul {
    list-style: none;
    margin-left: 4%;
    padding: 0;
    flex-wrap: wrap;
}

.seahorse-bullet li {
    position: relative;
    padding: 0 2% 12px 28px;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    font-family: "Google Sans", sans-serif;
    text-align: left;
    animation: fadeUp 0.6s ease both 0.4s;
}

/* Custom Bullet */
.seahorse-bullet li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 30%, #7dd3fc 100%);
    box-shadow:
        0 0 6px rgba(125, 211, 252, 0.8),
        0 0 12px rgba(125, 211, 252, 0.4);
}


.bullet {
    margin-left: 8%;
    margin-top: 2%;
}

.bullet li {
    font-size: 16px;
    color: #fff;
    line-height: 140%;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: left;
    padding-right: 2%;
}


:root {
    --blue-dark: #1a3a6b;
    --blue-mid: #1e4d8c;
    --blue-light: #2562b4;
    --blue-card: #1e488a;
    --orange: #f07020;
    --orange-hover: #d9601a;
    --white: #ffffff;
    --off-white: #f4f7fb;
    --text-body: #ccd9ee;
    --text-muted: #8fabd4;
}

body {
    font-family: "Google Sans", sans-serif;
    background: var(--off-white);
    color: var(--blue-dark);
}

/* â”€â”€ SUPPORT & SERVICES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.support-section {
    background: linear-gradient(145deg, #3479bc 0%, #1e4d8c 50%, #3877ba 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    margin: 1%;
    border-radius: 10px;
}

.support-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(240, 112, 32, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* floating orbs */
.support-section::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    top: -80px;
    right: -80px;
    pointer-events: none;
}

.section-inner {

    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    font-family: "Google Sans", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.15;
}

.section-inner p b {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.section-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    padding-top: 1%;
}

.section-sub {
    font-size: 16px;
    color: var(--text-body);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 56px;
}

/* grid of service cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 18px;
}

.service-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.25s, transform 0.25s, border-color 0.25s;
    cursor: default;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(240, 112, 32, 0.45);
    transform: translateY(-3px);
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(240, 112, 32, 0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
}

.service-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
    padding-top: 9px;
}

.trust-section {
    background: var(--off-white);
    padding: 90px 40px;
}

.trust-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-label {
    color: var(--blue-light);
}

.trust-title {
    font-family: "Google Sans", sans-serif;
    font-size: clamp(26px, 3.5vw, 38px);
    color: var(--blue-dark);
    line-height: 1.2;
    margin-bottom: 10px;
}

.trust-sub {
    font-size: 16px;
    color: #4a6a9a;
    line-height: 1.65;
    margin-bottom: 36px;
}

.org-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.org-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-dark);
}

.org-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* right panel â€“ application tags */
.trust-right {
    background: #f6f8fa;
    border-radius: 20px;
    padding: 20px 36px;
    position: relative;
    overflow: hidden;
}

.trust-right::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    bottom: -60px;
    right: -60px;
    pointer-events: none;
}

.trust-right-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.trust-right-title {
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    color: #225ea7;
    margin-bottom: 1%;
}

.trust-right p {
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 140%;
    text-align: left;
    margin-top: 2%;
    padding: 0;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.app-tags li.card-overlay{
        list-style: none;
}

.top-bar {
    width: 50%;
}

.top-bar-content {
    margin: 0 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-content h3 {
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #225ea7;
    line-height: 140%;
    text-align: left;
    background: #edf4fb;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 52px;
    margin-bottom: 10px;
}

.real-content {
    background: #fff;
    backdrop-filter: blur(30px);
    padding: 30px 0;
    text-align: left;
    border-radius: 13px;
    margin: 1% 0;
}

.real-content h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #225ea7;
    line-height: 140%;
    text-align: left;
    margin: 0;
    padding: 0;

}

.real-content p {
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 140%;
    text-align: left;
    margin: 0;
    padding: 1% 0;
}

.instrument-figures {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.figure-chip {
    text-align: center;
    min-width: 96px;
}

.figure-chip b {
    display: block;
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #225ea7;
    line-height: 140%;
    text-align: center;
    margin: 0;
    padding: 0;
}

.figure-chip span {
    position: relative;
    font-size: 14px;
    color: rgb(0, 0, 0);
    line-height: 1.6;
    font-family: "Google Sans", sans-serif;
    text-align: left;
}

.seahorse-bullet ul {
    list-style: none;
    margin-left: 2%;
    padding: 0;
}



.app-tag {
font-weight: 500;
    transition: background 0.2s, border-color 0.2s;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 14px;
    color: #225ea7;
    width: fit-content;
    display: block;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-block {}

.stat-num {
    font-family: "Google Sans", sans-serif;
    font-size: 30px;
    color: var(--orange);
}

.stat-desc {
    font-size: 12px;
    color: var(--text-body);
    margin-top: 2px;
}


.cta-section {
    background: linear-gradient(145deg, #3479bc 0%, #1e4d8c 50%, #3877ba 100%);
    padding: 90px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 1%;
    border-radius: 10px;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-section p{
    text-align: left;
    margin-bottom: 1%;
}

/* decorative rings */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 300px;
    height: 300px;
}

.ring-2 {
    width: 550px;
    height: 550px;
    border-color: rgba(255, 255, 255, 0.03);
}

.ring-3 {
    width: 800px;
    height: 800px;
    border-color: rgba(255, 255, 255, 0.02);
}

.cta-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-label {
    color: var(--orange);
    margin-bottom: 16px;
}

.cta-title {
    font-family: "Google Sans", sans-serif;
    font-size: clamp(30px, 4.5vw, 48px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}

.cta-body {
    font-size: 15.5px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 44px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.22s;
}

.btn-primary2 {
    color: var(--white);
    box-shadow: 0 4px 24px rgba(240, 112, 32, 0.35);
    background: linear-gradient(45deg, #ea4e15, #f7d649);
}

.btn-primary2:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(240, 112, 32, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-arrow2 {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-arrow2 svg {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================
PROOF BAR CSS
========================= */

.proof-bar3 p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
}

.proof-bar3 h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
}

.proof-container3 {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.proof-item3 {
    background: #ea7116;
    border-radius: 18px;
padding: 26px 20px;
    text-align: center;
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.proof-item3:hover {
    transform: translateY(-6px);
}

.proof-item3 img {
    width: 70px;
    margin: 4%;
}

.proof-item3 h2 {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.proof-item3 p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}


.proof-bar2 {
    background: linear-gradient(to right, #2058a0, #3185c3);
    padding: 55px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.proof-bar2 h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 20px;
    text-align: center;
}

.proof-bar2 p {
    font-size: 16px;
    color: #fff;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
}



.proof-container2 {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.proof-item2 {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.proof-item2:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.proof-item2 img {
    width: 70px;
    margin: 4%;
}

.proof-item2 h2 {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.proof-item2 p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.real-world h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
}

.real-world h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.real-world h2 b:hover {
    background-position: right center;
}

.real-world p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
}


.track-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.track .slide {
    flex: 0 0 calc(100% / var(--per-page, 4));
    padding: 10px;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 16px 0;
}

.nbtn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(45deg, #ea4e15, #f7d649);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.nbtn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cfcfcf;
    cursor: pointer;
    padding: 0;
}

.dot.active {
    background: #111;
    transform: scale(1.2);
}

.connect-flex h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
    margin: 0 0 18px;
}

.connect-flex h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.connect-flex h2 b:hover {
    background-position: right center;
}

.connect-flex p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0;
    text-align: center;
    font-family: "Google Sans", sans-serif;
    width: 51%;
}


.ms-about-section h2 b:hover {
    background-position: right center;
}

.connect-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

:root {
    --white: #ffffff;
    --off: #f7f6f3;
    --light: #eceae4;
    --mid: #b0ada4;
    --ink: #1a1916;
    --blue: #1850a0;
    --blue-lt: #e8f0fc;
    --teal: #0a5c47;
    --teal-lt: #dff2ec;
    --purple: #3d3597;
    --purp-lt: #eeecfc;
    --coral: #8b2f12;
    --coral-lt: #fceee8;
    --green: #2e5a0e;
    --green-lt: #eaf3df;
    --amber: #7a4006;
    --amber-lt: #fdf0db;
    --pink: #7c2547;
    --pink-lt: #fbe8f0;
    --grey: #3a3835;
    --grey-lt: #f0eeeb;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

.img-padding{
        padding: 14px;
}

/* â”€â”€â”€ SECTION WRAPPER â”€â”€â”€ */
.ecosystem-section {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}

/* subtle grain overlay */
.ecosystem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    opacity: 0.4;
}

/* thin top rule */
.ecosystem-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light), transparent);
}

/* â”€â”€â”€ HEADER â”€â”€â”€ */
.eco-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
}

.eco-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 14px;
}

.eco-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.5px;
}

.eco-title em {
    font-style: italic;
    color: var(--blue);
}

/* â”€â”€â”€ MAP CONTAINER â”€â”€â”€ */
.eco-map-wrap {
    position: relative;
    width: 100%;
    max-width: 860px;
    z-index: 2;
}

.eco-map-wrap svg {
    width: 100%;
    height: auto;
    display: block;
}

/* â”€â”€â”€ NODE STYLES â”€â”€â”€ */
.eco-node {
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(.34, 1.56, .64, 1);
    transform-origin: center;
    transform-box: fill-box;
}

.eco-node:hover {
    transform: scale(1.10);
}

.eco-node:hover .node-ring {
    opacity: 1;
}

.eco-node:hover .node-label-text {
    font-weight: 600;
}

.node-ring {
    transition: opacity 0.25s;
    opacity: 0;
}

/* â”€â”€â”€ ANIMATED LINES â”€â”€â”€ */
@keyframes dashFlow {
    to {
        stroke-dashoffset: -40;
    }
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.12;
    }

    50% {
        opacity: 0.35;
    }
}

@keyframes centerPulse {

    0%,
    100% {
        r: 70;
        opacity: 0.08;
    }

    50% {
        r: 80;
        opacity: 0.18;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nodeIn {
    from {
        opacity: 0;
        transform: scale(0.6);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lineIn {
    from {
        opacity: 0;
        stroke-dasharray: 0 200;
    }

    to {
        opacity: 1;
        stroke-dasharray: 6 5;
    }
}

.conn-line {
    stroke-dasharray: 6 5;
    animation: dashFlow 3s linear infinite;
    opacity: 0.45;
    fill: none;
}

.conn-line:nth-child(1) {
    animation-duration: 3.0s;
    animation-delay: 0s;
}

.conn-line:nth-child(2) {
    animation-duration: 3.4s;
    animation-delay: -.5s;
}

.conn-line:nth-child(3) {
    animation-duration: 2.8s;
    animation-delay: -.9s;
}

.conn-line:nth-child(4) {
    animation-duration: 3.6s;
    animation-delay: -.3s;
}

.conn-line:nth-child(5) {
    animation-duration: 2.9s;
    animation-delay: -.7s;
}

.conn-line:nth-child(6) {
    animation-duration: 3.3s;
    animation-delay: -1.1s;
}

.conn-line:nth-child(7) {
    animation-duration: 3.1s;
    animation-delay: -.4s;
}

.conn-line:nth-child(8) {
    animation-duration: 2.7s;
    animation-delay: -.8s;
}

.glow-circle {
    animation: glow 4s ease-in-out infinite;
    pointer-events: none;
}

.center-pulse {
    animation: centerPulse 3.5s ease-in-out infinite;
    pointer-events: none;
}

/* Entrance animations */
.eco-header {
    animation: fadeUp 0.8s cubic-bezier(.16, 1, .3, 1) both;
}

.eco-node {
    animation: nodeIn 0.6s cubic-bezier(.34, 1.56, .64, 1) both;
}

.eco-node:nth-child(1) {
    animation-delay: 0.2s;
}

.eco-node:nth-child(2) {
    animation-delay: 0.3s;
}

.eco-node:nth-child(3) {
    animation-delay: 0.4s;
}

.eco-node:nth-child(4) {
    animation-delay: 0.5s;
}

.eco-node:nth-child(5) {
    animation-delay: 0.6s;
}

.eco-node:nth-child(6) {
    animation-delay: 0.7s;
}

.eco-node:nth-child(7) {
    animation-delay: 0.8s;
}

.eco-node:nth-child(8) {
    animation-delay: 0.9s;
}

.eco-node:nth-child(9) {
    animation-delay: 1.0s;
}

/* â”€â”€â”€ CAPTION â”€â”€â”€ */
.eco-caption {
    max-width: 620px;
    text-align: center;
    margin-top: 52px;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s cubic-bezier(.16, 1, .3, 1) 0.9s both;
}

.eco-caption p {
    font-size: 16px;
    line-height: 1.75;
    color: #5a5855;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.eco-caption p strong {
    color: var(--ink);
    font-weight: 500;
}

/* â”€â”€â”€ DIVIDER DOTS â”€â”€â”€ */
.eco-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 28px;
}

.eco-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--light);
    display: block;
}

.eco-dots span:nth-child(2) {
    background: var(--mid);
}


:root {
    --bg: #f6f2ec;
    --surface: #ffffff;
    --surface-2: #3479bc14;
    --text: #1f1f1f;
    --muted: #000;
    --line: #d8d1c7;
    --accent: #3479bc;
    --accent-dark: #000;
    --shadow: 0 18px 50px rgba(34, 28, 20, 0.08);
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top, rgba(138, 127, 115, .08), transparent 30%),
        linear-gradient(180deg, #f8f5f0 0%, #f4efe8 100%);
    color: var(--text);
}

.timeline-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-header {
    text-align: center;
    margin-bottom: 56px;
}

.timeline-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-weight: 700;
    margin-bottom: 18px;
}

.timeline-kicker::before,
.timeline-kicker::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--line);
}

.timeline-header h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
    margin: 0 0 18px;
}

.timeline-header h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.timeline-header h2 b:hover {
    background-position: right center;
}



.timeline-header p {
    max-width: 820px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.timeline-shell {
    position: relative;
    padding-top: 22px;
}

.timeline-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.timeline-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    gap: 26px;
    position: relative;
}

.timeline-item {
    position: relative;
    padding-top: 18px;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--surface);
    border: 4px solid var(--accent);
    box-shadow: 0 0 0 8px rgba(138, 127, 115, .12);
    position: relative;
    z-index: 2;
    margin: 0 0 22px 16px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(138, 127, 115, .16);
}

.timeline-year {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--accent-dark);
    margin-bottom: 14px;
    padding-left: 16px;
}

.timeline-card {
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    border: 1px solid #3479bc14;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
    height: 100%;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(34, 28, 20, 0.12);
}

.timeline-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ddd;
}

.timeline-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .08) 100%);
    z-index: 1;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.02) brightness(.92);
    transform: scale(1.02);
    transition: transform .8s ease, filter .8s ease;
}

.timeline-card:hover .timeline-image img {
    transform: scale(1.08);
    filter: grayscale(70%) contrast(1.05) brightness(.96);
}

.timeline-content {
    padding: 24px 24px 26px;
}

.timeline-content h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -.03em;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0;
    text-align: left;
    font-family: "Google Sans", sans-serif;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.timeline-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* subtle stagger */
.timeline-item:nth-child(2) {
    transition-delay: .08s
}

.timeline-item:nth-child(3) {
    transition-delay: .16s
}

.timeline-item:nth-child(4) {
    transition-delay: .24s
}

.client-sub {
    padding: 2%;
    border: 1px solid #e1dede;
    margin: 1%;
    border-radius: 7px;
}

.client-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.icon-box-clients {
    background: #fff;
    border-radius: 12px;
    padding: 20px 0;
}


.icon-box-clients .icon {
    width: 70px;
    background: linear-gradient(45deg, #3185c3, #2058a0);
    border-radius: 50%;
    padding: 15px;
    height: 70px;
}

.icon-box-clients .icon img {
    filter: brightness(0) invert(1);
}

.icon-box-clients h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 23px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin: 7px 0;

}

.icon-box-clients p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}

.bg {
    background:
        linear-gradient(105deg,
            rgb(4 67 127) 0%,
            rgb(26 60 143 / 24%) 50%,
            rgba(26, 60, 143, 0.15) 100%),
        url("../images/bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 100px 0;
    text-align: center;
    margin-bottom: 1%;
    border-radius: 13px;
    inset: 0;
    z-index: 2;
}

.bg h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
    animation: fadeUp 0.6s ease both 0.4s;
}

.bg p {
    font-size: 16px;
    color: #fff;
    line-height: 140%;
    margin: 0;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
}



.product h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
    margin: 0 0 18px;
}

.product h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.product h2 b:hover {
    background-position: right center;
}


.product p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0;
    text-align: left;
    font-family: "Google Sans", sans-serif;
}

.points ul {
    display: flex;
    list-style: none;
    gap: 37px;
    margin: 1%;
}

.points ul li {
    padding: 10px 12px;
    border-radius: 27px;
    background: linear-gradient(45deg, #ea4e15, #f7d649);
    color: #fff;
    font-size: 16px;
    font-family: "Google Sans", sans-serif;
    font-weight: 600;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    line-height: 140%;
}

/* MAIN WRAPPER */
.product-section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* LEFT SIDE */
.product-left {
    flex: 0 0 31%;
    position: sticky;
    top: 24px;
    align-self: flex-start;
}

.product-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-left img:hover {
    transform: scale(1.01);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

/* RIGHT SIDE */
.product-right {
    flex: 0 0 68%;

    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: #b7c5d6 transparent;
}

.product-right::-webkit-scrollbar {
    width: 6px;
}

.product-right::-webkit-scrollbar-track {
    background: transparent;
}

.product-right::-webkit-scrollbar-thumb {
    background: #b7c5d6;
    border-radius: 999px;
}

/* ACCORDION CARD */
.accordion-item {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    width: 100%;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.accordion-item:hover {
    border-color: #cfd8e3;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.accordion-item.active {
    border-color: #bcd0ea;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

/* HEADER */
.accordion-header {
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #10233d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.25s ease, color 0.25s ease;
}

.accordion-item.active .accordion-header {
    background: linear-gradient(180deg, #eef5ff 0%, #e8f1ff 100%);
    color: #0b3a78;
}

.accordion-header:hover {
    background: linear-gradient(180deg, #f1f7ff 0%, #eaf3ff 100%);
}

/* ICON */
.accordion-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf3fb;
    color: #0b3a78;
    font-size: 22px;
    font-weight: 700;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: #0b3a78;
    color: #fff;
}

/* CONTENT */
.accordion-content {
    display: none;
    padding: 0 20px 20px;
    animation: fadeSlide 0.3s ease;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content p {
    margin: 18px 0 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #455468;
    font-family: "Google Sans", sans-serif;
    text-align: left;
}

/* BUTTON */
.btn-blue {
    margin-top: 8px;
}

.btn-arrow .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.text-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* OPEN STATE ANIMATION */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.abouttext {
    position: absolute;
    top: 14%;
    z-index: 9;
    margin-left: 5%;
width: 66%;
    height: 57vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.abouttext h1 {
    font-family: "Google Sans", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: left;

}



.abouttext h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: left;

}

.abouttext h6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff2e;
    border: 1px solid #ffffff2e;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin: 24px 0;
    width: fit-content;
    animation: fadeUp 0.6s ease both 0.1s;
}

.abouttext h6:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-gold);
    flex-shrink: 0;
}

.abouttext p {
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    margin: 0;
    text-align: left;
    font-family: "Google Sans", sans-serif;
}

.support h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;

}

.support h3 {
    font-family: "Google Sans", sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
}

.support h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.support h2 b:hover {
    background-position: right center;
}

.support p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
}


.service-coverage-section {
    padding: 80px 20px;
    background: #f7f9fc;
    font-family: Arial, sans-serif;
}

.service-coverage-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #e8f1ff;
    color: #0d5bd8;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 38px;
    margin: 0 0 12px;
    color: #122033;
    font-weight: 800;
}

.section-header p {
    max-width: 720px;
    margin: 0 auto;
    color: #5f6c7b;
    font-size: 16px;
    line-height: 1.7;
}

.service-coverage-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
}

.map-card,
.content-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
}

.map-title h3,
.info-box h4,
.oem-box h4 {
    font-family: "Google Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    line-height: 140%;
    margin: 7px 0;
    text-align: left;
}

.map-title p,
.oem-box p {
    margin: 0;
    color: #5f6c7b;
    line-height: 1.7;
    font-size: 16px;
    text-align: left !important;
}

.map-wrapper {
    position: relative;
    margin-top: 22px;
    min-height: 430px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f3f7ff 0%, #edf3ff 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5ecf8;
}

.india-map {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 8px 20px rgba(13, 91, 216, 0.12));
}

.map-pin {
    position: absolute;
    background: #0d5bd8;
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(13, 91, 216, 0.22);
 
}

.pin1 {
    top: 18%;
    left: 58%;
}

.pin2 {
    top: 42%;
    left: 18%;
}

.pin3 {
    top: 69%;
    left: 58%;
}

.pin4 {
    top: 48%;
    right: 14%;
}

.pin5 {
    top: 58%;
    left: 38%;
}

.info-box {
    background: #f8fbff;
    border: 1px solid #e7eef9;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 18px;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-tags span {
    display: inline-block;
    padding: 9px 14px;
    background: #fff;
    border: 1px solid #dce7f6;
    border-radius: 999px;
    color: #26374d;
    font-size: 16px;
    font-weight: 600;
    font-family: "Google Sans", sans-serif;
}

.timeline-list2 {
    display: grid;
    gap: 12px;
}

.timeline-item2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #dce7f6;
    border-radius: 14px;
    padding: 14px 16px;
    gap: 12px;
    font-family: "Google Sans", sans-serif;
}

.timeline-item2 strong {
    color: #122033;
    font-size: 16px;
}

.timeline-item2 span {
    color: #266aae;
    font-weight: 700;
    font-size: 16px;
    font-family: "Google Sans", sans-serif;
}

.service-coverage-section h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;

}

.service-coverage-section h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.service-coverage-section h2 b:hover {
    background-position: right center;
}

.service-coverage-section p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
}


.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.support-item {
    background: #f8fbff;
    border: 1px solid #e7eef9;
    border-radius: 20px;
    padding: 20px;
}

.support-item .icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #e8f1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    padding: 2%;
}

.support-item h5 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #122033;
}

.support-item p {
    margin: 0;
    color: #5f6c7b;
    line-height: 1.6;
    font-size: 16px;
    text-align: left;
}

.oem-box {
    border-radius: 20px;
    padding: 22px;
    color: #fff;
    background: linear-gradient(to right, #2058a0, #3185c3);
}

.oem-box h4 {
    color: #fff;
}

.oem-box p {
    color: rgba(255, 255, 255, 0.92);
}

.partner h6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(85 132 254 / 22%);
    border: 1px solid rgb(85 132 254 / 22%);
    color: #3d53a8;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin: 24px 0;
    width: fit-content;
    animation: fadeUp 0.6s ease both 0.1s;
}

.partner h6::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-gold);
    flex-shrink: 0;
}

.partner .top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.partner h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
}

.partner h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.partner h2 b:hover {
    background-position: right center;
}

.partner p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 10px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}


.partner-sub {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #d0ddf0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.partner-card-header {
    background: linear-gradient(to right, #2058a0, #3185c3);
    padding: 18px 20px 14px;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.partner-card-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.3;
    font-family: "Google Sans", sans-serif;
    text-align: left;
}

.partner-card-header p {
    font-size: 16px;
    color: #fff;
    line-height: 140%;
    margin-bottom: 0;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: left;
}

.partner-card-body {
    font-size: 16px;
    color: #374a6a;
    padding: 18px 20px 14px;

}

.partner-bullet li {
    list-style: none;
    background: #ebeef5;
    padding: 7px;
    width: fit-content;
    border-radius: 8px;
    margin: 2% 0;
}

.partner-bullet h3 {
    font-size: 19px;
    color: #374a6a;
    line-height: 140%;
    margin-bottom: 10px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}

.partner-bullet a {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}


.partner-flex {
    display: flex;
    flex-wrap: wrap;
}

.partner-flex2 {
    display: flex;
    flex-wrap: wrap;
}

.partner-logo {
    background: #fff;
    padding: 11px;
    border-radius: 10px;
    margin: 1%;
    min-height: 14vh;
}

.partner-logo img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 13vh;
    object-fit: contain;
}


.consumables h6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(85 132 254 / 22%);
    border: 1px solid rgb(85 132 254 / 22%);
    color: #3d53a8;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin: 24px 0;
    width: fit-content;
    animation: fadeUp 0.6s ease both 0.1s;
}

.consumables h6::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-gold);
    flex-shrink: 0;
}


.consumables h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
}

.consumables h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.consumables h2 b:hover {
    background-position: right center;
}

.consumables p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
}

.consumables-sub {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #d0ddf0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.consumables-sub h2 {
    background: linear-gradient(to right, #2058a0, #3185c3);
    padding: 18px 20px 14px;
    position: relative;
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-size: 28px;
    font-family: 'Google Sans';
}

.bullets ul {
    display: flex;
    gap: 27px;
    list-style: none;
    padding-bottom: 2%;
    justify-content: center;
}


.brands-partners-section .container {
    width: 98%;
    max-width: 1920px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 35px;
}

.section-heading .label {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0b5fa5;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 20px;
    align-items: center;
}

.brand-item {
    background: #f9f9f9;
    border: 1px solid #ececec;
    border-radius: 14px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.brand-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-color: #d8d8d8;
    background: #fff;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.seahorse-flex {
    display: flex;
    align-items: center;
    margin: 1% 0;
}

:root {
    --bg: #f5f5f5;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --accent: #2563eb;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

.page-header {
    padding: 56px 20px 24px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.03em;
}

.page-header p {
    margin: 0 auto;
    max-width: 860px;
    color: var(--muted);
    font-size: 16px;
}

.section-wrap {
    background: var(--bg);
    padding: 18px 18px 0;
}

.kit-section {
    max-width: 1920px;
    margin: 0 auto 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.kit-main {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    align-items: stretch;
    background: #fff;
}

.kit-image {
    min-height: 320px;
    background: #fff;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.kit-image .placeholder {
    width: 100%;
    height: 100%;
    min-height: 270px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #64748b;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
}

.placeholder img {
    border-radius: 16px;
}

.kit-content {
    padding: 30px 28px;
    background: #fff;
    font-family: "Google Sans", sans-serif;
}

.kit-content h2 {
    margin: 0 0 10px;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.2;
    font-family: "Google Sans", sans-serif;
}

.kit-content h6 {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    max-width: 760px;
    font-family: "Google Sans", sans-serif;
}

.intro {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    max-width: 760px;
    font-family: "Google Sans", sans-serif;
}

.features-block {
    padding: 20px 24px 26px;
    border-top: 1px solid var(--border);
    background: #f9fafb;
    font-family: "Google Sans", sans-serif;

}


.features-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    font-family: "Google Sans", sans-serif;
}

.features-head h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.01em;
    font-family: "Google Sans", sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    font-family: "Google Sans", sans-serif;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 14px;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
    min-height: 72px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #334155;
    font-weight: 600;
    font-family: "Google Sans", sans-serif;
}



.meta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    font-family: "Google Sans", sans-serif;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 16px;
    font-weight: 700;
    font-family: "Google Sans", sans-serif;
}

.block-bg {
    background: linear-gradient(to right, #2058a0, #3185c3);
    padding: 55px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.block h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin-bottom: 20px;

}

.block h2 b {
    font-style: italic;
    font-weight: 500;
    font-family: "Google Sans", sans-serif;
    background: linear-gradient(to right, #f7d649, #ea4e15, #f7d649);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.block h2 b:hover {
    background-position: right center;
}

.block p {
    font-size: 16px;
    color: #fff;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
}

.block ul {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.block ul li {
    background: linear-gradient(45deg, #ea4e15, #f7d649);
    list-style: none;
    padding: 12px;
    border-radius: 34px;
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    margin: 0;
    font-family: "Google Sans", sans-serif;
    width: 31%;
    text-align: center;
}

.microplates-bullet ul li {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: justify;
    list-style: none;
}

.integration {
    padding: 10px;
    border-radius: 10px;
}

.integration h3 {
    color: #6598d3;
    text-transform: uppercase;
    font-family: "Google Sans", sans-serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 20px;
}

.integration h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: left;
}

.integration p {
    font-size: 16px;
    color: #000;
    line-height: 164%;
    font-family: "Google Sans", sans-serif;
    text-align: left;
}

.integration .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ea4e15, #f7d649);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.integration .btn:hover {
    background: linear-gradient(45deg, #f7d649, #ea4e15);
}

.integration .btn a {
    color: #fff;
}

.contact-card .info a {
    color: #ffffff;
    text-decoration: none;
    transition: .3s;
}

.contact-card .info a:hover {
    color: #F7941D;
}

.contact-card .info p {
    line-height: 1.8;
    margin: 0;
    opacity: .9;
}

.contact-card h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.contact-card>p {
    margin-bottom: 35px;
    line-height: 1.8;
    opacity: .9;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* HERO */

.hero {
    height: 520px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(rgba(9, 58, 109, .82), rgba(9, 58, 109, .82)),
        url("banner.jpg") center/cover;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 160px;
    background: #f7f9fc;
    border-radius: 100% 100% 0 0;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero span {
    color: #F7941D;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 64px;
    margin: 18px 0;
    font-weight: 700;
}

.hero p {
    max-width: 650px;
    line-height: 1.8;
    color: #eef5ff;
    font-size: 18px;
}

.breadcrumb {
    margin-top: 25px;
    color: #fff;
}

/* CONTACT WRAPPER */

.contact-wrapper {
    position: relative;
    z-index: 20;
}

.contact-grid {
display: grid;
    grid-template-columns: 50% 50%;
    gap: 40px;
    margin-top: 2%;
}

/* LEFT */

.contact-card {
    background: #0c4a8a;
    border-radius: 25px;
    color: #fff;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.contact-card h2 {
    margin-bottom: 12px;
    font-size: 32px;
}

.contact-card p {
    opacity: .9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.info {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.icon2 {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff7a1a, #f7a21c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.info p {
    margin: 0;
    opacity: .85;
    font-size: 15px;
}

/* RIGHT */

.form-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;

}

.form-grid .full {

    grid-column: 1/-1;

}

.form-grid label {

    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0C4A8A;

}

.form-grid label span {

    color: #F7941D;

}

.form-grid input,
.form-grid select,
.form-grid textarea {

    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d7dee8;
    border-radius: 12px;
    font-size: 15px;
    transition: .3s;
    background: #fff;

}

.form-grid textarea {

    resize: none;
    height: 170px;

}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {

    outline: none;
    border-color: #0C4A8A;
    box-shadow: 0 0 0 4px rgba(12, 74, 138, .08);

}

button {

border: none;
    cursor: pointer;
    padding: 18px 40px;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff7a1a, #f7a21c);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
    margin-top: 3%;
}

button:hover {

    transform: translateY(-3px);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #eef2f5;
    color: #1d2b36;
}

.container {
    width: 1320px;
    max-width: 95%;
    margin: auto;
}

.upcoming-events {
    padding: 60px 0;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.sub-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2b6c93;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #ffb347;
    border-radius: 50%;
}

.heading h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
    margin: 0 0 18px;
}

.heading p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0;
    text-align: left;
    font-family: "Google Sans", sans-serif;
}

.filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.filters button {
    padding: 11px 22px;
    border: 1px solid #d5dde5;
    background: #fff;
    color: #51616c;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.filters button.active {
    background: #225da4;
    color: #fff;
    border-color: #225da4;
}

.filters button:hover {
    background: #225da4;
    color: #fff;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    border: 1px solid #edf1f4;
    transition: .3s;
}

.event-card:hover {
    transform: translateY(-6px);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tag {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.tag.blue {
    background: #e8f4fb;
    color: #2d6f95;
}

.tag.light {
    background: #edf6fd;
    color: #6f9dbb;
}

.sample {
    background: #fde9bd;
    color: #a67718;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
}

.event-card h3 {
    font-family: "Google Sans", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin: 7px 0;
    text-align: left;
}

.info-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed #dde5eb;
    padding: 16px 0;
}

.info-row span {
    display: block;
    color: #97a4af;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.info-row strong {
    font-size: 15px;
    color: #253844;
}

.info-row2 span {
    display: block;
    color: #97a4af;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.info-row2 strong {
    font-size: 15px;
    color: #253844;
}



.desc {
    margin: 18px 0 24px;
    line-height: 1.8;
    color: #667784;
    font-size: 15px;
}


.desc p{
    margin: 18px 0 24px;
    line-height: 1.8;
    color: #667784;
    font-size: 15px;
}

.buttons {
    display: flex;
    gap: 10px;
}

.buttons a {
    text-decoration: none;
    border: 1px solid #d5dee6;
    padding: 10px 18px;
    border-radius: 10px;
    color: #2c6588;
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
}

.buttons a:hover {
    background: #225da4;
    color: #fff;
    border-color: #225da4;
}


.event-gallery-box {
    aspect-ratio: 1/1.25;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #dbe5ec;
    transition: .35s;
    cursor: pointer;
    background: #fff;
}

.event-gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.event-gallery-box:hover img {
    transform: scale(1.08);
}

.event-gallery-box:hover {
    border-color: #2b6f95;
}


.event-gallery-section {
    background: #edf3f7;
    padding: 70px 0;
}


.event-gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1/1.25;
    cursor: pointer;
}

.event-gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.event-gallery-box:hover img {
    transform: scale(1.08);
}

/* Full Overlay */
.event-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .55) 0%,
            rgba(0, 0, 0, .10) 35%,
            rgba(0, 0, 0, .10) 60%,
            rgba(0, 0, 0, .75) 100%);
}

/* Top Content */

.event-gallery-top {
    bottom: 18px;
    position: absolute;
    width: 100%;
    padding: 0px 25px 0px 0px;
}

.event-gallery-top h3 {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-gallery-top h3 a {
    color: #fff;
}

.event-gallery-box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.event-gallery-box img {
    width: 100%;
    display: block;
}

.event-gallery-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, .9), rgba(0, 0, 0, .15), transparent);
    color: #fff;
}

.event-gallery-top h3 {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    color: #fff;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-gallery-top h3 a {
    color: #fff;
    text-decoration: none;
}

/* ================= Lightbox ================= */

.event-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 40px;
}

.event-lightbox.active {
    display: flex;
}

.event-lightbox-content {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    position: relative;
}

.event-lightbox img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
}

.event-lightbox-caption {
    margin-top: 20px;
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
}

.event-lightbox-caption a {
    color: #fff;
    text-decoration: underline;
}

.event-close {
    position: absolute;
    top: -45px;
    right: 0;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.event-prev,
.event-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: .3s;
}

.event-prev:hover,
.event-next:hover {
    background: #fff;
    color: #000;
}

.event-prev {
    left: -80px;
}

.event-next {
    right: -80px;
}



.gclose {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;

    width: 48px !important;
    height: 48px !important;
    line-height: 48px !important;

    background: #f5a623 !important;
    color: #fff !important;

    border-radius: 50%;
    font-size: 34px !important;
    font-weight: 300;
    text-align: center;
    opacity: 1 !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.gclose:hover {
    background: #e09000 !important;
    transform: scale(1.05);
}

/* Bottom Content */


.event-gallery-container {
    width: 1800px;
    max-width: 95%;
    margin: auto;
}

.event-gallery-header {
    margin-bottom: 35px;
}

.event-gallery-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2d6f95;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.event-gallery-dot {
    width: 6px;
    height: 6px;
    background: #f3a526;
    border-radius: 50%;
}
 
.event-gallery-title h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
    margin: 0 0 18px;
}

.event-gallery-title p{
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0;
    text-align: left;
    font-family: "Google Sans", sans-serif;
}


.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.event-gallery-box {
    aspect-ratio: 1/1.25;
    border-radius: 16px;
    overflow: hidden;
    border: 2px dashed #cddce5;
    background: repeating-linear-gradient(-45deg,
            #f8fcfe 0,
            #f8fcfe 10px,
            #eef5f8 10px,
            #eef5f8 20px);
    transition: 0.35s;
    cursor: pointer;
}

.event-gallery-box:hover {
    transform: translateY(-5px);
    border-color: #2b6f95;
}

.event-gallery-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #8ba0ac;
}

.event-gallery-placeholder i {
    font-size: 24px;
    margin-bottom: 12px;
}

.event-gallery-placeholder span {
    font-size: 14px;
    font-weight: 600;
}

.event-gallery-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

.glightbox-clean .gslide-title {
    font-size: 1em;
    font-weight: 400;
    font-family: arial;
    color: #000;
    margin-bottom: 0 !important;
    line-height: 1.4em;
}

.event-gallery-box:hover img {
    transform: scale(1.05);
}

==

.form-box {
    background: #fff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.form-box h2 {
    color: #0c4a8a;
    margin-bottom: 10px;
    font-size: 38px;
}

.form-box>p {
    color: #666;
    margin-bottom: 35px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.full {
    grid-column: 1/-1;
}

input,
textarea {

    width: 100%;
    border: 1px solid #d9e2ef;
    border-radius: 14px;
    padding: 18px 20px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

textarea {
    height: 128px;
    resize: none;
}

input:focus,
textarea:focus {
    border-color: #0c4a8a;
    box-shadow: 0 0 0 5px rgba(12, 74, 138, .10);
}

button {
    border: none;
    cursor: pointer;
    padding: 18px 40px;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff7a1a, #f7a21c);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(247, 148, 29, .35);
}


/*==========================*/

.section-heading {

    text-align: center;
    margin-bottom: 60px;

}

.section-heading span {

    color: #F7941D;
    font-weight: 600;
    letter-spacing: 2px;

}

.section-heading h2 {

    font-size: 42px;
    margin: 15px 0;
    color: #0C4A8A;

}

.section-heading p {

    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;

}

.office-section {

    padding-top: 30px;

}

.office-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.office-card {

    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    transition: .35s;

}

.office-card:hover {

    transform: translateY(-10px);

}

.office-icon {

    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff7a1a, #f7a21c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 25px;

}

.office-card h3 {

    margin-bottom: 15px;
    color: #0C4A8A;

}

.office-card p {

    line-height: 1.8;
    color: #666;

}

.office-card a {

    display: inline-block;
    margin-top: 20px;
    color: #0C4A8A;
    font-weight: 600;

}

/* CTA */

.cta {

    padding: 100px 0;

}

.cta-box {

    background: linear-gradient(135deg, #0C4A8A, #195FA3);
    border-radius: 30px;
    padding: 80px;
    text-align: center;
    color: #fff;

}

.cta-box span {

    color: #F7941D;
    letter-spacing: 2px;
    font-weight: 600;

}

.cta-box h2 {

    font-size: 46px;
    margin: 20px 0;

}

.cta-box p {

    max-width: 700px;
    margin: auto;
    line-height: 1.8;

}

.cta-btn {

    display: inline-block;
    margin-top: 35px;
    background: linear-gradient(90deg, #ff7a1a, #f7a21c);
    padding: 18px 40px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;

}

/* MAP */

.map-box {

    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);

}

.map-box iframe {

    width: 100%;
    height: 550px;
    border: none;

}

/* FAQ */

.faq {

    padding: 100px 0;

}

.faq-item {

    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    margin-bottom: 20px;
    overflow: hidden;

}

.faq-btn {

    width: 100%;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;

}

.faq-content {

    display: none;
    padding: 0 28px 28px;
    line-height: 1.8;
    color: #666;

}

.panel-section {
    width: 1600px;
    margin: 70px auto;
}

#mouse {
    display: none;
}

.panel-section h6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(85, 132, 254, 0.12);
    border: 1px solid rgba(85, 132, 254, 0.18);
    color: #2058a0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;

}

.panel-section h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
    margin: 0 0 18px;
}

.panel-section p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin: 0;
    text-align: left;
    font-family: "Google Sans", sans-serif;
}

/*==========================
Tabs
==========================*/

.panel-tabs {
    display: inline-flex;
    background: #eef3f5;
    border: 1px solid #d7e0e4;
    border-radius: 60px;
    padding: 7px;
    margin-bottom: 45px;
}

.panel-tabs button {
    border: none;
    background: transparent;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    color: #65757c;
    cursor: pointer;
    transition: .35s;
}

.panel-tabs button.active {
    background: #1e447b;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.panel-tabs button:hover {
    color: #1e447b;

}

/*==========================
Grid
==========================*/

.panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/*==========================
Card
==========================*/

.panel-card {

    background: #f6f8f9;
    border: 1px solid #dde5e8;
    border-radius: 28px;

    padding: 30px;

    transition: .35s;
}

.panel-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.panel-card h2 {

    font-size: 24px;
    font-weight: 800;

    margin-bottom: 25px;

    color: #23323b;

}

/*==========================
Items
==========================*/

.panel-item {

    display: grid;
    grid-template-columns: 1fr auto auto;

    align-items: center;

    gap: 20px;

    padding: 20px 0;

}

.panel-item:not(:last-child) {

    border-bottom: 1px solid #dce4e8;

}

/*==========================
Left
==========================*/

.left h3 {

    font-size: 20px;

    font-weight: 700;

    color: #22333d;

}

.left p {

    margin-top: 5px;

    color: #7c8a91;

    font-size: 15px;

    font-weight: 500;

}

/*==========================
Dots
==========================*/

.dots {

    display: flex;

    gap: 8px;

}

.dots span {

    width: 12px;

    height: 12px;

    border-radius: 50%;

}

.dark_blue {
    background: #04437f;
}

.light_blue {
    background: #67cfc6;
}

.yellow {
    background: #f4b400;
}

.orange {
    background: #ef6b49;
}

/*==========================
Button
==========================*/

.quote-btn {

    width: 92px;
    height: 42px;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 2px solid #04437f;

    border-radius: 40px;

    text-decoration: none;

    color: #04437f;

    font-weight: 700;

    transition: .3s;

}

.quote-btn:hover {

    background: #04437f;

    color: #fff;

}

.consumables-kits h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
}

.consumables-kits p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
}

.consumables-kits-sub-blue {
    background: #2c8dbc;
    padding: 1%;
}

.consumables-kits-sub-red {
    background: #f44336;
    padding: 1%;
}

.consumables-kits-sub-red {
    background: #f44336;
    padding: 1%;
}

.consumables-kits-sub-green {
    background: #8bc34a;
    padding: 1%;
}

.consumables-kits-sub h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #f0f5ff;
    line-height: 140%;
    margin: 7px 0;
    text-align: center;
}

.consumables-kits-sub p {
    font-size: 16px;
    color: #fff;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
    margin-bottom: 0;
}


.product-section {
    padding: 80px 0;
}

.alt-bg {
    background: #f7f9fc;
}

.dark-bg {
    background: #ffffff;
}

.container {
    width: 1800px;
    margin: 0 auto;
}

.section-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.section-grid.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.section-content h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #2563eb;
    background: #eaf2ff;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.section-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.visual-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
    background: #fff;
}

.visual-card img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.highlight-box,
.note-box {
    border-radius: 16px;
    padding: 18px 20px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
}

.highlight-box {
    background: #fff4e5;
    border-left: 5px solid #f59e0b;
    color: #7c2d12;
}

.note-box {
    background: #fee2e2;
    border-left: 5px solid #ef4444;
    color: #7f1d1d;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.feature-item {
    background: #f3f4f6;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 16px;
    color: #1f2937;
    font-weight: 600;
}

.primary-cta {
    display: inline-block;
    margin-top: 26px;
    padding: 14px 24px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.3s ease;
}

.primary-cta:hover {
    background: #2563eb;
}


.sections-wrapper .top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}


.faq-section {
    background: white;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 82, 163, 0.1);
    border-top: 4px solid #0052a3;
    margin: 0;
    max-height: 800px;
    overflow-y: auto;
    overflow-x: hidden;
}


.cta-section {
    background: white;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 82, 163, 0.1);
    border-top: 4px solid #0052a3;
    margin: 0;
}

.faq-section h2,
.cta-section h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 24px;
    line-height: 140%;
    margin: 0;
    padding: 0;
    text-align: left;
}

.faq-item {
    margin-bottom: 16px;
    border-bottom: 1px solid #f0f2f5;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    padding: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #0052a3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #0066cc;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0052a3;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0% 0;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 4px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.cta-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
        text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-top: 1%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

label {
    font-size: 16px;
    font-weight: 600;
    color: #0052a3;
    margin-bottom: 6px;
    text-align: left;
    font-family: "Google Sans", sans-serif;
}

input,
textarea,
select {
    padding: 10px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    transition: border-color 0.2s ease;
    width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0052a3;
    box-shadow: 0 0 0 3px rgba(0, 82, 163, 0.1);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.btn {
    padding: 12px 24px;
        background: linear-gradient(45deg, #ea4e15, #f7d649);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 8px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 163, 0.3);
}




.table-range h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
}

.table-range p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 0;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
}

.table h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 1%;
}

.compatibility-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin-bottom: 20px;
}

.compatibility-table::-webkit-scrollbar {
    height: 8px;
}

.compatibility-table::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.compatibility-table::-webkit-scrollbar-thumb {
    background: #2058a0;
    border-radius: 10px;
}

.compatibility-table::-webkit-scrollbar-thumb:hover {
    background: #00346a;
}

.table-wrapper {
    min-width: 900px;
    /* Adjust according to your table */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.table-wrapper {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    border-bottom: 2px solid #e0e2e6;
    background: linear-gradient(to right, #2058a0, #3185c3);
}

th {
    font-family: "Google Sans", sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 140%;
    text-align: left;
    color: #fff;
    padding: 17px 19px;
    background: linear-gradient(145deg, #00346a, #1a72b8);
}

th:first-child {
    width: 25%;
}

th:not(:first-child) {
    text-align: center;
    width: 25%;
}

td img {
    width: 150px;
}

td {
    padding: 16px 20px;
    border: 1px solid #f0f2f5;
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    font-family: "Google Sans", sans-serif;
    font-weight: 400;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

tbody tr:hover {
    background-color: #f5f7fa;
}

td:not(:first-child) {
    text-align: center;
    color: #555;
}

.spec-label {
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    color: #1a1a1a;
    text-align: left;
}

.highlight {
    background-color: #fffbf0;
    font-weight: 500;
}



.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats div b {
    font-family: "Google Sans", sans-serif;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    text-align: left;
    font-size: 22px;
}

.hero-stats div span {
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    margin: 0;
    text-align: left;
    font-family: "Google Sans", sans-serif;
}


.instrument-section {
    background: #f6f9fd;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(85 132 254 / 22%);
    border: 1px solid rgb(85 132 254 / 22%);
    color: #3d53a8;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin: 24px 0;
    width: fit-content;
    animation: fadeUp 0.6s ease both 0.1s;
}

.section-title h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;

}

.section-title h2 b {
    background: linear-gradient(to right, #3185c3, #2058a0, #3185c3);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease-in-out;
}

.section-title h2 b:hover {
    background-position: right center;
}

.section-title p {
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: center;
}

.instrument-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s;
    margin: 15px;
    border: 1px solid #ccc;
}

.instrument-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(13, 77, 146, .18);
}

.instrument-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
}

.instrument-content {
    padding: 25px;
}

.instrument-content h3 {
    color: #0D4D92;
    font-size: 22px;
    line-height: 1.4;
    min-height: 75px;
    margin-bottom: 20px;
}

.instrument-content a {
    display: inline-block;
    background: #F89C1C;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.instrument-content a:hover {
    background: #0D4D92;
    color: #fff;
}

.instrument-carousel .owl-nav {
    margin-top: 40px;
    text-align: center;
}

.instrument-carousel .owl-nav button {
    width: 52px;
    height: 52px;
    border-radius: 50% !important;
    background: #0D4D92 !important;
    color: #fff !important;
    font-size: 24px !important;
    margin: 0 8px;
}

.instrument-carousel .owl-nav button:hover {
    background: #F89C1C !important;
}

.instrument-carousel .owl-dots {
    margin-top: 30px;
}

.instrument-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: #cfd8e6 !important;
}

.instrument-carousel .owl-dot.active span {
    background: #0D4D92 !important;
}


.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 16px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #ea4e15;
}

.breadcrumb span {
    color: #999;
}

.breadcrumb .active {
    color: #ea7023;
    font-weight: 600;
}



.breadcrumb2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 16px;
}

.breadcrumb2 a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb2 a:hover {
    color: #fff;
}

.breadcrumb2 span {
    color: #fff;
}

.breadcrumb2 .active {
    color: #fff;
    font-weight: 600;
}



.quality-section{
    padding:80px 0;
    background:#f8f6f2;
}

/*==============================
    Heading
==============================*/

.section-heading{
    margin-bottom:40px;
}

.sub-title{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#b48b52;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.sub-title::before{
    content:"";
    width:40px;
    height:1px;
    background:#b48b52;
}

.section-heading h2{
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
}

/*==============================
    Main Card
==============================*/

.quality-card{
    display:grid;
    grid-template-columns:340px 1fr;
    background:#fff;
    border:1px solid #e8dfd3;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/*==============================
    Left Side
==============================*/

.quality-left{
background: linear-gradient(to right, #2058a0, #3185c3);
    color:#fff;
    text-align:center;
    padding:55px 40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.certificate-logo{
    margin-bottom:35px;
        width: 250px;
    height: 250px;
}

.certificate-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.quality-left h3{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    line-height:1.3;
    margin-bottom:20px;
    font-weight:600;
}

.certificate-number{
    color:#d8d8d8;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:35px;
}

.certificate-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:190px;
    height:52px;
    border:2px solid #ffffff;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.certificate-btn:hover{
    background:#fff;
    color:#162447;
}

/*==============================
    Right Side
==============================*/

.quality-right{
    padding:50px;
}

.quality-right h3{
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
}

.quality-description{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;
    max-width:850px;
}

/*==============================
    Features
==============================*/

.quality-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:40px;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px 22px;
    border:1px solid #e5ddd1;
    border-radius:8px;
    transition:.35s;
    background:#fff;
}

.feature-box:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f5f2eb;
    display:flex;
    justify-content:center;
    align-items:center;
    color: #ea671e;
    font-size:18px;
}

.feature-box span{
    font-size:16px;
    font-weight:600;
color: #3f78bb;
}

/*==============================
    Footer
==============================*/

.quality-footer{
    border-top:1px solid #e4ddd3;
    padding-top:28px;
    color:#666;
    font-size:16px;
    line-height:1.8;
}


.about-first-img {
    width: 67% !important;
    float: right !important;
    border-radius: 16px !important;
    position: relative !important;
    height: 76vh !important;
    object-fit: cover !important;
    left: 0% !important;
}


.service-support{
width: 1800px;
    margin: 0 auto;
}

.service-wrapper{
    display:grid;
    grid-template-columns:330px 1fr;
    overflow:hidden;
    border-radius:18px;
    background:#242321;
}

/* LEFT */

.left-panel{
    background:linear-gradient(180deg,#3d67ad 0%,#2c4f8e 100%);
    color:#fff;
    padding:50px 32px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.left-icon{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#fff;
    margin-bottom:35px;
}

.left-panel h2{
    font-family: "Google Sans", sans-serif;
    font-size: 23px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    margin-bottom: 20px;
}

.left-panel p{
    color:#d7dced;
    font-size:18px;
    line-height:1.7;
}

/* RIGHT */

.right-panel{
    padding:40px 36px;
	background-color:#FFFFFF;
}

.section-tag{
display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(85 132 254 / 22%);
    border: 1px solid rgb(85 132 254 / 22%);
    color: #3d53a8;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin: 24px 0;
    width: fit-content;
    animation: fadeUp 0.6s ease both 0.1s;
}

.right-panel h1{
    font-family: "Google Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
    margin-bottom: 20px;
    padding-right: 53%;
}

.subtitle{
    font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: left;
}

/* GRID */

.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:38px;
}

.service-card{
    display:flex;
    align-items:center;
    gap:18px;
    border: 1px solid rgb(165 163 163 / 58%);
    border-radius:15px;
    padding:22px;
    transition:.3s;
}

.service-card:hover{
    border-color:#4476d8;
    transform:translateY(-3px);
}

.service-card .icon{
    width:42px;
    height:42px;
    background:#0d326c;
    color:#7fb1ff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    flex-shrink:0;
}

.service-card h4{
	color:#333333;
	font-size:18px;
	line-height:1.3;
	font-weight:600;
}

/* BOTTOM */

.bottom-area{
    margin-top: 1%;
}

.bottom-area p{
font-size: 16px;
    color: #000;
    line-height: 140%;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both 0.4s;
    font-family: "Google Sans", sans-serif;
    text-align: left;
}

.btn-service{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:25px;
    text-decoration:none;
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
    padding:15px 24px;
    border-radius:12px;
    font-size:20px;
    font-weight:600;
    transition:.3s;
    background: linear-gradient(45deg, #ea4e15, #f7d649);
}

.btn-service:hover{
    background: linear-gradient(45deg, #f7d649, #ea4e15);
}


.timeline-shell {
    width: 100%;
}

.timeline-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

/* Horizontal line for every row */
.timeline-row::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    height: 2px;
    background: #ccc;
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
}

/* Dot */
.timeline-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #000;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
}

.timeline-year {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-card {
    position: relative;
    z-index: 2;
}




/* =========================================
   SPECIFICATION TABLE
========================================= */

.specification-table-wrapper {
    width: 100%;
    max-width: 100%;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    scrollbar-width: thin;
}


/* =========================================
   SCROLLBAR
========================================= */

.specification-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.specification-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.specification-table-wrapper::-webkit-scrollbar-thumb {
    background: #2058a0;
    border-radius: 10px;
}

.specification-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #00346a;
}


/* =========================================
   TABLE
========================================= */

.specification-table-wrapper table {
    width: 100%;
    min-width: 100%;
    max-width: none;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 0;
}


/* =========================================
   HEADER
========================================= */

.specification-table-wrapper th {
    padding: 17px 19px;
    font-family: "Google Sans", sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 140%;
    color: #fff;
    text-align: center;
    background: linear-gradient(145deg, #00346a, #1a72b8);
}

.specification-table-wrapper th:first-child {
    width: 25%;
    text-align: left;
}

.specification-table-wrapper th:not(:first-child) {
    width: 25%;
    text-align: center;
}


/* =========================================
   BODY
========================================= */

.specification-table-wrapper td {
    padding: 16px 20px;
    border: 1px solid #f0f2f5;
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #555;
    text-align: center;
    vertical-align: middle;
    word-wrap: break-word;
}

.specification-table-wrapper td:first-child {
    text-align: left;
}

.specification-table-wrapper .spec-label {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: left;
 
}


/* =========================================
   ROWS
========================================= */

.specification-table-wrapper tbody tr:nth-child(even) td {
    background-color: #fafbfc;
}

.specification-table-wrapper tbody tr:hover td {
    background-color: #f5f7fa;
}

.testimonial-section {
    padding: 90px 0;
    overflow: hidden;
}

.testimonial-container {
    max-width: 1800px;
    margin: auto;
    padding: 0 20px;
    position: relative;
}

.testimonial-slider {
    position: relative;
    display: flex;
    gap: 29px;
    width: 100%;
}


.testimonial-item {
    display: none;

    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 65px 70px;

    box-shadow: 0 20px 60px rgba(16, 24, 40, .08);

    border-left: 6px solid #F4B13D;

    animation: fade .5s ease;

    width: 31%;
}



.testimonial-item:only-child {
    width: 100%;
}


/* TWO TESTIMONIALS */

.testimonial-item:first-child:nth-last-child(2),
.testimonial-item:first-child:nth-last-child(2) ~ .testimonial-item {
    width: 48%;
}


/* THREE TESTIMONIALS */

.testimonial-item:first-child:nth-last-child(3),
.testimonial-item:first-child:nth-last-child(3) ~ .testimonial-item {
    width: 31%;
}


/* ACTIVE */

.testimonial-item.active {
    display: block;
}


/*====================================
    ANIMATION
====================================*/

@keyframes fade {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/*====================================
    QUOTE
====================================*/

.quote-icon {
    font-size: 52px;
    color: #F4B13D;
    margin-bottom: 25px;
}

.quote-icon i {
    display: block;
}


/*====================================
    TEXT
====================================*/

.testimonial-text {
    font-size: 18px;
    line-height: 1.55;
    color: #243041;
    font-weight: 500;
    margin-bottom: 45px;
}


/*====================================
    AUTHOR
====================================*/

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.author-avatar {
    width: 64px;
    height: 64px;

    border-radius: 50%;

    background: #EAF8F4;

    border: 2px solid #B8E2D9;

    color: #2D7A72;

    font-weight: 700;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 20px;

    flex-shrink: 0;
}

.author-info h4 {
    font-size: 20px;
    color: #17212F;
    margin-bottom: 6px;
}

.author-info span {
    color: #6C7A89;
    font-size: 17px;
}


/*====================================
    TAG
====================================*/

.testimonial-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border-radius: 10px;

    background: #F8FAFC;

    border: 1px solid #E5E7EB;

    color: #4A5568;

    font-size: 15px;
    font-weight: 600;
}

.testimonial-tag i {
    color: #6B7280;
}


/*====================================
    ARROWS
====================================*/

.testimonial-prev,
.testimonial-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: none;

    border-radius: 50%;

    background: #fff;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

    cursor: pointer;

    transition: .3s;

    z-index: 20;

    color: #000;
}

.testimonial-prev {
    left: -28px;
}

.testimonial-next {
    right: -28px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #f4b13d;
    color: #fff;
}


/*====================================
    DOTS
====================================*/

.testimonial-dots {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 35px;
}

.dot {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: rgb(42 112 179) !important;

    cursor: pointer;

    transition: .35s;
}

.dot.active {

    width: 34px;

    border-radius: 20px;

    background: #F4B13D !important;
}


/*====================================
    HOVER
====================================*/

.testimonial-item:hover {

    transform: translateY(-3px);

    transition: .3s;
}


/*====================================
    TESTIMONIAL DOTS
====================================*/

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 35px;
    padding: 0;
}

.testimonial-dots .dot {
    display: block;
    width: 10px;
    height: 10px;
    min-width: 10px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: #2a70b3 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ACTIVE DOT */

.testimonial-dots .dot.active {
    width: 28px;
    min-width: 28px;
    height: 10px;
    border-radius: 20px;
    background: #F4B13D !important;
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES
========================================================= */


/* =========================================================
   MAX WIDTH: 1800px
========================================================= */

@media only screen and (max-width: 1800px) {

    .banner-content {
        max-width: 1200px !important;
    }

    .our-purpose {
        height: 57vh;
        object-fit: cover;
    }

    .icon-box2 h2 {
        font-size: 20px !important;
    }

    .about h2 {
        font-size: 28px;
    }

    .icon-box h2 {
        font-family: "Google Sans", sans-serif;
        font-size: 18px;
    }

    .footer p {
        font-size: 16px;
    }

    .whatsapp_float {
        width: 45px;
        height: 45px;
    }

    .abouttext {
        bottom: 15% !important;
        width: 45%;
        height: 70vh;
    }

    .service-support {
        max-width: 1400px;
        margin: 0 auto;
        width: 100% !important;
    }

    .service-wrapper {
        margin: 2%;
    }
}


/* =========================================================
   MAX WIDTH: 1600px
========================================================= */

@media only screen and (max-width: 1600px) {

    .panel-section {
        width: 1400px;
    }

    .abouttext {
        height: 70vh;
        bottom: 15% !important;
        width: 58%;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }

    .service-text {
        font-size: 16px;
    }
}


/* =========================================================
   MAX WIDTH: 1500px
========================================================= */

@media only screen and (max-width: 1500px) {

    .fc-tab-btn {
        width: 20%;
        flex: none !important;
    }

    .fc-tabs {
        display: flex;
        flex-wrap: wrap;
        background: #4d76c5;
    }

    .ms-event-card {
        width: 337px;
    }

    .instrument-card {
        margin: 0 !important;
    }

    .footer-image {
        grid-template-columns: 0.5fr 1fr 0.4fr 0.5fr;
    }

    .abouttext {
        height: 70vh;
        margin-left: 5%;
        bottom: 3% !important;
        width: 70%;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }

    .service-text {
        font-size: 13px;
    }

    .proof-item3 h2 {
        font-size: 16px;
    }

    .hero-stats {
        margin-top: 1px;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .image-animation:before {
        width: 400px;
        height: 400px;
    }

    .abouttext h1 {
        font-size: 32px;
    }

    .proof-item h2 {
        font-size: 22px;
    }

    .seahorse-bullet li {
        font-size: 13px;
    }

    .col_sm8 {
        width: 58%;
    }

    .menu-top2 {
        width: 98%;
    }

    .panel-section {
        margin: 0;
        padding: 0 30px;
        width: 100%;
    }
}


/* =========================================================
   MAX WIDTH: 1400px
========================================================= */

@media only screen and (max-width: 1400px) {

    .ms-event-card {
        width: 313px;
    }

    .timeline-wrap {
        max-width: 1300px;
    }

    .col_sm5 {
        width: 31%;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-container3 {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   MAX WIDTH: 1300px
========================================================= */

@media only screen and (max-width: 1300px) {

    .top4 {
        width: 100%;
    }

    .ms-event-card {
        width: 48%;
    }

    .logo {
        width: 132px;
    }

    .footer-image {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-wrap {
        max-width: 1200px;
    }

    .about-first-img {
        width: 80%;
    }

    .video-img {
        left: 0%;
    }

    .short-img {
        left: 0;
    }

    .menu-top2 {
        width: 98%;
    }

    .logo img {
        width: 130px;
    }

    .ms-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MAX WIDTH: 1200px
========================================================= */

@media only screen and (max-width: 1200px) {

    .panel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-track {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }

    .timeline-line {
        display: none;
    }

    .timeline-item:nth-child(3),
    .timeline-item:nth-child(4) {
        margin-top: 14%;
    }

    .timeline-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-row::before {
        display: none;
    }

    .aboutbanner-text h1 {
        font-size: 38px;
    }

    .col_sm8,
    .col_sm88 {
        width: 98%;
    }

    .proof-container2 {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   MAX WIDTH: 1100px
========================================================= */

@media screen and (max-width: 1100px) {

    .timeline-wrap {
        max-width: 1000px;
    }

    .col_sm7 {
        width: 23%;
    }
}


/* =========================================================
   MAX WIDTH: 1024px
========================================================= */

@media (max-width: 1024px) {

    .kit-main {
        grid-template-columns: 1fr;
    }

    .kit-image {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MAX WIDTH: 1000px
========================================================= */

@media only screen and (max-width: 1000px) {

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-heading h2 {
        font-size: 38px;
    }

    .ms-carousel-slide img {
        width: 87%;
    }
}


/* =========================================================
   MAX WIDTH: 992px
========================================================= */

@media (max-width: 992px) {

    .events-header {
        flex-direction: column;
    }

    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .heading h2 {
        font-size: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 48px;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 45px 25px;
    }

    .cta-box h2 {
        font-size: 34px;
    }

    .section-grid,
    .section-grid.reverse {
        grid-template-columns: 1fr;
    }

    .section-content h2 {
        font-size: 34px;
    }

    .testimonial-item {
        padding: 50px 40px;
    }

    .testimonial-text {
        font-size: 28px;
    }

    .author-info h4 {
        font-size: 20px;
    }

    .quality-card {
        grid-template-columns: 1fr;
    }

    .quality-left {
        padding: 60px 30px;
    }

    .quality-right {
        padding: 40px 30px;
    }

    .quality-right h3 {
        font-size: 34px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .service-wrapper {
        grid-template-columns: 1fr;
    }

    .left-panel {
        padding: 45px 30px;
    }

    .right-panel h1 {
        font-size: 38px;
    }

    .subtitle {
        font-size: 18px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .connect-flex p {
        width: 100%;
    }
}


/* =========================================================
   MAX WIDTH: 991px
========================================================= */

@media (max-width: 991px) {

    .event-prev {
        left: 10px;
    }

    .event-next {
        right: 10px;
    }

    .event-lightbox {
        padding: 20px;
    }

    .event-lightbox-caption {
        font-size: 16px;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 45px 25px;
    }

    .cta-box h2 {
        font-size: 34px;
    }

    .testimonial-item {
        padding: 50px 40px;
    }

    .testimonial-text {
        font-size: 28px;
    }

    .author-info h4 {
        font-size: 20px;
    }

    .quality-card {
        grid-template-columns: 1fr;
    }

    .quality-left {
        padding: 60px 30px;
    }

    .quality-right {
        padding: 40px 30px;
    }

    .quality-right h3 {
        font-size: 34px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .service-wrapper {
        grid-template-columns: 1fr;
    }

    .left-panel {
        padding: 45px 30px;
    }

    .right-panel h1 {
        font-size: 38px;
    }

    .subtitle {
        font-size: 18px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .connect-flex p {
        width: 100%;
    }
}


/* =========================================================
   MAX WIDTH: 960px
========================================================= */

@media only screen and (max-width: 960px) {

    .aboutbanner {
        margin: 0 0 0;
    }

    .banner-main {
        margin: 0;
    }

    .why-choose-us-sub li {
        width: 96%;
    }

    .support-section {
        padding: 33px 5px;
    }

    .table-wrapper {
        max-width: 900px;
    }

    .top4 {
        width: 98% !important;
    }

    .top-bar {
        width: 98%;
    }

    .aboutbanner-wrap {
        height: 800px;
    }

    .abouttext {
        height: 85vh;
    }

    .sections-wrapper .top {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .connect-flex p {
        text-align: left;
    }

    .ms-about-grid {
        grid-template-columns: 1fr;
    }

    .proof-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .col_sm6,
    .col_sm3,
    .col_sm2 {
        width: 98%;
    }

    .btn-right {
        display: none;
    }

    .video-img {
        top: 37vh;
    }

    .short-img {
        top: 15vh;
    }

    .ms-events-grid {
        flex-wrap: wrap;
    }

    .ms-event-card {
        width: 48%;
    }

    .why-choose-flex,
    .icon-flex {
        flex-wrap: wrap;
    }

    .col_sm4 {
        width: 48%;
    }

    .service-coverage-grid {
        grid-template-columns: 1fr;
    }

    .faq-section {
        max-height: fit-content;
    }

    .ms-about-section {
        padding: 0;
    }

    .form-header h3 {
        margin: 0;
        font-size: 16px;
    }

    .slide-form input,
    .slide-form textarea,
    .slide-form select {
        padding: 8px;
    }

    .logo_items {
        animation: 10s slides infinite linear;
    }

    label {
        font-size: 12px;
    }

    textarea {
        resize: vertical;
        height: 30px;
    }

    .slide-form {
        padding: 5px 30px;
    }

    .why-choose-us-sub222 li {
        width: 100%;
    }

    .top {
        width: 100%;
    }

    .col_sm1.banner {
        margin: 0 0 1% !important;
    }

    .fix_nav {
        top: 0 !important;
    }

    .col_sm1.banner .top .slide {
        border-radius: 0 !important;
    }

    .specification-table-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .specification-table-wrapper table {
        width: 900px;
        min-width: 900px;
    }

    .specification-table-wrapper th {
        font-size: 17px;
        padding: 15px 17px;
    }

    .specification-table-wrapper td {
        font-size: 15px;
        padding: 14px 17px;
    }

    .services h2 {
        font-size: 30px;
    }
}


/* =========================================================
   MAX WIDTH: 800px
========================================================= */

@media only screen and (max-width: 800px) {

    .col_sm5 {
        width: 48%;
    }

    .counter-card {
        width: 48%;
    }

    .fc-tab-btn {
        width: 33.3%;
        flex: none !important;
    }

    .fc-logo-grid {
        flex-wrap: wrap;
    }

    .fc-logo-card {
        width: 31% !important;
    }
}


/* =========================================================
   MAX WIDTH: 768px
========================================================= */

@media (max-width: 768px) {

    /* Sticky buttons */

    .mobile-sticky-buttons {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }

    .sticky-btn {
        display: none;
    }

    /* Events */

    .event-grid {
        grid-template-columns: 1fr;
    }

    .heading h2 {
        font-size: 34px;
    }

    .filters {
        width: 100%;
    }

    .event-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Forms */

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* General headings */

    h1 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    /* Tables */

    .table-wrapper {
        overflow-x: auto;
    }

    table {
        font-size: 13px;
    }

    th,
    td {
        padding: 14px 12px;
    }

    /* Sections */

    .sections-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Breadcrumb */

    .breadcrumb {
        font-size: 14px;
    }

    /* Panels */

    .panel-grid {
        grid-template-columns: 1fr;
    }

    .panel-tabs {
        display: flex;
        width: 100%;
    }

    .panel-tabs button {
        flex: 1;
        padding: 15px;
    }

    .panel-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quote-btn {
        width: 100px;
    }

    /* Kit */

    .section-wrap {
        padding: 12px 12px 0;
    }

    .kit-content,
    .features-block {
        padding-left: 16px;
        padding-right: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .kit-image {
        min-height: 250px;
    }

    /* Hero */

    .hero {
        height: 420px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero::after {
        display: none;
    }

    .contact-wrapper {
        margin-top: 0;
    }

    .form-box h2 {
    font-size: 29px;
}


    .form-box,
    .contact-card {
        padding: 30px;
    }

    /* Specification table */

    .specification-table-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .specification-table-wrapper table {
        width: 900px;
        min-width: 900px;
    }

    .specification-table-wrapper th {
        font-size: 14px;
        padding: 13px 15px;
    }

    .specification-table-wrapper td {
        font-size: 13px;
        padding: 13px 15px;
    }

    .specification-table-wrapper .spec-label {
        font-size: 13px;
    }

    /* Quality */

    .quality-section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .quality-right h3 {
        font-size: 30px;
    }

    .quality-features {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 16px;
    }

    .quality-description,
    .quality-footer {
        font-size: 15px;
    }

    .certificate-btn {
        width: 100%;
    }

    /* Testimonials */

    .testimonial-section {
        padding: 50px 0;
        overflow: hidden;
        width: 100% !important;
    }

    .testimonial-container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        overflow: hidden;
    }

    .testimonial-slider {
        display: block !important;
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .testimonial-slider .testimonial-item {
        display: none !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 40px 25px;
        flex: none !important;
    }

    .testimonial-slider .testimonial-item.active {
        display: block !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .quote-icon {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .testimonial-author {
        align-items: flex-start;
        gap: 14px;
    }

    .author-avatar {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }

    .author-info h4 {
        font-size: 18px;
    }

    .author-info span {
        font-size: 15px;
    }

    .testimonial-tag {
        font-size: 14px;
        padding: 10px 15px;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 42px;
        height: 42px;
        top: 50%;
    }

    .testimonial-prev {
        left: 5px;
    }

    .testimonial-next {
        right: 5px;
    }

    .testimonial-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 100%;
        margin-top: 25px;
    }

    .testimonial-dots .dot {
        width: 8px;
        min-width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #2a70b3 !important;
    }

    .testimonial-dots .dot.active {
        width: 24px;
        min-width: 24px;
        height: 8px;
        border-radius: 20px;
        background: #F4B13D !important;
    }
}


/* =========================================================
   MAX WIDTH: 767px
========================================================= */

@media (max-width: 767px) {

    .about-first-img {
        width: 100% !important;
    }

    .testimonial-section {
        width: 100% !important;
        overflow: hidden !important;
    }

    .testimonial-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }

    .testimonial-slider {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .testimonial-slider .testimonial-item {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        margin: 0 !important;
    }
}


/* =========================================================
   MAX WIDTH: 700px
========================================================= */

@media only screen and (max-width: 700px) {

    .dots {
        justify-content: start;
    }

    .col_sm7 {
        width: 48%;
    }

    .proof-container2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-track {
        grid-template-columns: repeat(1, minmax(280px, 1fr));
    }

    .timeline-item:nth-child(2) {
        margin-top: 14%;
    }

    .col_sm5 {
        width: 98%;
    }

    .timeline-wrap {
        max-width: 600px;
    }

    .counter-card {
        width: 98%;
    }
}


/* =========================================================
   MAX WIDTH: 640px
========================================================= */

@media (max-width: 640px) {

    .section-wrap {
        padding: 12px 12px 0;
    }

    .kit-content,
    .features-block {
        padding-left: 16px;
        padding-right: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .kit-image {
        min-height: 250px;
    }
}


/* =========================================================
   MAX WIDTH: 600px
========================================================= */

@media only screen and (max-width: 600px) {

    .contact-grid {
    margin-top: 0%;
}


    /* Common headings */

    .section-title h2,
    .section-heading h2,
    .quality-right h3,
    .right-panel h1,
    .about h2,
    .why-choose-us h2,
    .services h2,
    .products h2,
    .who-we-serve h2,
    .solutions h2,
    .ms-events-section h2,
    .counter-heading h2,
    .global-outlook h2,
    .proof-bar3 h2,
    .proof-bar2 h2,
    .real-world h2,
    .bg h2,
    .support h2,
    .service-coverage-section h2,
    .partner h2,
    .consumables h2,
    .block h2,
    .integration h2,
    .event-close,
    .consumables-kits h2,
    .section-content h2,
    .table-range h2,
    .table h2,
    .ms-about-section h2,
    .connect-flex h2,
    .timeline-header h2,
    .product h2,
    .heading h2,
    .event-gallery-title h2,
    .panel-section h2,
    .quote-icon,
    .header h2 {
        font-size: 25px;
    }

    .section-title h2 {
        font-size: 25px;
    }

    .right-panel h1 {
        font-size: 22px;
        padding-right: 0;
    }

    .why-choose-us h2 {
        font-size: 18px;
        width: 100%;
    }

    .text-flex {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .banner h6 {
        font-size: 10px;
    }

    .ms-proof-card h3 {
        font-size: 20px;
    }

    /* Grids */

    .proof-container {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .footer-image {
        grid-template-columns: 1fr;
    }

    .ms-event-card {
        width: 98%;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .proof-container3 {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .counter-heading h2 {
        font-size: 30px;
    }

    .counter-number {
        font-size: 46px;
    }

    .col_sm4 {
        width: 98%;
    }

    .ms-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-inner {
        grid-template-columns: 1fr;
    }

    /* Other */

    .abouttext {
        margin-left: 5%;
        bottom: 3% !important;
        width: 90%;
    }

    .abouttext h1 {
        font-size: 19px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section-content h2 {
        font-size: 30px;
    }

    .fix_nav {
        left: 0 !important;
    }

    .hero-stats div b {
        font-size: 16px;
    }

    .top-bar-content {
        flex-wrap: wrap;
    }

    .proof-container2 {
        grid-template-columns: 1fr;
        margin: 3%;
    }

    button {
        margin-top: 3%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .abouttext p {
        font-size: 14px;
    }

    .trust-right {
        padding: 10px;
    }

    /* Timeline */

    .timeline-row {
        grid-template-columns: 1fr;
    }

    .service-coverage-section h2 {
        font-size: 26px;
    }
}


/* =========================================================
   MAX WIDTH: 576px
========================================================= */

@media (max-width: 576px) {

    .event-gallery-grid {
        grid-template-columns: 1fr;
    }

    .event-gallery-title {
        font-size: 34px;
    }

    .right-panel {
        padding: 25px;
    }

    .left-panel {
        padding: 30px 25px;
    }

    .right-panel h1 {
        font-size: 32px;
    }

    .service-card h4 {
        font-size: 18px;
    }

    .subtitle {
        font-size: 16px;
    }

    .bottom-area p {
        font-size: 16px;
    }

    .btn-service {
        font-size: 17px;
        padding: 13px 18px;
    }

    .top3 {
        width: 98%;
    }
}


/* =========================================================
   MAX WIDTH: 500px
========================================================= */

@media only screen and (max-width: 500px) {

    .fc-logo-card {
        width: 47% !important;
    }

    .ms-event-card {
        width: 98%;
    }

    .video-img,
    .short-img {
        display: none;
    }

    .image-animation:before {
        display: none;
    }

    .about-first-img {
        width: 100%;
    }

    .logo {
        width: 297px;
    }
}


/* =========================================================
   MAX WIDTH: 480px
========================================================= */

@media (max-width: 480px) {

    
    .section-heading h2 {
        font-size: 28px;
    }

    .sub-title {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .quality-left h3 {
        font-size: 28px;
    }

    .quality-right {
        padding: 30px 20px;
    }

    .quality-left {
        padding: 50px 20px;
    }

    .feature-box span {
        font-size: 14px;
    }

    /* Testimonials */

    .testimonial-container {
        padding: 0 12px;
    }

    .testimonial-slider .testimonial-item.active {
        padding: 35px 22px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Specification table */

    .specification-table-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .specification-table-wrapper table {
        width: 900px;
        min-width: 900px;
    }

    .specification-table-wrapper th {
        font-size: 13px;
        padding: 12px 14px;
    }

    .specification-table-wrapper td {
        font-size: 12px;
        padding: 12px 14px;
    }
}


/* =========================================================
   MAX WIDTH: 400px
========================================================= */

@media only screen and (max-width: 400px) {

    .fc-logo-card {
        width: 98% !important;
    }

    .fc-tab-btn {
        width: 100%;
    }

    .why-choose-us h2 {
        font-size: 23px;
    }

    .footer li {
        width: 98%;
    }

    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ms-proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .banner h6 {
        font-size: 13px;
    }

    .legend {
        gap: 0;
        flex-wrap: wrap;
    }

    .legend-item {
        margin-bottom: 0;
    }

    .proof-container {
        grid-template-columns: 1fr 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(313px, 1fr));
    }

    .proof-container2 {
        grid-template-columns: 1fr 1fr;
    }
}