/* @import url("fonts.css"); */

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

:root {
    --white-clr: #fff;
    --black-clr: #0f110f;
    --darkGrey-clr: #28375c;
    --darkBlue-clr: #0a1736;
    --blue-clr: #0064e1;
    --grey-clr: #565e72;
    --light-blue: #ebf3fd;
    --circle-size: clamp(220px, 60vw, 460px);
    --icon-size: clamp(34px, 8vw, 76px);
    --radius: calc(var(--circle-size) / 2 - var(--icon-size) / 2);
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
li {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.5;
}

h1,
h2,
h3 {
    padding: 0;
    margin: 0;
}

p+p {
    padding-top: 0rem;
    margin-top: 0.1rem;
}

img {
    display: block;
}

.small-text {
    font-size: clamp(0.8rem, 0.9vw, 1rem);
}

#site-header {
    position: sticky;
    top: 0;
    z-index: 99;
}

.topBar {
    width: 100%;
    background: var(--darkBlue-clr);
    padding: 0.2rem 2rem;
    display: flex;
    color: var(--white-clr);
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
}

.topBar .lftSec {
    display: flex;
}

.topBar .lftSec ul {
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.topBar .lftSec ul li {
    list-style: none;
    font-size: clamp(0.8rem, 0.9vw, 1rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topBar .lftSec ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topBar .rgtSec ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.topBar .rgtSec ul li {
    list-style: none;
}

/* Layout helpers */

.container {
    width: min(1440px, 100% - 1.5rem);
    margin-inline: auto;
}

.section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-bottom: 2rem;
}

.section-head--center {
    text-align: center;
    margin-inline: auto;
}

.section-head--center p,
.section-head--center h2 {
    margin-inline: auto;
}

.eyebrow {
    font-size: 1.1875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--darkGrey-clr);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.bg-eyebrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    background: linear-gradient(90deg, #e0e7f0 0%, #e4d8f3 100%);
    border-radius: 60px;
}

.sectionHeading {
    font-style: normal;
    font-weight: 700;
    font-size: 2.8rem;
    text-align: center;
    color: var(--black-clr);
}

.sectionPara {
    font-style: normal;
    font-weight: 400;
    font-size: 1.2875rem;
    text-align: center;
    color: var(--grey-clr);
}

/* Header */

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(80px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    padding: 0rem 2rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    z-index: 999;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: stretch;
}

.header .logo {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    padding: 1rem 0;
}

.nav {
    font-size: 0.95rem;
    min-height: 100%;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 2.75rem;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav ul>li {
    list-style: none;
    height: 100%;
}

.nav li>a {
    font-size: clamp(0.8rem, 1.25vw, 1.3125rem);
    color: var(--darkGrey-clr);
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav li>a:hover {
    color: var(--blue-clr);
}

.nav li>a img {
    width: 13px;
    margin-bottom: -2px;
}

.nav a:hover {
    color: var(--darkBlue-clr);
}

/* Mega menu wrapper */

.nav__item--mega {
    position: static;
    /* important: so mega can go full width */
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    /* full width under header */
    top: 100%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.2s ease;
    z-index: 20;
}

.mega-menu__inner {
    width: min(90%, 100% - 3.5rem);
    margin: 1.5rem auto;
    display: flex;
    /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
    gap: 1.75rem;
    justify-content: space-between;
}

/* Show on hover (desktop) */

.nav__item--mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Columns */

.mega-col {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.mega-col .innerCol {
    padding: 1rem;
}

.mega-col .innerCol:hover {
    background-color: var(--light-blue);
}

.mega-col h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--darkBlue-clr);
    margin-bottom: 0rem;
    margin-top: -0.3rem;
}

.mega-col p {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--grey-clr);
    margin: 0.2rem 0 0;
}

.mega-col a {
    display: block;
    font-size: 0.95rem;
    color: #111827;
    text-decoration: none;
    padding: 0.25rem 0 0 1.5rem;
    position: relative;
}

.mega-col a::before {
    position: absolute;
    content: "";
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    display: block;
    left: -0rem;
}

.mega-col .innerCol:nth-child(1) a::before {
    background: #01c2e6;
    /* 1st */
}

.mega-col .innerCol:nth-child(2) a::before {
    background: #f46461;
    /* 2nd */
}

.mega-col .innerCol:nth-child(3) a::before {
    background: #8cc63e;
    /* 3rd */
}

.mega-col a:hover {
    color: #2563eb;
}

.mega-col--highlight {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1rem 1.2rem;
}

.mega-col--highlight p {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0.5rem 0 0.75rem;
}

/* Mobile: hide mega or convert later */

@media (max-width: 767px) {
    .mega-menu {
        /* position: static;
    box-shadow: none;
          transform: none;
          opacity: 1;
          visibility: visible;
          border-top: none; */
        padding: 1rem;
        position: absolute;
        margin-top: 0.5rem;
        overflow: scroll;
        height: 55vh;
    }

    .mega-menu__inner {
        /* grid-template-columns: 1fr; */
        margin: 0.5rem 0 0;
        flex-direction: column;
        width: 100%;
    }
}

/* ++++++++++++++++++++++++ */

.header__cta {
    font-size: clamp(0.8rem, 1.25vw, 1.3125rem);
}

.nav-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 1.4rem;
    cursor: pointer;
}

.bookBtn {
    display: flex;
    align-items: center;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 1rem;
    cursor: pointer;
    background: transparent;
    font-weight: 500;
    height: fit-content;
}

.btn--primary {
    background: var(--black-clr);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
    text-transform: uppercase;
}

.btn--primary:hover {
    background: var(--blue-clr);
}

.btn--outline {
    border-color: var(--border);
    color: var(--text);
    background: #ffffff;
}

.btn--ghost {
    border-color: rgba(148, 163, 184, 0.4);
    color: var(--text-soft);
    background: transparent;
}

/* Hero */

.hero {
    background: radial-gradient(circle at top left, #e0f2fe 0, transparent 48%), radial-gradient(circle at top right, #fee2e2 0, transparent 45%);
    padding: 3.5rem 0 3rem;
}

.hero__grid {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    padding-bottom: 0rem;
    align-items: stretch;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero__content,
.hero-img {
    flex: 1 1 0;
    /* equal width, auto height */
}

.hero__grid .hero-img {
    display: flex;
    align-items: end;
}

.hero__grid .hero-img img {
    width: 100%;
}

.hero__grid .hero__content {
    margin-left: 4rem;
    align-items: center;
    padding: 3rem 0;
}

.hero__content h1 {
    font-size: clamp(2.2rem, 5.6vw, 5.1rem);
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: var(--blue-clr);
}

.hero__subtitle {
    color: var(--darkGrey-clr);
    font-size: clamp(1rem, 3.6vw, 1.85rem);
    margin-bottom: 1.4rem;
    font-weight: 400;
}

.hero__content p {
    color: var(--darkGrey-clr);
    font-size: clamp(1rem, 2.6vw, 1.1rem);
}

.circle-section {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    flex: 1;
}

.circle-container {
    position: relative;
    max-width: 440px;
    max-height: 430px;
    width: 100%;
    height: 100%;
}

/* rotating rings */

.circle-outer {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(79, 70, 229, 0.25);
    position: relative;
    animation: rotateOuter 20s linear infinite;
}

.circle-inner {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 2px solid rgba(79, 70, 229, 0.4);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateInner 25s linear infinite reverse;
}

.circle-center {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.45);
}

/* icons wrapper also rotating */

.circle-icons {
    position: absolute;
    inset: 0;
    animation: rotateOuter 20s linear infinite;
}

/* icons on the edge */

.circle-icon {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: counterRotate 20s linear infinite;
}

@keyframes counterRotate {
    to {
        transform: rotate(-360deg);
    }
}

/* positions (8 icons, 45deg gap, radius ~140px) */

/* yahan hum base position set karte hain, rotation animation wrapper par hai */

.circle-icon:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-icon:nth-child(2) {
    top: 18%;
    left: 85%;
    transform: translate(-50%, -50%);
}

.circle-icon:nth-child(3) {
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
}

.circle-icon:nth-child(4) {
    top: 82%;
    left: 85%;
    transform: translate(-50%, -50%);
}

.circle-icon:nth-child(5) {
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
}

.circle-icon:nth-child(6) {
    top: 82%;
    left: 15%;
    transform: translate(-50%, -50%);
}

.circle-icon:nth-child(7) {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.circle-icon:nth-child(8) {
    top: 18%;
    left: 15%;
    transform: translate(-50%, -50%);
}

/* rings animation */

@keyframes rotateOuter {
    to {
        transform: rotate(360deg);
    }
}

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

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
}

.hero__stats {
    background: var(--blue-clr);
    padding: 2.5rem;
}

.hero__stats .inner {
    width: min(1440px, 100% - 1.5rem);
    margin-inline: auto;
    display: flex;
    gap: 5.5rem;
    justify-content: center;
    color: var(--white-clr);
}

.hero__stats .inner .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat__value {
    font-weight: 400;
    color: var(--white-clr);
    font-size: 3.625rem;
    display: flex;
    gap: 1rem;
}

.stat__label {
    display: block;
    font-size: 1.1875rem;
    color: var(--white-clr);
}

/* Hero visual – circular graphic */

.hero__badge {
    position: relative;
    z-index: 2;
    padding: 1.2rem 1.6rem;
    border-radius: 20px;
    background: #0f172a;
    color: #f9fafb;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* About */

.about {
    padding: 3.5rem 0 3rem;
}

.about__grid {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.about__content {
    flex: 2;
    padding-right: 2rem;
}

.about__content h2 {
    font-size: 1.9375rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: var(--black-clr);
}

.about__content ul {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 1.5rem 2rem 3rem 0;
}

.about__content ul li {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 20px;
    gap: 10px;
    background: #e0e7f0;
    border-radius: 10px;
    flex: 1;
    font-size: 1.1875rem;
    font-weight: 400;
    color: var(--darkGrey-clr);
    text-align: center;
}

.about__content p {
    color: var(--grey-clr);
    margin-bottom: 2.25rem;
    font-size: 1.1875rem;
}

.about__image {
    min-height: 220px;
}

.about__image img {
    max-width: 90%;
}

/* Services */

.services {
    padding: 4rem 0 4rem;
    background: var(--bg);
}

.services__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.service-card {
    background: #ffffff;
    box-sizing: border-box;
    border: 2px solid var(--darkGrey-clr);
    box-shadow: 0px 1px 3.5px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    flex: 0 0 calc(33% - 24px);
    min-height: 18rem;
}

.service-card:hover {
    border: 2px solid var(--blue-clr);
}

.service-card a {
    display: block;
    padding: 1.5rem;
    height: 100%;
}

.service-card .topRow {
    display: flex;
    justify-content: space-between;
}

.service-card h3 {
    font-weight: 500;
    font-size: 1.3125rem;
    line-height: 32px;
    text-align: left;
    color: var(--darkGrey-clr);
    align-self: stretch;
    flex-grow: 0;
}

.service-card .iconBox img {
    filter: grayscale(95%) brightness(0.6);
}

.service-card:hover .iconBox img {
    filter: grayscale(0%) brightness(1);
}

.service-card .actBox {
    width: 52.09px;
    height: 52.09px;
    border: 2px solid var(--darkGrey-clr);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -0.5rem -0.5rem 0 0;
}

.service-card .actBox img {
    filter: invert(100%);
}

.service-card:hover .actBox {
    background: var(--blue-clr);
    border: none;
}

.service-card:hover .actBox img {
    filter: invert(0%);
}

.service-card p {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: var(--grey-clr);
    margin: 0.5rem 0 0;
}

.card__tagArea {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    margin-top: 1rem;
    padding: 0;
    flex-wrap: wrap;
}

.service-card__tag {
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: var(--light-blue);
    color: var(--darkBlue-clr);
    gap: 0.3rem;
}

.service-card__tag img {
    width: 14px;
    height: auto;
}

/* ctaBox */

.ctaSec {
    padding: 4.5rem 0 0rem;
}

.ctaBox {
    background: #1a3a8d;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.ctaBox .bgImg {
    position: relative;
}

.ctaBox .bgImg img {
    width: 100%;
    background: #1a3a8d;
    mix-blend-mode: overlay;
    opacity: 0.9;
}

.ctaCnt {
    position: absolute;
    z-index: 1;
    margin: auto;
    top: 50%;
    left: 50%;
    right: 0;
    max-width: 80%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.ctaCnt h2 {
    font-size: 2.5625rem;
    color: var(--white-clr);
}

.ctaCnt p {
    font-size: 1rem;
    color: var(--white-clr);
    font-weight: 300;
}

.ctaCnt .ctabtn {
    background: #fff;
    color: var(--darkBlue-clr);
    font-size: 1rem !important;
    font-weight: 600;
    margin-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.ctaCnt .ctabtn:hover {
    background: var(--black-clr);
    color: var(--white-clr);
}

/* Brands */

.brands {
    margin-top: 2.5rem;
    border-radius: 0 0 20px 20px;
    padding: 0rem 1.8rem 1rem;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
    margin-bottom: 4rem;
}

.brands h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    text-align: center;
    position: relative;
    top: -1rem;
}

.brands h3::before {
    content: "";
    width: 100%;
    border-top: 1px solid #c1c1c1;
    display: block;
    position: absolute;
    top: 45%;
}

.brands h3 span {
    background: #fff;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}

.brands__row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.brands__row ul {
    /* display: flex; */
    justify-content: space-evenly;
    width: 100%;
}

.clientSlider {
    width: 100%;
}

.brands__row ul li {
    list-style: none;
}

.brands__row ul li img {
    height: 60px;
    max-width: 80%;
    width: 100%;
    object-fit: contain;
}

/* Why choose us */

.why {
    padding: 0rem 0 3rem;
    margin-top: 4rem;
    background: linear-gradient(90deg, rgba(224, 231, 240, 0.4) 0%, rgba(228, 216, 243, 0.4) 100%);
    position: relative;
}

.why::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/map-img.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center center;
    top: 5rem;
    z-index: -1;
}

.why__grid {
    display: flex;
    gap: 1.3rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 3rem;
}

.why__item {
    padding: 0;
    flex: 0 0 calc(39% - 8px);
    box-sizing: border-box;
    display: flex;
    gap: 0.8rem;
}

.why .headingSecond {
    font-weight: 400;
    max-width: 800px;
    margin: auto;
    margin-top: 0.5rem;
}

.why__grid .contentSec {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why__grid .contentSec h3 {
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
}

.why__grid .contentSec p {
    font-size: 0.88rem;
    color: var(--text-soft);
    margin: 0rem 0 0 0;
}

/* Process */

.process {
    padding: 3rem 0 3rem;
    background: linear-gradient(to bottom, #f9fafb, #eff6ff);
}

.processArea {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.process__slider {
    margin-top: 1.6rem;
    padding-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: flex-end;
}

.process__slider.right {
    align-items: flex-start;
}

.process__slider.right .process__step:nth-child(2) {
    margin-left: 3rem;
}

.process__step:nth-child(2) {
    margin-right: 3rem;
}

.process__step {
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid rgba(147, 195, 240, 0.36);
    box-shadow: -1px -1px 12px rgb(0 0 0 / 16%);
    border-radius: 110px;
    display: flex;
    padding: 0.5rem 0.5rem 0.5rem 2.5rem;
    align-items: center;
    gap: 1rem;
    max-width: 90%;
}

.process__slider.right .process__step {
    padding: 0.5rem 2.5rem 0.5rem 0.5rem;
}

.process__step h3 {
    margin: 0;
    padding: 0;
    font-size: 1.125rem;
    color: var(--darkGrey-clr);
    font-weight: 600;
}

.process__step p {
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: var(--grey-clr);
}

.process__step .noBox {
    max-width: 60px;
    width: 60px;
    height: 60px;
    background: #00bbff;
    border-radius: 100%;
    font-size: 2.125rem;
    font-weight: 500;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    min-width: 60px;
    color: var(--white-clr);
}

/* Testimonial */

.testimonial {
    padding: 5rem 0 5rem;
    background: linear-gradient(96.53deg, rgba(239, 246, 255, 0.5) 8.23%, rgba(251, 239, 255, 0.4) 48.51%, rgba(239, 246, 255, 0.5) 88.78%);
}

.testimonial__grid {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1180px;
    margin: auto;
    border-radius: 2rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    flex-direction: column;
    margin-top: 2rem;
}

.testimonial__grid .innerWrap {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.testimonial__grid .slick-list {
    overflow: hidden;
}


.testimonial__grid .slick-slide {
    height: auto;
    margin: 0;
}


.testimonial__grid .item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonial__grid button.slick-prev.slick-arrow {
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-45%);
    z-index: 1;
}

.testimonial__grid button.slick-next.slick-arrow {
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-45%);
    z-index: 1;
}

.testimonial__grid .slick-dots {
    position: absolute;
    bottom: 1.5rem;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.testimonial__grid .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.testimonial__grid .slick-dots li.slick-active button {
    background-color: var(--blue-clr);
}

.testimonial__grid .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #d5d5d5;
    border-radius: 1rem;
}


.testimonial__grid .slick-prev, .testimonial__grid .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: var(--darkBlue-clr);
}

.testimonial__grid .slick-next {
    right: -25px;
}

.testimonial__grid .slick-prev {
    left: -25px;
}

.testimonial__grid .slick-prev:before {
    content: '←';
    color: #fff;
    font-size: 2rem;
}

.testimonial__grid .slick-next:before {
    content: '→';
    color: #fff;
    font-size: 2rem;
}


.testimonial__image {
    min-height: 200px;
}

.testimonial__content h2 {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
    font-style: normal;
    font-weight: 700;
    font-size: 51px;
    line-height: 60px;
    color: #000000;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.testimonial__content .saysText {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    max-width: 90%;
}

.testimonial__content .saysText .commaSec img {
    width: 1.5rem;
}

.testimonial__content p {
    margin: 0rem;
    margin-bottom: 1.3rem;
    font-size: 1.1875rem;
    color: var(--grey-clr);
    font-weight: 400;
}

.testimonial__author {
    font-weight: 600;
}

.testimonial__author span {
    font-weight: 400;
    color: #c1c1c1;
    display: block;
}

/* Tools */

.tools {
    padding: 4rem 0 5rem;
}

.tools h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 51px;
    /* identical to box height */
    text-align: center;
    color: #000000;
}

.tools__grid {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 1180px;
    margin: auto;
}

.tools__grid span {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e7f0;
    font-size: 0.86rem;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.tools__grid span img {
    height: auto;
    max-height: 70px;
}

/* Blog */

.blog {
    padding: 5rem 0 6rem;
    background: linear-gradient(96.53deg, rgba(239, 246, 255, 0.5) 8.23%, rgba(251, 239, 255, 0.4) 48.51%, rgba(239, 246, 255, 0.5) 88.78%);
}

.blog__grid {
    margin-top: 1.7rem;
    display: flex;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    max-width: 1180px;
    margin: auto;
    align-items: center;
    justify-content: center;
}

.blog__grid_slider {
    overflow: hidden;
}

.blog__grid_slider .slick-track {
    gap: 1rem;
    padding: 1rem 0rem;
}

.blog__grid_slider .slick-list {
    overflow: hidden;
    margin: 0 -1.65rem;
    padding: 0 0 !important;
}

.blog__grid_slider .slick-slide {
    height: auto;
    margin: 0 0rem;
    box-sizing: border-box;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem 1rem;
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.15);
    width: 100%;
    /* width: 100% !important; */
}

.blog h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 2.8rem;
    text-align: center;
    color: #000000;
}

.blog .blogImg {
    height: 240px;
}

.blog .blogImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.blog-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.4rem;
    margin-top: 1rem;
    color: var(--darkGrey-clr);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card p {
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
    font-weight: 400;
    color: var(--grey-clr);
}

.blog-card a {
    font-size: 0.875rem;
    color: var(--blue-clr);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    gap: 0.3rem;
    margin-top: 0.7rem;
}

.blog-card a:hover {
    color: var(--darkGrey-clr);
}

.blog-card .caleTxt {
    color: #b2bfcf;
    font-size: 0.875rem;
    display: flex;
    padding: 1rem 0 0;
}

@media (min-width: 1025px) {
    .blog__grid_slider .slick-slide {
        width: 30% !important;
    }

    .blog__grid_slider .slick-track {
        width: 100% !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

/* FAQ */

.faq {
    padding: 5rem 0;
}

.faq__grid {
    display: flex;
    gap: 2.2rem;
    align-items: flex-start;
    padding-top: 2rem;
}

.faq__items {
    max-width: 1180px;
    width: 100%;
    margin: auto;
}

.faq h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 51px;
    /* identical to box height */
    text-align: center;
    color: #000000;
}

.faq-item {
    border-radius: 16px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e0e7f0;
    box-shadow: 0px 1px 3.5px -4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 1.1rem 1rem;
    background: #ffffff;
    margin-bottom: 0.6rem;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 32px;
    /* identical to box height */
    color: #28375c;
    padding-right: 2.5rem;
    position: relative;
}

.faq-item[open] summary img {
    float: right;
    margin: 0.7rem 0.2rem 0;
    transform: rotate(180deg);
}

.faq-item summary img {
    float: right;
    margin: 0.7rem 0.2rem 0;
    top: 0;
    position: absolute;
    right: 0;
}

.faq-item p {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--grey-clr);
}

.faq__image {
    height: 100%;
    border-radius: 20px;
    box-sizing: border-box;
    overflow: hidden;
    max-height: 480px;
    display: none;
}

.faq__image img {
    object-fit: cover;
    width: 100%;
}

/* Footer */

.footer {
    background: #000000;
    color: #e5e7eb;
    padding: 2.7rem 0 1.8rem;
}

.topFooterRow {
    display: flex;
    justify-content: space-between;
}

.topFooterRow .rightEmail-area {
    background-color: #fff;
    display: flex;
    height: auto;
    border-radius: 25px;
    padding: 0.3rem;
    position: relative;
    height: 100%;
    align-items: center;
    max-width: 420px;
    width: 100%;
}

.topFooterRow .rightEmail-area input {
    margin-left: 0.5rem;
    height: 42px;
    padding: 0 0.2px;
    border: none;
    flex: 1;
    font-size: 1rem;
}

.topFooterRow .rightEmail-area a {
    background: var(--blue-clr);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__grid {
    display: flex;
    gap: 2.2rem;
    align-items: flex-start;
    padding-top: 2rem;
}

.footer__brand {
    flex: 2;
}

.footer__brand p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 0.6rem;
    max-width: 90%;
}

.footer__brand h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.footer__social {
    margin-top: 1.7rem;
    display: flex;
    gap: 1.6rem;
    font-size: 0.85rem;
}

.footer__social a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer__col {
    flex: 1;
}

.footer__col h4 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer__col a,
.footer__col p {
    display: block;
    font-size: 1.0625rem;
    color: #b2bfcf;
    text-decoration: none;
    margin-bottom: 0.3rem;
}

.footer__col ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__col ul li {
    list-style: none;
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.footer__form {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__form input {
    border-radius: 999px;
    border: 1px solid #4b5563;
    background: #020617;
    padding: 0.45rem 0.9rem;
    color: #f9fafb;
    font-size: 0.86rem;
}

.footer__bottom {
    margin-top: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid #111827;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #6b7280;
}

/* inner page */

.innerPageHead {
    background-color: #0064e1;
    position: relative;
    padding-bottom: 3rem;
    min-height: max-content;
    overflow: auto;
    z-index: 0;
}

.innerPageHead .imgbox {
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
}

.innerPageHead .imgbox::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 129, 251, 0) 14.14%, #0064e1 73.67%);
    display: block;
    left: -2rem;
}

.innerPageHead .imgbox img {
    height: 100%;
    width: auto;
}

.innerPageHead .cntBox {
    position: relative;
    z-index: 99;
    max-width: 40%;
    top: 1rem;
    padding: 0 0.5rem;
}

.innerPageHead .cntBox h1 {
    font-weight: 400;
    font-size: 2rem;
    color: var(--white-clr);
    margin-top: 1.5rem;
}

.innerPageHead .cntBox h2 {
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--white-clr);
    margin-top: 1.5rem;
}

.innerPageHead .cntBox p {
    font-size: 1.1875rem;
    color: var(--white-clr);
    font-weight: 300;
}

.innerPageHead .cntBox a {
    max-width: max-content;
    margin-top: 0.5rem;
}

.innerPageHead .cntBox a:hover {
    background: #fff;
    color: var(--black-clr);
}

.aboutTopArea {
    padding-top: 3rem;
}

.aboutTopArea .section-head {
    max-width: 1200px;
    margin: auto;
}

.innerMainImg {
    max-height: 420px;
    border-radius: 20px;
    overflow: hidden;
}

.innerMainImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 2rem 0;
}

.weDrive {
    padding: 5rem 0;
}

.headSec {
    max-width: 1080px;
    margin: auto;
}

.weDrive h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 2.8rem;
    text-align: center;
    color: #000000;
}

.weDrive p {
    margin: 0;
    padding: 0.6rem 0;
}

.weDrive .servBox {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.weDrive .servBox .card {
    background: #ffffff;
    box-sizing: border-box;
    border: 2px solid var(--darkGrey-clr);
    box-shadow: 0px 1px 3.5px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    flex: 0 0 calc(33% - 24px);
    min-height: 16rem;
    padding: 1.5rem;
}

.weDrive .servBox .card .topRow {
    display: flex;
    justify-content: space-between;
}

.weDrive .servBox .card .iconBox img {
    /* filter: grayscale(95%) brightness(0.6); */
}

.weDrive .servBox .card h3 {
    font-weight: 500;
    font-size: 1.3125rem;
    line-height: 32px;
    text-align: center;
    color: var(--darkGrey-clr);
    align-self: stretch;
    flex-grow: 0;
}

.weDrive .servBox .card p {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: var(--grey-clr);
    margin: 0rem 0 0;
}

.elevatArea {
    background: linear-gradient(90deg, rgba(224, 231, 240, 0.4) 0%, rgba(228, 216, 243, 0.4) 100%);
    padding: 5rem;
}

.elevatArea .headSec h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 2.8rem;
    text-align: center;
    color: #000000;
}

.elevatArea .pointBox {
    padding: 1.5rem 0;
}

.elevatArea .pointBox ul {
    display: flex;
    margin: auto;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.elevatArea .pointBox ul li {
    padding: 10px 30px;
    background: #28375c;
    border-radius: 50px;
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
    font-size: 1.5rem;
    color: var(--white-clr);
    font-weight: 300;
}

.elevatArea .srvPnl {
    padding: 0rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.elevatArea .srvPnl .colItem {
    flex: 1 1 calc(33.333% - 1.5rem);
    /* 3 per row, minus gap */
    /* background: #f5f5f5; */
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    gap: 1rem;
}

.elevatArea .srvPnl .colItem .cntBoxItem h2 {
    font-size: 1.1875rem;
    color: var(--darkBlue-clr);
    font-weight: 500;
    margin: 0;
}

.elevatArea .srvPnl .colItem .cntBoxItem p {
    font-size: 1.0625rem;
    color: var(--grey-clr);
    font-weight: 400;
    margin: 0.5rem 0 0 0;
}

/* Purpose */

.purposeSec {
    padding: 5rem 0;
    display: flex;
    align-items: center;
}

.purposeSec .leftCntBox h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 2.8rem;
    color: #000000;
}

.purposeSec .leftCntBox ul {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    margin: 2rem 0 0 0;
    padding: 0;
}

.purposeSec .leftCntBox li {
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid rgba(147, 195, 240, 0.36);
    box-shadow: -1px -1px 12px rgb(0 0 0 / 16%);
    border-radius: 110px;
    display: flex;
    padding: 0.5rem 0.5rem 0.5rem 0.75rem;
    align-items: center;
    gap: 1rem;
    max-width: 90%;
}

.purposeSec .leftCntBox li h3 {
    margin: 0;
    padding: 0;
    font-size: 1.125rem;
    color: var(--darkGrey-clr);
    font-weight: 600;
}

.purposeSec .leftCntBox li p {
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: var(--grey-clr);
}

.purposeSec .noBox {
    max-width: 60px;
    width: 60px;
    height: 60px;
    background: #00bbff;
    border-radius: 100%;
    font-size: 2.125rem;
    font-weight: 500;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    min-width: 60px;
    color: var(--white-clr);
}

/* our guide */

.ourGuide {
    padding: 5rem 0;
}

.ourGuide h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 2.8rem;
    text-align: center;
    color: #000000;
}

.ourGuide p {
    margin: 0;
    padding: 0.6rem 0;
}

.ourGuide .servBox {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.ourGuide .servBox .card {
    background: #0064e1;
    box-sizing: border-box;
    box-shadow: 0px 1px 3.5px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    flex: 0 0 calc(25% - 24px);
    min-height: auto;
    padding: 1.5rem;
    color: var(--white-clr);
}

.ourGuide .servBox .card h3 {
    font-weight: 500;
}

.ourGuide .servBox .card p {
    font-weight: 400;
}

/*  Process for Success */

.processSuccess {
    background: linear-gradient(90deg, rgba(224, 231, 240, 0.4) 0%, rgba(228, 216, 243, 0.4) 100%);
    padding: 5rem;
}

.processSuccess h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 2.8rem;
    text-align: center;
    color: #000000;
}

.processSuccess ul {
    gap: 1.7rem;
    margin: 2rem 0 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.processSuccess ul li {
    flex: 1 1 calc(50% - 1.5rem);
    background: #f5f5f5;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    gap: 1rem;
    border: 1px solid rgba(147, 195, 240, 0.36);
    align-items: flex-start;
}

.processSuccess ul li .noBox {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 60px;
    min-height: 60px;
    background: #00bbff;
    text-align: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--white-clr);
}

.processSuccess ul li h3 {
    margin: 0;
    padding: 0;
    font-size: 1.125rem;
    color: var(--darkGrey-clr);
    font-weight: 600;
}

.processSuccess ul li p {
    margin: 0.3rem 0 0 0;
    padding: 0;
    font-size: 0.875rem;
    color: var(--grey-clr);
}

/* gAdtopSec */

.gAdtopSec {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

.gAdtopSec .leftBox {
    display: flex;
    flex-direction: column;
    padding-left: 3rem;
    text-align: center;
    padding-right: 3rem;
}

.gAdtopSec .leftBox h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    color: #000000;
    margin-bottom: 1.5rem;
}

.gAdtopSec .leftBox h3 {
    font-weight: 400;
    font-size: 32px;
    color: #444b54;
}

.gAdtopSec .leftBox p {
    font-size: 1.1875rem;
    color: var(--grey-clr);
}

.gAdtopSec .leftBox p+p {
    padding-top: 0rem;
    margin-top: 0.1rem;
}

.gAdtopSec .rightBox {
    display: flex;
    grid-area: 2rem;
    flex-direction: column;
}

.typesOfAds {
    padding: 5rem 0 0;
}

.typesOfAds h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 2.8rem;
    text-align: center;
    color: #000000;
}

