:root {
    --red: #e74c3c;
    --green: #7ed957;
    --black: #111;
    --white: #fff;
    --gray: #6c757d;
    --shadow: 0 5px 15px rgba(231, 76, 60, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: #f9fbfd;
    overflow-x: hidden!important;
}
html
{
      overflow-x: hidden!important;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--red);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: var(--shadow);
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.btn-accent {
    background: var(--green);
}

.btn-accent:hover {
    background: #d35400;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.btn-light {
    background: var(--white);
    color: var(--red);
    border: 2px solid var(--red);
}

.btn-light:hover {
    background: var(--red);
    color: var(--white);
}

/* Header Styles */
header {
    background: #f7f4ef;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 0;
    height: 100px;
}

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

.logo img {
    height: 100px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--red);
    margin: 0;
}

.logo span {
    color: var(--green);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--red);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(
            135deg,
            rgba(231, 76, 60, 0.9) 0%,
            rgba(26, 188, 156, 0.85) 100%
        ),
        url("https://images.unsplash.com/photo-1535914254981-b5012eebbd15?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80");
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    max-width: 600px;
}

/* Problem Section */
.problem {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #f7fafd 60%, #e3f0ff 100%);
    padding: 90px 0 70px 0;
}
.problem::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.13;
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="white"/><circle cx="20" cy="20" r="1.5" fill="%23e0e7ef"/><circle cx="0" cy="40" r="1.5" fill="%23e0e7ef"/><circle cx="40" cy="0" r="1.5" fill="%23e0e7ef"/></svg>');
    background-repeat: repeat;
    background-size: 40px 40px;
}
.problem-row {
    display: flex;
    align-items: stretch;
    gap: 48px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.13);
    padding: 56px 36px;
    margin: 0 auto;
    max-width: 1200px;
    transition: box-shadow 0.3s;
    position: relative;
    z-index: 1;
}
.problem-row:hover {
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.18);
}
.video-embed-wrapper {
    flex: 1.2 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    background: linear-gradient(135deg, #e3f0ff 60%, #f7fafd 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    padding: 18px;
    margin-bottom: 0;
    margin-right: 0;
}
.video-embed-wrapper iframe {
    width: 100%;
    height: 340px;
    border-radius: 16px;
    border: none;
}
.problem-content {
    flex: 1.5 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0 12px;
}
.problem-content .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    color: #1a2236;
    letter-spacing: -1px;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}
.problem-content .section-title p {
    font-size: 1.18rem;
    color: #3a3a3a;
    margin-bottom: 18px;
    text-align: left;
}
.problem-content p {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 0;
}
@media (max-width: 1100px) {
    .problem-row {
        gap: 24px;
        padding: 32px 6px;
        max-width: 98vw;
    }
    .video-embed-wrapper iframe {
        height: 220px;
    }
}
@media (max-width: 900px) {
    .problem-row {
        flex-direction: column;
        padding: 24px 2px;
        gap: 24px;
    }
    .problem-content {
        text-align: center;
        padding: 0;
    }
    .problem-content .section-title h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    .problem-content .section-title p {
        font-size: 1rem;
        text-align: center;
    }
    .video-embed-wrapper {
        margin-bottom: 18px;
    }
}
@media (max-width: 600px) {
    .problem-row {
        padding: 10px 0;
        border-radius: 12px;
    }
    .video-embed-wrapper iframe {
        height: 38vw;
        min-height: 120px;
        max-height: 180px;
    }
}

/* Treatments Section */
.treatments {
    padding: 20px 0;
    background: #f0f7ff;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.treatment-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.treatment-icon {
    background: var(--red);
    color: var(--white);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.treatment-content {
    padding: 30px;
}

.treatment-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.treatment-content ul {
    list-style: none;
    margin: 20px 0;
}

.treatment-content ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.treatment-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

/* Doctor Section */
.doctor {
    padding: 80px 0;
    background: var(--white);
}

.doctor-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.doctor-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: auto;
    display: block;
}

.doctor-info {
    flex: 1;
}

.doctor-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.doctor-info h2 span {
    color: var(--red);
}

.doctor-info p {
    margin-bottom: 20px;
}

.features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    background: var(--green);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f0f7ff, #e3f2fd);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--black);
}

/* Who Section */
.who {
    padding: 80px 0;
    background: var(--white);
}

.who-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.who-content {
    flex: 1;
    min-width: 300px;
}

