@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --blue: #0c7dbc;
    /* hero base */
    --blue-dark: #0a6fa9;
    /* gradient depth */
    --card-bg: #ffffff;
    --text: #0b1b2b;
    --cta: #e53935;
    /* red text in CTA */
    --shadow: 0 10px 30px rgba(0, 0, 0, .15);
    --radius: 22px;
    --container: 1200px;
    --text-color: #727272;
    --bg-light: #e8f4f8;
    --bg: #e9f6fb;
    --card-radius: 16px;
    --footer-height: 86px;
    --deep-blue: #065a8b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 100%;
    scroll-behavior: smooth;
    text-decoration:none;
    
}

img {
    max-width: 100%;
    display: block
}

.dark_bg{
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

body {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
    color: #fff;
    background: #f7f9fc;
    font-size: 1rem;
    line-height: 1.4;
}

/* Typography */
p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* consistent body text */
h2 {
    /* font-size: clamp(2rem, 1.5rem + 3vw, 3rem); */
    font-size: 48px;
    color: var(--blue);
    /* margin-bottom: 1em; */
    /* Min: 2rem (~32px), scales with vw, Max: 3.5rem (~56px) */
}

h3 {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1em;
    font-weight: 500;
}

h4 {
    color: var(--blue);
    font-size: 1.5rem;
    font-weight: 700;
}

.section_padding {
    padding: 5% 9%;
}

.max_width{
    max-width:1600px;
    margin:auto;
}

/* .section_heading {
    font-size: 50px !important;
}

.sub_heading {
    font-size: 20px !important;
} */

/* .section_heading {
    font-size: clamp(2rem, 1.5rem + 3vw, 3.5rem);

} */

.sub_heading {
    /* font-size: clamp(1rem, 0.9rem + 1vw, 1.5rem); */
    /* Min: 1rem (~16px), scales with vw, Max: 1.5rem (~24px) */
}

.main_color {
    color: var(--blue);
}

.txt_center {
    text-align: center;
}

.m_1 {
    margin-bottom: 1em;
}

.bg_light {
    background-color: var(--bg-light);
}

/*loader section css start.................................................*/

.flex-loader {
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
} 

.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
}

.loader::before,
.loader::after {    
  content:"";
  grid-area: 1/1;
  --c:no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
  background: 
    var(--c) 50%  0, 
    var(--c) 50%  100%, 
    var(--c) 100% 50%, 
    var(--c) 0    50%;
  background-size: 12px 12px;
  animation: l12 1s infinite;
}
.loader::before {
  margin: 4px;
  filter: hue-rotate(45deg);
  background-size: 8px 8px;
  animation-timing-function: linear
}

@keyframes l12 { 
  100%{transform: rotate(.5turn)}
}


/*loader section css end*/


/* ---------------------------------- */
/* WRAPPER / HERO BACKDROP            */
/* ---------------------------------- */
.hero-wrap {
    position: relative;
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
    overflow: hidden;
}

/* subtle background silhouette/texture (very faint) */
.hero-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/landing-page/Bg-img.png") center/cover no-repeat;
    opacity: .2;
    filter: blur(2px);
    pointer-events: none;
}

.container {
    /* width: min(var(--container), 92%); */
    /* margin: auto; */
    padding: 3% 9% 0%;
}

.hero-copy h1 span{
     background: linear-gradient(90deg, red, white, red);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
/* ---------------------------------- */
/* NAVBAR CARD                         */
/* ---------------------------------- */
.nav-card {
    background: var(--card-bg);
    color: var(--text);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    /* margin: 34px auto 0; */
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    height: 44px
}

.brand span {
    font-weight: 700;
    letter-spacing: .2px
}

.nav-links {
    display: flex;
    gap: 34px;
    list-style: none;
    align-items: center;
    font-weight: 500;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: opacity .2s ease;
}

.nav-links a:hover {
    opacity: .7
}

/* Hamburger */
.hamburger {
    width: 34px;
    height: 28px;
    position: relative;
    display: none;
    cursor: pointer;
    background: var(--bg-light);
    border: none;
    border-radius: 3px;
}

.hamburger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    transition: transform .25s ease, top .25s ease, opacity .2s ease;
}

