*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
:root{
  --navy:#162b4a;
  --pink:#b76e79;
  --muted:#6b7280;
  --line:#e5e7eb;
  --text:#1f2937;
}
body{font-family:'Poppins',sans-serif;}
html{
  scroll-behavior:smooth;
}


/* LOADER */
.rk-loader{
  position:fixed;
  inset:0;
  background:#fff;
  z-index:100000;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.5s ease;
}

.rk-loader.hide{
  opacity:0;
  visibility:hidden;
}

.rk-loader-inner{
  width:74px;
  height:74px;
  border-radius:50%;
  border:3px solid rgba(192,68,95,.15);
  border-top-color:#b76e79;
  animation:rkSpin 1s linear infinite;
  display:flex;
  align-items:center;
  justify-content:center;
}

.rk-loader-inner span{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#b76e79;
}

@keyframes rkSpin{
  100%{
    transform:rotate(360deg);
  }
}



.rk-floating-actions{
  position:fixed;
  right:22px;
  bottom:24px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.rk-floating-actions a{
  width:54px;
  height:54px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  font-size:22px;
  box-shadow:0 12px 30px rgba(0,0,0,.22);
}

.rk-float-call{
  background:#162b4a;
}

.rk-float-whatsapp{
  background:#25D366;
}

@media(max-width:575px){
  .rk-floating-actions{
    right:16px;
    bottom:18px;
  }

  .rk-floating-actions a{
    width:48px;
    height:48px;
    font-size:20px;
  }
}


section{
  scroll-margin-top:120px;
}

@media(max-width:768px){
  section{
    scroll-margin-top:80px;
  }
}

.reveal{
  opacity:0;
  transform:translateY(45px);
  transition:all .8s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* ══════════════════════
   DESKTOP HEADER
══════════════════════ */

.rk-header{
  width:100%;
  background:#fff;
  display:flex;
  align-items:stretch;
  min-height:110px;
  border-bottom:1px solid var(--line);
  box-shadow:0 2px 15px rgba(22,43,74,0.07);
  padding-right:20px;
}

.rk-header,
.rk-mobile-header{
  position: sticky;
  top: 0;
  z-index: 999;
}


/* ── LEFT: Brand ── */
.rk-brand{
  display:flex;
  align-items:center;
  padding:0 28px 0 36px;
  border-right:1px solid var(--line);
  min-width:310px;
  flex-shrink:0;
  align-self:stretch;
  justify-content:flex-start;
}
.rk-brand-inner{
  display:flex;
  align-items:center;
  gap:14px;
}

/* Logo */
.rk-logo-ph{
  width:70px;
  height:70px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.rk-logo-ph img{
  width:70px;
  height:70px;
  object-fit:contain;
  display:block;
}

.rk-brand-text h1{
  font-family:'Playfair Display',Georgia,serif;
  font-size:26px;
  font-weight:500;
  color:#b76e79;
  line-height:1.2;
  margin-bottom:3px;
  letter-spacing:.3px;
}
.rk-brand-text .quals{
  display:flex;
  flex-direction:column;
  gap:0;
}
.rk-brand-text .quals p{
  font-size:12px;
  color:#6b7280;
  line-height:1.6;
  font-weight:400;
  margin:0;
}

/* ── RIGHT: top + bottom stacked ── */
.rk-right{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding-right:0;
  margin-left:-8px;
}

/* Top bar */
.rk-top{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:0;
  border-bottom:1px solid var(--line);
  align-self:stretch;
}
.rk-contact-item{
  display:flex;
  align-items:center;
  gap:9px;
  padding:14px 20px;
  border-right:1px solid var(--line);
  text-decoration:none;
  color:var(--text);
  font-size:13px;
  font-weight:500;
  height:100%;
  transition:color .2s;
  white-space:nowrap;
}
.rk-contact-item:hover{color:var(--pink);}
.rk-contact-item i{font-size:15px;color:var(--navy);}
.rk-contact-item:hover i{color:var(--pink);}

.rk-appt-btn{
  display:flex;align-items:center;
  background:var(--navy);
  color:#fff;
  padding:0 28px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  text-decoration:none;
  height:100%;
  white-space:nowrap;
  border:none;cursor:pointer;
  font-family:'Poppins',sans-serif;
  transition:background .2s;
}
.rk-appt-btn:hover{background:#1e3a60;}

/* Bottom bar — nav */
.rk-bottom{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:0 10px 0 0;
  height:50px;
}
.rk-nav{
  display:flex;align-items:center;
  height:100%;gap: 20px;
}
.rk-nav>a{
  display:flex;align-items:center;gap:5px;
  text-decoration:none;
  color:var(--text);
  font-size:12.5px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.8px;
  padding:0 13px;
  height:100%;
  position:relative;
  transition:color .2s;
  white-space:nowrap;
}
.rk-nav>a:hover{color:var(--pink);}
.rk-nav>a.active{color:var(--pink);}
.rk-nav>a.active::after{
  content:'';
  position:absolute;
  bottom:0;left:13px;right:13px;
  height:3px;
  background:var(--pink);
  border-radius:2px 2px 0 0;
}
.rk-nav>a i{font-size:10px;}

.rk-nav-icons{
  display:flex;align-items:center;gap:2px;
  padding-left:8px;
  border-left:1px solid var(--line);
  margin-left:4px;height:100%;
}
.rk-nav-icons button{
  border:none;background:transparent;
  font-size:28px;color:var(--text);
  cursor:pointer;padding:8px;
  display:flex;align-items:center;
  transition:color .2s;border-radius:4px;font-weight:500;
}

.rk-nav-icons button:hover{color:var(--pink);background:#fdf2f4;}

/* ══════════════════════
   DROPDOWN
══════════════════════ */
.rk-dropdown{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
}
.rk-dropdown>a{
  display:flex;align-items:center;gap:5px;
  text-decoration:none;
  color:var(--text);
  font-size:12.5px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.8px;
  padding:0 13px;
  height:100%;
  position:relative;
  transition:color .2s;
  white-space:nowrap;
  cursor:pointer;
}
.rk-dropdown>a:hover{color:var(--pink);}
.rk-dropdown>a i{font-size:10px;transition:transform .2s;}
.rk-dropdown:hover>a{color:var(--pink);}
.rk-dropdown:hover>a i{transform:rotate(180deg);}

.rk-dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  border:1px solid var(--line);
  border-top:3px solid var(--pink);
  box-shadow:0 8px 24px rgba(22,43,74,0.12);
  min-width:210px;
  z-index:900;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .22s ease,transform .22s ease,visibility .22s;
}
.rk-dropdown:hover .rk-dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.rk-dropdown-menu a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 18px;
  text-decoration:none;
  color:var(--text);
  font-size:12.5px;
  font-weight:500;
  border-bottom:1px solid #f3f4f6;
  transition:background .15s,color .15s;
  text-transform:none;
  letter-spacing:0;
}
.rk-dropdown-menu a:last-child{border-bottom:none;}
.rk-dropdown-menu a:hover{background:#fdf2f4;color:var(--pink);}
.rk-dropdown-menu a i{font-size:14px;color:var(--navy);width:18px;}
.rk-dropdown-menu a:hover i{color:var(--pink);}

/* ══════════════════════
   DESKTOP SIDE PANEL
══════════════════════ */
.rk-overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,0);
  pointer-events:none;
  transition:background .38s ease;
  z-index:998;
}
.rk-overlay.open{
  background:rgba(0,0,0,0.5);
  pointer-events:all;
}

.rk-side-panel{
  position:fixed;top:0;right:0;
  width:380px;height:100vh;
  background:#fff;z-index:999;
  transform:translateX(100%);
  transition:transform .42s cubic-bezier(.25,.46,.45,.94);
  overflow-y:auto;
  display:flex;flex-direction:column;
}
.rk-side-panel.open{transform:translateX(0);}

.sp-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 24px;
  border-bottom:1px solid var(--line);
  position:sticky;top:0;background:#fff;z-index:1;
}
.sp-brand{display:flex;align-items:center;gap:12px;}
.sp-logo-ph{
  width:46px;height:46px;
  border-radius:5px;
  display:flex;align-items:center;justify-content:center;
}
.sp-logo-ph img{
  width:46px;height:46px;object-fit:contain;display:block;
}
.sp-brand-text .sp-name{
  font-family:'Playfair Display',Georgia,serif;
  font-size:16px;font-weight:600;color:var(--pink);line-height:1.2;
}
.sp-brand-text .sp-sub{font-size:10px;color:var(--muted);font-weight:400;}
.sp-close{
  border:none;background:transparent;font-size:20px;color:#374151;
  cursor:pointer;padding:6px;border-radius:4px;
  transition:background .2s;display:flex;align-items:center;
}
.sp-close:hover{background:#f3f4f6;}

.sp-body{padding:24px;flex:1;}
.sp-intro{font-size:14px;color:#374151;line-height:1.7;margin-bottom:28px;}
.sp-sec-title{font-size:22px;font-weight:700;color:var(--navy);margin-bottom:18px;}
.sp-location-row{display:flex;gap:12px;align-items:flex-start;margin-bottom:20px;}
.sp-location-row .spi{width:36px;height:36px;flex-shrink:0;display:flex;align-items:center;justify-content:center;}
.sp-location-row .spi i{font-size:20px;color:var(--pink);}
.sp-location-row p{font-size:13.5px;color:#374151;line-height:1.6;padding-top:6px;}
.sp-contact-link{
  display:flex;align-items:center;gap:12px;
  text-decoration:none;color:#374151;
  font-size:13.5px;font-weight:500;margin-bottom:14px;
}
.sp-contact-link .spi{width:36px;height:36px;flex-shrink:0;display:flex;align-items:center;justify-content:center;}
.sp-contact-link i{font-size:20px;color:var(--pink);}
.sp-contact-link:hover{color:var(--pink);}
.sp-social-title{font-size:22px;font-weight:700;color:var(--navy);margin:28px 0 16px;}
.sp-social{display:flex;gap:10px;}
.sp-soc{
  width:40px;height:40px;border-radius:6px;
  background:var(--navy);display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:16px;text-decoration:none;
  transition:background .2s,transform .15s;
}
.sp-soc:hover{background:var(--pink);transform:translateY(-2px);}
.sp-copy{font-size:12px;color:var(--muted);margin-top:32px;padding-top:18px;border-top:1px solid var(--line);}

/* ══════════════════════
   MOBILE HEADER
══════════════════════ */
.rk-mobile-header{
  display:none;
  align-items:center;justify-content:space-between;
  padding:12px 16px;
  background:#fff;
  border-bottom:1px solid var(--line);
  box-shadow:0 2px 10px rgba(22,43,74,0.06);
}
.mob-hd-brand{display:flex;align-items:center;gap:10px;}
.mob-hd-logo-ph{
  width:44px;height:44px;
  border-radius:5px;
  display:flex;align-items:center;justify-content:center;
}
.mob-hd-logo-ph img{width:44px;height:44px;object-fit:contain;display:block;}
.mob-hd-brand h1{
  font-family:'Playfair Display',Georgia,serif;
  font-size:17px;font-weight:500;color:var(--pink);line-height:1.2;
}
.mob-hd-brand p{font-size:9px;color:var(--muted);font-weight:400;}
.mob-hd-right{display:flex;align-items:center;gap:4px;}
.mob-hd-right button{
  border:none;background:transparent;font-size:20px;color:var(--text);
  cursor:pointer;padding:8px;display:flex;align-items:center;
  border-radius:4px;transition:color .2s;
}
.mob-hd-right button:hover{color:var(--pink);}

/* ══════════════════════
   MOBILE MENU PANEL
══════════════════════ */
.mob-menu-panel{
  display:none;
  position:fixed;inset:0;
  background:#fff;z-index:999;
  flex-direction:column;
  transform:translateY(-100%);
  opacity:0;
  transition:transform .38s cubic-bezier(.25,.46,.45,.94),opacity .3s ease;
}
.mob-menu-panel.open{
  transform:translateY(0);
  opacity:1;
}
.mob-menu-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 20px;border-bottom:1px solid var(--line);
}
.mob-brand{display:flex;align-items:center;gap:10px;}
.mob-brand-logo-ph{
  width:42px;height:42px;border-radius:5px;
  display:flex;align-items:center;justify-content:center;
}
.mob-brand-logo-ph img{width:42px;height:42px;object-fit:contain;display:block;}
.mob-brand h2{font-family:'Playfair Display',Georgia,serif;font-size:15px;font-weight:600;color:var(--pink);}
.mob-close{
  border:none;background:transparent;font-size:22px;color:#374151;
  cursor:pointer;padding:6px;border-radius:4px;display:flex;align-items:center;
}
.mob-nav{display:flex;flex-direction:column;overflow-y:auto;flex:1;}

/* Regular nav links */
.mob-nav>a{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 24px;text-decoration:none;color:var(--text);
  font-size:13.5px;font-weight:600;text-transform:uppercase;letter-spacing:.5px;
  border-bottom:1px solid #f3f4f6;transition:background .15s,color .15s;
}
.mob-nav>a:hover,.mob-nav>a.active{background:#fdf2f4;color:var(--pink);}
.mob-nav>a i{font-size:11px;}

/* Dropdown trigger row */
.mob-drop-item{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 24px;color:var(--text);
  font-size:13.5px;font-weight:600;text-transform:uppercase;letter-spacing:.5px;
  border-bottom:1px solid #f3f4f6;transition:background .15s,color .15s;
  cursor:pointer;user-select:none;
}
.mob-drop-item:hover{background:#fdf2f4;color:var(--pink);}
.mob-drop-item i{font-size:11px;transition:transform .25s ease;}

/* Sub menu */
.mob-sub-menu{
  display:none;
  flex-direction:column;
  background:#f9fafb;
}
.mob-sub-menu.open{display:flex;}
.mob-sub-menu a{
  display:flex;align-items:center;gap:10px;
  padding:11px 24px 11px 36px;
  text-decoration:none;color:var(--text);
  font-size:12.5px;font-weight:500;
  border-bottom:1px solid #f3f4f6;
  transition:background .15s,color .15s;
}
.mob-sub-menu a:last-child{border-bottom:none;}
.mob-sub-menu a:hover{color:var(--pink);background:#fdf2f4;}
.mob-sub-menu a i{font-size:13px;color:var(--navy);width:16px;}
.mob-sub-menu a:hover i{color:var(--pink);}

.mob-contact{
  padding:18px 22px;border-top:2px solid var(--line);background:#f9fafb;
}
.mob-appt{
  display:flex;align-items:center;justify-content:center;
  background:var(--navy);color:#fff;padding:13px;border-radius:4px;
  font-size:11.5px;font-weight:700;letter-spacing:1px;text-transform:uppercase;
  text-decoration:none;margin-bottom:14px;transition:background .2s;
}
.mob-appt:hover{background:#1e3a60;}
.mob-contact a:not(.mob-appt){
  display:flex;align-items:center;gap:10px;
  text-decoration:none;color:var(--text);
  font-size:13px;font-weight:500;margin-bottom:10px;
}
.mob-contact a:not(.mob-appt):last-child{margin-bottom:0;}
.mob-contact i{font-size:15px;color:var(--pink);}

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media(max-width:1080px){
  .rk-nav>a{padding:0 9px;font-size:11.5px;letter-spacing:.2px;}
  .rk-dropdown>a{padding:0 9px;font-size:11.5px;letter-spacing:.2px;}
  .rk-brand{min-width:260px;padding:0 20px 0 24px;}
  .rk-brand-text h1{font-size:19px;}
  .rk-contact-item{padding:12px 14px;font-size:13px;}
}
@media(max-width:768px){
  .rk-header{display:none;}
  .rk-mobile-header{display:flex;}
  .mob-menu-panel{display:flex;}
  .rk-side-panel{display:none!important;}
  .rk-overlay{display:none!important;}
}

































   .dr-rakesh-banner {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: #ffffff;
    }

    .dr-rakesh-banner__image {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
    }

    /* Mobile Responsive */
    @media (max-width: 767px) {
        .dr-rakesh-banner {
            width: 100%;
        }

        .dr-rakesh-banner__image {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
    }
























.rk-about{
  position:relative;
  padding:95px 7% 90px;
  background:#fff;
  overflow:hidden;
}

.rk-about::before{
  content:"";
  position:absolute;
  right:8%;
  top:90px;
  width:360px;
  height:360px;
  background:radial-gradient(circle, rgba(192,68,95,.10), transparent 70%);
  filter:blur(8px);
}

.rk-about-container{
  position:relative;
  max-width:1320px;
  margin:auto;
  display:grid;
  grid-template-columns:52% 48%;
  align-items:center;
  gap:45px;
}

/* LEFT */
.rk-about-label{
  display:inline-block;
  color:#b76e79;
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:16px;
}

.rk-about-label::after{
  content:"";
  display:block;
  width:55px;
  height:2px;
  background:#b76e79;
  margin-top:12px;
}

.rk-about-left h2{
  font-family:'Playfair Display', Georgia, serif;
  font-size:52px;
  line-height:1.12;
  font-weight:500;
  color:#162b4a;
  margin-bottom:20px;
}

.rk-about-left h2 span{
  color:#b76e79;
}

.rk-about-left h4{
  color:#162b4a;
  font-size:20px;
  font-weight:600;
  margin-bottom:24px;
}

.rk-about-left p{
  max-width:680px;
  font-size:16px;
  line-height:1.85;
  color:#4b5563;
  margin-bottom:32px;
}

/* MOBILE CREDENTIALS - hidden on desktop */
.rk-mobile-credentials{
  display:none;
}

/* FEATURES */
.rk-about-features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid #e5e7eb;
  border-bottom:1px solid #e5e7eb;
}

.rk-about-features div{
  padding:24px 22px;
  text-align:center;
  border-right:1px solid #e5e7eb;
  transition:.3s ease;
}

.rk-about-features div:hover{
  background:#fff7f9;
}

.rk-about-features div:last-child{
  border-right:0;
}

.rk-about-features i{
  font-size:30px;
  color:#b76e79;
  margin-bottom:16px;
}

.rk-about-features strong{
  display:block;
  font-size:16px;
  color:#162b4a;
  margin-bottom:7px;
}

.rk-about-features span{
  font-size:14px;
  color:#5f6875;
  line-height:1.5;
}

/* RIGHT IMAGE DESKTOP */
.rk-about-right{
  position:relative;
  min-height:610px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.rk-about-right::before{
  content:"";
  position:absolute;
  width:430px;
  height:430px;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(192,68,95,.10), rgba(22,43,74,.06));
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
}

.rk-about-right img{
  position:relative;
  z-index:2;
  max-height:610px;
  max-width:100%;
  object-fit:contain;
  object-position:left center;
  filter:drop-shadow(0 18px 35px rgba(22,43,74,.13));
}

.rk-about-card{
  position:absolute;
  right:-55px;
  bottom:35px;
  z-index:4;
  width:255px;
  background:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:0 22px 60px rgba(22,43,74,.14);
}

.rk-about-card div{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 0;
  border-bottom:1px solid #edf0f3;
}

.rk-about-card div:last-child{
  border-bottom:0;
}

.rk-about-card i,
.rk-mobile-credentials i{
  width:44px;
  height:44px;
  border-radius:50%;
  background:#fff4f6;
  color:#b76e79;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
}

.rk-about-card p,
.rk-mobile-credentials p{
  margin:0;
}

.rk-about-card strong,
.rk-mobile-credentials strong{
  display:block;
  color:#162b4a;
  font-size:15px;
  margin-bottom:3px;
}

.rk-about-card span,
.rk-mobile-credentials span{
  display:block;
  color:#4b5563;
  font-size:13px;
  line-height:1.4;
}

/* MISSION */
.rk-mission-box{
  position:relative;
  max-width:1320px;
  margin:30px auto 0;
  background:#fff;
  border-radius:20px;
  padding:28px 38px;
  display:grid;
  grid-template-columns:75px 150px 1fr;
  align-items:center;
  gap:22px;
  box-shadow:0 20px 60px rgba(22,43,74,.08);
  border:1px solid #f0f2f5;
}

.rk-mission-icon{
  width:62px;
  height:62px;
  border-radius:50%;
  background:#f8e7ec;
  color:#b76e79;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.rk-mission-box h3{
  font-family:'Playfair Display', Georgia, serif;
  color:#b76e79;
  font-size:22px;
  margin:0;
  padding-right:22px;
  border-right:1px solid #e5cbd1;
}

.rk-mission-box p{
  margin:0;
  color:#253244;
  font-size:18px;
  line-height:1.65;
}

/* RESPONSIVE */
@media(max-width:991px){

  .rk-about{
    padding:80px 22px 70px;
  }

  .rk-about-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  /* desktop image hide on responsive */
  .rk-about-right{
    display:none;
  }

  .rk-about-label::after{
    margin:12px auto 0;
  }

  .rk-about-left p{
    margin-left:auto;
    margin-right:auto;
  }

  .rk-about-left h2{
    font-size:42px;
  }

  /* credentials paragraph ke niche */
  .rk-mobile-credentials{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:0 auto 32px;
    max-width:760px;
  }

  .rk-mobile-credentials div{
    background:#fff;
    border:1px solid #edf0f3;
    border-radius:16px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:14px;
    text-align:left;
    box-shadow:0 12px 35px rgba(22,43,74,.06);
  }

  .rk-about-features{
    grid-template-columns:repeat(2,1fr);
  }

  .rk-about-features div{
    border-right:1px solid #e5e7eb;
    border-bottom:1px solid #e5e7eb;
  }

  .rk-about-features div:nth-child(2n){
    border-right:0;
  }

  .rk-about-features div:nth-last-child(-n+2){
    border-bottom:0;
  }

  .rk-mission-box{
    grid-template-columns:1fr;
    text-align:center;
    padding:30px 24px;
  }

  .rk-mission-icon{
    margin:auto;
  }

  .rk-mission-box h3{
    border-right:0;
    padding-right:0;
  }
}

@media(max-width:575px){

  .rk-about-left h2{
    font-size:34px;
  }

  .rk-about-left h4{
    font-size:16px;
  }

  .rk-about-left p{
    font-size:15px;
  }

  .rk-mobile-credentials{
    grid-template-columns:1fr;
  }

  .rk-about-features{
    grid-template-columns:repeat(2,1fr);
  }

  .rk-about-features div{
    padding:20px 12px;
  }

  .rk-about-features i{
    font-size:26px;
  }

  .rk-about-features strong{
    font-size:15px;
  }

  .rk-about-features span{
    font-size:13px;
  }

  .rk-mission-box p{
    font-size:15px;
  }
}














.rk-services{
  position:relative;
  padding:100px 7% 80px;
  background:#fff;
  overflow:hidden;
}

.rk-services::before{
  content:"";
  position:absolute;
  left:-120px;
  top:-80px;
  width:320px;
  height:320px;
  border:1px solid rgba(192,68,95,.15);
  border-radius:50%;
}

.rk-services::after{
  content:"";
  position:absolute;
  right:60px;
  top:180px;
  width:120px;
  height:120px;
  background-image:radial-gradient(#efc7d1 1.5px, transparent 1.5px);
  background-size:14px 14px;
  opacity:.8;
}

.rk-services-head{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:0 auto 55px;
  text-align:center;
}

.rk-services-head span{
  display:inline-block;
  color:#b76e79;
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:14px;
}

.rk-services-head span::after{
  content:"";
  display:block;
  width:55px;
  height:2px;
  background:#b76e79;
  margin:12px auto 0;
}

.rk-services-head h2{
  font-family:'Playfair Display', Georgia, serif;
  font-size:54px;
  line-height:1.18;
  font-weight:500;
  color:#162b4a;
  margin-bottom:22px;
}

.rk-services-head h2 strong{
  display:block;
  color:#b76e79;
  font-weight:500;
}

.rk-services-head p{
  max-width:760px;
  margin:auto;
  font-size:18px;
  line-height:1.8;
  color:#5f6875;
}

/* GRID */
.rk-services-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* CARD */
.rk-service-card{
  background:#fff;
  border-radius:24px;
  padding:24px 22px 28px;
  text-align:center;
  box-shadow:0 15px 45px rgba(22,43,74,.08);
  transition:.35s ease;
  border:1px solid #f1f3f6;
}

.rk-service-card:hover{
  box-shadow:0 24px 55px rgba(22,43,74,.12);
}

.rk-service-img{
  width:100%;
  max-width:210px;
  margin:0 auto 20px;
  aspect-ratio:1/1;
  border-radius:50%;
  overflow:hidden;
  margin-bottom:20px;
}

.rk-service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}

.rk-service-card:hover .rk-service-img img{
  transform:scale(1.06);
}

.rk-service-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#b76e79;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:-52px auto 20px;
  position:relative;
  z-index:2;
  font-size:24px;
  box-shadow:0 12px 28px rgba(192,68,95,.24);
}

.rk-service-card h3{
  font-size:19px;
  line-height:1.4;
  color:#162b4a;
  margin-bottom:18px;
  font-weight:700;
}

.rk-service-card h3::after{
  content:"";
  display:block;
  width:55px;
  height:2px;
  background:#e7a6b3;
  margin:16px auto 0;
}

.rk-service-card p{
  font-size:15px;
  line-height:1.9;
  color:#5f6875;
  margin-bottom:24px;
}

.rk-service-card a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:#b76e79;
  font-size:15px;
  font-weight:700;
}

.rk-service-card a i{
  transition:.3s ease;
}

.rk-service-card:hover a i{
  transform:translateX(4px);
}

/* STRIP */
.rk-service-strip{
  position:relative;
  z-index:2;
  margin-top:55px;
  background:#fff;
  border-radius:22px;
  padding:34px 42px;
  display:grid;
  grid-template-columns:1.2fr 1fr auto;
  align-items:center;
  gap:35px;
  box-shadow:0 18px 55px rgba(22,43,74,.08);
  border:1px solid #eef1f5;
}

.rk-strip-left{
  display:flex;
  align-items:center;
  gap:22px;
}

.rk-strip-icon{
  width:86px;
  height:86px;
  border-radius:50%;
  border:2px solid #d47b8f;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#b76e79;
  font-size:34px;
  flex-shrink:0;
}

.rk-strip-left h4{
  font-family:'Playfair Display', Georgia, serif;
  font-size:36px;
  line-height:1.25;
  color:#162b4a;
  font-weight:500;
}

.rk-strip-left h4 span{
  color:#b76e79;
}

.rk-strip-center{
  padding-left:34px;
  border-left:1px solid #ead8dd;
}

.rk-strip-center p{
  font-size:18px;
  line-height:1.8;
  color:#4b5563;
}

.rk-strip-right a{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  background:#b76e79;
  color:#fff;
  padding:18px 34px;
  border-radius:8px;
  font-size:15px;
  font-weight:700;
  box-shadow:0 16px 36px rgba(192,68,95,.24);
}

.rk-strip-right a:hover{
  background:#162b4a;
}

/* RESPONSIVE */
@media(max-width:1400px){
  .rk-services-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:991px){
  .rk-services{
    padding:90px 22px 70px;
  }

  .rk-services-head h2{
    font-size:44px;
  }

  .rk-services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .rk-service-strip{
    grid-template-columns:1fr;
    text-align:center;
  }

  .rk-strip-left{
    justify-content:center;
  }

  .rk-strip-center{
    border-left:0;
    padding-left:0;
  }
}

@media(max-width:575px){
  .rk-services-head h2{
    font-size:34px;
  }

  .rk-services-head p{
    font-size:15px;
  }

  .rk-services-grid{
    grid-template-columns:1fr;
  }

  .rk-strip-left{
    flex-direction:column;
  }

  .rk-strip-left h4{
    font-size:28px;
  }

  .rk-strip-center p{
    font-size:15px;
  }

  .rk-strip-right a{
    width:100%;
    justify-content:center;
  }
}




















.rk-journey{
  position:relative;
  padding:95px 7% 75px;
  background:#fff;
  overflow:hidden;
}

.rk-journey::before{
  content:"";
  position:absolute;
  left:-180px;
  top:-120px;
  width:420px;
  height:420px;
  border:1px solid rgba(192,68,95,.12);
  border-radius:50%;
}

.rk-journey::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  width:420px;
  height:100%;
  background:
    linear-gradient(to left, rgba(248,241,243,.75), transparent);
  pointer-events:none;
}

.rk-journey-head{
  position:relative;
  z-index:2;
  max-width:850px;
  margin:0 auto 60px;
  text-align:center;
}

.rk-journey-head span{
  display:inline-block;
  color:#b76e79;
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:14px;
}

.rk-journey-head span::after{
  content:"";
  display:block;
  width:55px;
  height:2px;
  background:#b76e79;
  margin:12px auto 0;
}

.rk-journey-head h2{
  font-family:'Playfair Display', Georgia, serif;
  font-size:54px;
  line-height:1.18;
  font-weight:500;
  color:#162b4a;
  margin-bottom:24px;
}

.rk-journey-head h2 strong{
  color:#b76e79;
  font-weight:500;
}

.rk-journey-head p{
  max-width:720px;
  margin:auto;
  font-size:18px;
  line-height:1.9;
  color:#5f6875;
}

/* CARDS */
.rk-journey-steps{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.rk-journey-card{
  position:relative;
  background:#fff;
  border-radius:24px;
  padding:34px 20px 20px;
  text-align:center;
  border:1px solid #f1e6e9;
  box-shadow:0 14px 40px rgba(22,43,74,.06);
  transition:.35s ease;
}

.rk-journey-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 55px rgba(22,43,74,.11);
}

.rk-journey-card.active{
  border-bottom:3px solid #b76e79;
}

.rk-step-number{
  position:absolute;
  top:-22px;
  left:50%;
  transform:translateX(-50%);
  width:58px;
  height:58px;
  border-radius:50%;
  background:#fff;
  color:#b76e79;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:700;
  box-shadow:0 10px 25px rgba(22,43,74,.08);
}

.rk-step-icon{
  width:86px;
  height:86px;
  border-radius:50%;
  background:#f9eaee;
  color:#b76e79;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  margin:0 auto 22px;
}

.rk-journey-card h3{
  font-size:24px;
  color:#162b4a;
  margin-bottom:16px;
  font-weight:700;
}

.rk-journey-card p{
  font-size:16px;
  line-height:1.9;
  color:#5f6875;
  margin-bottom:24px;
}

.rk-step-img{
  width:100%;
  border-radius:18px;
  overflow:hidden;
}

.rk-step-img img{
  width:100%;
  height:180px;
  object-fit:cover;
  transition:.4s ease;
}

.rk-journey-card:hover .rk-step-img img{
  transform:scale(1.05);
}

/* STRIP */
.rk-journey-strip{
  position:relative;
  z-index:2;
  margin-top:55px;
  background:#fff;
  border-radius:22px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  box-shadow:0 18px 55px rgba(22,43,74,.08);
  border:1px solid #edf0f4;
  overflow:hidden;
}

.rk-journey-strip div{
  padding:34px 24px;
  text-align:center;
  border-right:1px solid #edf0f4;
}

.rk-journey-strip div:last-child{
  border-right:0;
}

.rk-journey-strip i{
  font-size:34px;
  color:#b76e79;
  margin-bottom:18px;
}

.rk-journey-strip strong{
  display:block;
  font-size:20px;
  color:#162b4a;
  margin-bottom:10px;
}

.rk-journey-strip span{
  display:block;
  font-size:15px;
  line-height:1.8;
  color:#5f6875;
}

/* RESPONSIVE */
@media(max-width:1200px){
  .rk-journey-steps{
    grid-template-columns:repeat(2,1fr);
  }

  .rk-journey-strip{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:991px){
  .rk-journey{
    padding:90px 22px 70px;
  }

  .rk-journey-head h2{
    font-size:44px;
  }

  .rk-journey-head p{
    font-size:16px;
  }

  .rk-journey-strip{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:575px){

  .rk-journey-head h2{
    font-size:34px;
  }

  .rk-journey-steps{
    grid-template-columns:1fr;
  }

  .rk-journey-strip{
    grid-template-columns:1fr;
  }

  .rk-journey-strip div{
    border-right:0;
    border-bottom:1px solid #edf0f4;
  }

  .rk-journey-strip div:last-child{
    border-bottom:0;
  }

  .rk-journey-card h3{
    font-size:24px;
  }

  .rk-journey-card p{
    font-size:15px;
  }
}














.rk-intro-video{
  position:relative;
  padding:85px 7% 65px;
  background:
    radial-gradient(circle at top right, rgba(192,68,95,.08), transparent 34%),
    linear-gradient(135deg,#fff 0%,#fff8fa 100%);
  overflow:hidden;
}

.rk-intro-video::before{
  content:"";
  position:absolute;
  left:0;
  bottom:100px;
  width:95px;
  height:95px;
  background-image:radial-gradient(#efc7d1 1.8px, transparent 1.8px);
  background-size:15px 15px;
  opacity:.7;
}

.rk-intro-container{
  max-width:1250px;
  margin:auto;
  display:grid;
  grid-template-columns:40% 60%;
  gap:45px;
  align-items:center;
  position:relative;
  z-index:2;
}

.rk-intro-label{
  display:inline-block;
  color:#b76e79;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:14px;
}

.rk-intro-label::after{
  content:"";
  display:block;
  width:50px;
  height:2px;
  background:#b76e79;
  margin-top:12px;
}

.rk-intro-content h2{
  font-family:'Playfair Display', Georgia, serif;
  font-size:42px;
  line-height:1.18;
  font-weight:500;
  color:#162b4a;
  margin-bottom:20px;
}

.rk-intro-content h2 strong{
  color:#b76e79;
  font-weight:500;
}

.rk-intro-content p{
  font-size:16px;
  line-height:1.7;
  color:#4b5563;
  margin-bottom:28px;
  max-width:560px;
}

.rk-intro-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  margin-bottom:30px;
}

.rk-intro-points div{
  text-align:center;
  padding:0 18px;
  border-right:1px solid #e5dce0;
}

.rk-intro-points div:last-child{
  border-right:0;
}

.rk-intro-points i{
  font-size:28px;
  color:#b76e79;
  margin-bottom:14px;
}

.rk-intro-points strong{
  display:block;
  color:#162b4a;
  font-size:15px;
  line-height:1.4;
  margin-bottom:6px;
}

.rk-intro-points span{
  color:#5f6875;
  font-size:13px;
  line-height:1.5;
}

.rk-watch-btn{
  border:0;
  background:#b76e79;
  color:#fff;
  padding:15px 28px;
  border-radius:7px;
  font-size:15px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:11px;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(192,68,95,.22);
}

.rk-watch-btn i{
  width:32px;
  height:32px;
  border-radius:50%;
  background:#fff;
  color:#b76e79;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

.rk-watch-btn:hover{
  background:#162b4a;
}

/* VIDEO BOX */
.rk-video-box{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  min-height:320px;
  box-shadow:0 22px 55px rgba(22,43,74,.16);
  background:#162b4a;
}

.rk-video-box video{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
  display:block;
  filter:brightness(.78);
}

.rk-video-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:88px;
  height:88px;
  border-radius:50%;
  border:0;
  background:#fff;
  color:#b76e79;
  font-size:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 0 0 18px rgba(255,255,255,.14);
  transition:.3s ease;
}

.rk-video-play:hover{
  transform:translate(-50%,-50%) scale(1.05);
  background:#b76e79;
  color:#fff;
}

.rk-video-name{
  position:absolute;
  left:38px;
  bottom:38px;
  color:#fff;
}

.rk-video-name strong{
  display:block;
  font-size:16px;
  letter-spacing:.6px;
}

.rk-video-name span{
  display:block;
  font-size:13px;
  opacity:.9;
  margin-top:4px;
}

.rk-video-time{
  position:absolute;
  right:34px;
  bottom:32px;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(10px);
  color:#fff;
  border-radius:13px;
  padding:16px 24px;
  text-align:center;
}

.rk-video-time strong{
  display:block;
  font-size:28px;
  font-weight:500;
}

.rk-video-time span{
  font-size:14px;
}

/* STATS */
.rk-intro-stats{
  position:relative;
  z-index:2;
  max-width:1160px;
  margin:55px auto 0;
  background:#fff;
  border-radius:20px;
  box-shadow:0 18px 45px rgba(22,43,74,.07);
  border:1px solid #eef1f5;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
}

.rk-intro-stats div{
  display:grid;
  grid-template-columns:52px 1fr;
  column-gap:15px;
  align-items:center;
  padding:22px 26px;
  border-right:1px solid #edf0f4;
}

.rk-intro-stats div:last-child{
  border-right:0;
}

.rk-intro-stats i{
  grid-row:span 2;
  width:52px;
  height:52px;
  border-radius:50%;
  background:#fae9ee;
  color:#b76e79;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.rk-intro-stats strong{
  font-family:'Playfair Display', Georgia, serif;
  font-size:30px;
  line-height:1;
  color:#b76e79;
  font-weight:500;
}

.rk-intro-stats span{
  font-size:13px;
  color:#162b4a;
}

/* RESPONSIVE */
@media(max-width:991px){
  .rk-intro-video{
    padding:75px 22px 60px;
  }

  .rk-intro-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .rk-intro-label::after{
    margin:12px auto 0;
  }

  .rk-intro-content h2{
    font-size:38px;
  }

  .rk-intro-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .rk-intro-points{
    max-width:650px;
    margin-left:auto;
    margin-right:auto;
  }

  .rk-video-box,
  .rk-video-box video{
    min-height:320px;
  }

  .rk-intro-stats{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:575px){
  .rk-intro-content h2{
    font-size:32px;
  }

  .rk-intro-content p{
    font-size:15px;
  }

  .rk-intro-points{
    grid-template-columns:1fr;
    gap:18px;
  }

  .rk-intro-points div{
    border-right:0;
    border-bottom:1px solid #eee;
    padding-bottom:18px;
  }

  .rk-intro-points div:last-child{
    border-bottom:0;
  }

  .rk-watch-btn{
    width:100%;
    justify-content:center;
  }

  .rk-video-box,
  .rk-video-box video{
    min-height:260px;
  }

  .rk-video-play{
    width:82px;
    height:82px;
    font-size:25px;
  }

  .rk-video-name{
    left:18px;
    bottom:22px;
  }

  .rk-video-time{
    right:14px;
    bottom:14px;
    padding:12px 15px;
  }

  .rk-video-time strong{
    font-size:22px;
  }

  .rk-intro-stats{
    grid-template-columns:1fr;
  }

  .rk-intro-stats div{
    border-right:0;
    border-bottom:1px solid #edf0f4;
    padding:22px;
  }

  .rk-intro-stats div:last-child{
    border-bottom:0;
  }
}
















.rk-testimonials{
  padding:80px 7%;
  background:#fff;
  overflow:hidden;
}

.rk-testimonial-head{
  text-align:center;
  max-width:800px;
  margin:auto auto 45px;
}

.rk-testimonial-head span{
  color:#b76e79;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}

.rk-testimonial-head h2{
  font-family:'Playfair Display',serif;
  font-size:48px;
  line-height:1.2;
  font-weight:500;
  color:#162b4a;
  margin:18px 0;
}

.rk-testimonial-head h2 strong{
  color:#b76e79;
  font-weight:500;
}

.rk-testimonial-head p{
  font-size:16px;
  color:#5f6875;
  line-height:1.7;
}

/* WRAPPER */
.rk-review-wrapper{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:22px;
  align-items:stretch;
}

/* GOOGLE CARD */
.rk-google-card{
  background:#fff;
  border:1px solid #f0f2f5;
  border-radius:20px;
  padding:28px 24px;
  text-align:center;
  box-shadow:0 12px 35px rgba(22,43,74,.06);
}

.rk-google-logo{
  font-size:50px;
  font-weight:800;
  color:#4285f4;
  margin-bottom:12px;
}

.rk-google-card strong{
  display:block;
  font-size:52px;
  color:#162b4a;
  line-height:1;
  margin-bottom:12px;
}

.rk-stars{
  display:flex;
  justify-content:center;
  gap:5px;
  color:#f59e0b;
  font-size:18px;
  margin-bottom:14px;
}

.rk-google-card p{
  color:#5f6875;
  font-size:14px;
  margin-bottom:22px;
}

.rk-review-btn{
  display:inline-block;
  background:#b76e79;
  color:#fff;
  text-decoration:none;
  padding:13px 20px;
  border-radius:8px;
  font-size:14px;
  font-weight:700;
}

.rk-review-btn:hover{
  background:#162b4a;
}

/* SLIDER */
.rk-review-slider{
  overflow:hidden;
  position:relative;
}

.rk-review-track{
  display:flex;
  gap:20px;
  animation:rkSlide 18s linear infinite;
}

.rk-review-card{
  min-width:320px;
  background:#fff;
  border:1px solid #f0f2f5;
  border-radius:20px;
  padding:26px;
  box-shadow:0 12px 35px rgba(22,43,74,.06);
}

.rk-review-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

.rk-quote{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#fae9ee;
  color:#b76e79;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
}

.rk-stars.small{
  font-size:14px;
  margin:0;
}

.rk-review-card p{
  font-size:15px;
  line-height:1.8;
  color:#253244;
  margin-bottom:22px;
}

.rk-patient{
  display:flex;
  align-items:center;
  gap:14px;
  padding-top:18px;
  border-top:1px solid #eee;
}

.rk-patient-letter{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#fae1e8;
  color:#b76e79;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:700;
}

.rk-patient h4{
  font-size:16px;
  color:#162b4a;
  margin-bottom:4px;
}

.rk-patient span{
  font-size:13px;
  color:#5f6875;
}

/* AUTO SLIDER */
@keyframes rkSlide{
  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-680px);
  }
}

/* RESPONSIVE */
@media(max-width:991px){

  .rk-review-wrapper{
    grid-template-columns:1fr;
  }

  .rk-testimonial-head h2{
    font-size:38px;
  }

  .rk-review-card{
    min-width:280px;
  }
}

@media(max-width:575px){

  .rk-testimonials{
    padding:65px 22px;
  }

  .rk-testimonial-head h2{
    font-size:30px;
  }

  .rk-review-card{
    min-width:240px;
    padding:22px;
  }
}


















/* Mapsection Start */
.contact-section {
  background:
    radial-gradient(circle at top right, rgba(192,68,95,.14), transparent 34%),
    linear-gradient(135deg,#162b4a 0%,#24385f 100%);
  padding: 80px 24px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.contact-header { 
  text-align: center;
  margin-bottom: 46px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.contact-header p {
  color: #f3b6c2;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: auto;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 22px 65px rgba(0,0,0,.18);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid #dde3eb;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  color: #162b4a;
  transition: .25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #b76e79;
  box-shadow: 0 0 0 4px rgba(192,68,95,.08);
}

.contact-form textarea {
  min-height: 130px;
  margin-bottom: 14px;
  resize: none;
}

.send-btn {
  width: 100%;
  padding: 16px;
  background: #b76e79;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: .25s ease;
}

.send-btn:hover {
  background: #162b4a;
}

/* Map */
.contact-map {
  border-radius: 24px;
  overflow: hidden;
  min-height: 470px;
  box-shadow: 0 22px 65px rgba(0,0,0,.18);
  background: #fff;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: block;
}

/* Responsive */
@media(max-width: 820px){
  .contact-section {
    padding: 70px 22px;
  }

  .contact-header h2 {
    font-size: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 380px;
  }
}

@media(max-width: 480px){
  .contact-header h2 {
    font-size: 30px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 300px;
  }
}
/* Mapsection End */






/* =========================================================
   FLOATING CTA SECTION
========================================================= */

.rk-footer-cta{
  background: transparent;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

.rk-footer-cta-box{
  max-width: 1280px;
  margin: auto;
  background: linear-gradient(135deg,#ffffff 0%,#fff7f9 100%);
  border-radius: 26px;
  padding: 34px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transform: translateY(60px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,.18);
}

.rk-footer-cta-box::before{
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(192,68,95,.05);
}

.rk-footer-cta-left{
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.rk-footer-cta-icon{
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg,#f8dce4 0%,#f3b6c2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b76e79;
  font-size: 42px;
  flex-shrink: 0;
}

.rk-footer-cta-text h2{
  font-family:'Playfair Display', Georgia, serif;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 500;
  color: #162b4a;
  margin-bottom: 10px;
}

.rk-footer-cta-text p{
  font-size: 18px;
  line-height: 1.7;
  color: #5f6875;
}

.rk-footer-cta-buttons{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.rk-footer-btn{
  min-width: 235px;
  padding: 18px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: .3s ease;
}

.rk-footer-btn i{
  font-size: 18px;
}

.rk-footer-btn.primary{
  background: #b76e79;
  color: #fff;
  box-shadow: 0 18px 38px rgba(192,68,95,.25);
}

.rk-footer-btn.primary:hover{
  background: #162b4a;
}

.rk-footer-btn.secondary{
  background: #fff;
  border: 1px solid rgba(22,43,74,.12);
  color: #162b4a;
}

.rk-footer-btn.secondary:hover{
  background: #162b4a;
  color: #fff;
}

/* =========================================================
   FOOTER SECTION
========================================================= */

.custom-footer{
  background:
    radial-gradient(circle at top left, rgba(192,68,95,.14), transparent 30%),
    linear-gradient(135deg,#162b4a 0%,#24385f 100%);
  padding: 140px 40px 34px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr .8fr 1.2fr;
  gap: 46px;
  max-width: 1280px;
  margin: auto;
}

/* ABOUT */
.footer-brand{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-brand img{
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-brand h3{
  font-family:'Playfair Display', Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 4px;
}

.footer-brand span{
  display: block;
  font-size: 12px;
  line-height: 1.7;
  color: #f3b6c2;
}

.footer-about-text{
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  margin-bottom: 24px;
}

.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-contact a{
  text-decoration: none;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i{
  color: #f3b6c2;
  font-size: 17px;
}

/* COLUMN HEADINGS */
.col-title{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f3b6c2;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(243,182,194,.28);
}

/* LINKS */
.link-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.link-list li a{
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.74);
  transition: .25s ease;
}

.link-list li a::before{
  content: '›';
  color: #f3b6c2;
  margin-right: 8px;
}

.link-list li a:hover{
  color: #fff;
  padding-left: 5px;
}

/* OPD */
.opd-section{
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.opd-section:last-of-type{
  border-bottom: none;
}

.opd-clinic-name{
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.opd-clinic-name::before{
  content: '';
  display: inline-block;
  width: 4px;
  height: 15px;
  background: #b76e79;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}

.info-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-item{
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,.74);
  margin-bottom: 8px;
}

/* SOCIAL */
.social-row{
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}

.social-btn{
  width: 39px;
  height: 39px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: .25s ease;
}

.social-btn:hover{
  background: #b76e79;
  border-color: #b76e79;
  transform: translateY(-3px);
}

/* DIVIDER */
.footer-divider{
  border: none;
  border-top: 1px solid rgba(255,255,255,.10);
  margin: 44px auto 24px;
  max-width: 1280px;
}

/* BOTTOM */
.footer-bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1280px;
  margin: auto;
  font-size: 14px;
  color: rgba(255,255,255,.62);
}

.footer-bottom a{
  color: rgba(255,255,255,.62);
  text-decoration: none;
}

.footer-bottom a:hover{
  color: #f3b6c2;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

  .rk-footer-cta-box{
    flex-direction: column;
    align-items: flex-start;
  }

  .rk-footer-cta-buttons{
    width: 100%;
  }

  .rk-footer-btn{
    flex: 1;
  }

  .rk-footer-cta-text h2{
    font-size: 42px;
  }

  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px){

  .rk-footer-cta{
    padding: 0 22px;
  }

  .rk-footer-cta-box{
    padding: 28px 24px;
    transform: translateY(40px);
  }

  .rk-footer-cta-left{
    flex-direction: column;
    align-items: flex-start;
  }

  .rk-footer-cta-icon{
    width: 78px;
    height: 78px;
    font-size: 34px;
  }

  .rk-footer-cta-text h2{
    font-size: 34px;
  }

  .rk-footer-cta-text p{
    font-size: 15px;
  }

  .rk-footer-cta-buttons{
    flex-direction: column;
  }

  .rk-footer-btn{
    width: 100%;
    min-width: auto;
  }

  .custom-footer{
    padding: 110px 22px 28px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom{
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}



.rk-back-top{
  position:fixed;
  right:88px;
  bottom:24px;
  width:54px;
  height:54px;
  border-radius:50%;
  border:0;
  background:#b76e79;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  z-index:9999;
  box-shadow:0 12px 30px rgba(0,0,0,.22);
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:.3s ease;
}

.rk-back-top.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

@media(max-width:575px){
  .rk-back-top{
    right:74px;
    bottom:18px;
    width:48px;
    height:48px;
  }
}

/* CUSTOM SCROLLBAR */

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#f5f5f5;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(#b76e79,#162b4a);
  border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(#a6334d,#0f1f36);
}

/* ══════════════════════
   VISIT OUR CLINICS SECTION
   ══════════════════════ */
.rk-clinics-section {
  padding: 95px 7% 90px;
  background: #fdfafb;
  position: relative;
}
.rk-clinics-container {
  max-width: 1320px;
  margin: 0 auto;
}
.rk-clinics-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.rk-clinics-head span {
  display: inline-block;
  color: var(--pink);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.rk-clinics-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 46px;
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: 600;
}
.rk-clinics-head p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.rk-clinics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.rk-clinic-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(22, 43, 74, 0.05);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.rk-clinic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(22, 43, 74, 0.1);
  border-color: rgba(183, 110, 121, 0.3);
}
.rk-clinic-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rk-clinic-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 600;
  padding-right: 80px;
}
.rk-clinic-loc, .rk-clinic-time {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.rk-clinic-loc i, .rk-clinic-time i {
  color: var(--pink);
  font-size: 16px;
  margin-top: 3px;
}
.rk-clinic-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  padding-top: 20px;
}
.rk-clinic-wa {
  flex: 1;
  text-align: center;
  background: #25d366;
  color: #fff;
  padding: 12px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s ease;
}
.rk-clinic-wa:hover {
  background: #20ba59;
  color: #fff;
}
.rk-clinic-map {
  flex: 1;
  text-align: center;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 12px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.rk-clinic-map:hover {
  background: var(--navy);
  color: #fff;
}

@media(max-width: 991px) {
  .rk-clinics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rk-clinics-head h2 {
    font-size: 36px;
  }
}




/* ======================================================================
   PREMIUM UI / RESPONSIVE OVERRIDE LAYER
   Keeps the existing HTML and class names intact.
   ====================================================================== */

:root{
  --navy:#142b4a;
  --navy-2:#203d65;
  --pink:#b76e79;
  --pink-dark:#9f5864;
  --pink-soft:#f9ecef;
  --surface:#ffffff;
  --surface-soft:#fbf7f8;
  --text:#263348;
  --muted:#677185;
  --line:#e8e9ee;
  --shadow-sm:0 8px 24px rgba(20,43,74,.07);
  --shadow-md:0 18px 50px rgba(20,43,74,.11);
  --shadow-lg:0 28px 80px rgba(20,43,74,.15);
  --radius-sm:12px;
  --radius-md:20px;
  --radius-lg:28px;
  --container:1280px;
}

html{
  overflow-x:hidden;
  scroll-padding-top:118px;
}

body{
  min-width:320px;
  overflow-x:hidden;
  color:var(--text);
  background:var(--surface);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

body::selection,
body *::selection{
  color:#fff;
  background:var(--pink);
}

img,
video,
iframe{
  max-width:100%;
}

a,
button,
input,
select,
textarea{
  -webkit-tap-highlight-color:transparent;
}

button,
a{
  outline-offset:4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:3px solid rgba(183,110,121,.32);
}

/* Common section rhythm */
.rk-about,
.rk-services,
.rk-journey,
.rk-intro-video,
.rk-testimonials,
.rk-clinics-section,
.contact-section{
  padding-left:max(22px,calc((100vw - var(--container))/2));
  padding-right:max(22px,calc((100vw - var(--container))/2));
}

.rk-services,
.rk-testimonials,
.rk-clinics-section{
  background:
    radial-gradient(circle at 90% 8%,rgba(183,110,121,.08),transparent 24%),
    linear-gradient(180deg,#fff 0%,#fcf8f9 100%);
}

/* Header */
.rk-header{
  min-height:104px;
  padding-right:0;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  box-shadow:0 8px 30px rgba(20,43,74,.08);
}

.rk-brand{
  min-width:300px;
  padding-left:30px;
  background:linear-gradient(135deg,#fff 0%,#fff8fa 100%);
}

.rk-logo-ph,
.rk-logo-ph img{
  width:64px;
  height:64px;
}

.rk-brand-text h1{
  font-size:clamp(21px,1.6vw,27px);
  font-weight:600;
}

.rk-contact-item{
  padding:13px 17px;
}

.rk-appt-btn{
  min-width:170px;
  justify-content:center;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
}

.rk-bottom{
  height:52px;
}

.rk-nav{
  gap:4px;
}

.rk-nav>a,
.rk-dropdown>a{
  border-radius:8px;
  padding:0 11px;
}

.rk-nav>a:hover,
.rk-dropdown>a:hover{
  background:var(--pink-soft);
}

.rk-dropdown-menu{
  border-radius:0 0 14px 14px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
}

.rk-side-panel{
  width:min(410px,100%);
  box-shadow:-24px 0 65px rgba(20,43,74,.18);
}

/* Mobile header and menu */
.rk-mobile-header{
  min-height:72px;
  padding:10px 16px;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(12px);
  box-shadow:0 6px 22px rgba(20,43,74,.08);
}

.mob-hd-brand h1{
  font-weight:600;
}

.mob-hd-right button{
  width:42px;
  height:42px;
  justify-content:center;
  border-radius:50%;
  background:#f8f2f4;
}

.mob-menu-panel{
  background:linear-gradient(180deg,#fff 0%,#fff9fa 100%);
}

.mob-menu-head{
  min-height:72px;
  background:#fff;
}

.mob-nav>a,
.mob-drop-item{
  padding:15px 22px;
}

.mob-sub-menu{
  background:#fff6f8;
}

.mob-contact{
  padding-bottom:max(18px,env(safe-area-inset-bottom));
}

.mob-appt{
  border-radius:10px;
  min-height:46px;
}

/* Banner */
.dr-rakesh-banner{
  position:relative;
  background:linear-gradient(135deg,#f8f1f3,#fff);
}

.dr-rakesh-banner::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(183,110,121,.45),transparent);
}

.dr-rakesh-banner__image{
  width:100%;
  max-height:680px;
  object-fit:cover;
  object-position:center;
}

/* About */
.rk-about{
  padding-top:clamp(72px,7vw,108px);
  padding-bottom:clamp(70px,7vw,100px);
  background:
    radial-gradient(circle at 82% 45%,rgba(183,110,121,.11),transparent 30%),
    #fff;
}

.rk-about-container{
  grid-template-columns:minmax(0,1.04fr) minmax(380px,.96fr);
  gap:clamp(40px,6vw,82px);
}

.rk-about-left h2,
.rk-services-head h2,
.rk-journey-head h2,
.rk-testimonial-head h2{
  font-size:clamp(38px,4.2vw,58px);
  letter-spacing:-.025em;
}

.rk-about-left p{
  max-width:720px;
}

.rk-about-features{
  gap:12px;
  border:0;
}

.rk-about-features div{
  min-height:154px;
  padding:22px 14px;
  border:1px solid var(--line)!important;
  border-radius:16px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}

.rk-about-features div:hover{
  transform:translateY(-5px);
  border-color:rgba(183,110,121,.35)!important;
  box-shadow:var(--shadow-md);
}

.rk-about-right{
  min-height:580px;
}

.rk-about-right::before{
  width:min(430px,90%);
  height:min(430px,70vw);
  background:linear-gradient(145deg,#f6e4e8,rgba(20,43,74,.08));
  box-shadow:inset 0 0 0 1px rgba(183,110,121,.10);
}

.rk-about-card{
  right:-20px;
  bottom:22px;
  border:1px solid rgba(255,255,255,.75);
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(12px);
}

.rk-mission-box{
  margin-top:42px;
  border-radius:var(--radius-md);
  border-left:4px solid var(--pink);
  box-shadow:var(--shadow-md);
}

/* Services */
.rk-services{
  padding-top:clamp(76px,7vw,108px);
  padding-bottom:clamp(72px,7vw,96px);
}

.rk-services-grid{
  max-width:var(--container);
  margin-inline:auto;
  gap:26px;
}

.rk-service-card{
  display:flex;
  flex-direction:column;
  padding:18px 18px 26px;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}

.rk-service-card:hover{
  transform:translateY(-8px);
  border-color:rgba(183,110,121,.28);
  box-shadow:var(--shadow-lg);
}

.rk-service-img{
  max-width:none;
  aspect-ratio:16/11;
  border-radius:16px;
  margin-bottom:0;
}

.rk-service-icon{
  width:58px;
  height:58px;
  margin:-29px auto 18px;
  border:5px solid #fff;
  font-size:21px;
}

.rk-service-card h3{
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
}

.rk-service-card p{
  flex:1;
  margin-bottom:18px;
  line-height:1.75;
}

.rk-service-card a{
  justify-content:center;
  min-height:42px;
  padding:8px 16px;
  border-radius:10px;
  background:var(--pink-soft);
}

.rk-service-strip{
  max-width:var(--container);
  margin-inline:auto;
  margin-top:48px;
  background:linear-gradient(135deg,#fff,#fff6f8);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
}

.rk-strip-right a{
  border-radius:12px;
  transition:transform .25s ease,background .25s ease,box-shadow .25s ease;
}

.rk-strip-right a:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 44px rgba(20,43,74,.22);
}

/* Journey */
.rk-journey{
  padding-top:clamp(76px,7vw,104px);
  padding-bottom:clamp(72px,7vw,94px);
  background:#fff;
}

.rk-journey-steps,
.rk-journey-strip{
  max-width:var(--container);
  margin-inline:auto;
}

.rk-journey-steps{
  gap:26px;
  padding-top:24px;
}

.rk-journey-card{
  padding:44px 20px 20px;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
}

.rk-journey-card:hover{
  box-shadow:var(--shadow-lg);
}

.rk-step-number{
  border:1px solid #f0dce1;
}

.rk-step-img img{
  height:200px;
}

.rk-journey-strip{
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-md);
}

.rk-journey-strip div{
  transition:background .25s ease,transform .25s ease;
}

.rk-journey-strip div:hover{
  background:#fff7f9;
}

/* Video */
.rk-intro-video{
  padding-top:clamp(72px,6vw,92px);
  padding-bottom:clamp(70px,6vw,86px);
}

.rk-intro-container{
  max-width:var(--container);
  grid-template-columns:minmax(330px,.85fr) minmax(0,1.15fr);
  gap:clamp(36px,5vw,70px);
}

.rk-intro-content h2{
  font-size:clamp(36px,3.6vw,52px);
  letter-spacing:-.02em;
}

.rk-video-box{
  min-height:390px;
  border:8px solid rgba(255,255,255,.8);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
}

.rk-video-box video{
  min-height:390px;
}

.rk-video-play{
  transition:transform .3s ease,background .3s ease,color .3s ease;
}

.rk-intro-stats{
  max-width:var(--container);
  box-shadow:var(--shadow-md);
}

/* Testimonials */
.rk-testimonials{
  padding-top:clamp(72px,6vw,94px);
  padding-bottom:clamp(72px,6vw,94px);
}

.rk-review-wrapper{
  max-width:var(--container);
  margin-inline:auto;
  grid-template-columns:280px minmax(0,1fr);
  gap:26px;
}

.rk-google-card,
.rk-review-card{
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
}

.rk-google-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.rk-review-track:hover{
  animation-play-state:paused;
}

.rk-review-card{
  min-width:340px;
  transition:transform .25s ease,box-shadow .25s ease;
}

.rk-review-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
}

/* Clinics */
.rk-clinics-section{
  padding-top:clamp(72px,7vw,100px);
  padding-bottom:clamp(72px,7vw,96px);
}

.rk-clinics-grid{
  gap:24px;
}

.rk-clinic-card{
  border-radius:var(--radius-md);
  padding:32px 26px 26px;
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}

.rk-clinic-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background:linear-gradient(var(--pink),var(--navy));
}

.rk-clinic-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow-md);
}

.rk-clinic-actions a{
  min-height:44px;
  border-radius:10px;
}

/* Contact */
.contact-section{
  padding-top:clamp(74px,7vw,100px);
  padding-bottom:clamp(74px,7vw,100px);
}

.contact-grid{
  max-width:var(--container);
  gap:28px;
}

.contact-form,
.contact-map{
  border-radius:var(--radius-lg);
}

.contact-form{
  padding:clamp(24px,3vw,40px);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  min-height:52px;
  background:#fcfcfd;
}

.contact-form textarea{
  min-height:132px;
}

.send-btn{
  min-height:52px;
  border-radius:12px;
  letter-spacing:.02em;
  box-shadow:0 14px 30px rgba(183,110,121,.22);
}

/* Footer CTA + footer */
.rk-footer-cta-box{
  max-width:var(--container);
  border:1px solid rgba(183,110,121,.14);
  box-shadow:var(--shadow-lg);
}

.rk-footer-cta-text h2{
  font-size:clamp(36px,4vw,54px);
}

.rk-footer-btn{
  border-radius:12px;
  transition:transform .25s ease,background .25s ease,color .25s ease,box-shadow .25s ease;
}

.rk-footer-btn:hover{
  transform:translateY(-3px);
}

.footer-grid,
.footer-divider,
.footer-bottom{
  max-width:var(--container);
}

.custom-footer::before{
  content:"";
  position:absolute;
  right:-160px;
  bottom:-180px;
  width:420px;
  height:420px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
}

.footer-contact a,
.link-list li a,
.footer-bottom a{
  transition:color .2s ease,transform .2s ease;
}

/* Floating controls */
.rk-floating-actions a,
.rk-back-top{
  border:3px solid rgba(255,255,255,.92);
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}

.rk-floating-actions a:hover,
.rk-back-top:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(0,0,0,.25);
}

/* Tablet navigation: use the clean mobile header before desktop becomes crowded */
@media(max-width:1199px){
  html{scroll-padding-top:78px;}
  section{scroll-margin-top:78px;}
  .rk-header{display:none;}
  .rk-mobile-header{display:flex;}
  .mob-menu-panel{display:flex;}
  .rk-side-panel{display:none!important;}
  .rk-overlay{display:none!important;}
}

@media(min-width:1200px){
  .rk-header{display:flex;}
  .rk-mobile-header,
  .mob-menu-panel{display:none;}
}

/* Tablet */
@media(max-width:991px){
  .rk-about,
  .rk-services,
  .rk-journey,
  .rk-intro-video,
  .rk-testimonials,
  .rk-clinics-section,
  .contact-section{
    padding-left:24px;
    padding-right:24px;
  }

  .rk-about-container,
  .rk-intro-container{
    grid-template-columns:1fr;
  }

  .rk-about-container{
    text-align:left;
  }

  .rk-about-label::after,
  .rk-intro-label::after{
    margin-left:0;
  }

  .rk-about-left p,
  .rk-intro-content p{
    margin-left:0;
    margin-right:0;
  }

  .rk-about-right{
    display:flex;
    min-height:500px;
    order:-1;
  }

  .rk-about-right img{
    max-height:500px;
  }

  .rk-about-card{
    right:4%;
  }

  .rk-mobile-credentials{
    display:none;
  }

  .rk-services-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .rk-service-strip{
    gap:22px;
    padding:30px;
  }

  .rk-journey-steps{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .rk-journey-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .rk-intro-container{
    text-align:left;
  }

  .rk-intro-points{
    max-width:none;
    margin-left:0;
  }

  .rk-intro-stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .rk-review-wrapper{
    grid-template-columns:1fr;
  }

  .rk-google-card{
    max-width:520px;
    width:100%;
    margin-inline:auto;
  }

  .rk-clinics-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .contact-grid{
    grid-template-columns:1fr;
  }
}

/* Mobile */
@media(max-width:767px){
  body{
    font-size:15px;
  }

  .rk-about,
  .rk-services,
  .rk-journey,
  .rk-intro-video,
  .rk-testimonials,
  .rk-clinics-section,
  .contact-section{
    padding-left:18px;
    padding-right:18px;
  }

  .dr-rakesh-banner__image{
    min-height:300px;
    max-height:430px;
    object-fit:cover;
    object-position:center top;
  }

  .rk-about-container{
    gap:34px;
  }

  .rk-about-right{
    min-height:390px;
    border-radius:22px;
    overflow:hidden;
    background:linear-gradient(145deg,#f7e8eb,#f7f9fc);
  }

  .rk-about-right::before{
    bottom:0;
  }

  .rk-about-right img{
    max-height:410px;
  }

  .rk-about-card{
    position:relative;
    inset:auto;
    width:100%;
    margin-top:-24px;
    border-radius:18px;
  }

  .rk-about-left h2,
  .rk-services-head h2,
  .rk-journey-head h2,
  .rk-testimonial-head h2{
    font-size:clamp(32px,9vw,40px);
  }

  .rk-about-left h4{
    font-size:18px;
  }

  .rk-about-features{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .rk-about-features div{
    min-height:146px;
    padding:18px 10px;
  }

  .rk-mission-box{
    margin-top:30px;
    padding:25px 18px;
  }

  .rk-services-grid,
  .rk-journey-steps,
  .rk-journey-strip,
  .rk-clinics-grid{
    grid-template-columns:1fr;
  }

  .rk-service-card{
    max-width:520px;
    width:100%;
    margin-inline:auto;
  }

  .rk-service-card h3{
    min-height:auto;
  }

  .rk-service-strip{
    padding:26px 18px;
    border-radius:20px;
  }

  .rk-strip-icon{
    width:72px;
    height:72px;
    font-size:28px;
  }

  .rk-journey-steps{
    gap:46px;
  }

  .rk-journey-card{
    max-width:520px;
    width:100%;
    margin-inline:auto;
  }

  .rk-journey-strip div{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .rk-intro-content h2{
    font-size:clamp(31px,8.5vw,40px);
  }

  .rk-intro-points{
    grid-template-columns:1fr;
    gap:0;
  }

  .rk-intro-points div{
    display:grid;
    grid-template-columns:42px 1fr;
    text-align:left;
    column-gap:12px;
    border-right:0;
    border-bottom:1px solid var(--line);
    padding:15px 0;
  }

  .rk-intro-points i{
    grid-row:span 2;
    margin:0;
  }

  .rk-video-box,
  .rk-video-box video{
    min-height:260px;
  }

  .rk-video-box{
    border-width:5px;
    border-radius:20px;
  }

  .rk-video-play{
    width:72px;
    height:72px;
    box-shadow:0 0 0 12px rgba(255,255,255,.14);
  }

  .rk-video-name{
    left:16px;
    bottom:18px;
    max-width:58%;
  }

  .rk-video-time{
    right:12px;
    bottom:12px;
  }

  .rk-intro-stats{
    grid-template-columns:1fr;
    border-radius:18px;
  }

  .rk-review-slider{
    overflow-x:auto;
    padding:4px 2px 18px;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
  }

  .rk-review-slider::-webkit-scrollbar{
    display:none;
  }

  .rk-review-track{
    width:max-content;
    animation:none;
  }

  .rk-review-card{
    min-width:min(84vw,340px);
    scroll-snap-align:start;
  }

  .contact-header h2{
    font-size:clamp(30px,8vw,38px);
  }

  .contact-form{
    padding:24px 18px;
    border-radius:20px;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  .contact-map,
  .contact-map iframe{
    min-height:320px;
    border-radius:20px;
  }

  .rk-footer-cta{
    padding-inline:18px;
  }

  .rk-footer-cta-box{
    padding:25px 20px;
    border-radius:20px;
  }

  .rk-footer-cta-left{
    gap:18px;
  }

  .rk-footer-cta-buttons{
    width:100%;
  }

  .custom-footer{
    padding-left:18px;
    padding-right:18px;
  }

  .rk-floating-actions{
    right:12px;
    bottom:max(14px,env(safe-area-inset-bottom));
    gap:8px;
  }

  .rk-floating-actions a,
  .rk-back-top{
    width:46px;
    height:46px;
    font-size:18px;
  }

  .rk-back-top{
    right:12px;
    bottom:128px;
  }
}

@media(max-width:420px){
  .mob-hd-brand h1{
    font-size:15px;
  }

  .mob-hd-brand p{
    max-width:190px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .rk-about-features{
    grid-template-columns:1fr;
  }

  .rk-about-features div{
    min-height:auto;
  }

  .rk-clinic-card{
    padding:30px 20px 22px;
  }

  .rk-clinic-card h3{
    padding-right:66px;
    font-size:20px;
  }

  .rk-clinic-actions{
    flex-direction:column;
  }

  .rk-footer-cta-text h2{
    font-size:31px;
  }
}

@media(hover:hover) and (pointer:fine){
  .rk-service-card,
  .rk-about-features div,
  .rk-journey-card,
  .rk-review-card,
  .rk-clinic-card{
    will-change:transform;
  }
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
    scroll-behavior:auto!important;
  }
  .reveal{
    opacity:1;
    transform:none;
  }
}















/* ==========================================
   ABOUT DOCTOR COUNTER CARDS – FINAL FIX
========================================== */

.doctor-profile-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.doctor-profile-stat {
    min-height: 108px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(183, 110, 121, 0.18);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(22, 43, 74, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.doctor-profile-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(183, 110, 121, 0.45);
    box-shadow: 0 18px 40px rgba(22, 43, 74, 0.12);
}

.doctor-profile-stat-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        #fff1f4 0%,
        #f7dce2 100%
    );
    color: #b76e79;
    font-size: 21px;
}

.doctor-profile-stat > div:last-child {
    min-width: 0;
}

.doctor-profile-stat strong {
    display: block;
    margin: 0 0 4px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
    line-height: 1.15;
    font-weight: 600;
    color: #b76e79;
    word-break: normal;
}

.doctor-profile-stat span {
    display: block;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    color: #445066;
}

/* Tablet */
@media (max-width: 991px) {
    .doctor-profile-stats {
        max-width: 760px;
        margin: 30px auto 0;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .doctor-profile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 25px;
    }

    .doctor-profile-stat {
        min-height: 145px;
        padding: 16px 10px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
        border-radius: 14px;
    }

    .doctor-profile-stat-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 18px;
    }

    .doctor-profile-stat strong {
        font-size: 21px;
    }

    .doctor-profile-stat span {
        font-size: 11.5px;
        line-height: 1.4;
    }
}

/* Very small mobile */
@media (max-width: 360px) {
    .doctor-profile-stats {
        grid-template-columns: 1fr;
    }

    .doctor-profile-stat {
        min-height: auto;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 16px;
    }
}


/* ======================================================================
   FINAL INDEX PAGE FIX — BANNER THEME + COMPLETE MOBILE RESPONSIVE
   Add this block at the very end of the main stylesheet.
   ====================================================================== */

:root{
  --navy:#162b4a;
  --navy-2:#203d65;
  --pink:#b76e79;
  --pink-dark:#9f5864;
  --pink-soft:#fff1f4;
  --surface:#ffffff;
  --surface-soft:#fff7f9;
  --text:#263348;
  --muted:#677185;
  --line:#e8e9ee;
  --shadow-sm:0 8px 24px rgba(22,43,74,.07);
  --shadow-md:0 18px 50px rgba(22,43,74,.11);
  --shadow-lg:0 28px 80px rgba(22,43,74,.15);
}

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  background:#fff;
  color:var(--text);
}

/* Prevent grid/flex children from forcing horizontal scrolling */
.rk-header > *,
.rk-right,
.rk-bottom,
.rk-nav,
.rk-about-container > *,
.rk-services-grid > *,
.rk-journey-steps > *,
.rk-intro-container > *,
.rk-review-wrapper > *,
.rk-clinics-grid > *,
.contact-grid > *,
.footer-grid > *,
.rk-footer-cta-box > *{
  min-width:0;
}

img,
video,
iframe,
svg{
  max-width:100%;
}

/* ------------------------------
   Banner-theme colour system
------------------------------ */
.rk-brand,
.rk-mobile-header,
.mob-menu-head{
  background:linear-gradient(135deg,#fff 0%,#fff4f6 100%);
}

.rk-appt-btn,
.mob-appt,
.rk-float-call,
.sp-soc,
.rk-back-top{
  background:linear-gradient(135deg,var(--pink-dark),var(--pink));
}

.rk-appt-btn:hover,
.mob-appt:hover,
.sp-soc:hover,
.rk-float-call:hover,
.rk-back-top:hover{
  background:linear-gradient(135deg,#663840,var(--pink-dark));
}

.rk-brand-text h1,
.mob-hd-brand h1,
.mob-brand h2,
.sp-brand-text .sp-name,
.rk-about-label,
.rk-services-head span,
.rk-journey-head span,
.rk-intro-label,
.rk-testimonial-head span,
.rk-clinics-head span{
  color:var(--pink);
}

.rk-about-left h2,
.rk-about-left h4,
.rk-services-head h2,
.rk-service-card h3,
.rk-strip-left h4,
.rk-journey-head h2,
.rk-journey-card h3,
.rk-intro-content h2,
.rk-intro-points strong,
.rk-testimonial-head h2,
.rk-patient h4,
.rk-clinics-head h2,
.rk-clinic-card h3,
.contact-header h2,
.rk-footer-cta-text h2,
.doctor-profile-stat span{
  color:#b76e79;
}

.rk-services,
.rk-testimonials,
.rk-clinics-section{
  background:
    radial-gradient(circle at 92% 8%,rgba(183,110,121,.13),transparent 25%),
    linear-gradient(180deg,#fff 0%,#fff7f9 100%);
}

.rk-about{
  background:
    radial-gradient(circle at 83% 44%,rgba(183,110,121,.14),transparent 31%),
    linear-gradient(180deg,#fff 0%,#fffafb 100%);
}

.rk-intro-video{
  background:
    radial-gradient(circle at top right,rgba(183,110,121,.14),transparent 34%),
    linear-gradient(135deg,#fff 0%,#fff5f7 100%);
}

.contact-section{
  background:
    radial-gradient(circle at top right,rgba(255,255,255,.12),transparent 35%),
    linear-gradient(135deg,#74414a 0%,#9b5966 58%,#b76e79 100%);
}

.custom-footer{
  background:
    radial-gradient(circle at top left,rgba(255,255,255,.10),transparent 30%),
    linear-gradient(135deg,#60363e 0%,#7d4651 52%,#9b5966 100%);
}

.contact-header p,
.col-title,
.footer-brand span,
.footer-contact i,
.link-list li a::before,
.footer-bottom a:hover{
  color:#ffdce3;
}

.rk-footer-cta-box,
.rk-service-strip{
  background:linear-gradient(135deg,#fff 0%,#fff1f4 100%);
}

.rk-clinic-card::before{
  background:linear-gradient(var(--pink),var(--pink-dark));
}

.rk-strip-right a,
.rk-review-btn,
.send-btn,
.rk-footer-btn.primary,
.rk-service-icon{
  background:linear-gradient(135deg,var(--pink-dark),var(--pink));
}

.rk-strip-right a:hover,
.rk-review-btn:hover,
.send-btn:hover,
.rk-footer-btn.primary:hover{
  background:linear-gradient(135deg,#663840,var(--pink-dark));
}

.rk-footer-btn.secondary:hover{
  background:var(--pink-dark);
}

/* ------------------------------
   Banner: full-width, no clipping
------------------------------ */
.dr-rakesh-banner{
  width:100%;
  max-width:100%;
  overflow:hidden;
  background:linear-gradient(135deg,#f7e8ec 0%,#fff 100%);
}

.dr-rakesh-banner__image{
  display:block;
  width:100%;
  height:auto;
  min-height:0;
  max-height:none;
  object-fit:contain;
  object-position:center;
}

/* ------------------------------
   Tablet and mobile
------------------------------ */
@media(max-width:1199px){
  .rk-mobile-header{
    width:100%;
    min-height:74px;
    position:sticky;
    top:0;
    z-index:1000;
  }

  .mob-menu-panel{
    width:100%;
    height:100dvh;
    max-height:100dvh;
    overflow:hidden;
  }

  .mob-nav{
    overscroll-behavior:contain;
  }
}

@media(max-width:767px){
  html{
    scroll-padding-top:74px;
  }

  section{
    scroll-margin-top:74px;
  }

  .rk-mobile-header{
    padding:10px 12px;
  }

  .mob-hd-brand{
    min-width:0;
    flex:1;
    gap:9px;
  }

  .mob-hd-logo-ph,
  .mob-hd-logo-ph img{
    width:42px;
    height:42px;
    flex:0 0 42px;
  }

  .mob-hd-brand > div:last-child{
    min-width:0;
  }

  .mob-hd-brand h1{
    font-size:16px;
    line-height:1.2;
    white-space:normal;
    overflow-wrap:anywhere;
  }

  .mob-hd-brand p{
    max-width:210px;
    font-size:8.5px;
    line-height:1.35;
    white-space:normal;
  }

  .mob-hd-right{
    flex:0 0 auto;
  }

  .mob-hd-right button{
    width:42px;
    height:42px;
    padding:0;
    color:var(--pink-dark);
    background:#f9ecef;
  }

  /* Full banner is visible on mobile instead of being cropped */
  .dr-rakesh-banner{
    width:100vw;
    max-width:100vw;
    margin-left:calc(50% - 50vw);
  }

  .dr-rakesh-banner__image{
    width:100%;
    height:auto!important;
    min-height:0!important;
    max-height:none!important;
    object-fit:contain!important;
    object-position:center!important;
  }

  .rk-about,
  .rk-services,
  .rk-journey,
  .rk-intro-video,
  .rk-testimonials,
  .rk-clinics-section,
  .contact-section{
    width:100%;
    max-width:100%;
    padding-top:58px;
    padding-bottom:58px;
    padding-left:16px;
    padding-right:16px;
  }

  .rk-about-container,
  .rk-intro-container,
  .rk-review-wrapper,
  .contact-grid{
    width:100%;
    max-width:100%;
    grid-template-columns:minmax(0,1fr);
    gap:30px;
  }

  .rk-about-container{
    text-align:left;
  }

  .rk-about-right{
    order:0;
    display:block;
    min-height:0;
    width:100%;
    padding:18px 12px 0;
    border-radius:20px;
    overflow:visible;
    background:linear-gradient(145deg,#faeef1,#fff);
  }

  .rk-about-right::before{
    width:88%;
    height:auto;
    aspect-ratio:1/1;
    left:50%;
    bottom:0;
  }

  .rk-about-right img{
    display:block;
    width:100%;
    height:auto;
    max-height:none;
    object-fit:contain;
    object-position:center bottom;
  }

  .rk-about-card{
    position:relative;
    inset:auto;
    width:100%;
    margin:12px 0 0;
    padding:14px 16px;
    border-radius:16px;
  }

  .rk-about-card div{
    padding:12px 0;
  }

  .rk-about-left h2,
  .rk-services-head h2,
  .rk-journey-head h2,
  .rk-testimonial-head h2,
  .rk-clinics-head h2,
  .rk-intro-content h2{
    font-size:clamp(30px,8.8vw,38px);
    line-height:1.16;
    overflow-wrap:anywhere;
  }

  .rk-about-left p,
  .rk-services-head p,
  .rk-journey-head p,
  .rk-intro-content p,
  .rk-testimonial-head p,
  .rk-clinics-head p{
    font-size:14.5px;
    line-height:1.75;
  }

  .rk-mobile-credentials,
  .rk-about-features,
  .doctor-profile-stats,
  .rk-services-grid,
  .rk-journey-steps,
  .rk-journey-strip,
  .rk-intro-stats,
  .rk-clinics-grid{
    width:100%;
    max-width:100%;
    grid-template-columns:minmax(0,1fr);
  }

  .rk-about-features{
    gap:10px;
  }

  .rk-about-features div{
    min-height:auto;
    padding:18px 14px;
  }

  .doctor-profile-stat{
    min-height:auto;
    flex-direction:row;
    justify-content:flex-start;
    text-align:left;
    padding:15px;
  }

  .rk-service-card,
  .rk-journey-card,
  .rk-clinic-card,
  .rk-google-card{
    width:100%;
    max-width:100%;
    margin-inline:0;
  }

  .rk-service-card{
    padding:16px 16px 24px;
  }

  .rk-service-img{
    aspect-ratio:16/10;
  }

  .rk-service-card h3{
    min-height:0;
    font-size:20px;
  }

  .rk-service-strip,
  .rk-mission-box,
  .rk-journey-strip,
  .rk-intro-stats{
    width:100%;
    max-width:100%;
    padding:22px 16px;
    border-radius:18px;
  }

  .rk-strip-left{
    align-items:center;
    text-align:center;
  }

  .rk-strip-left h4{
    font-size:28px;
  }

  .rk-strip-right,
  .rk-strip-right a,
  .rk-watch-btn,
  .rk-review-btn,
  .send-btn{
    width:100%;
  }

  .rk-video-box,
  .rk-video-box video{
    width:100%;
    min-height:230px;
    max-height:360px;
  }

  .rk-video-box video{
    object-fit:cover;
  }

  .rk-review-slider{
    width:100%;
    max-width:100%;
  }

  .rk-review-track{
    gap:14px;
  }

  .rk-review-card{
    min-width:calc(100vw - 54px);
    max-width:calc(100vw - 54px);
    padding:20px;
  }

  .form-row{
    grid-template-columns:minmax(0,1fr);
  }

  .contact-form{
    width:100%;
    padding:22px 16px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea{
    min-width:0;
    font-size:16px; /* stops iOS zoom */
  }

  .contact-map,
  .contact-map iframe{
    width:100%;
    min-height:290px;
  }

  .rk-footer-cta{
    width:100%;
    padding:0 16px;
  }

  .rk-footer-cta-box{
    width:100%;
    padding:24px 18px;
    gap:22px;
    transform:translateY(38px);
  }

  .rk-footer-cta-left,
  .rk-footer-cta-buttons{
    width:100%;
  }

  .rk-footer-cta-text h2{
    font-size:31px;
  }

  .custom-footer{
    width:100%;
    padding:104px 16px 28px;
  }

  .footer-grid{
    width:100%;
    grid-template-columns:minmax(0,1fr);
    gap:30px;
  }

  .footer-brand{
    align-items:flex-start;
  }

  .footer-brand h3{
    font-size:23px;
  }

  .footer-contact a,
  .link-list li a,
  .info-item{
    overflow-wrap:anywhere;
  }

  .rk-floating-actions{
    right:10px;
    bottom:max(12px,env(safe-area-inset-bottom));
    gap:8px;
  }

  .rk-floating-actions a,
  .rk-back-top{
    width:44px;
    height:44px;
    font-size:17px;
    border-width:2px;
  }

  .rk-back-top{
    right:10px;
    bottom:116px;
  }
}

@media(max-width:420px){
  .mob-hd-brand p{
    max-width:170px;
  }

  .rk-review-card{
    min-width:calc(100vw - 42px);
    max-width:calc(100vw - 42px);
  }

  .rk-about,
  .rk-services,
  .rk-journey,
  .rk-intro-video,
  .rk-testimonials,
  .rk-clinics-section,
  .contact-section{
    padding-left:14px;
    padding-right:14px;
  }

  .rk-footer-cta,
  .custom-footer{
    padding-left:14px;
    padding-right:14px;
  }
  
  
}

/* ── CUSTOM SECTION BACKGROUNDS & HOVER EFFECTS ── */

/* 1. Background images for sections with content overlay & parallax scrolling */
.rk-journey {
  background: linear-gradient(rgba(14, 28, 51, 0.93), rgba(14, 28, 51, 0.93)), 
              url('../img/Lap.jpg') center/cover no-repeat fixed !important;
}

.rk-journey-head h2 {
  color: #fff !important;
}

.rk-journey-head p {
  color: #cbd5e1 !important;
}

.rk-intro-video {
  background: linear-gradient(rgba(14, 28, 51, 0.93), rgba(14, 28, 51, 0.93)), 
              url('../img/pagesbarner.jfif') center/cover no-repeat fixed !important;
}

.rk-intro-content h2 {
  color: #fff !important;
}

.rk-intro-content p {
  color: #cbd5e1 !important;
}

.rk-intro-points div strong {
  color: #fff !important;
}

.rk-intro-points div span {
  color: #cbd5e1 !important;
}

.rk-intro-points div i {
  color: #ffdce3 !important;
}

/* Mobile fallback for background attachment to ensure smooth scrolling */
@media (max-width: 768px) {
  .rk-journey, .rk-intro-video {
    background-attachment: scroll !important;
  }
}

/* 2. Theme Background Colors to break monotony & custom light background shapes */
.rk-services {
  position: relative;
  background: linear-gradient(180deg, #fff7f9 0%, #fff 100%) !important;
  overflow: hidden;
}

.rk-services::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.12) 0%, transparent 70%);
  top: -50px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.rk-services::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.08) 0%, transparent 75%);
  bottom: -150px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.rk-services-head h2 {
  color: #162b4a !important;
}

.rk-services-head p {
  color: #5f6875 !important;
}

.rk-testimonials {
  background: linear-gradient(180deg, #fffcfd 0%, #f6e6e9 100%) !important;
}

/* 3. About section image & background circle interactive hover */
.rk-about-right {
  transition: transform 0.4s ease;
}

.rk-about-right::before {
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease !important;
}

.rk-about-right:hover::before {
  background: linear-gradient(145deg, #f6e4e8, rgba(183, 110, 121, 0.2)) !important;
  box-shadow: inset 0 0 0 3px rgba(183, 110, 121, 0.4) !important;
  transform: translateX(-50%) scale(1.05) !important;
}

.rk-about-right img {
  transition: transform 0.4s ease, filter 0.4s ease !important;
}

.rk-about-right:hover img {
  transform: translateY(-8px) scale(1.03) !important;
  filter: drop-shadow(0 25px 45px rgba(183, 110, 121, 0.25)) !important;
}

/* 4. Services section card images styles (shape, border, hover animation) */
.rk-service-img {
  border: 3px solid rgba(183, 110, 121, 0.15) !important;
  border-radius: 24px 8px 24px 8px !important;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease !important;
  overflow: hidden;
}

.rk-service-card:hover .rk-service-img {
  border-color: rgba(183, 110, 121, 0.8) !important;
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 12px 24px rgba(183, 110, 121, 0.15) !important;
}

/* 5. Journey section step images styles (shape, border, hover animation) */
.rk-step-img {
  border: 3px solid rgba(183, 110, 121, 0.12) !important;
  border-radius: 8px 30px 8px 30px !important;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease !important;
  overflow: hidden;
}

.rk-journey-card:hover .rk-step-img {
  border-color: rgba(183, 110, 121, 0.7) !important;
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 12px 24px rgba(183, 110, 121, 0.12) !important;
}

/* ── GALLERY SECTION & LIGHTBOX ── */
.rk-gallery-section {
  padding: clamp(72px, 7vw, 108px) 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7f9 100%) !important;
}

.rk-gallery-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.rk-gallery-head span {
  color: #b76e79;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.rk-gallery-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 50px);
  color: #162b4a;
  margin-bottom: 15px;
  font-weight: 700;
}

.rk-gallery-head p {
  color: #5f6875;
  font-size: 16px;
  line-height: 1.6;
}

.rk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.rk-gallery-card {
  display: block;
  border-radius: 24px 8px 24px 8px !important;
  border: 3px solid rgba(183, 110, 121, 0.15) !important;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(22, 43, 74, 0.04);
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease !important;
  cursor: pointer;
}

.rk-gallery-card:hover {
  border-color: rgba(183, 110, 121, 0.8) !important;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(183, 110, 121, 0.15) !important;
}

.rk-gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.rk-gallery-card:hover img {
  transform: scale(1.04);
}

.rk-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 24, 50, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.rk-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.rk-lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.rk-lightbox-close:hover {
  background: #b76e79;
  border-color: #b76e79;
  transform: rotate(90deg);
}

.rk-lightbox img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 16px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
  .rk-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .rk-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rk-gallery-head {
    margin-bottom: 30px;
  }
}

/* ── SCROLL REVEAL DIRECTIONS ── */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.reveal-left.show {
  opacity: 1;
  transform: translateX(0) !important;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.reveal-right.show {
  opacity: 1;
  transform: translateX(0) !important;
}

.reveal-bottom {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.reveal-bottom.show {
  opacity: 1;
  transform: translateY(0) !important;
}

.reveal-top {
  opacity: 0;
  transform: translateY(-60px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.reveal-top.show {
  opacity: 1;
  transform: translateY(0) !important;
}

/* Disable reveal transformations on mobile to prevent overflow/rendering artifacts */
@media (max-width: 991px) {
  .reveal-left, .reveal-right, .reveal-bottom, .reveal-top {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── MEET DR. RAKESH KUMAR SECTION ENHANCEMENTS ── */

/* Desktop & General Shape: Dual-Color Gradient (Pink to Navy Blue from Logo) & Border */
.rk-about-right::before {
  background: linear-gradient(135deg, rgba(183, 110, 121, 0.22) 0%, rgba(22, 43, 74, 0.18) 100%) !important;
  box-shadow: 0 15px 35px rgba(22, 43, 74, 0.08), 
              inset 0 0 0 2px rgba(183, 110, 121, 0.3) !important;
}

.rk-about-right:hover::before {
  background: linear-gradient(135deg, rgba(183, 110, 121, 0.35) 0%, rgba(22, 43, 74, 0.28) 100%) !important;
  box-shadow: 0 20px 45px rgba(22, 43, 74, 0.15), 
              inset 0 0 0 3px rgba(183, 110, 121, 0.5) !important;
}

/* Mobile & Tablet Responsive Container: Dual-Color Card Backdrop & Leaf Border Frame */
@media (max-width: 991px) {
  .rk-about-right {
    background: linear-gradient(145deg, rgba(183, 110, 121, 0.12) 0%, rgba(22, 43, 74, 0.08) 100%) !important;
    border: 3px solid rgba(183, 110, 121, 0.25) !important;
    box-shadow: 0 12px 30px rgba(22, 43, 74, 0.08) !important;
    border-radius: 24px 8px 24px 8px !important; /* Matches our leaf theme shape! */
    overflow: hidden !important;
    padding: 24px 16px 0 !important;
  }
  
  .rk-about-right::before {
    display: none !important; /* Hide circular bg overlay on mobile card */
  }
}

/* ── SERVICES SCROLLING TICKER ── */
.rk-services-ticker {
  background: #b76e79 !important;
  color: #fff !important;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid var(--navy) !important;
  box-shadow: 0 4px 15px rgba(22, 43, 74, 0.08);
  position: relative;
  z-index: 10;
}

.ticker-wrap {
  display: flex;
  width: 100%;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: ticker-slide 28s linear infinite;
  padding-right: 30px;
}

.ticker-content span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticker-content i {
  font-size: 6px;
  color: #fff !important;
}

@keyframes ticker-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* Pause animation on hover to allow interactive feel */
.rk-services-ticker:hover .ticker-content {
  animation-play-state: paused;
}

@media (max-width: 576px) {
  .rk-services-ticker {
    padding: 10px 0;
  }
  .ticker-content span {
    font-size: 13px;
  }
  .ticker-content {
    gap: 20px;
    padding-right: 20px;
  }
}

/* ── RESPONSIVE SECTION BACKGROUND SHAPES ── */

/* 1. About Section Background Shapes */
.rk-about {
  position: relative !important;
  overflow: hidden !important;
}

.rk-about::before {
  content: "" !important;
  position: absolute !important;
  width: min(300px, 60vw) !important;
  height: min(300px, 60vw) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(22, 43, 74, 0.06) 0%, transparent 70%) !important;
  left: -50px !important;
  top: 10% !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.rk-about::after {
  content: "" !important;
  position: absolute !important;
  width: min(400px, 80vw) !important;
  height: min(400px, 80vw) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.08) 0%, transparent 70%) !important;
  right: -100px !important;
  bottom: 5% !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* 2. Services Section Background Shapes */
.rk-services {
  position: relative !important;
  overflow: hidden !important;
}

.rk-services::before {
  width: min(350px, 70vw) !important;
  height: min(350px, 70vw) !important;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.12) 0%, transparent 70%) !important;
  top: -50px !important;
  left: -100px !important;
  z-index: 1 !important;
}

.rk-services::after {
  width: min(450px, 80vw) !important;
  height: min(450px, 80vw) !important;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.08) 0%, transparent 75%) !important;
  bottom: -150px !important;
  right: -150px !important;
  z-index: 1 !important;
}

/* 3. Journey Section Background Shapes */
.rk-journey {
  position: relative !important;
  overflow: hidden !important;
}

.rk-journey::before {
  background: radial-gradient(circle, rgba(183, 110, 121, 0.25) 0%, transparent 70%) !important;
  left: -100px !important;
  top: -100px !important;
}

.rk-journey::after {
  content: "" !important;
  position: absolute !important;
  width: min(400px, 80vw) !important;
  height: min(400px, 80vw) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(22, 43, 74, 0.35) 0%, transparent 70%) !important;
  bottom: -100px !important;
  right: -100px !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* 4. Intro Video Section Background Shapes */
.rk-intro-video {
  position: relative !important;
  overflow: hidden !important;
}

.rk-intro-video::before {
  background: radial-gradient(circle, rgba(183, 110, 121, 0.25) 0%, transparent 70%) !important;
}

.rk-intro-video::after {
  content: "" !important;
  position: absolute !important;
  width: min(450px, 90vw) !important;
  height: min(450px, 90vw) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(22, 43, 74, 0.35) 0%, transparent 70%) !important;
  bottom: -150px !important;
  left: -150px !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* 5. Testimonials Section Background Shapes */
.rk-testimonials {
  position: relative !important;
  overflow: hidden !important;
}

.rk-testimonials::before {
  content: "" !important;
  position: absolute !important;
  width: min(350px, 70vw) !important;
  height: min(350px, 70vw) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.12) 0%, transparent 70%) !important;
  top: -50px !important;
  right: -100px !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.rk-testimonials::after {
  content: "" !important;
  position: absolute !important;
  width: min(400px, 80vw) !important;
  height: min(400px, 80vw) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(22, 43, 74, 0.08) 0%, transparent 70%) !important;
  bottom: -100px !important;
  left: -100px !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* 6. Gallery Section Background Shapes */
.rk-gallery-section {
  position: relative !important;
  overflow: hidden !important;
}

.rk-gallery-section::before {
  content: "" !important;
  position: absolute !important;
  width: min(350px, 70vw) !important;
  height: min(350px, 70vw) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(22, 43, 74, 0.08) 0%, transparent 70%) !important;
  top: -50px !important;
  left: -100px !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.rk-gallery-section::after {
  content: "" !important;
  position: absolute !important;
  width: min(400px, 80vw) !important;
  height: min(400px, 80vw) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.12) 0%, transparent 70%) !important;
  bottom: -100px !important;
  right: -100px !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* 7. Contact Section Background Colors & Shapes Alignment */
.contact-section {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, var(--navy) 0%, var(--pink-dark) 100%) !important;
}

.contact-section::before {
  content: "" !important;
  position: absolute !important;
  width: min(450px, 90vw) !important;
  height: min(450px, 90vw) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%) !important;
  bottom: -150px !important;
  left: -150px !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.contact-section::after {
  content: "" !important;
  position: absolute !important;
  width: min(400px, 80vw) !important;
  height: min(400px, 80vw) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.2) 0%, transparent 70%) !important;
  top: -100px !important;
  right: -100px !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* ── MEET DR. RAKESH KUMAR BACKGROUND IMAGE UPDATE ── */
.rk-about {
  background: url('../img/bacgroundnew.jpeg') center/cover no-repeat !important;
}

.rk-about::before,
.rk-about::after {
  display: none !important; /* Hide added decorative circles as the background image already contains them */
}

/* Reusable Section CTA Buttons */
.rk-section-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 0 15px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.rk-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid transparent;
}

.rk-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-decoration: none;
}

/* Book Appointment Button: Navy style */
.rk-cta-btn.appt {
  background-color: #162b4a;
  color: #ffffff !important;
}
.rk-cta-btn.appt:hover {
  background-color: #b76e79;
}

/* WhatsApp Button: Brand green */
.rk-cta-btn.whatsapp {
  background-color: #25D366;
  color: #ffffff !important;
}
.rk-cta-btn.whatsapp:hover {
  background-color: #128C7E;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Call Now Button: Rose gold accent */
.rk-cta-btn.call {
  background-color: #b76e79;
  color: #ffffff !important;
}
.rk-cta-btn.call:hover {
  background-color: #162b4a;
}

/* Second Opinion Button: Sleek white/navy */
.rk-cta-btn.opinion {
  background-color: #ffffff;
  color: #162b4a !important;
  border: 2px solid #162b4a;
}
.rk-cta-btn.opinion:hover {
  background-color: #162b4a;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .rk-section-cta {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .rk-cta-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }
}





