/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange:       #EE6233;
    --orange-hover: #d46a1f;
    --navy:         #1A3045;
    --text-dark:    #2D3748;
    --text-medium:  #4A5E6A;
    --text-light:   #6B8A9A;
    --bg-cream:     #FAF7F4;
    --bg-light:     #F5F9FC;
    --white:        #FFFFFF;
    --border:       #E2E8F0;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul   { list-style: none; }
address { font-style: normal; }

h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
}

.btn-sm {
    padding: 9px 22px;
    font-size: 14px;
}

/* ========================================
   HEADER
   ======================================== */
.header-top {
    background: var(--white);
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
}

.phone-number {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
}

.header {
    background: var(--white);
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        position: sticky;
    top: 0;
    z-index: 1000;
        width: 100%;
}
a.phone-number:hover {
    color: var(--orange);
}

.navbar-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo img {
    height:100px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--orange);
}

.nav-cta { padding: 12px 22px; font-size: 14px; }

/* ========================================
   OFF-CANVAS DRAWER
   ======================================== */
.offcanvas-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.offcanvas-overlay.active {
    display: block;
    opacity: 1;
}

.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 90vw;
    height: 100%;
    background: var(--white);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.offcanvas.active {
    transform: translateX(0);
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.offcanvas-logo img {
    height: 80px;
    width: auto;
}

.offcanvas-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.offcanvas-close:hover {
    background: var(--border);
}

.offcanvas-nav {
    flex: 1;
    padding: 12px 0;
}

.offcanvas-nav ul {
    list-style: none;
}

.offcanvas-nav ul li a {
    display: block;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--bg-light);
    transition: color 0.2s ease, background 0.2s ease;
}

.offcanvas-nav ul li a:hover,
.offcanvas-nav ul li a.active {
    color: var(--orange);
    background: #fff8f5;
}

.offcanvas-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.offcanvas-cta {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 15px;
    border-radius: 50px;
}

.offcanvas-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
}

.offcanvas-phone:hover {
    color: var(--orange);
}

body.offcanvas-open {
    overflow: hidden;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}


@media only screen and (max-width: 1140px){
a.phone-number {
    display: none;
}
.nav-menu {
    margin-right: auto;
}

} 


@media only screen and (max-width: 991px) {   

  .mobile-toggle { display: flex; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
       max-width: 560px;
        width: 100%;
        right: -30px;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        gap: 0;
        margin-left: 0;
    }

    .nav-menu.active { display: flex; }
    .nav-menu li { padding: 12px 0;  width: 100%;}
    .nav-cta { display: none; }
    .navbar-inner { position: relative; }
        .nav-menu li:not(:last-child) { border-bottom: 1px solid var(--border); }
   
   .before-after-card img {
 
    height: auto;
 }
 
 .offer-image {
    height: auto;
}
   .doctor-image {
    height: auto;
}
   
    } 
/* ========================================
   HERO
   ======================================== */
.hero {
    background: var(--bg-light);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 80px 70px calc((100vw - 1700px) / 2 + 40px);
    padding-left: max(40px, calc((100vw - 1700px) / 2 + 40px));
}

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color:var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.12;
}

.hero-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 510px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    overflow: hidden;
}

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

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 80px 0 70px;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
}

.for_bg_img {
    background: linear-gradient(rgb(238 98 51 / 85%), rgb(238 98 51 / 75%)), url(/assets/images/img3.jpg);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
   background-size: cover;
       padding: 80px 0px !important;
           border-radius: 20px;
               background-position: center;
}

p.services-bar-sub-text {
    color: #e5e5e5;
    text-align: center;
}
p.services-bar-sub-text {
       color: #ffffffb8;
    font-size: 14px;
     margin-top: 10px;
}

.service-card { 
    
text-align: left; 
background: #F5F9FC;
    padding: 30px 40px;
    border-radius: 30px;
        border: 2px solid #f3f3f3;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
        max-width: 30px;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

.about-content {
    max-width: 500px;
    width: 100%;
}


@media only screen and (max-width: 1024px) {
.for_bg_img {
 
       padding-left: 30px !important;
       padding-right: 30px !important;

}

}
@media only screen and (max-width: 768px) {
  section.services-bar {

    padding-left: 20px !important;
    padding-right: 20px !important;
}
}

/* ========================================
   SERVICES BAR
   ======================================== */


.services-bar-text {
    text-align: center;
    color: var(--white);
    font-size: 18px;
        font-weight: 500;
    line-height: 1.6;
}
section.services-bar {
    padding-bottom: 80px;
        padding-left: 40px;
    padding-right: 40px;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  
    background: #FAF7F4;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-content .section-subtitle { text-align: left; }

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-stats {
    display: flex;
    gap: 36px;
    margin: 26px 0 30px;
    padding: 22px 0;
        flex-wrap: wrap;
 
}

.stat-label {
       font-size: 18px;
    font-weight: 700;   
    color: var(--orange);
    font-family: 'Inter', sans-serif;
}

span.sub-stat-label {
    display: block;
    color: #666666;
    font-size: 14px;
}

.about_container{
    max-width: 1700px;
    margin-right: auto;
     
}

@media only screen and (max-width: 768px) {
        .about-content {
       
        padding-left: 20px;
        padding-right: 20px;
      padding-top: 0px !important; 
      
    }


}
@media only screen  and (max-width: 1440px) 
{

.about-content {
 max-width:100% ;
    padding-top: 40px;
     padding-bottom: 60px;
    padding-right: 40px;
}

}

/* ========================================
   DOCTORS
   ======================================== */
.doctors {
    padding: 80px 0;
    background: var(--white);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.doctor-card {
    background: var(--bg-cream);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-bottom: 4px solid #ee6233;
}

.doctor-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
        border-radius: 18px;
}

.doctor-info {
    padding-top: 26px;
}

.doctor-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.doctor-role {
    display: block;
    font-size: 14px;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 12px;
}

.doctor-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 18px;
}

/* ========================================
   BEFORE & AFTER
   ======================================== */
.before-after {
    padding: 80px 0;
    background: var(--bg-cream);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
     gap: 30px;
    margin-bottom:40px;
}

.before-after-card {
    border-radius: 18px;
    overflow: hidden;
}

.before-after-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 18px;
}