.who-image {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/*.who-image img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*}*/

.who-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 18px 0;
    text-align: left;
}
.who-list li {
    display: flex;
    align-items: center;
    padding: 8px 0 8px 0;
    color: #2d3a4a;
    font-size: 1.08rem;
    line-height: 1.6;
    margin-left: 0;
    text-align: left;
}
.who-list li i {
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
    font-size: 1.15em;
    margin-right: 14px;
    padding: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    /* box-shadow: rgb(93 108 123 / 20%) 0px 8px 24px; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #f9e7e8;
}
@media (max-width: 700px) {
    .who-list li i {
        min-width: 26px;
        min-height: 26px;
        width: 26px;
        height: 26px;
        font-size: 1em;
        margin-right: 8px;
    }
}

/* Modern FAQ Section */
.faq {
    background: linear-gradient(120deg, #f7f4ef 60%, #f7fafd 100%);
    position: relative;
    padding: 90px 0 60px 0;
    overflow: hidden;
}
.faq::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: url('data:image/svg+xml;utf8,<svg width="320" height="320" viewBox="0 0 320 320" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="160" cy="160" rx="160" ry="160" fill="%237ed957" fill-opacity="0.08"/><ellipse cx="100" cy="220" rx="60" ry="60" fill="%23e74c3c" fill-opacity="0.06"/><ellipse cx="240" cy="80" rx="40" ry="40" fill="%237ed957" fill-opacity="0.10"/></svg>');
    background-size: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}
.faq-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.1);
    backdrop-filter: blur(6px) saturate(1.1);
    -webkit-backdrop-filter: blur(6px) saturate(1.1);
    overflow: hidden;
    transition: box-shadow 0.22s, background 0.22s;
}
.faq-item.active,
.faq-item:hover {
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.16);
    background: rgba(255, 255, 255, 0.95);
}
.faq-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.18rem;
    color: #1a2236;
    padding: 24px 32px 24px 32px;
    border: none;
    background: none;
    transition: color 0.2s;
    position: relative;
}
.faq-question i {
    margin-left: auto;
    font-size: 1.3em;
    color: #f36c67;
    transition: transform 0.3s;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #e74c3c;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: none;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    padding: 0 32px;
}
.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 32px 24px 32px;
}
.faq-answer p {
    font-size: 1.08rem;
    color: #2d3a4a;
    margin: 0;
}
@media (max-width: 700px) {
    .faq-container {
        gap: 14px;
    }
    .faq-question,
    .faq-answer,
    .faq-item.active .faq-answer {
        padding-left: 14px;
        padding-right: 14px;
    }
    .faq-question {
        font-size: 1.01rem;
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

/* Modern CTA Section */

.cta::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    z-index: 0;
    pointer-events: none;
    opacity: 1;
}
.cta > .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;

    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    padding: 56px 36px 44px 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.cta h2,
.cta p {
    color: #1a2236;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.7),
        0 1px 2px rgba(30, 40, 60, 0.18);
}
.cta-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}
.cta .btn,
.cta .btn-light,
.cta .btn-accent {
    background: linear-gradient(90deg, #7ed957 0%, #e74c3c 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.13);
    padding: 15px 36px;
    font-size: 1.08rem;
    letter-spacing: 0.3px;
    transition: background 0.3s, transform 0.2s;
}
.cta .btn-light {
    background: linear-gradient(90deg, #fff 0%, #e3f0ff 100%);
    color: #e74c3c;
    border: 2px solid #e74c3c;
}
.cta .btn:hover,
.cta .btn-light:hover,
.cta .btn-accent:hover {
    background: linear-gradient(90deg, #e74c3c 0%, #7ed957 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
    .cta > .container {
        padding: 24px 8px 20px 8px;
        border-radius: 16px;
    }
    .cta h2 {
        font-size: 1.3rem;
    }
    .cta p {
        font-size: 1rem;
    }
    .cta-buttons {
        gap: 10px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--black);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 5px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    background: #eee;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--green);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--green);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Modern Hero Section Enhancements */
.hero-modern-bg.hero-animated-bg.hero-modern-bgcenter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(120deg, #e74c3c 0%, #7ed957 100%, #1abc9c 100%);
    background-size: 200% 200%;
    animation: heroGradientMove 8s ease-in-out infinite;
    opacity: 0.95;
}
@keyframes heroGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 48px 36px 40px 36px;
    position: relative;
    z-index: 2;
}

.logo-glow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
}
.logo-glow img {
    box-shadow: 0 0 40px 10px rgba(231, 76, 60, 0.15),
        0 0 0 8px rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}
.logo-glow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(231, 76, 60, 0.18) 0%,
        rgba(126, 217, 87, 0.12) 80%,
        transparent 100%
    );
    z-index: 0;
    filter: blur(2px);
}

