@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Handlee&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lora:ital,wght@0,400..700;1,400..700&family=Merienda:wght@300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Tamil:wght@100..900&family=Onest:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Quicksand:wght@300..700&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Sora:wght@100..800&family=Spline+Sans:wght@300..700&family=Wix+Madefor+Display:wght@400..800&display=swap');


/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    --primary-color: #0040A0;
    --secondary-color: #FFB700;
    --text-color: #333;
    --bg-color: #ffffff;

    --primary-font: "Onest", sans-serif;
}

body {
    font-family: "Onest", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
span {
    font-family: var(--primary-font);
}

a {
    font-family: var(--primary-font);
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: var(--primary-font);
    cursor: pointer;
    border: none;
    outline: none;
}

::selection {
    background-color: var(--secondary-color);
}

/* Header css starts */

.main-header .container {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 13px;
    border: 1px solid transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(to right, #6F6F6F3D 24%, #FFFFFF) border-box;

    backdrop-filter: blur(10px);
    z-index: 999;
}

.main-header .logo img {
    height: 50px;
}

.main-header .nav-menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-bottom: 0px;
}

.main-header .nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: 0.3s linear;
}

.main-header .nav-menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin: 15.5px 0;
    top: 8px;
    right: 0;
}

.main-header .nav-menu a:hover::after {
    width: 100%;
    left: 0;
}

.main-header .nav-menu a.active,
.main-header .nav-menu a:hover {
    color: var(--primary-color);
    transition: 0.3s linear;
}

.main-header .nav-menu a.active::after {
    width: 100%;
}

.main-header .header-btn img {
    height: 40px;
    cursor: pointer;
}

.main-header .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.playstore-btn {
    position: relative;
    cursor: pointer;
    border: none;
    background: transparent;
}

.playstore-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    z-index: 1;
    transition: none;
    opacity: 1;
    animation: slide 2s infinite;
}

@keyframes slide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.playstore-btn .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 45px;
    max-width: 190px;
    padding: 5px 15px;
    background: #000;
    color: #fff;
    border-radius: 8px;
}

.playstore-btn .play-icon {
    width: 20px;
}

@media (min-width: 640px) {
    .playstore-btn .btn-content {
        height: 54px;
    }

    .playstore-btn .play-icon {
        width: 26px;
    }
}

.playstore-btn .text-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1;
}

.playstore-btn .small-text {
    font-size: 10px;
}

.playstore-btn .big-text {
    font-size: 15px;
    font-weight: 600;
    margin-top: -2px;
}

@media (min-width: 640px) {
    .playstore-btn .small-text {
        font-size: 11px;
    }

    .playstore-btn .big-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    .main-header .nav-menu {
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        display: none;
        flex-direction: column;
    }

    .main-header .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .main-header .nav-menu.active {
        display: flex;
    }

    .main-header .header-btn {
        display: none;
    }

    .main-header .menu-toggle {
        display: block;
    }
}

/* Header css ends */

/* Footer css starts */
.main-footer {
    position: relative;
    background: url(../images/footer-bg.png) no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    padding-top: 60px;
    z-index: 1;
}

/* Grid */
.footer-grid {
    padding-bottom: 40px;
}

/* Logo */
.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

/* About */
.footer-about p {
    font-size: 14px;
    color: #d6e3ff;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Social */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 8px;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: #124a9c;
    transition: 0.3s;
}

.social-icons a:hover img {
    filter: brightness(0) invert(1);
}

/* Links */
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
    font-size: 14px;
    color: #d6e3ff;
}

.main-footer .footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a {
    font-size: 15px;
    color: #d6e3ff;
    text-decoration: none;
    transition: 0.3s;
}