.typesOfAds .itemContainer {
    display: flex;
    gap: 1.3rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1.3rem;
    margin: 0;
    padding: 0 1rem;
}

.typesOfAds .item {
    padding: 0;
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    /* Frame 68 */
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    gap: 9px;
    background: rgba(224, 231, 240, 0.44);
    border-radius: 10px;
}

.typesOfAds .item h3 {
    font-size: 1.3125rem;
    color: var(--darkBlue-clr);
    font-weight: 400;
    text-align: center;
}

.typesOfAds .item p {
    margin: 0;
    padding: 0;
    text-align: center;
}

.innerToolSlider .slick-track {
    display: flex;
    gap: 1rem;
}

.innerToolSlider .slick-track span {
    height: auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 1.5rem 1.5rem;
    width: max-content !important;
}

.whatsapp-float {
    display: none;
}

.dm-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    /* default hidden */
    align-items: center;
    justify-content: center;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0; */
    background: rgba(0, 0, 0, 0.6);
    /* dark transparent layer */
    z-index: 999;
}

.dm-popup.is-active {
    display: flex;
    /* show when active */
}

.dm-popup__box {
    background: #fff;
    max-width: 460px;
    width: 100%;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

button.dm-popup__close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    background: #fff;
    border: 1px solid #c1c1c1;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 100;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* === Popup base === */

/* Popup box */

.dm-popup__box {
    position: relative;
    width: 100%;
    max-width: 540px;
    padding: 32px 32px 28px;
    border-radius: 20px;
    background: var(--blue-clr);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.4);
    color: #ffffff;
    z-index: 1;
}