.text-gradient {
    background: linear-gradient(90deg, #e74c3c 0%, #7ed957 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.btn-animate {
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.btn-animate::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(231, 76, 60, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.btn-animate:hover::after {
    width: 220%;
    height: 500%;
}
.btn-animate:hover {
    box-shadow: 0 8px 32px 0 rgba(231, 76, 60, 0.18);
}

.hero-modern-center-card h1,
.hero-modern-center-card p,
.hero-modern-center-card .hero-buttons {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-image {
        width: 40%;
    }

    .doctor-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: calc(100vh - 80px);
        padding: 40px 0;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
        text-align: center;
    }

    .hero {
        padding: 80px 0;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .cta h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

/* Google Fonts for artistic headline */
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@700&display=swap");

.hero.hero-image-grid {
    background: none;
    padding: 0;
    position: relative;
    min-height: 520px;
}
.hero-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    width: 100%;
}
.hero-grid-image {
    background: #f5f5f5;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
}
.hero-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}
.hero-grid-content {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    min-height: 420px;
}
.hero-grid-top {
    background: #f7f4ef;
    padding: 36px 32px 18px 32px;
    flex: 0 0 33%;
    display: flex;
    align-items: flex-start;
}
.hero-clinic-name {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #222;
    text-transform: uppercase;
}
.hero-grid-middle {
    background: #ff8a8f;
    color: #fff;
    flex: 1 1 67%;
    display: flex;
    align-items: flex-start;
    padding: 32px 32px 0 32px;
}
.hero-headline-art {
    font-family: "Unbounded", Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #fff;
    text-align: left;
    word-break: break-word;
}
.hero-grid-bar {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #f7f4ef;
    padding: 28px 40px 28px 40px;
    border-top: 1px solid #e0e0e0;
}
.hero-bar-text {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.25rem;
    color: #222;
    flex: 1 1 80%;
    display: flex;
    align-items: center;
}
.hero-bar-text b {
    font-weight: 700;
}
.hero-bar-smiley {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.smiley-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #6d726a;
    color: #f7f4ef;
    font-size: 2rem;
    font-family: "Montserrat", Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: 320px 1fr;
    }
    .hero-grid-image img,
    .hero-grid-image {
        min-height: 220px;
        height: 220px;
    }
    .hero-grid-content {
        min-height: unset;
    }
}
@media (max-width: 700px) {
    .hero-grid-bar {
        flex-direction: column;
        gap: 18px;
        padding: 18px 12px;
    }
    .hero-bar-smiley {
        justify-content: flex-start;
    }
    .hero-headline-art {
        font-size: 2rem;
    }
    .hero-clinic-name {
        font-size: 1.1rem;
    }
}
@media (max-width: 500px) {
    .hero-headline-art {
        font-size: 1.2rem;
    }
    .hero-grid-top,
    .hero-grid-middle {
        padding: 12px 8px 0 8px;
    }
    .smiley-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Modern Problem Section Row Layout - Enhanced */
.problem-row {
    display: flex;
    align-items: stretch;
    gap: 56px;
    justify-content: center;
    background: #f7fafd;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.13);
    padding: 64px 48px;
    margin: 0 auto;
    max-width: 1300px;
    transition: box-shadow 0.3s;
}

.problem-row:hover {
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.18);
}

.problem-image {
    flex: 1.2 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.problem-image img {
    width: 100%;
    max-width: 500px;
    min-width: 320px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
    object-fit: cover;
    aspect-ratio: 4/5;
    background: #eaeaea;
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-image img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.22);
}

.problem-content {
    flex: 1.5 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0 12px;
}

.problem-content .section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    color: #1a2236;
    text-align: left;
    letter-spacing: -1px;
}

.problem-content .section-title p {
    font-size: 1.25rem;
    color: #3a3a3a;
    margin-bottom: 18px;
}

.problem-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .problem-row {
        gap: 32px;
        padding: 40px 10px;
        max-width: 98vw;
    }
    .problem-image img {
        max-width: 350px;
        min-width: 200px;
    }
}