.main-footer p,
.main-footer a {
    font-size: 15px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom .cloudi5 {
    color: var(--secondary-color);
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #ffffff2a;
    padding: 15px 0;
    font-size: 13px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: #d6e3ff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-contact-details {
    gap: 100px;
}

/* Footer css end */

/* common btns */
.primary-btn {
    background: var(--secondary-color);
    position: relative;
    padding: 15px 18px;
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1;
}

.primary-btn span {
    margin-left: 8px;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 50%;
    transform: scale(0);
    transform-origin: top right;
    transition: transform 2s ease-out;
    z-index: -1;
}

.primary-btn:hover::before {
    transform: scale(3);
}

.primary-btn:hover {
    color: #000;
}

.scan-wrapper {
    display: inline-block;
    position: relative;
}

.scan-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 40px;
    border-radius: 12px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.qr-box {
    position: absolute;
    top: 55px;
    left: 0;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s ease;
    pointer-events: none;
}

.qr-box img {
    width: 190px;
    height: 100%;
    object-fit: cover;
}

.scan-wrapper:hover .qr-box {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.qr-box.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Banner css starts */
.banner {
    padding: 180px 0 250px 0;
    position: relative;
    overflow: hidden;
    background-color: #0040A0;

    background-image:
        linear-gradient(#ffffff14 1px, transparent 1px),
        linear-gradient(90deg, #ffffff14 1px, transparent 1px);
    background-size: 100px 100px;
}

.banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    background: url('../images/banner-bg.png') repeat;
    background-size: cover;
    background-position: -100px;
    height: 350px;
    width: 100%;
}

/* Title */
.banner-title h1 {
    font-size: 64px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.banner-title span {
    color: #FFB700;
}

.banner-dec {
    font-size: 16px;
    color: #E6EFFA;
    max-width: 500px;
}

.btn-download {
    background: #FFB700;
    padding: 12px 20px;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
}

.btn-scan {
    border: 1px solid #fff;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
}

.banner-img-placement {
    position: absolute;
    right: -50px;
    bottom: -375px;
    background-position: -90px;
}

.banner-img-placement::before {
    content: '';
    position: absolute;
    top: 150px;
    left: 100px;
    width: 450px;
    height: 450px;
    background-color: #000C1D;
    border-radius: 50%;
    filter: blur(170px);
}

.banner-img-placement img {
    /* width: 950px;
    height: 100%;
    object-fit: cover;
    transform: translate(-60px, 50px); */

    width: 650px;
    transform: translate(-60px, 83px);
}

.app-tag {
    position: absolute;
    /* top: -180px;
    left: -10px; */
    top: -200px;
    left: -50px;
    background: #fff;
    color: #0040A0;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    animation: floatY 3s ease-in-out infinite;
    position: absolute;
    z-index: 99;
}

.app-tag::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 0 solid transparent;
    border-top: 12px solid #fff;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Banner css ends */

.shine-title {
    background: linear-gradient(90deg,
            var(--secondary-color) 0%,
            var(--secondary-color) 40%,
            #ffffff 50%,
            var(--secondary-color) 60%,
            var(--secondary-color) 100%);

    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shine 2s linear infinite;
}

/* Animation */
@keyframes shine {
    0% {
        background-position: 200% center;
    }
}


/* aboutus css starts */

.about-us {
    position: relative;
    padding: 120px 0;
}

.about-us::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid #0040A01C;
    border-radius: 50%;
    top: 15px;
    left: -155px;
}

.about-us::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid #0040A01C;
    border-radius: 50%;
    top: -210px;
    left: -90px;
}

.about-us .about-qr {
    width: 240px;
}

.sub-title {
    position: relative;
    padding: 5px 20px 5px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1A1A1A29;
    border-radius: 50px;
}

.sub-title p {
    text-transform: uppercase;
    font-weight: bold;
}

.sub-title p::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 18px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.section-title h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title span {
    text-transform: uppercase;
    color: var(--primary-color);
}

.about-feature-card .card-box {
    background: #FFE2AC;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.about-feature-card .card-box.card-2-bg {
    background: #DFF5E1;
}

.about-feature-card .card-box.card-2-bg::before,
.about-feature-card .card-box.card-2-bg::after {
    background: #B7EEBC63;
}

.about-feature-card .card-box.card-2-bg .card-image {
    background: #92b395;
}

.about-feature-card .card-box::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -15px;
    width: 250px;
    height: 250px;
    background: #875B0A0F;
    border-radius: 50%;
}

.about-feature-card .card-box::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -150px;
    width: 250px;
    height: 250px;
    background: #875B0A0F;
    border-radius: 50%;
}