/* Heading */

.dm-popup__head {
    text-align: center;
    margin-bottom: 24px;
}

.dm-popup__head h2 {
    font-size: 2rem;
    margin-bottom: 4px;
    margin-top: 1rem;
    font-weight: 500;
}

.dm-popup__head p {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 4px;
}

.dm-popup__head span {
    font-size: 15px;
    opacity: 1;
    color: #78c0ff;
    font-weight: 500;
}

/* Form layout */

.dm-popup__form {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 18px 20px;
    margin-bottom: 20px;
}

.dm-popup__row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.dm-popup__field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dm-popup__field label {
    font-size: 12px;
    margin-bottom: 4px;
    opacity: 0.9;
}

/* Inputs & select */

.dm-popup__field input,
.dm-popup__field select {
    width: 100%;
    padding: 17px 12px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    outline: none;
    background: #ffffff;
    color: #111827;
}

.dm-popup__field select {
    /* appearance: none;
-webkit-appearance: none; */
}

/* Checkbox line */

.dm-popup__check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #e5e7eb;
    margin: 6px 2px 16px;
}

.dm-popup__check input {
    width: 14px;
    height: 14px;
}

/* Submit button */

.dm-popup__submit {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 11px 16px;
    background: #132348;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.dm-popup__submit:hover {
    background: #0f1935;
    transform: translateY(-1px);
}