@media (max-width: 900px) {
    .problem-row {
        flex-direction: column;
        padding: 32px 6px;
        gap: 32px;
    }
    .problem-content {
        text-align: center;
        padding: 0;
    }
    .problem-image img {
        max-width: 260px;
        min-width: 120px;
        aspect-ratio: 1/1;
    }
}

/* Modern background texture for problem section */
.problem {
    position: relative;
    overflow: hidden;
    background: #f7fafd;
}

.problem::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.25;
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="40" height="40" fill="white"/><circle cx="20" cy="20" r="1.5" fill="%23e0e7ef"/><circle cx="0" cy="40" r="1.5" fill="%23e0e7ef"/><circle cx="40" cy="0" r="1.5" fill="%23e0e7ef"/></svg>');
    background-repeat: repeat;
    background-size: 40px 40px;
}

.problem-row,
.problem-content,
.problem-image {
    position: relative;
    z-index: 1;
}

/* Modern Treatments Section */
.treatments {
    background: linear-gradient(120deg, #f7fafd 60%, #e3f0ff 100%);
    padding: 20px 0;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
    margin-top: 40px;
}

.treatment-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: box-shadow 0.25s, transform 0.22s;
}
.treatment-card:hover {
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.16);
    transform: translateY(-6px) scale(1.02);
}

.treatment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f0ff 60%, #f7fafd 100%);
    padding: 16px 0 16px 0;
}
.treatment-icon img {
    width: 275px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
    background: #fff;
}