.hamburger span:nth-child(1) {
    top: 4px
}

.hamburger span:nth-child(2) {
    top: 12px
}

.hamburger span:nth-child(3) {
    top: 20px
}

.hamburger.active span:nth-child(1) {
    top: 12px;
    transform: rotate(45deg)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    top: 12px;
    transform: rotate(-45deg)
}

/* Mobile dropdown inside card */
.mobile-panel {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px 16px;
    border-top: 1px solid #eef2f6;
}

.mobile-panel a {
    color: var(--text);
    text-decoration: none;
    padding: 8px 0
}

.mobile-panel.show {
    display: flex
}

/* ---------------------------------- */
/* HERO CONTENT                        */
/* ---------------------------------- */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 28px;
    padding: 3% 0% 0;
}

.hero-copy h1 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    line-height: 1.05;
    /* font-size: clamp(2.5rem, 1.5rem + 5vw, 5rem); */
    font-size: 80px;
    letter-spacing: .2px;
    margin-bottom: 20px;
}

.hero-copy p {
    font-size: clamp(1rem, .5rem + 1vw, 1.35rem);
    font-weight: 500;
    opacity: .95;
    margin-bottom: 26px;
    color: white;
}

.cta {
    display: inline-block;
    background: #fff;
    color: var(--cta);
    /* border-radius: 999px; */
    border-radius: var(--radius);
    padding: 14px 22px;
    font-weight: 800;
    font-size: clamp(.95rem, .7rem + .6vw, 1.25rem);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
    white-space: nowrap;
}

.cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22)
}

.cta:active {
    transform: translateY(0)
}

/* Doctor image card on right */
.hero-figure {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 360px;
}

.doctor {
    /* max-width: min(420px, 95%); */
    border-radius: 12px;
    width: 350px;
    /* box-shadow: 0 18px 40px rgba(0, 0, 0, .35); */
    /* Set transparent PNG later; using a dummy now */
}


/* form section css start .............................................................*/
.consultation {
    /* padding: 60px 20px; */
    text-align: center;
    background: #fff;
}

.consultation .form-box {
    background: #fff;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    padding: 70px 30px;
    max-width: 70%;
    margin: auto;
}

.consultation h2 {
    /* font-size: 1.8rem;
    font-weight: 700;
    color: #1976d2; */
    /* margin-bottom: 10px; */
}

.consultation p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

.form-grid input {
    width: 100%;
    padding: 20px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease;
}

.form-grid input:focus {
    border-color: #1976d2;
}

.submit-btn {
    width: 100%;
    background: #1976d2;
    color: #fff;
    padding: 20px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1258a0;
}

/* Responsive */
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* form section css end */

/* state section css start ........................................................*/
/* Stats Row (inject below header) */
.stats-row {
    width: 100%;
    background: transparent;
    /* border-top: 3px solid #063b5e; */
    /* thin top line like screenshot */
    /* border-bottom: 3px solid #063b5e; */
    /* thin bottom line like screenshot */
}

.stats-inner {
    display: flex;
    flex-wrap: nowrap;
    /* width: min(1200px, 96%); */
    /* margin: 0 auto; */
    /* box-sizing: border-box; */
}

.stat {
    flex: 1 1 0;
    min-height: 82px;
    /* desktop height similar to screenshot */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px 16px;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}

/* subtle vertical separators between boxes */
.stat+.stat {
    box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.12);
}