/* WhatsApp block */

.dm-popup__whatsapp {
    text-align: center;
    color: #e5e7eb;
    font-size: 13px;
}

.dm-popup__whatsapp p {
    margin-bottom: 8px;
}

/* WhatsApp button */

.dm-popup__wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    background: #25d366;
    color: #064b0c;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.dm-popup__wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

.dm-contactForm {
    padding: 60px 16px;
    display: flex;
    justify-content: center;
}

.dm-contactForm__card {
    width: 100%;
    max-width: 640px;
    border-radius: 24px;
    padding: 32px 32px 26px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
}

/* Head */

.dm-contactForm__head {
    text-align: center;
    margin-bottom: 20px;
}

.dm-contactForm__title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.dm-contactForm__subtitle {
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 1.2rem;
    color: var(--grey-clr);
}

.dm-contactForm__note {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Form */

.dm-contactForm__form {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 18px 20px;
    margin-bottom: 22px;
}

.dm-contactForm__row {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.dm-contactForm__field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dm-contactForm__field label {
    font-size: 1rem;
    margin-bottom: 4px;
    opacity: 0.9;
    color: var(--darkGrey-clr);
}

/* Inputs & select */

.dm-contactForm__field input,
.dm-contactForm__field select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 3px;
    border: none;
    font-size: 0.9rem;
    outline: none;
    background: #ffffff;
    color: #111827;
    border: 1px solid #c1c1c1;
    min-height: 47px;
}

/* Custom select arrow */

.dm-contactForm__selectWrap {
    position: relative;
}

.dm-contactForm__selectWrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 32px 10px 12px;
}