.treatment-content {
    padding: 28px 28px 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.treatment-content h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1a2236;
    margin-bottom: 14px;
}
.treatment-content ul {
    list-style: none;
    margin: 18px 0 18px 0;
    padding: 0;
}
.treatment-content ul li {
    padding: 7px 0 7px 28px;
    position: relative;
    color: #2d3a4a;
    font-size: 1.08rem;
    line-height: 1.6;
}
.treatment-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7ed957;
    font-weight: bold;
    font-size: 1.1rem;
}
.treatment-content .btn {
    margin-top: 18px;
    background: linear-gradient(175deg, #d19e70 0%, #e74c3c 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.13);
    padding: 13px 32px;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    transition: background 0.3s, transform 0.2s;
}
.treatment-content .btn:hover {
    background: linear-gradient(90deg, #e74c3c 0%, #d7845f 100%);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .treatment-content {
        padding: 22px 12px 26px 12px;
    }
    .treatment-icon img {
        width: 56px;
        height: 56px;
    }
}

/* Modern Benefits Section - Horizontal Card Layout */
.benefits {
    background: linear-gradient(120deg, #f7fafd 60%, #e3f0ff 100%);
    padding: 90px 0 60px 0;
}

.benefits-grid {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-top: 40px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #7ed957 #e3f0ff;
}
.benefits-grid::-webkit-scrollbar {
    height: 8px;
}
.benefits-grid::-webkit-scrollbar-thumb {
    background: #7ed957;
    border-radius: 8px;
}
.benefit-card {
    min-width: 260px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    border: 2.5px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(120deg, #fff 80%, #e3f0ff 100%),
        linear-gradient(90deg, #7ed957 0%, #e74c3c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 24px 32px 24px;
    position: relative;
    transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.benefit-card:hover {
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.18);
    border-color: #7ed957;
    transform: translateY(-8px) scale(1.04);
}
.benefit-icon {
    font-size: 2.8rem;
    color: #7ed957;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #7ed957 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2236;
    margin-bottom: 12px;
    text-align: center;
}
.benefit-card p {
    font-size: 1.05rem;
    color: #2d3a4a;
    text-align: center;
}

@media (max-width: 900px) {
    .benefits-grid {
        gap: 18px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .benefit-card {
        min-width: 180px;
        max-width: 220px;
        padding: 18px 6px 16px 6px;
    }
    .benefit-icon {
        font-size: 1.5rem;
    }
    .benefits-arrow {
        font-size: 1.5rem !important;
        left: -18px !important;
        right: -18px !important;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        gap: 10px;
        padding-left: 4px;
        padding-right: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .benefit-card {
        min-width: 140px;
        max-width: 180px;
        padding: 10px 2px 10px 2px;
    }
    .benefit-icon {
        font-size: 1.1rem;
    }
    .benefits-arrow {
        display: none !important;
    }
}

.who-divider {
    border: 1px dashed #cf0000;
    height: 1.5px;
    width: 100%;
    margin: 0 0 0 0;
    background: linear-gradient(90deg, #eb564a 0%, #6d0500 50%, #e74c3c 100%);
    border-radius: 2px;
    opacity: 0.18;
    margin-top: 6px;
    margin-bottom: 6px;
}

.highlight-hero {
    background: linear-gradient(90deg, #f7fafd 60%, #e3f0ff 100%);
    color: #89271d;
    font-weight: 700;
    border-radius: 8px;
    padding: 2px 8px;
    box-decoration-break: clone;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    display: inline-block;
    margin: 5px 2px;
    line-height: 44px;
}

/* Modern image styles for treatments */
.treatment-icon img {
    max-width: 90%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13),
        0 1.5px 24px rgba(44, 62, 80, 0.08);
    border: 3px solid #e3f0ff;
    background: #fff;
    transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
    position: relative;
    z-index: 1;
}
.treatment-card:hover .treatment-icon img {
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.18);
    border-color: #7ed957;
    transform: scale(1.06) rotate(-2deg);
}

/* Modern doctor image style */
.doctor-image img {
    width: 100%;
    /* height: 180px; */
    object-fit: cover;

    margin: 0 auto;
    display: block;
    transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
/* .doctor-image img:hover {
  transform: scale(1.05) rotate(2deg);
} */

/* Modern section backgrounds */
.treatments,
.doctor,
.problem {
    background: linear-gradient(120deg, #f7fafd 60%, #e3f0ff 100%);
    position: relative;
    z-index: 0;
}
.treatments::before,
.doctor::before,
.problem::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: url('data:image/svg+xml;utf8,<svg width="320" height="320" viewBox="0 0 320 320" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="160" cy="160" rx="160" ry="160" fill="%237ed957" fill-opacity="0.08"/><ellipse cx="100" cy="220" rx="60" ry="60" fill="%23e74c3c" fill-opacity="0.06"/><ellipse cx="240" cy="80" rx="40" ry="40" fill="%237ed957" fill-opacity="0.10"/></svg>');
    background-size: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}
.treatments > *,
.doctor > *,
.problem > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .doctor-image img {
        width: 120px;
        height: 120px;
    }
    .treatment-icon img {
        max-width: 110px;
        border-radius: 14px;
    }
}

/* Modern Who Can Benefit Section */
.who {
    background: linear-gradient(120deg, #f7fafd 60%, #e3f0ff 100%);
    padding: 80px 0 70px 0;
}
.who-container {
    display: flex;
    align-items: stretch;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(352deg, #f7f4ef 60%, #e3f0ff 100%);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.1);
    backdrop-filter: blur(6px) saturate(1.1);
    -webkit-backdrop-filter: blur(6px) saturate(1.1);
    padding: 48px 32px;
}
.who-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    min-width: 0;
}
.who-image {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}
.who-img_ {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.who-img_ img {
    width: 100% !important;
    /*height: 100%;*/
    /*max-width: 480px;*/
    /*max-height: 600px;*/
    /*object-fit: cover;*/
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    background: #fff;
}
@media (max-width: 1000px) {
    .who-container {
        flex-direction: column;
        gap: 24px;
        padding: 24px 8px;
    }
    .who-img_ img {
        max-width: 320px;
        max-height: 320px;
    }
}

/*  */
.cta {
    /* background-image: url("images/weight-loss-journey.png") !important; */
    background: url("https://s3.ap-south-1.amazonaws.com/cdn1.cr/live-light-landing/weight-loss-journey.png")
        center center/cover no-repeat;
    background-size: cover;
    /* background-position: center; */
    position: relative;
    padding: 80px 0 70px 0;
    overflow: hidden;
    /* height: 500px; */
    justify-content: flex-start;
    display: flex;
    background-size: 100%;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
}
.cta > .container {
    margin-left: 5vw;
}
.cta > .container {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
}
.cta h2,
.cta p {
    color: #1a2236;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.95),
        0 1px 2px rgba(30, 40, 60, 0.18);
}
@media (max-width: 700px) {
    .cta {
        flex-direction: column;
        height: auto;
        min-height: unset;
        justify-content: flex-start;
        align-items: stretch;
        background: none !important;
        padding: 0;
    }
    .cta-mobile-bg {
        width: 100%;
        height: 220px;
        background: url("https://s3.ap-south-1.amazonaws.com/cdn1.cr/live-light-landing/weight-loss-journey-mobile-banner.png")
            center center/cover no-repeat;
        display: block;
    }
    .cta > .container {
        margin-left: 0;
        border-radius: 0 0 32px 32px;
        box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
        background: rgba(255, 255, 255, 0.95);
        align-items: center;
        padding: 32px 12px 24px 12px;
    }
    .hero-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: 221px 1fr;
    }
    .hero-grid-top {
        background: #f7f4ef;
        padding: 36px 32px 18px 32px;
        flex: 0 0 20%;
        display: flex;
        align-items: flex-start;
    }
    .hero-grid-middle {
        padding: 12px 12px 12px 12px;
    }
    .hero-bar-text {
        font-family: "Montserrat", Arial, sans-serif;
        font-size: 1.25rem;
        color: #222;
        flex: 1 1 0%;
        display: inline-block;
        align-items: center;
    }
    .problem-content .section-title h2 {
        font-size: 1.5rem;
        margin-bottom: 18px;
        color: #1a2236;
        letter-spacing: -1px;
    }
    .problem-content .section-title p {
        font-size: 1.1rem;
        color: #3a3a3a;
        margin-bottom: 18px;
        text-align: center;
    }

    .doctor-image img {
        width: 330px;
        height: 330px;
    }
}
.cta p {
    padding: 15px 0px;
}

.nav-menu .btn {
    background: linear-gradient(350deg, #ff8a8f 0%, #e74c3c 100%);
    color: #fff;
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.13);
    padding: 12px 30px;
    font-size: 1.08rem;
    letter-spacing: 0.3px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.nav-menu .btn:hover {
    background: linear-gradient(350deg, #aa3e43 0%, #e74c3c 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.18);
}

.cta-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
}
.cta-doctor-img {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-doctor-img img {
    width: 250px;
    height: 250px;
}

.cta-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 700px) {
    .cta-flex {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .cta-doctor-img {
        margin-bottom: 12px;
    }
    .cta-doctor-img img {
        width: 250px;
        height: 250px;
    }
    .cta-content {
        align-items: center;
        text-align: center;
    }
}

.before-after {
    background: linear-gradient(120deg, #e3f0ff 60%, #f7fafd 100%);
    padding: 80px 0 70px 0;
    position: relative;
    overflow: hidden;
}
.before-after .section-title {
    margin-bottom: 40px;
}
.before-after-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.ba-arrow {
    background: none;
    border: none;
    color: #7ed957;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    z-index: 2;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.ba-arrow:hover {
    color: #e74c3c;
    transform: scale(1.15);
}
.ba-slides {
    width: 500px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    background: #fff;
}
.ba-slide {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s;
}
.ba-slide.active {
    display: flex;
    opacity: 1;
    z-index: 1;
    animation: baFadeIn 0.7s;
}
@keyframes baFadeIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.ba-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
    background: #f7fafd;
}
@media (max-width: 900px) {
    .ba-slides {
        width: 90vw;
        height: 70vw;
        min-width: 220px;
        min-height: 180px;
        max-width: 98vw;
        max-height: 90vw;
    }
}
@media (max-width: 600px) {
    .ba-slides {
        width: 98vw;
        height: 60vw;
        min-width: 160px;
        min-height: 120px;
        max-width: 99vw;
        max-height: 80vw;
    }
    .before-after {
        padding: 40px 0 30px 0;
    }
    .ba-arrow {
        font-size: 1.5rem;
        padding: 0 4px;
    }
}

.video-highlight {
    background: linear-gradient(120deg, #fcfcfc 60%, #ffe9e8 100%);
    padding: 70px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Add healthy lifestyle SVG background */
    /* Add subtle texture pattern */
    /* background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="white"/><circle cx="20" cy="20" r="1.5" fill="%23e0e7ef"/><circle cx="0" cy="40" r="1.5" fill="%23e0e7ef"/><circle cx="40" cy="0" r="1.5" fill="%23e0e7ef"/></svg>'),
    linear-gradient(120deg, #f7fafd 60%, #e3f0ff 100%); */
    background-repeat: repeat, no-repeat;
    background-size: 40px 40px, cover;
}
.video-highlight > .container,
.video-title,
.video-embed-wrapper {
    position: relative;
    z-index: 1;
}
.video-title h2 {
    font-size: 2.3rem;
    color: #e74c3c;
    margin-bottom: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}
.video-title p {
    color: #222;
    font-size: 1.18rem;
    margin-bottom: 32px;
}
.video-embed-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    background: linear-gradient(350deg, #ffb8bb 0%, #b2ee90 100%);
    padding: 18px;
}
.video-embed-wrapper iframe {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    border: none;
}
@media (max-width: 900px) {
    .video-embed-wrapper iframe {
        height: 320px;
    }
}
@media (max-width: 600px) {
    .video-highlight {
        padding: 32px 0 18px 0;
    }
    .video-title h2 {
        font-size: 1.3rem;
    }
    .video-title p {
        font-size: 1rem;
    }
    .video-embed-wrapper {
        padding: 4px;
    }
    .video-embed-wrapper iframe {
        height: 48vw;
        min-height: 180px;
        max-height: 220px;
    }
}
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    .doctor-info h2 {
        font-size: 1.7rem;
        margin-bottom: 20px;
        color: var(--black);
    }
    .cta-doctor-img img {
        width: 250px;
        height: 250px;
    }
    .cta .btn,
    .cta .btn-light {
        background: linear-gradient(90deg, #7ed957 0%, #e74c3c 100%);
        color: #fff;
        font-weight: 700;
        border: none;
        border-radius: 50px;
        box-shadow: 0 4px 16px rgba(231, 76, 60, 0.13);
        padding: 9px 15px;
        font-size: 1.08rem;
        letter-spacing: 0.3px;
        transition: background 0.3s, transform 0.2s;
    }
}

.before-after-gallery {
    display: flex;
    gap: 36px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 32px;
}
.before-after-gallery a {
    display: block;
    max-width: 500px;
    width: 100%;
}
.before-after-gallery img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
    background: #f7fafd;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
    cursor: zoom-in;
}
@media (max-width: 1100px) {
    .before-after-gallery img {
        height: 400px;
    }
}
.section-title h2 {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 35px;
    padding: 10px 0px;
    font-weight: 500;
}
.section-title p {
    text-align: center;
}
.section-title {
    padding: 1px 0px 30px;
}
.problem-content p {
    padding: 20px 0px 20px;
}
.problem-content_ p {
    padding: 5px 0px 5px;
}
.problem-content_ p {
    padding: 5px 0px 5px;
}
@media (max-width: 700px) {
    .before-after-gallery {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .before-after-gallery img {
        height: 220px;
        max-width: 98vw;
    }
    .section-title h2 {
        text-align: center;
        font-family: "Poppins", sans-serif;
        font-size: 20px;
    }
}

.doctor-title {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #3c7a22 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    gap: 4px;
}
.doctor-title::before {
    content: "→";
    display: inline-block;
    font-size: 1.2em;
    font-weight: 800;
    margin-right: 12px;
    background: linear-gradient(90deg, #7ed957 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    flex-shrink: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #fff;
}
.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #7ed957 60%, #e74c3c 100%); */
    color: #6bb541;
    font-size: 1.2rem;
    margin-top: 0px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
}
.footer-contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-item a:hover {
    color: #7ed957;
}
.who-img_ img {
    width: 100% !important;
    /*height: 100%;*/
    /*max-width: 480px;*/
    /*max-height: 600px;*/
    /*object-fit: cover;*/
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    background: #fff;
}
@media (max-width: 700px) {
    .footer-contact-item {
        font-size: 0.95rem;
        gap: 8px;
    }
    .footer-contact-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
        font-size: 1rem;
    }
}
@media (max-width: 767px) {
    .mobile-toggle {
        display: block;
    }
    .hero-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: 220px 1fr;
    }
}

/* head css */
/* Critical header styles */
header {
    background: #f7f4ef;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 0;
    height: 100px;
}

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

.logo img {
    height: 100px;
    margin-right: 15px;
    will-change: transform;
    transform: translateZ(0);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--red);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Critical hero styles */
.hero.hero-image-grid {
    background: none;
    padding: 0;
    position: relative;
    min-height: 520px;
    contain: layout style paint;
}

.hero-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    width: 100%;
}

.hero-grid-image {
    background: #f5f5f5;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
}

.hero-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
    will-change: transform;
    transform: translateZ(0);
}

.hero-grid-content {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    min-height: 420px;
}

.hero-grid-top {
    background: #f7f4ef;
    padding: 36px 32px 18px 32px;
    flex: 0 0 33%;
    display: flex;
    align-items: flex-start;
}

.hero-clinic-name {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #222;
    text-transform: uppercase;
}

.hero-grid-middle {
    background: #ff8a8f;
    color: #fff;
    flex: 1 1 67%;
    display: flex;
    align-items: flex-start;
    padding: 32px 32px 0 32px;
}

.hero-headline-art {
    font-family: "Unbounded", Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #fff;
    text-align: left;
    word-break: break-word;
}

.hero-grid-bar {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #f7f4ef;
    padding: 28px 40px 28px 40px;
    border-top: 1px solid #e0e0e0;
}

.hero-bar-text {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.25rem;
    color: #222;
    flex: 1 1 80%;
    display: flex;
    align-items: center;
}

.hero-bar-text b {
    font-weight: 700;
}

.hero-bar-smiley {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.smiley-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #6d726a;
    color: #f7f4ef;
    font-size: 2rem;
    font-family: "Montserrat", Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Responsive critical styles */
@media (max-width: 900px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: 320px 1fr;
    }
    .hero-grid-image img,
    .hero-grid-image {
        min-height: 220px;
        height: 220px;
    }
    .hero-grid-content {
        min-height: unset;
    }
}

@media (max-width: 700px) {
    .hero-grid-bar {
        flex-direction: column;
        gap: 18px;
        padding: 18px 12px;
    }
    .hero-bar-smiley {
        justify-content: flex-start;
    }
    .hero-headline-art {
        font-size: 2rem;
    }
    .hero-clinic-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 500px) {
    .hero-headline-art {
        font-size: 1.2rem;
    }
    .hero-grid-top,
    .hero-grid-middle {
        padding: 12px 8px 0 8px;
    }
    .smiley-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* head css end */

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    .hero-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: 220px 1fr;
    }
    .hero-bar-text {
        font-family: "Montserrat", Arial, sans-serif;
        font-size: 1.25rem;
        color: #222;
        flex: 1 1 80%;
        padding-top: 4px;
        display: inline-block;
        align-items: center;
    }
    .hero-grid-top {
        flex: 0;
        padding: 20px;
    }
    .header-container {
        justify-content: center;
        align-items: center;
        padding: 1px 3px;
        gap: 120px;
    }
    .problem {
        position: relative;
        overflow: hidden;
        background: linear-gradient(120deg, #f7fafd 60%, #e3f0ff 100%);
        padding: 25px 0 70px 0;
    }
    .problem-content_ p {
        padding: 15px 0px 5px;
    }
    .treatment-icon img {
        max-width: 90%;
        border-radius: 14px;
    }
    .benefit-card {
        min-width: 200px;
    }
    .doctor {
        padding: 25px 0;
        background: var(--white);
    }
    .benefits {
        background: linear-gradient(120deg, #f7fafd 60%, #e3f0ff 100%);
        padding: 25px 0 60px 0;
    }
    .contact {
        padding: 25px 0;
        background: var(--white);
    }
    .faq {
        background: linear-gradient(120deg, #f7f4ef 60%, #f7fafd 100%);
        position: relative;
        padding: 25px 0 60px 0;
        overflow: hidden;
    }
    .nav-menu {
        top: 100px;
        background: linear-gradient(120deg, #f7fafd 60%, #e3f0ff 100%);
    }
    .nav-menu li {
        margin: 0 15px;
        padding: 10px 0px;
    }
    .hero-grid-middle {
        padding: 12px 8px 8px 8px;
    }
}

/* Mobile Sticky Contact Buttons */
.mobile-sticky-buttons {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    gap: 12px;
    flex-direction: column;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.sticky-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.sticky-btn:hover::before {
    transform: scale(1);
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.sticky-call {
    background: linear-gradient(90deg, #4f7c3d 0%, #e74c3c 100%);
}

.sticky-whatsapp {
       background: linear-gradient(90deg, #4f7c3d 0%, #e74c3c 100%);
}

.sticky-btn i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.sticky-btn span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sticky-btn:hover span {
    opacity: 1;
}

/* Show sticky buttons only on mobile */
@media (max-width: 768px) {
    .mobile-sticky-buttons {
        display: flex;
    }
    .who {
    background: linear-gradient(120deg, #f7fafd 60%, #e3f0ff 100%);
    padding: 25px 0 70px 0;
}
}

/* Responsive adjustments for very small screens */
@media (max-width: 480px) {
    .mobile-sticky-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .sticky-btn {
        width: 55px;
        height: 55px;
    }

    .sticky-btn i {
        font-size: 1.3rem;
    }
}
