        :root {
            --primary: #e65d25;
            --secondary: #9b9b9b;
            --accent: #FF8C61;
            --bg-light: #F8FAFB;
            --font-display: 'Outfit', sans-serif;
            --font-sans: 'Plus Jakarta Sans', sans-serif;
        }
        body {
            font-family: var(--font-sans);
            color: #334155;         
            overflow-x: hidden !important;
        }
        h1, h2, h3, h4, .font-display {
            font-family: var(--font-display);
        }
.navbar {
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    height: 80px;
}
        .navbar-brand .logo-box {
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .nav-link {    
    font-size: 18px !important;    
}

a.btn.btn-primary.rounded-pill.px-4.top-btn {
    font-size: 18px !important;
    font-weight: 400 !important;
}
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            border-radius: 50px;
            padding: 10px 24px;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #9b9b9b !important;
            border-color: #9b9b9b !important;
        }
        .navbar .btn-primary:hover {
    background-color: #e65d25 !important;
    border-color: #e65d25 !important;
}
        .hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            text-align: center;
            color: white;
        }
        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5));
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            padding: 0 20px;
        }
        .hero-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .hero-subtitle {
            color: var(--accent);
            letter-spacing: 0.2em;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }
        .wave-divider {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            line-height: 0;
        }
        .wave-divider svg {
            width: 100%;
            height: 60px;
        }
        .section-padding {
            padding: 100px 0;
        }
        .badge-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 50px;
            background-color: rgba(79, 124, 123, 0.1);
            color: var(--primary);
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
        }
        .dot-pulse {
            width: 8px;
            height: 8px;
            background-color: var(--primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(79, 124, 123, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(79, 124, 123, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(79, 124, 123, 0); }
        }
        .outer-img, .img-wrapper.rounded-5 {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .expert-div {
            position: absolute;
            bottom: 24px;
            right: 24px;
            background: white;
            padding: 16px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .service-card:hover {
    border-color: rgba(79, 124, 123, 0.2);
    transform: translateY(-10px);
    box-shadow: none;
}
        .service-card {
            background: white;
            padding: 40px;
            border-radius: 32px;
            border: 1px solid transparent;
            transition: all 0.3s ease;
            height: 100%;
         border-color: rgba(79, 124, 123, 0.2);         
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }
       
        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            grid-auto-rows: 200px;
            gap: 16px;
        }
        .gallery-item {
            border-radius: 24px;
            overflow: hidden;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s;
        }
        .gallery-item img:hover {
            opacity: 0.9;
        }
        .span-2-row { grid-row: span 2; }
        .span-2-col { grid-column: span 2; }
      footer {
    background-color: #e65d25;
    color: #fff;
    padding: 80px 0 40px;
}
footer ul li a, footer ul li span {
    font-size: 18px !important;
}
footer p{
    color: #fff;
    font-size: 18px;
}
        footer h4 { color: white; margin-bottom: 24px; }
        footer a { color: #fff; text-decoration: none; transition: color 0.3s; }    
        .social-link {
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
      
        .social-link img {
            width: 20px;
            filter: invert(1);
        }
        .why-choose-redesign {           
            padding: 100px 0;
            text-align: center;
        }
        .why-headline {
            font-weight: 900;
            text-transform: uppercase;
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #334155;
        }
     
        .why-subtext {           
            font-weight: 600;            
            max-width: 600px;
            margin: 0 auto 60px;
        }
         .custom-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
        }
        .custom-icon .material-symbols-outlined {
            color: white;
            font-size: 36px;
        }
        .feature-item h4 {
            font-weight: 800;
            font-size: 24px;
            margin-bottom: 12px;
            color: #334155;
        }
        .feature-item p {            
            font-size: 18px;
            line-height: 1.5;
            padding: 0 15px;
        }

        .logo-img{
  height:60px;      /* desktop */
  width:100%;
}
@media (min-width:1220px){
li.nav-item {
    padding: 10px;
}
}
body,html {
    overflow-x: hidden !important;
}

@media (max-width:768px){
  .logo-img{
    height:34px;    /* mobile */
  }
  .gallery-item {
    grid-row: span 2;
}
  .page-stem.prp .hero-sectionss, body.page-stem .hero-sectionss {
    height: 600px !important;
    padding: 0px 10px;
}
  .page-stem.prp .hero-sectionss a.btn, body.page-stem .hero-sectionss a.btn {
    font-size: 18px;
}

.glass-hero {
    padding: 40px 20px !important;
    margin-top: 70px;
}
footer {
    padding: 60px 0 10px !important;
}
#contact .col-md-4.col-lg-3 {
    margin-top: 20px !important;
}
#contact .gap-3 {
    gap: 10px !important;
}
.alert.bg-primary.bg-opacity-10.border-0.p-5.rounded-4.shadow-sm {
    padding: 40px 20px 10px !important;
}
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    margin-right: 0px;
    background-color: #e9e9e9;
    padding-left: 10px;
    padding-bottom: 15px;
    margin-left: -13px;
    padding-right: 10px;
}
   .section-padding,  .why-choose-redesign {
            padding: 50px 0;
        }
        .cta-content.text-white {
    padding: 10px !important;
}
.d-flex.align-items-center.gap-4.flex-wrap {    
    justify-content: center;
}
.cta-banner {
    text-align: center;
    padding: 30px 0px 0px !important;
    flex-direction: column-reverse;
}
.cta-img img {
    max-height: max-content !important;
    margin-bottom: 0px !important;
    width: 100%;
}
section.py-5.bg-white.paddings {
    padding: 50px 10px !important;
}
section#learn-more {
    padding-bottom: 10px !important;
    padding-top: 10px !important;
}
section.py-5.bg-light {
    padding-top: 0px !important;
}
section.py-5.bg-light {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
section.py-5.bg-white.paddings .container {
    padding: 0px !important;
}
}
section.py-5.bg-white.paddings {
    padding: 100px 0;
}
section.py-5.bg-white.paddings .container {
    padding: 30px 0;
}


.booking-card {
  background:#ffffff;
  border-radius:1.5rem;
  box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.check-icon {
    color: #e65d25;
    font-size: 1.4rem;
    margin-top: 2px;
}

.form-control,
.form-select {
  padding:.75rem 1rem;
  border-radius:.75rem;
}

.form-control:focus,
.form-select:focus {
  box-shadow:none;
  border-color:#4F7C7B;
}

.booking-bg {
  position:absolute;
  width:220px;
  height:220px;
  background:#e65d25;
  opacity:.08;
  border-radius:50%;
}

.shape-top-left {
  top:-80px;
  left:-80px;
}

.shape-bottom-right {
  bottom:-80px;
  right:-80px;
}
.cta-banner {
    background: #666666;
    border-radius: 28px;
    /* padding: 40px 60px; */
    min-height: 280px;
    gap: 40px;
    overflow: hidden;
}
.cta-banner a.btn.btn-primary.rounded-pill.px-4:hover {
    background-color: #e65d25;
}
.cta-content.text-white {
    padding: 50px;
}

.cta-img img {
  max-height: 100%;
  width: 100%;
}

.cta-title {
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.cta-call-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-call-icon span {
  color: #fff;
  font-size: 22px;
}

/* Mobile */


img.footer-logo {
    width: 200px;
    background-color: #fff;
    padding: 20px;
    border-radius: 7px;
}
#services p {
    font-size: 18px !important;
}

.doctor-signature{
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Playfair Display", "Georgia", serif;
}

.product-details {
  display: none;
}

.product-details.show {
  display: block;
}
.product-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.product-details.show {
  max-height: 400px;
}


 .text-primary { color: var(--primary) !important; }        
        .bg-primary {
    background-color: var(--primary) !important;
    color: #ffff;
}
.bg-primary .check-icon {
    color: #ffffff;
    margin-right: 10px;
}
        .btn-primary { 
            background-color: var(--primary); 
            border-color: var(--primary);
            padding: 10px 25px;
            font-weight: 600;
        }
      
        .material-symbols-outlined {
            vertical-align: middle;
        }.hero-sectionss {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('image/Platelet-Rich Plasma.jpg');
            background-size: cover;
            background-position: center;
            height: 700px;
            display: flex;
            align-items: center;
            color: white;
        }.timeline-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
        .timeline-steps::before {
            content: "";
            position: absolute;
            top: 25px;
            left: 0;
            right: 0;
            height: 2px;
            background: #dee2e6;
            z-index: 1;
        }
        .step-item {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 25%;
        }
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: 800;
            font-size: 1.25rem;
            box-shadow: 0 0 0 8px white;
        }.card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
        }
      
        .list-unstyled li {
            margin-bottom: 10px;
        }
        .check-icon {
            color: var(--primary);
            margin-right: 10px;
        }
.glass-hero {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
 .icon-soft {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #2f7d57;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid #e65d25;
}
  .icon-outline {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .text-orange {
    color: #ff7a00;
  }
  .alert.bg-primary.bg-opacity-10.border-0.p-5.rounded-4.shadow-sm {
    height: 100%;
}
a.page-btn {
    background: #e65d25;
    color: #fff !important;
    padding: 7px;
    border-radius: 25px;    
}

.custom-boxes .product-details.show {
    max-height: 100%;
}

.page-stem .list-unstyled li {
    margin-bottom: 10px;
    font-size: 18px;
}
.page-stem h6.fw-semibold.mb-1 {
    font-weight: 500 !important;
    font-size: 18px !important;
}
.text-orange img {
    width: 70%;
}
.icon-soft.me-3 img {
    width: 75%;
}
.page-stem.prp .hero-sectionss {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('image/Stem Cell Therapy.jpg');
    background-size: cover;
    background-position: center;
    height: 700px;
    display: flex;
    align-items: center;
    color: white;
}