.before-after-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

.before-after-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 40px;
}
/* ========================================
   OFFERS
   ======================================== */
.offers {
    padding: 80px 0;
    background: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}



.offer-image {
      height: 400px;
   
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
        border-radius: 16px;
}

.offer-info {
    padding: 20px 4px 12px;
        text-align: center;
}

.offer-info h3 {
    font-size: 17px;
    font-weight: 600;
    color: #81848b;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.offer-price {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Inter', sans-serif;
}

.offer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   CLINICIANS
   ======================================== */
.clinicians {
    padding: 80px 0;
    background: var(--orange);
    text-align: center;
}

.clinicians h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.clinicians > .container > p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.clinicians-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.clinicians-card {
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
}

.clinicians-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
}

.clinicians-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.clinicians-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.clinicians-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 80px 0;
    background: var(--bg-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.05);
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
        margin-bottom: 50px;
}

.testimonial-author {
   
    align-items: center;
    justify-content: space-between;
}

.testimonial-author strong {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.stars {
    color: #F5A623;
    font-size: 16px;
    letter-spacing: 1px;
}

@media only screen and (max-width: 768px) {
       .testimonial-card {
  display:unset; 
  
   
}


}
/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--white);
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 44px;
}

.footer-logo img {
        height: 100px;
    width: auto;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-address {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
}

.footer-cta {
    padding: 12px 22px;
    font-size: 14px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    color:var(--orange);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.footer-links li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-links a:hover { color: var(--orange); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-light);
}


/* ========================================
   RESPONSIVE — 1280px
   ======================================== */
@media (max-width: 1280px) {
    .container { padding: 0 30px; }

    .hero-content {
        padding: 60px 60px 60px 30px;
    }

    .hero-content h1 { font-size: 42px; }

    .services-grid { gap: 32px 40px; }

    .about-grid { gap: 50px; }

    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
}

/* ========================================
   RESPONSIVE — 1024px
   ======================================== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 36px; }
    .section-header h2, .about-content h2, .clinicians h2 { font-size: 30px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

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

    .clinicians-cards { grid-template-columns: repeat(2, 1fr); }

    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   RESPONSIVE — 768px
   ======================================== */
@media (max-width: 768px) {
    .container { padding: 0 20px; }

    /* Show hamburger, hide desktop nav items */
    .mobile-toggle   { display: flex; }
    .nav-menu        { display: none; }
    .phone-number    { display: none; }
    .nav-cta         { display: none; }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-content {
        padding: 50px 20px 40px;
        text-align: center;
        align-items: center;
                order: 2;
    }
    .hero-content h1 { font-size: 30px; }
    .hero-content p { max-width: 100%; }
    .hero-image { height: 280px; order: 1; }

    .services-grid { grid-template-columns: 1fr; gap: 28px; }

    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-stats { flex-wrap: wrap; gap: 20px; }

    .doctors-grid { grid-template-columns: 1fr; max-width: 460px; }

    .before-after-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 22px; }

    .offers-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

    .clinicians-cards { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .section-header h2, .about-content h2, .clinicians h2 { font-size: 26px; }
}

/* ========================================
   RESPONSIVE — 480px
   ======================================== */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 26px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; text-align: center; }

    .section-header h2, .about-content h2 { font-size: 23px; }

    .about-stats { flex-direction: column; gap: 12px; }

    .btn { padding: 12px 22px; }
}


/*-----privacy_page------*/
ul.common-listing li {
    list-style: disc;
}
.common-listing li::marker {
    font-size: 22px;
    color: var(--orange);
}

.page-hero {
  background: var(--orange);
  padding: 80px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
}

.page-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.page-breadcrumb {
  font-size: .74rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: .04em;
}

.page-breadcrumb a {
  color: #fff;
}

.page-breadcrumb a:hover {
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.2rem);
  color: #fff;
  line-height: normal;
  margin-bottom: 40px;
  font-family: var(--ff-serif);
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
  margin-bottom: 10px;
}

section.legal-section {
  padding: 80px 40px;
}

.legal-content {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}

.legal-content p {
  width: 100%;
  max-width: 100%;
  margin: 16px 0;
}

.legal-content h2.section-title {
  margin: 40px 0 20px;
  font-family: var(--ff-serif);
}

.legal-content p a {
  color: var(--orange);
  font-weight: 700;
  display: inline-block;
}

ul.common-listing {
    padding-left: 0;
    margin-left: 20px;
}



@media only screen and (max-width: 768px) {
  section.legal-section {
    padding: 50px 25px;
  }

}