@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    line-height: normal;
    font-family: "Outfit", sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

.cta,
a {
    cursor: pointer;
}

:root {
    --bg-white: #fff;
    --blue-light: #c2ecff;
    --blue: #2268bc;
    --dark-blue: #000d44;
    --grey: #eeeeee;
    --green-light: #dfffd7;
    --pink: #f561b7;
    --yellow: #f9e800;

    /* Gradients */
    --green-background-cta: linear-gradient(180deg, #04ce78 37.5%, #DDFFF1 100%);
    --green-background: linear-gradient(180deg, #A9FFDA 0%, rgba(169, 255, 218, 0) 78.65%);
    --green-light-background: linear-gradient(135deg, #f8fff9 0%, #e8f8ed 100%);
}

/* heading-block  */
.heading-block {
    max-width: 750px;
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

h5.heading {
    width: 100%;
    font-size: 3.5rem;
    text-align: center;
    color: var(--blue);
    font-weight: bold;
}

p.subheading {
    font-size: 2rem;
}

/* heading-block  */
h5 {
    font-size: 2rem
}

p {
    font-size: 1.8rem;
}

.img {
    max-width: 991px;
    width: 100%;
    height: auto;
    margin: auto;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* header */

header {
    width: 100%;
    height: auto;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--bg-white);
    padding: 10px 0;
    box-shadow: 0px 3px 5px 1px rgba(208, 208, 208, 0.65);
    -webkit-box-shadow: 0px 3px 5px 1px rgba(208, 208, 208, 0.65);
    -moz-box-shadow: 0px 3px 5px 1px rgba(208, 208, 208, 0.65);
}

nav {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

img.logo {
    width: 100px;
    height: auto;
}

/* cta */

.cta {
    padding: 10px 20px;
    background: var(--blue);
    font-size: 1.5rem;
    border-radius: 4rem;
    font-weight: bold;
    text-align: center !important;
    color: white;
}

.popupclick {
    cursor: pointer;
}

/* section */
section {
    height: auto !important;
    margin: auto !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.fullwidth {
    width: 100%;
    height: auto;
    padding: 3rem 0;
}

/* banner */
.bannerimg {
    width: 100%;
    height: auto;
}

.bannerimg-inner {
    width: 100%;
    height: auto;
    display: block;
    line-height: 0;
}

.flex-box-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* service-box */
.service-box {
    flex: 1;
    flex-basis: calc(33.3% - 20px);
    padding: 30px;
    border-radius: 2rem;
    display: flex;
    justify-items: center;
    flex-direction: column;
    gap: 10px;
    border: 1px solid;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.servicepil {
    padding: 5px 10px;
    border-radius: 10px;
    align-self: flex-start;
    line-height: 15px;
}

:root {
    --bg1: linear-gradient(to top, #f5f9ff, #fdfdff);
    --bg1-border: #d5e5fd;

    --bg2: linear-gradient(to top, #fff8e6, #fdfdff);
    --bg2-border: #fae9be;

    --bg3: linear-gradient(to top, #ffe6f5, #fdfdff);
    --bg3-border: #ffcceb;

    --bg4: linear-gradient(to top, #e2f9f0, #fdfdff);
    --bg4-border: #b0fadd;

    --bg5: linear-gradient(to top, #e4e2f9, #fdfdff);
    --bg5-border: #c0b0fa;

    --bg6: linear-gradient(to top, #f6e2f9, #fdfdff);
    --bg6-border: #c2acc6;

    --bg7: linear-gradient(to top, #f9e2e2, #fdfdff);
    --bg7-border: #c65e5e;
}

/* Universal pill styling */
.servicepil {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    width: fit-content;
}

/* Card Background Classes */
.bg1 {
    background: var(--bg1);
    border-color: var(--bg1-border);
}

.bg2 {
    background: var(--bg2);
    border-color: var(--bg2-border);
}

.bg3 {
    background: var(--bg3);
    border-color: var(--bg3-border);
}

.bg4 {
    background: var(--bg4);
    border-color: var(--bg4-border);
}

.bg5 {
    background: var(--bg5);
    border-color: var(--bg5-border);
}

.bg6 {
    background: var(--bg6);
    border-color: var(--bg6-border);
}

.bg7 {
    background: var(--bg7);
    border-color: var(--bg7-border);
}

/* Improved Pill Colors */
.pil1 {
    background: #e9f1ff;
    border-color: var(--bg1-border);
    color: #3a4b63;
}

.pil2 {
    background: #fff3d6;
    border-color: var(--bg2-border);
    color: #7a5c18;
}

.pil3 {
    background: #ffe6f7;
    border-color: var(--bg3-border);
    color: #8a2f65;
}

.pil4 {
    background: #defeef;
    border-color: var(--bg4-border);
    color: #1d6b56;
}

.pil5 {
    background: #eceaff;
    border-color: var(--bg5-border);
    color: #3a2b8a;
}

.pil6 {
    background: #fae9ff;
    border-color: var(--bg6-border);
    color: #613a6b;
}

.pil7 {
    background: #ffeaea;
    border-color: var(--bg7-border);
    color: #8a2b2b;
}

.service-title h5 {
    font-size: 3rem;
}

.service-box p {
    font-size: 1.6rem;
}

.service-box p span {
    display: block;
}

.service-box .cta {
    align-self: flex-start;
    font-size: 1.3rem;
    font-weight: normal;
}

.pc1 {
    color: #3a4b63;
}

.pc2 {
    color: #7a5c18;
}

.pc3 {
    color: #8a2f65;
}

.pc4 {
    color: #1d6b56;
}

.pc5 {
    color: #3a2b8a;
}

.pc6 {
    color: #613a6b;
}


/* result  */
.owl-carousel .owl-stage {
    display: flex;
}

.owl-prev,
.owl-next {
    position: absolute;
    content: ' ';
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    width: 30px;
    height: 30px;
    font-size: 15px !important;
    background-color: var(--bg1-border) !important;
    color: var(--dark-blue) !important;
}

.owl-next {
    left: auto !important;
    right: -15px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background-color: var(--bg1-border) !important;
    transition: all 0.3s ease-in-out !important;
}

.owl-theme .owl-dots .active span {
    width: 35px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--dark-blue) !important;
}

.owl-stage .center {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.owl-stage .owl-item {
    transform: scale(0.8);
    opacity: 0.6;
    transition: all 0.4s ease-in-out;
}

.result-container {
    width: 100%;
    height: auto;
    position: relative;
    margin: 3rem 0;
}

.result-inner {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 2rem;
    overflow: hidden;
}

.result-inner iframe,
.result-inner img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    display: inline-block;
    line-height: 0;
}

.result-inner .result-notes {
    width: 100%;
    padding: 10px;
    background: var(--blue);
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

/* context-box */

.flexboxcontainer {
    align-items: center;
}

.context-box {
    flex: 1;
    flex-basis: calc(45% - 20px);
    padding: 10px;
    text-align: flex-start;
}

.textbox {
    padding-right: 5%;
}

.context-box .heading-block,
.context-box .heading-block h5.heading {
    text-align: left;
}

.context-box .cta {
    display: inline-block;
    margin: auto;
}

.imgbox {
    max-width: 350px;
}

.imgbox img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
}



.mobile-banner1 {
    display: none;
}

.copy-right-container {
    background-color: var(--blue);
}

.copy-right {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: var(--bg-white);
    font-size: 1.8rem;
}


.copy-right .cta {
    background: var(--bg-white);
    color: var(--blue);
}

.footer-mobile {
    display: none;
}

.scroll {
    position: fixed;
    bottom: 50px;
    left: 5%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: lightgreen;
    color: var(--sec-color-light);
    display: none;
    overflow: hidden;
    cursor: pointer;
}

.scroll div i {
    font-size: 1.4rem;
    animation: move 0.5s linear infinite;
}

.scroll div {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}


@keyframes move {

    0% {
        transform: translateY(-10px);
    }

    10% {
        transform: translateY(0px);
    }

}

.whatsapp-widget {
    width: 300px;
    height: auto;
    position: fixed;
    bottom: 15%;
    right: 5%;
    z-index: 999999999999;
    overflow: hidden;
}

.whatsapp-widget-inner {
    width: 100%;
    height: 150px;
    box-sizing: 2px 2px 2px 2px #c6c6c6;
    margin-bottom: 10px;
    border-radius: 10px;
    display: none;
    position: relative;
    animation: whatsappanimation 0.5s linear;
    padding: 20px;
    background: var(--bg4)
}

.aboutbrand {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px
}

.brand-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.brand-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brandname {
    width: auto;
    height: auto;
}

.brandname h3 {
    font-size: 15px;
}

.brandname p {
    font-size: 10px;
}

.buttonlink {
    position: absolute;
    bottom: 0px;
    left: 0px;
    content: ' ';
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.buttonlink a {
    width: 100%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    color: grey;
}

.buttonlink a i {
    color: #4dc247;
    font-size: 18px;
}


@keyframes whatsappanimation {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    50% {
        opacity: 50;

    }

    100% {
        opacity: 100;
        transform: translateY(0%);
    }
}

.whatsapp-widget-inner .close {
    position: absolute;
    top: 10px;
    right: 15px;
    content: ' ';
    cursor: pointer;
}

.whatsapp-widget-inner .close i {
    font-size: 15px;
}

.whatsappbutton {
    width: auto;
    height: auto;
}

.whatsappbutton button {
    padding: 10px 25px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #4dc247;
    color: white;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    margin-left: auto;
}

.whatsappbutton button i {
    font-size: 20px;
    color: white !important;
}

/* -------------------------------------------------------------- */

.fa-phone {
    color: black;
}

.fa-whatsapp {
    color: #4dc247;
}


/*location*/

.flex-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border: 2px solid #00b7b2;
    margin-top: 30px;
}

/* thankyou */
.thankyoubody {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--blue);
}

.thank-you-content {
    max-width: 650px;
    width: 90%;
    margin: auto;
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    background: var(--bg-white);
}

.thank-you-content .cta {
    margin: auto;
}

.thankyou-headingblock p.subheading {
    background: #eeeeee;
    padding: 20px 5px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* Overlay */
#overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 1000;
}

/* Popup */
#popup {
    font-family: 'Inter', sans-serif;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    display: none;
    z-index: 1001;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

#popup h3 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.25rem;
}

/* Close Button */
#close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    font-size: 24px;
    color: #94a3b8;
    transition: color 0.2s;
}

#close:hover {
    color: #287ba5;
}

.formsection {
    position: relative;
    background-color: #f8fafc;
    background-image: linear-gradient(to right, rgba(64, 82, 108, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(64, 82, 108, 0.08) 1px, transparent 1px);

    background-size: 40px 40px;
}


.razorpay-form {
    font-family: 'Inter', sans-serif;
    background: var(--blue);
    padding: 30px;
    border-radius: 16px;
    max-width: 400px;
    margin: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08),
        0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

#mainPayForm {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--blue);
}

#mainPayForm .form-group {
    flex: 1;
    flex-basis: calc(33% - 1rem);
}

#mainPayForm .submit-btn {
    width: 100%;
    max-width: 300px;
}

.razorpay-form .submit-btn {
    width: 100%;
    max-width: 100%;
}

#mainPayForm .submit-btn input,
.razorpay-form .submit-btn input {
    background: var(--bg-white) !important;
    color: var(--blue);
    font-size: 2rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.razorpay-form label {
    margin-bottom: 20px;
    font-size: 35px;
    color: #ffffff;
    font-weight: 600;
    display: block;
    width: 100%;
    text-transform: capitalize;
}

.form-group {
    position: relative;
    margin-bottom: 18px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.razorpay-form input:focus {
    border-color: #3399cc;
    box-shadow: 0 0 0 3px rgba(51, 153, 204, 0.1);
}

input[type="submit"]:disabled {
    background: #cbd5e1 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.input-success {
    color: #04ce78;
}

.input-validateerror {
    color: #dc2626;
}

.error {
    font-size: 12px;
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    pointer-events: none;
}

.input-error {
    border-color: #dc2626 !important;
}

#mainPayForm .trusted-logos {
    justify-content: end;
}


.trusted-logos {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.users {
    display: flex;
    align-items: center;
}

.user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5f7fa3, #8fa9c4);
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-left: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user:first-child {
    margin-left: 0;
}

.user svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.user.more {
    background: linear-gradient(135deg, #40526c, #2c3e50);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
}

/* Text */
.trust-text {
    font-size: 15px;
    color: white;
    font-weight: 500;
}