.about-feature-card .card-image {
    width: 400px;
    height: 180px;
    background: #D2B682;
    border-radius: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-feature-card .card-image img {
    max-width: 350px;
}

.about-feature-card .card-content {
    margin-top: 30px;
    z-index: 1;
    position: relative;
}

.about-feature-card .card-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.about-feature-card .card-content p {
    font-size: 16px;
    color: #2d2d2d;
    max-width: 700px;
    line-height: 1.6;
}

.horizontal-wrapper {
    overflow: hidden;
    width: 100%;
}

.about-us .col-lg-7 {
    overflow: hidden;
}

.horizontal-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.horizontal-track .card-box {
    min-width: 750px;
    max-width: 420px;
    width: 100%;
    flex-shrink: 0;
}

.about-us {
    position: relative;
}

/* aboutus css end */

.products {
    padding: 0 0 80px 0;
}

.Productsswiper {
    padding: 20px 20px !important;
}

.feed-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px #0000001F;
    text-align: center;
    transition: 0.3s;
    margin-bottom: 15px;
}

.feed-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.feed-card h4 {
    padding: 15px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* cta section css starts */
.cta-section {
    padding: 20px 0 80px;
}

.cta-box {
    background: url(../images/cta-bg.webp) no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 30px;
    padding: 40px 30px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.cta-content {
    max-width: 700px;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: #1F2937;
    margin-bottom: 25px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-number {
    font-size: 35px;
    font-weight: 700;
    color: #1F2937;
}

.cta-image img {
    max-height: 300px;
    object-fit: contain;
    transform: translateY(30px);
}


/* cta section css ends */


/* how it works css starts */
.how-it-works {
    padding: 0 0 80px;
    position: relative;
    overflow: hidden;
}

.how-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    margin: auto;
}

/* Circles */
.circle {
    position: absolute;
    border: 1px solid #d0d8e8;
    border-radius: 50%;
}

.circle-1 {
    width: 550px;
    height: 550px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-3 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Center phone */
.phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.phone img {
    width: 230px;
}

/* Dots */
.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #2F80ED;
    border-radius: 50%;
    animation: floatDot 4s infinite ease-in-out;
}

/* Position dots */
.dot1 {
    top: 38px;
    left: 42%;
}

.dot2 {
    top: 50%;
    right: 28.7%;
}

.dot3 {
    bottom: 20px;
    left: 50%;
}

.dot4 {
    top: 37%;
    left: 29.5%;
}

.dot5 {
    width: 25px;
    height: 25px;
    top: 64px;
    right: 37%;
}

.dot6 {
    width: 25px;
    height: 25px;
    top: 50%;
    left: 34%;
}

@keyframes floatDot {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }
}

/* Steps */
.step {
    position: absolute;
    width: 370px;
}

/* Step positions */
.step1 {
    top: 40px;
    left: 110px;
}

.step2 {
    top: 140px;
    right: 100px;
}

.step3 {
    bottom: 155px;
    left: 90px;
}

.step4 {
    bottom: 30px;
    right: 125px;
}

/* Step box */
.step-box {
    background: #2f6fdc;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Background numbers */
.step-bg {
    position: absolute;
    font-size: 80px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    top: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.step-box h5 {
    font-size: 18px;
    font-weight: 700;
}

.step-box p {
    font-size: 15px;
}

/* Default */
.step-box {
    background: #2f6fdc;
    color: #fff;
    transition: 0.4s;
    opacity: 0.9;
}

/* Active Step */
.step.active .step-box {
    background: var(--primary-color);
    /* darker or highlight */
    transform: scale(1.05);
    opacity: 1;
}

/* Active Number */
.step.active .step-bg {
    color: #0040A0;
    opacity: 0.5;
}


/* how it works css end */

/* Features css starts */
.features {
    padding: 0 0 80px;
}

.features .feature-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    /* cursor: pointer; */
}

.features .card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: 0.5s;
}

.features .feature-card.doctor-img {
    background: linear-gradient(to top, #9AD4D3, #DAEFED);
}

.features .feature-card.doctor-img .card-bg {
    height: 385px;
    width: 290px;
    object-fit: cover;
}

.features .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
}

.features .card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
}