.dm-contactForm__selectWrap::after {
    content: "▾";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #4b5563;
    pointer-events: none;
}

/* Consent */

.dm-contactForm__consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--darkBlue-clr);
    margin: 6px 2px 16px;
}

.dm-contactForm__consent input {
    width: 14px;
    height: 14px;
}

/* Submit button */

.dm-contactForm__submit {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 11px 16px;
    background: #132348;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.dm-contactForm__submit:hover {
    background: #0f1935;
    transform: translateY(-1px);
}

/* WhatsApp CTA */

.dm-contactForm__whatsapp {
    text-align: center;
    color: var(--grey-clr);
    font-size: 13px;
}

.dm-contactForm__whatsappText {
    margin-bottom: 8px;
}

.dm-contactForm__whatsappBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: #25d366;
    color: #0b1120;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.dm-contactForm__whatsappBtn:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 600px) {
    .dm-contactForm__card {
        padding: 24px 20px 22px;
    }

    .dm-contactForm__row {
        flex-direction: column;
    }
}

/* Responsive */

@media (max-width: 600px) {
    .dm-popup__box {
        margin: 0 16px;
        padding: 0px 20px 20px;
        max-width: calc(100% - 32px);
    }

    .dm-popup__row {
        flex-direction: column;
    }

    .dm-popup__head h2 {
        font-size: 1.5rem;
    }

    .dm-popup__head p {
        font-size: 1.2rem;
        margin-top: 0;
    }

    .dm-popup__head span {
        font-size: 14px;
    }

    .dm-popup__field input, .dm-popup__field select {
        padding: 14px 12px;
    }
}