.stat-num {
    font-weight: 800;
    font-size: clamp(20px, 3.4vw, 34px);
    /* scales nicely */
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.stat-label {
    font-weight: 600;
    font-size: clamp(12px, 1.2vw, 15px);
    opacity: 0.95;
    white-space: nowrap;
}

/* Alternating blue shades (adjust to match screenshot) */
.stat-1 {
    background: linear-gradient(180deg, #0b63a0, #085586);
}

.stat-2 {
    background: linear-gradient(180deg, #1389d9, #0f78c0);
}

.stat-3 {
    background: linear-gradient(180deg, #0a6ea8, #074f7a);
}

.stat-4 {
    background: linear-gradient(180deg, #1389d9, #0f78c0);
}

/* Make labels break on very small screens */
.stat-label {
    max-width: 90%;
    word-wrap: break-word;
}

/* Responsive: 2 per row on tablets, 1 per row on small phones */
@media (max-width: 900px) {
    .stats-inner {
        flex-wrap: wrap;
    }

    .stat {
        flex: 1 1 50%;
        min-height: 120px;
    }

    /* taller to keep spacing */
}

@media (max-width: 480px) {
    .stat {
        flex: 1 1 100%;
        min-height: 92px;
        padding: 14px 12px;
    }

    .stat-label {
        font-size: 13px;
        white-space: normal;
    }

    .stats-inner {
        width: 96%;
    }
}

/* state section css end */

/* saaol methods section css start .......................................................... */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 18px;
    color: #1d77d3;
    margin-bottom: 10px;
}

/* .card p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
} */

@media (max-width: 768px) {

    .card h3 {
        font-size: 16px;
    }

    .card p {
        /* font-size: 13px; */
    }
}

/* saaol methods section css end */

/* bimal section start..................................................... */
.pioneer-section {
    display: grid;
    grid-template-columns: 60% auto !important;
}

.pioneer-section div {
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pioneer-text h2 {
    font-size: 25px;
    margin-bottom: 0.5em;
}

.pioneer-text h2 span {
    color: red;
}

.pioneer-text p {
    /* font-size: 25px; */
    margin-bottom: 0.5em;
}

/* bimal section start........................................................ */
.cta-section {
    /* background: #e9f6fe; */
    padding: 2% 9%;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text {
    font-size: 22px;
    color: var(--blue);
    font-weight: 400;
}

.cta-text strong {
    color: var(--blue-dark);
    font-weight: 700;
}

.cta-btn {
    padding: 12px 28px;
    font-size: 16px;
    color: var(--blue-dark);
    border: 2px solid var(--blue-dark);
    background: transparent;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #003366;
    color: #fff;
}


/* bimal section end */

/* why choose us css start ........................................................*/
.why-choose {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    /* padding: 70px 20px; */
    text-align: center;
}

.why-choose h2,
.why-choose h3 {
    color: white !important;
}

.why-choose p {
    color: white !important;
    margin-bottom: 2em;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.choose-card {
    background: #fff;
    color: var(--blue);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-6px);
}

.choose-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.choose-header img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.choose-header h3 {
    font-size: 18px;
    color: var(--blue) !important;
    font-weight: 600;
    margin: 0;
}

.choose-body {
    background: var(--blue);
    color: #fff;
    padding: 20px;
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    text-align: start;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    /* .why-choose h2 {
        font-size: 26px;
    } */

    .why-choose p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* .why-choose h2 {
        font-size: 22px;
    } */

    .choose-header h3 {
        font-size: 16px;
        text-align: left;
    }

    .choose-body {
        font-size: 13px;
    }
}

/* why choose us css end */

/* footer section css start ......................................................*/



.faq-wrap {
    /* max-width: 1120px;
    margin: 40px auto 80px;
    padding: 0 16px; */
}

.faq-title {
    /* text-align: center;
    color: var(--blue);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: .5px;
    margin: 0 0 20px; */
    margin-bottom: 1em;
}

.faq {
    border-top: 1px solid #e5e7eb;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-trigger {
    width: 100%;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 18px 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
}

.faq-trigger span {
    color: var(--blue);
}

.faq-index {
    color: #1f2937;
    font-weight: 600;
    font-size: 25px;
}

.faq-question {
    font-size: clamp(16px, 2vw, 23px);
    font-weight: 600;
}

/* Plus/Close icon (CSS-only) */
.faq-icon {
    position: relative;
    width: 26px;
    height: 26px;
    transition: transform .25s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: var(--text);
    border-radius: 1px;
    transition: transform .25s ease, opacity .25s ease;
}

.faq-icon::before {
    width: 2px;
    height: 18px;
}

.faq-icon::after {
    width: 18px;
    height: 2px;
}

/* Content wrapper for smooth height animation */
.faq-content {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
}

.faq-inner {
    padding: 0 8px 18px 50px;
    /* align with numbers */
    color: #111827;
    font-size: 16px;
    line-height: 1.7;
}

/* Open state */
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    /* + → × */
}

/* Small screens spacing */
@media (max-width: 520px) {
    .faq-inner {
        padding-left: 44px;
    }

    .faq-trigger {
        grid-template-columns: 34px 1fr auto;
    }
}

/* footer section css end */


/* heart form css start ..................................................................*/
.heart-form-wrapper {
    /* max-width: 800px; */
    /* margin: 60px auto; */
    text-align: center;
    /* padding: 20px; */
    background: var(--bg-light);
}

.heart-form-title {
    /* font-size: 32px;
    font-weight: 500; */
    color: var(--text);
    margin-bottom: 10px;
}

.heart-form-title span {
    color: #1a8ed1;
    font-weight: 600;
}

.heart-form-subtitle {
    /* font-size: 16px;
    color: #444; */
    margin-bottom: 40px;
}

.heart-form-box {
    background: #fff;
    padding: 5%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 70%;
    margin: 0 auto;
}

.heart-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.heart-form-group {
    flex: 1;
    text-align: left;
}

.heart-form-group input,
.heart-form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #000;
    padding: 8px 0;
    /* font-size: 16px; */
    font-size: clamp(1rem, 0.5rem + 1.5vw, 1.5rem);
    outline: none;
}

.heart-form-group textarea {
    resize: none;
}

.heart-form-checkbox {
    text-align: left;
    margin: 15px 0;
    font-size: 14px;
    color: #333;
}

.heart-form-checkbox input {
    margin-right: 8px;
    width: 17px;
    height: 17px;
    margin-bottom: 0;
}

.heart-form-checkbox label {
    display: flex;
    align-items: center;
}

.heart-form-checkbox h3 {
    margin-bottom: 0;
}

.heart-form-btn {
    display: inline-block;
    background: #1a8ed1;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.heart-form-btn:hover {
    background: #1174ac;
}

/* Responsive */
@media (max-width: 768px) {
    .heart-form-row {
        flex-direction: column;
    }
}

/* heart form css end */


/* foooter section css start................................................. */
/* Footer Styles */
.custom-footer {
    background: var(--blue);
    color: white;
    /* padding: 40px 20px; */
    /* font-family: Arial, sans-serif; */
}

.custom-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* max-width: 1200px; */
    margin: auto;
    flex-wrap: wrap;
    gap: 30px;
}

.custom-footer-left {
    flex: 1;
    min-width: 250px;
}

.custom-footer-logo {
    width: 80px;
    margin-bottom: 15px;
}

.custom-footer-text {
    font-size: 17px;
    /* line-height: 1.5; */
    color: white;
    margin-bottom: 20px;
}

.custom-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.custom-footer-socials a {
    /* background: white;
    color: #1789d5;
    font-size: 18px;
    padding: 8px 10px;
    border-radius: 6px; */
    transition: 0.3s;
}

.custom-footer-socials a:hover {
    background: #0f6bad;
    color: white;
}

.custom-footer-links {
    flex: 1;
    min-width: 200px;
}

.custom-footer-links h3 {
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.custom-footer-links ul {
    list-style: none;
    padding: 0;
}

.custom-footer-links ul li {
    margin-bottom: 10px;
}

.custom-footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.custom-footer-links ul li a:hover {
    text-decoration: underline;
}

.custom-footer-contact {
    flex: 1;
    min-width: 250px;
}

.custom-footer-contact h3 {
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.custom-footer-contact p {
    margin: 10px 0;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 17px;
    color: white;
}

.custom-footer-contact i {
    margin-top: 4px;
    color: white;
}

.footer_bottom {
    padding: 1% 9%;
    display: flex;
    justify-content: space-between;
    background-color: var(--blue);
    color: white;
    border-top: 1px solid white;
}

.footer_bottom p {
    color: white;
}

.footer_bottom a {
    color: white;
    text-decoration: none;
}


/* foooter section css end */


/* slider section css start...................................................... */
.swiper_section {
    /* max-width: 1200px;
    margin: 40px auto 80px;
    padding: 40px 20px 100px; */
    /* extra bottom for controls */
    text-align: center;
    position: relative;

}



.swiper_section h2 {
    color: var(--blue);
    font-size: 44px;
    margin: 0 0 30px;
    letter-spacing: 0.4px;
    font-weight: 700;
}

/* SWIPER container */
.swiper {
    overflow-x: clip !important;
    padding-bottom: 140px;
    overflow-y: unset !important;
    margin-top: 70px;
    /* room for lift + controls */
}

.swiper-pagination {
    position: static !important;
}

.swiper-wrapper {
    align-items: flex-end;
    /* make slides align bottom so lift looks natural */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: start;
    /* so cards sit at bottom baseline */
}

/* Card */
.swiper_card {
    width: 100%;
    /* max-width: 360px; */
    background: #fff;
    border-radius: var(--swiper_card-radius);
    overflow: visible;
    /* box-shadow: 0 18px 40px rgba(4, 24, 45, 0.06); */
    transition: transform 420ms cubic-bezier(.2, .9, .2, 1), box-shadow 420ms, filter 420ms;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    position: relative;
    border-radius: var(--card-radius);
}

.swiper_card .body {
    padding: 38px 36px 24px 36px;
    position: relative;
    flex: 1;
}

/* quote icon top-left */
.swiper_card .quote {
    font-size: 30px;
    color: var(--blue);
    position: absolute;
    top: 18px;
    left: 24px;
    line-height: 1;
    opacity: 0.98;
    font-weight: 700;
}

.swiper_card p {
    margin: 26px 0 0 0;
    line-height: 1.6;
    color: #2e3b45;
    /* font-size: 15px; */
}

/* footer strip */
.swiper_card .footer {
    height: var(--footer-height);
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom-left-radius: var(--card-radius);
    border-bottom-right-radius: var(--card-radius);
    position: relative;
}

.swiper-slide-next .footer {
    background: var(--blue-dark);
}

.avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.meta h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: white
}

.meta span {
    display: block;
    font-size: 14px;
    opacity: 0.95;
    margin-top: 4px
}

/* default: side cards are slightly lower */
.swiper_card {
    /* transform: translateY(18px); */
}

/* active/center card is lifted */
.swiper-slide-active .swiper_card {
    /* transform: translateY(-28px) scale(1.03); */
    box-shadow: 0 30px 60px rgba(6, 40, 70, 0.12);
    z-index: 30;
}

/* make prev/next near-active slightly closer to center than inactive slides */
.swiper-slide-prev .swiper_card,
.swiper-slide-next .swiper_card {
    /* transform: translateY(6px) scale(0.995);
    z-index: 20; */
    transform: translateY(-50px) scale(1.03);
    box-shadow: 0 30px 60px rgba(6, 40, 70, 0.12);
    z-index: 30;
}

/* make far slides lower z-index */
.swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) .swiper_card {
    z-index: 10;
    filter: saturate(0.98);
}

/* custom controls (centered under the lifted swiper_card) */
.controls {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* bottom: 14px; */
    /* roughly in the gap under center swiper_card */
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 100;
    pointer-events: auto;
}

.ctrl-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 6px 18px rgba(4, 24, 45, 0.08);
    color: var(--blue);
    font-size: 18px;
    cursor: pointer;
    transition: transform 150ms ease;
    flex-shrink: 0;
}

.ctrl-btn:active {
    transform: scale(.96)
}

/* pagination style inline between arrows */
.custom-pagination {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.custom-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bfcad4;
    opacity: 1;
    transition: transform 180ms ease, background 180ms;
}

.custom-pagination .swiper-pagination-bullet-active {
    background: var(--blue);
    transform: scale(1.25);
}

/* responsive sizes */
@media (max-width: 1024px) {
    .swiper_section {
        padding-bottom: 80px
    }

    .swiper_card {
        min-height: 380px
    }

    .avatar {
        width: 56px;
        height: 56px
    }

    .footer {
        height: 72px
    }

    .swiper-slide-prev .swiper_card,
    .swiper-slide-next .swiper_card {
        transform: translateY(0px) scale(1);
    }


    .hero-copy h1 {
        font-size: 58px;
    }

}

@media (max-width: 767px) {
    .swiper_section h2 {
        font-size: 34px
    }

    .swiper_card {
        max-width: 520px;
        min-height: 330px
    }

    .swiper {
        padding-bottom: 120px
    }

    .controls {
        bottom: 6px
    }
}

/* slider section css end*/


/* .popup form style ...................................................*/

#popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

#popup-container.popup-visible {
    opacity: 1;
    visibility: visible;
}

.popup {
    background: white;
    border-radius: 15px;
    width: 500px;
    /* max-width: 1000px; */
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popup-header {
    width: 100%;
    background-color: var(--blue);
    color: white;
    padding: 1rem;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.popup-header h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 0;
}

.popup-body {
    display: flex;
    flex: 1;
    padding: 2rem;
    flex-wrap: wrap;
}

.popup-right {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}


.popup-right input,
.popup-right select {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.popup .submit-btn {
    width: 100%;
    background: var(--blue);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    position: relative;
    cursor: pointer;
    margin-top: 17px;
}

.popup .submit-btn::before {
    content: "Consultation Now";
    position: absolute;
    top: -15px;
    right: 0;
    background: #ec1d26;
    color: white;
    padding: 0.2rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 45px;
    cursor: pointer;
    position: absolute;
    right: 10px;
}

@media (max-width: 768px) {
    .popup-body {
        flex-direction: column;
    }

    .popup-left,
    .popup-right {
        padding: 0.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}

.popup_step_container {
    position: relative;
}

.popup_step_container .line {
    position: absolute;
    height: 90%;
    width: 3px;
    background-color: var(--blue);
    left: 12px;
    top: 2px;
}

.round_icon {
    display: inline-block;
    min-width: 27px;
    min-height: 27px;
    background-color: var(--blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
}

.round_icon i {
    font-size: 14px;
}

.stats_div {
    display: flex;
    flex-direction: column;

}


.contact-popup-btn {
    flex: 1;
    padding: 5px;
    border: 2px solid #3b82f6;
    background: white;
    color: #3b82f6;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.contact-popup-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.contact-popup-btn.call {
    border-color: var(--blue);
    color: var(--blue);
}

.contact-popup-btn.call:hover {
    background: var(--blue);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.contact-popup-btn.text {
    border-color: #e80000;
    color: #e80000;
}

.contact-popup-btn.text:hover {
    background: #e80000;
    color: white;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.contact-options {
    display: flex;
    gap: 15px;
    margin: 10px 0px;
}

/* //.popup style end */

 /*fixed coversation box css start*/
     .dubblePulse-wrapper {
            position: fixed;
            width: 80px;
            height: 80px;
            bottom: 3%;
            right: 10px;
            z-index:111;
        }

        .dubblePulse {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 45px;
            height: 45px;
            background-color: #ed1d26;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: pulseEffect 2s infinite ease-out;
        }

        .dubblePulse:nth-child(2) {
            animation-delay: 0.4s;
        }

       .contact-button {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 70px;
        height: 70px;
        background-color: #ed1d26;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translate(-50%, -50%);
        z-index: 2;
        color: white;
        font-weight: bold;
        cursor: pointer;
        font-size: 10px;
    }

    .contact-button i {
        font-size: 24px;
    }

    .flex_center_column {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease-in-out;
        width: 0;
        height: 0;
        opacity: 0;
        transform: scale(0);
    }

    .active_contact_widget {
        width: 57px !important;
        height: 57px !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    .active_contact_widget_slide {
        width: 50px !important;
        height: 50px !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }



    .contact_widget_scale_inactive {
        transform: scale(0);
    }

    .contact_widget_scale_active {
        transform: scale(1);
    }

    .contact_widget_hide {
        display: none !important;
    }

    .slide_icons {
        width: 0px;
        height: 0px;
        background-color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease-in-out;
        transform: scale(0);
        opacity: 0;
        overflow: hidden;
        position: relative;


    }

    .slide_icons i {
        position: absolute;
        color: red;
        opacity: 0;
        font-size: 30px;
        transform: translateX(25px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide_icons i.active {
        opacity: 1;
        transform: translateX(0);
    }

    .slide_icons i.exit {
        opacity: 0;
        transform: translateX(-25px);
    }

        @keyframes pulseEffect {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.7;
            }

            70% {
                transform: translate(-50%, -50%) scale(2.5);
                opacity: 0;
            }

            100% {
                transform: translate(-50%, -50%) scale(2.5);
                opacity: 0;
            }
        }
        
    .contact-box {
     background: white;
    border-radius: 12px;
    padding: 16px;
    width: 250px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 17%;
    right: 2%;
    transform: translateY(-100px);
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.2s;
    overFlow: hidden;
    }
    
    .inner_contact_box{
     opacity: 0;
     visibility: hidden;
     transform: translateY(100px);
     transition: all ease-in-out 0.5s;
    }

    .contact-box::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent transparent transparent;
    }

    .contact-option {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
      position: relative;
      border-radius: 10px;
      padding: 5px;
      transition: all 0.2s ease-in-out;
      cursor:pointer;
    }
    
.contact-option:hover {
    background: #8080805c;
}

    .contact-option:last-child {
      margin-bottom: 0;
    }

    .icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      margin-right: 12px;
      position: relative;
    }

    .icon-circle.email { background-color: #ff6e40; }
    .icon-circle.call { background-color: #39934b; }
    .icon-circle.chat { background-color: red; }

    .status-dot {
      position: absolute;
      bottom: 2px;
      right: 2px;
      width: 10px;
      height: 10px;
      background-color: limegreen;
      border-radius: 50%;
      box-shadow: 0 0 0 rgba(0, 255, 0, 0.7);
      animation: pulseDot 2s infinite;
    }

    @keyframes pulseDot {
      0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.5);
      }
      70% {
        box-shadow: 0 0 0 6px rgba(0, 255, 0, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
      } 
    }

    .contact-text {
      font-size: 16px;
      color: #333;
    }
    
    .open_contact_box{
          transform: translateY(0px);
        opacity: 1;
        visibility: visible;
      
    }
    /*fixed coversation box css end*/


/* ---------------------------------- */
/* RESPONSIVE                          */
/* ---------------------------------- */
@media (max-width: 1100px) {
    .nav-links {
        gap: 24px
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: block
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-figure {
        justify-content: center
    }

    .cta {
        white-space: normal
    }
}


/* Responsive */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        font-size: 18px;
    }

    .consultation .form-box {
        max-width: 100%;
        padding: 30px 10px;
    }

    h2 {
        line-height: 1.2;
    }

    .pioneer-section {
        grid-template-columns: auto !important;
    }

    .choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .heart-form-checkbox input {
        width: 12px;
        height: 12px;
    }

    .heart-form-box {
        max-width: 100%;
    }

    .heart-form-checkbox h3 {
        font-size: 12px;
    }

    .heart-form-btn {
        font-size: 15px;
    }

    .heart-form-subtitle {
        margin-bottom: 20px;
    }

    .custom-footer-container {
        flex-direction: column;
        /* text-align: center; */
    }

    .custom-footer-contact p {
        /*justify-content: center;*/
    }

    .swiper {
        margin-top: 0%;
    }

    .controls {
        margin-top: 15px;
    }

}

@media (max-width: 500px) {
    .nav-row {
        padding: 12px 16px
    }

    .brand img {
        height: 38px
    }

    .nav-card {
        margin-top: 18px
    }

    .hero {
        /* padding: 40px 0 24px */
    }

    .hero-figure {
        min-height: 320px
    }

    .popup {
        width: 300px;
        margin: 10px;
    }

    .popup-body {
        padding: 0px;
    }

    .popup-header h3 {
        font-size: 16px;
    }

    .close-btn {
        font-size: 28px;
    }

    .popup-right input,
    .popup-right select {
        font-size: 0.9rem;
    }

    .popup .submit-btn {
        font-size: 0.9rem;
        padding: 0.7rem;
    }

    .contact-popup-btn {
        font-size: 14px;
        padding: 4px;
    }

    .popup .submit-btn::before {
        font-size: 0.7rem;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 1rem;
    }

    .custom-footer-text,
    .custom-footer-contact p {
        font-size: 15px;
    }

    .footer_bottom {
        gap: 10px;
        font-size: 12px;
    }

    .footer_bottom p {
        font-size: 12px;
    }

    .custom-footer-links ul li {
        margin-bottom: 3px;
    }
    
    .cta-section {
    /* background: #e9f6fe; */
    padding: 5% 9%;
}


}

@media (max-width: 425px) {
    .doctor{
        width: 210px;
    }
}