.features .card-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.features .card-content p {
    color: #e7e7e7;
}

.features .card-hover-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    opacity: 0;
}

.features .feature-card:hover .card-hover-content {
    max-height: 120px;
    opacity: 1;
}

.features .feature-card:hover .card-bg {
    transform: scale(1.02);
}

/* Features css ends */

/* solutions css starts */
.solutions {
    padding: 50px 50px 170px;
    margin: 50px;
    background: url(../images/solutions-bg.png) no-repeat;
    background-size: cover;
    /* background-position: center center; */
    border-radius: 30px;
}

.solutions .solution-title h2 {
    font-size: 55px;
    font-weight: 700;
    color: var(--bg-color);
}

.solutions .solution-title span {
    color: var(--secondary-color);
}

.solutions .solution-mobile-screens img {
    width: 650px;
}

.solution-mobile-screens {
    position: relative;
}

.solution-mobile-screens .tag-list p {
    position: absolute;
    margin-bottom: 0px;
    padding: 5px 15px;
    border-radius: 7px;
    background-color: var(--bg-color);
    color: var(--primary-color);
    font-weight: 600;
    animation: floatDot2 2s infinite ease-in-out;
}

.solution-mobile-screens .tag-list .tag-1 {
    left: 20%;
    top: 0%;
}

.solution-mobile-screens .tag-list .tag-2 {
    right: 20%;
    top: 0%;
}

.solution-mobile-screens .tag-list .tag-3 {
    left: 5%;
    top: 20%;
}

.solution-mobile-screens .tag-list .tag-4 {
    right: 5%;
    top: 20%;
}

.solution-mobile-screens .tag-list .tag-5 {
    left: 10%;
    top: 50%;
}

.solution-mobile-screens .tag-list .tag-6 {
    right: 10%;
    top: 50%;
}

@keyframes floatDot2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* solutions css end */

/* faq css starts */
.faq {
    padding: 70px 0 80px;
}

.faq .faq-img {
    width: 650px;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
}

.faq .about-over-img {
    right: 40px;
    top: 30px;
}

.faq .about-over-img img {
    width: 120px;
}

.faq .accordion .accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-button::after {
    display: none;
}

.accordion-button {
    background: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 20px;
    position: relative;
    box-shadow: none !important;
}

.accordion-button::before {
    content: "\f4fe";
    font-family: bootstrap-icons;
    position: absolute;
    right: 20px;

    width: 28px;
    height: 28px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;

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

    font-size: 16px;
    color: var(--primary-color);

    transition: 0.3s;
}

.accordion-button:not(.collapsed)::before {
    content: "\f2ea";
    background: var(--primary-color);
    color: #fff;
}

.accordion-button:not(.collapsed) {
    background: #e9edf5;
    color: #000;
}

.accordion-body {
    padding: 15px 20px;
    color: #555;
    font-size: 15px;
    background: #E6EFFA;
}

/* faq css end */

/* download cta css starts */
.download-cta {
    padding: 0 0 80px;
}

.download-cta .container {
    padding: 30px 50px 0;
    background: url(../images/download-cta-bg.webp) no-repeat;
    background-size: cover;
    border-radius: 32px;
}

.download-cta-title {
    font-size: 55px;
    font-weight: bold;
    color: var(--bg-color);
}

.download-cta-title span {
    color: var(--secondary-color);
}

.download-cta-screen {
    height: 400px;
    margin: auto;
}

.playstore-btn.cta-white::before {
    position: unset;
}