/* Responsive */

@media (min-width: 768px) {
    .hero__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    }

    .about__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    }

    .testimonial__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    }

    .faq__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }

    .footer__form {
        flex-direction: row;
    }

    .footer__form input {
        flex: 1;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .iconArea {
        flex: 1;
        display: none;
    }

    .footer__brand {
        flex: 1;
    }

    .footer__brand .logo {
        width: 90%;
        display: none;
    }

    .footer__brand .logo img {
        width: 90%;
    }

    .footer__brand h4, .footer__col h4 {
        font-size: 1.1rem;
    }

    .footer__brand p {
        max-width: 100%;
    }

    .footer__col a, .footer__col p, .footer__col ul li {
        font-size: 0.8rem;
    }

    .footer {
        padding: 1.7rem 0 1.8rem;
    }

    .header .logo img {
        height: 40px;
        width: auto;
    }

    .nav ul {
        gap: 1.75rem;
    }

    .nav li>a {
        font-weight: 500;
    }

    .btn {
        font-size: 0.85rem;
    }

    .hero__grid .hero__content {
        margin-left: 2rem;
        padding: 0 0 2rem;
    }

    .hero__subtitle {
        font-size: clamp(1rem, 3.6vw, 1.5rem);
        margin: 0;
    }

    .hero__content p {
        font-size: clamp(0.85rem, 2.6vw, 0.8rem);
    }

    .hero__stats .inner {
        transform: scale(0.7);
    }

    .about, .services, .testimonial, .blog, .faq {
        padding: 2rem 0 2rem;
    }

    .about__image {
        min-height: 220px;
        display: none;
    }

    .services__grid {
        gap: 2rem;
        justify-content: center;
    }

    .service-card {
        flex: 0 0 calc(49% - 24px);
    }

    .ctaCnt h2 {
        font-size: 1.65rem;
    }

    .why__item {
        flex: 0 0 calc(45% - 8px);
    }

    .process__step {
        max-width: 100%;
        border-radius: 20px;
        min-height: 148px;
    }

    .process__step:nth-child(2) {
        margin-right: 0;
    }

    .process__slider.right .process__step:nth-child(2) {
        margin-left: 0;
    }

    .process__slider {
        gap: 1.5rem;
        margin-top: 0;
    }

    .testimonial__grid {
        align-items: stretch;
    }

    .testimonial__image {
        max-width: 320px;
        width: 100%;
    }

    .testimonial__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial__content h2 {
        font-size: 32px;
        margin-top: 1rem;
    }

    .testimonial__content p {
        font-size: 1rem;
    }

    .faq-item summary {
        font-size: 17px;
    }

    .faq-item p {
        font-size: 14px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .footer__brand {
        flex: 2;
    }

    .footer__brand .logo img {
        max-width: 231px;
    }
}

@media (max-width: 767px) {
    .circle-section {
        padding: 0rem 0;
    }

    .circle-container {
        position: relative;
        max-width: 340px;
        max-height: 340px;
        width: 320px;
        height: 320px;
        top: -3rem;
    }

    .header__inner .logo img {
        max-width: 90%;
    }

    .header {
        padding: 0.2rem 1rem;
    }

    .topBar {
        padding: 0.2rem 1rem;
    }

    .topbar__inner {
        font-size: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .nav {
        position: absolute;
        inset-inline: 1.25rem;
        top: 56px;
        background: #ffffff;
        border-radius: 0px;
        padding: 0.9rem 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
        display: none;
    }

    .nav--open {
        display: flex;
        margin-top: 1.85rem;
        width: 100%;
        margin-left: 0;
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        width: 100%;
    }

    .nav ul li {
        gap: 1.25rem;
        width: 100%;
        position: relative;
    }

    .nav li>a {
        font-size: clamp(1.2rem, 1.25vw, 1.3125rem);
        width: 100%;
        justify-content: space-between;
    }

    .header__cta {
        /* display: none; */
        font-size: 0.7rem;
        padding: 10px 0;
        min-width: 6rem;
    }

    .nav-toggle {
        display: block;
    }

    .hero__grid {
        flex-direction: column;
    }

    .hero__grid .hero__content {
        margin-left: 0rem;
        padding: 0rem 2rem 2rem;
        box-sizing: border-box;
    }

    .hero__subtitle {
        font-size: clamp(1.5rem, 3.6vw, 1.85rem);
        text-align: center;
    }

    .hero__content p {
        text-align: center;
    }

    .hero__actions {
        text-align: center;
        justify-content: center;
    }

    .about__content {
        padding-right: 0rem;
        text-align: center;
    }

    .about__image img {
        max-width: 98%;
    }

    .about__content ul {
        flex-direction: column;
        padding-right: 0;
        padding-bottom: 1.5rem;
    }

    .sectionHeading {
        font-size: 2.1875rem !important;
        line-height: normal;
    }

    .sectionPara {
        font-size: 1.15rem;
    }

    .services__grid {
        flex-direction: column;
    }

    .about__grid {
        display: flex;
        flex-direction: column;
    }

    .about {
        padding: 1.5rem 2rem 3rem;
    }

    .about__content ul {
        flex-direction: column;
    }

    .ctaSec {
        padding: 0.5rem 0 1rem;
    }

    .ctaBox {
        height: 300px;
    }

    .ctaCnt {
        max-width: 100%;
        width: 80%;
    }

    .ctaCnt h2 {
        font-size: 1.5rem;
    }

    .ctaBox .bgImg {
        height: 100%;
    }

    .ctaBox .bgImg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero {
        padding-top: 2.3rem;
    }

    .brands {
        padding-inline: 1.1rem;
    }

    .processArea {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__grid {
        flex-direction: column;
    }

    .brands__row ul {
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .topBar .rgtSec {
        display: none;
    }

    .footer__brand .logo img {
        width: 90%;
    }

    .why__grid {
        flex-direction: column;
    }

    .process__slider.right .process__step:nth-child(2) {
        margin-left: 0;
        margin-right: 0;
    }

    .process__slider, .process__slider.right {
        align-items: center;
    }

    .process__step:nth-child(2) {
        margin-right: 0;
    }

    .testimonial, .tools, .blog {
        padding: 2rem 0;
    }

    .testimonial__grid {
        flex-direction: column;
        padding-bottom: 2rem;
        margin: auto 1rem;
    }

    .testimonial__image {
        max-height: 280px;
        overflow: hidden;
    }

    .testimonial__content {
        padding: 0 2rem;
    }

    .testimonial__content h2 {
        font-size: 1.6rem;
        line-height: normal;
    }

    .testimonial__content .saysText {
        max-width: 100%;
    }

    .testimonial__content p {
        margin: 0rem;
        font-size: 1rem;
    }

    .tools h2, .blog h2 {
        font-size: 2.1875rem;
    }

    .footer__grid {
        padding: 0 2rem;
    }

    .hero__stats .inner {
        flex-wrap: wrap;
    }

    .weDrive .servBox {
        flex-direction: column;
        padding: 0 2rem;
    }

    .elevatArea .pointBox ul {
        flex-direction: column;
    }

    .purposeSec {
        flex-direction: column;
        gap: 2rem;
    }

    .ourGuide .servBox {
        flex-direction: column;
        padding: 0 1rem;
    }

    .purposeSec .imgBox img {
        width: 80%;
        margin: auto;
    }

    .purposeSec, .ourGuide, .processSuccess, .weDrive {
        padding: 2rem 0;
    }

    .processSuccess ul {
        margin: 2rem 0.5rem 0;
    }

    .purposeSec .leftCntBox li {
        border-radius: 10px;
        max-width: 100%;
    }

    .purposeSec .leftCntBox h2 {
        font-style: normal;
        font-weight: 400;
        font-size: 2.8rem;
        color: #000000;
        text-align: center;
    }

    .processSuccess {
        padding: 2rem 1rem;
    }

    .purposeSec .leftCntBox h2, .elevatArea .headSec h2, .weDrive h2, .processSuccess h2 {
        font-size: 2.1875rem;
        line-height: normal;
    }

    .elevatArea {
        padding: 2rem 1rem;
    }

    .elevatArea .pointBox ul li {
        font-size: 1rem;
    }

    .gAdtopSec {
        flex-direction: column;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .gAdtopSec .rightBox img {
        max-width: 100%;
        margin: auto;
    }

    .gAdtopSec .leftBox {
        padding-right: 0;
        padding-left: 0rem;
    }

    .innerPageHead .cntBox {
        max-width: 100%;
    }

    .innerPageHead .imgbox {
        display: none;
    }

    .innerPageHead {
        padding-bottom: 3rem;
    }

    .topFooterRow {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1.5rem;
        padding-bottom: 2rem;
    }

    .footer__brand p {
        max-width: 100%;
    }

    .typesOfAds .itemContainer {
        flex-direction: column;
    }

    .process__slider {
        gap: 1rem;
        margin-top: 0rem;
    }

    .process__step {
        border-radius: 10px;
        display: flex;
        padding: 0.5rem 0.5rem 0.5rem 1rem;
        gap: 0.5rem;
    }

    .blog__grid_slider .slick-track {
        gap: 1rem;
        padding: 1rem 0rem;
    }

    .whatsAppIcon {
        display: none !important;
    }

    .whatsapp-float {
        position: fixed;
        right: 20px;
        bottom: 60px;
        /* footer se thoda upar, need ho to adjust karo */
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background-color: #25d366;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
        z-index: 9999;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float:hover {
        transform: translateY(-2px);
        transition: 0.2s ease;
    }

    .header__inner {
        gap: 0.5rem;
    }

    .brands__row ul li img {
        height: 100px;
        max-width: 90%;
        max-height: 100%;
        object-fit: contain;
        margin: auto;
    }

    .elevatArea .srvPnl .colItem {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .elevatArea .srvPnl {
        flex-direction: column;
    }

    .hero__content h1 {
        text-align: center;
        font-size: clamp(2.2rem, 12vw, 4.1rem);
    }

    .testimonial__grid .innerWrap {
        display: flex;
        gap: 1rem;
        align-items: center;
        flex-direction: column;
    }

    .blog__grid_slider .slick-slide {
        /* min-height: 32rem; */
        margin: 0 0.8rem;
    }

    .blog__grid_slider .slick-list {
        margin: 0 0.5rem;
    }
}