.playstore-btn.cta-white .btn-content {
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* download cta css ends */

.app-mockup-container {
    /* position: relative; */
    max-width: 300px;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.app-frame {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.app-frame img {
    width: 260px;
}

.app-content-slider {
    position: absolute;
    top: 7px;
    left: 1px;
    right: 1px;
    bottom: 7px;
    overflow: hidden;
    z-index: -1;
    border-radius: 40px;
}

/* .content-slider-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    display: flex;
    flex-direction: column;
    animation: content-slide 10s linear infinite;
}

@keyframes content-slide {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.content-slide {
    flex: 0 0 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.content-slide img {
    width: 260px;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
} */

.content-slider-inner {
    display: flex;
    flex-direction: column;
    animation: content-slide 15s linear infinite;
}

/* Each slide full height */
.content-slide {
    flex: 0 0 100%;
}

/* Image fit inside frame */
.content-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

@keyframes content-slide {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.main-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    background: url(../images/banner-bg.png) repeat;
    background-size: cover;
    /* background-position: -100px; */
    height: 290px;
    width: 100%;
    z-index: -1;
}

/* Container */
.lang-dropdown {
    /* width: 240px; */
    position: relative;
    user-select: none;
}

/* Selected */
.lang-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 10px;
    border: 2px solid #e2e5ec;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    width: 135px;
    transition: 0.3s;
}

.lang-selected:hover {
    border-color: #cfd3dc;
}

/* Icons */
.lang-selected i {
    font-size: 20px;
    color: #6c757d;
}

.lang-selected span {
    flex: 1;
    margin-left: 5px;
    font-size: 16px;
    color: #495057;
}

/* Arrow rotate */
.arrow {
    transition: 0.3s;
}

.lang-dropdown.active .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.lang-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e5ec;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.3s;
}

/* Active */
.lang-dropdown.active .lang-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Items */
.lang-menu li {
    padding: 12px 16px;
    cursor: pointer;
    color: #495057;
    list-style: none;
    transition: 0.2s;
}

.lang-menu li:hover {
    background: #f1f3f7;
}

/* Hide Google Translate top banner */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

/* Remove top space added by Google */
body {
    top: 0px !important;
}

/* Hide translate tooltip */
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

/* Hide highlight */
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* Optional: hide Google logo */
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    height: 0px !important;
    overflow: hidden !important;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    border-bottom: 0 !important;
    margin: 0;
    box-shadow: none !important;
}

.VIpgJd-ZVi9od-ORHb {
    margin: 0;
    background-color: #E4EFFB;
    overflow: hidden !important;
    display: none !important;
    background: transparent !important;
    background-image: none !important;
}

.skiptranslate {
    display: none;
}


/* Tamil font sizes*/

body.lang-ta,
body.lang-ta h1,
body.lang-ta h2,
body.lang-ta h3,
body.lang-ta h4,
body.lang-ta h5,
body.lang-ta h6,
body.lang-ta p,
body.lang-ta li,
body.lang-ta span,
body.lang-ta a {
    font-family: 'Noto Sans Tamil', sans-serif !important;
}

body.lang-ta h1 {
    font-size: 43px;
}

body.lang-ta p {
    font-size: 15px;
}

body.lang-ta .main-header ul li a {
    font-size: 14px;
}

body.lang-ta .primary-btn {
    font-size: 12px;
}

body.lang-ta .scan-btn {
    font-size: 14px;
}

body.lang-ta .app-tag {
    top: -210px;
    font-size: 12px;
}

body.lang-ta .main-header .container {
    top: 20px;
}

body.lang-ta .cta-content h2 {
    font-size: 35px;
}

body.lang-ta .step-box h5 {
    font-size: 15px;
}

body.lang-ta .step-box p {
    font-size: 12px;
}

body.lang-ta .features .feature-card:hover .card-hover-content {
    max-height: 135px;
    opacity: 1;
}

body.lang-ta .solutions .solution-title h2 {
    font-size: 50px;
}

body.lang-ta .footer-bottom p,
body.lang-ta .footer-bottom a {
    font-size: 11px;
    margin-bottom: 0px;
}

/* Container */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Labels */
.lang-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

body.lang-en .lang-label.left {
    color: #000;
}

body.lang-ta .lang-label.right {
    color: #000;
}

/* Switch */
.lang-slider {
    position: relative;
    width: 60px;
    height: 30px;
    background: #e5e7eb;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.4s;
}

/* Hide checkbox */
.lang-switch input {
    display: none;
}

/* Knob */
.lang-knob {
    position: absolute;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Flag inside knob */
.lang-knob img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

/* Toggle ON (Tamil) */
.lang-switch input:checked+.lang-slider .lang-knob {
    transform: translateX(30px);
}

/* Background color change */
.lang-switch input:checked+.lang-slider {
    background: var(--primary-color);
}

.notranslate {
    translate: no;
}

/* Full screen loader */
#page-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Center content */
.loader-content {
    text-align: center;
}

/* Logo animation */
.loader-logo {
    width: 180px;
    animation: logoPulse 2s ease-in-out infinite;
}

/* Dots */
.loader-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loader-dots span {
    width: 8px;
    height: 8px;
    background: #0040A0;
    border-radius: 50%;
    animation: bounce 1.4s infinite;
}

/* Delay effect */
.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Animations */
@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }
}


.policy-header {
    background: #0040A0;
    color: #fff;
    text-align: center;
    padding: 145px 20px 60px;
    background: url(../images/footer-bg.png) no-repeat;
    background-size: cover;
    background-position: center center;
}

.policy-header h1 {
    font-size: 34px;
}

/* Section */
.policy-section {
    padding: 20px 0 60px;
}

/* Card */
.policy-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

/* Text */

.policy-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 25px;
}

.policy-card p {
    color: #555;
    line-height: 1.6;
}

.policy-card ul {
    padding-left: 20px;
}

/* Contact Section */
.contact-section {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.contact-section h2 {

    color: #0040A0;
}

.contact-section ul {
    list-style: none;
    padding: 0;
}

.contact-section li {
    margin: 10px 0;
    font-weight: 500;
}

.pricacy-contacts ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.pricacy-contacts ul li img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(58%) saturate(4460%) hue-rotate(210deg) brightness(93%) contrast(101%);
}

.policy-header ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 5px;
}

.policy-header ul a {
    text-decoration: none;
    color: var(--bg-color);
}

.policy-header ul p {
    color: var(--secondary-color);
}

.wave-title span {
    display: inline-block;
    animation: wave 1.5s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.text-anime-style-3 .char {
    display: inline-block;
}

/* Toggle button */
.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    z-index: 1002;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Offcanvas menu */
.offcanvas-menu {
    position: fixed;
    top: -16px;
    right: -100%;
    width: 280px;
    height: 110vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);

    padding: 20px;
    transition: 0.4s ease;
    z-index: 1001;

    display: flex;
    flex-direction: column;
}

/* Active state */
.offcanvas-menu.active {
    right: 0;
}

/* Header */
.offcanvas-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.close-menu {
    font-size: 28px;
    cursor: pointer;
}

/* Menu items */
.offcanvas-menu ul {
    list-style: none;
    padding: 0;
}

.offcanvas-menu ul li {
    margin: 15px 0;
}

.offcanvas-menu ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #000;
    transition: 0.3s;
}

.offcanvas-menu ul li a:hover {
    padding-left: 5px;
}


@media (max-width: 768px) {

    /* Remove horizontal behavior */
    .horizontal-track {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .horizontal-wrapper {
        overflow: visible;
    }

    /* Cards full width */
    .horizontal-track .card-box {
        min-width: 100%;
        max-width: 100%;
    }

    /* Image responsive */
    .about-feature-card .card-image {
        width: 100%;
        height: auto;
        border-radius: 20px;
        padding: 20px;
    }

    .about-feature-card .card-image img {
        max-width: 100%;
    }

    /* Better spacing */
    .about-feature-card .card-box {
        padding: 30px 20px;
    }

    .about-feature-card .card-content h2 {
        font-size: 22px;
    }

    .about-feature-card .card-content p {
        font-size: 14px;
    }
}

body.lang-ta .banner-img-placement img {
    width: 600px;
    transform: translate(-60px, 83px);
}