/* ==========================================================================

   Derma Clinix - Styling Sheet

   ========================================================================== */



/* --------------------------------------------------------------------------

   1. CSS Reset & Base Variables

   -------------------------------------------------------------------------- */

:root {

    /* Color Palette */

    --primary-color: #0E2330;       /* Deep Navy Teal */

    --primary-light: #163654;       /* Slightly lighter navy */

    --accent-red: #C12F30;          /* Crimson Red */

    --accent-gold: #d0a85c;         /* Gold/Bronze */

    --bg-cream: #FFF0EC;            /* Rose-Cream background */

    --bg-white: #ffffff;

    --text-dark: #222222;

    --text-muted: #555555;

    --text-light: #ffffff;

    --border-color: #e6ded9;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);

    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);

    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    

    /* Layout Configurations */

    --max-width: 1320px;

    --transition-fast: 0.2s ease;

    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

}



* {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}



html {

    scroll-behavior: smooth;

    font-size: 16px;

}



body {

    font-family: "Poppins", sans-serif;

    color: var(--text-dark);

    /* background-color: var(--bg-cream); */

    line-height: 1.6;

    overflow-x: hidden;

}



h1, h2, h3, h4, h5, h6 {

    font-family: 'Playfair Display', serif;

    font-weight: 700;

    color: var(--primary-color);

}



a {

    text-decoration: none;

    color: inherit;

    transition: var(--transition-fast);

}



ul {

    list-style: none;

}



img {

    max-width: 100%;

    height: auto;

    display: block;

}



/* --------------------------------------------------------------------------

   2. Utility Classes & Layout System

   -------------------------------------------------------------------------- */

.container {

    width: 100%;

    max-width: var(--max-width);

    margin: 0 auto;

    /* padding: 0 24px; */

}



/* Button System */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-family: 'Outfit', sans-serif;

    font-weight: 600;

    padding: 12px 28px;

    border-radius: 50px;

    cursor: pointer;

    border: 2px solid transparent;

    transition: var(--transition-smooth);

    font-size: 0.95rem;

    gap: 8px;

}



.btn-sm {

    padding: 8px 18px;

    font-size: 0.85rem;

}



.btn-lg {

    padding: 16px 36px;

    font-size: 1.05rem;

}



.btn-primary {

    background-color: var(--accent-red);

    color: var(--text-light);

}



.btn-primary:hover {

    background-color: #b01b2d;

    transform: translateY(-2px);

    box-shadow: 0 8px 15px rgba(201, 36, 57, 0.3);

}



.btn-secondary {

    background-color: var(--accent-gold);

    color: var(--primary-color);

}



.btn-secondary:hover {

    background-color: #c0974b;

    transform: translateY(-2px);

    box-shadow: 0 8px 15px rgba(208, 168, 92, 0.3);

}



.btn-outline {

    border-color: var(--border-color);

    background-color: transparent;

    color: var(--text-muted);

}



.btn-outline:hover {

    border-color: var(--accent-red);

    color: var(--accent-red);

}



.btn-light {

    background-color: var(--bg-white);

    color: var(--primary-color);

}



.btn-light:hover {

    background-color: var(--bg-cream);

    transform: translateY(-2px);

}



.btn-outline-light {

    border-color: var(--text-light);

    color: var(--text-light);

}



.btn-outline-light:hover {

    background-color: var(--text-light);

    color: var(--primary-color);

}



.btn-block {

    display: flex;

    width: 100%;

}



.btn-circle {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    border: 1px solid var(--border-color);

    background-color: var(--bg-white);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: var(--transition-fast);

}



.btn-circle:hover {

    background-color: var(--primary-color);

    color: var(--text-light);

    border-color: var(--primary-color);

}



/* Sections Styling Defaults */

section {

    /* padding: 100px 0; */

}



.section-header {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 60px;

}



.section-tag {

    font-size: 0.85rem;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: var(--accent-red);

    font-weight: 700;

    margin-bottom: 12px;

    display: inline-block;

}



.section-header h2 {

    font-size: 2.5rem;

    line-height: 1.2;

    margin-bottom: 16px;

}



.section-header h2 span {

    color: var(--accent-red);

}



.section-header p {

    font-size: 1.1rem;

    color: var(--text-muted);

}



/* --------------------------------------------------------------------------

   3. Header & Navigation

   -------------------------------------------------------------------------- */

/* Navbar */

.navbar {

    padding: 15px 0;

    background: var(--bg-cream);

    position: sticky;

    top: 0;

    box-shadow: 0px 10px 20px 0px #00000033;

    z-index: 1000;



}

.header-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



/* Logo */

.logo img {

  height: 50px;

  display: block;

  mix-blend-mode: darken;

}



/* Badge */

.badge {

  background: #fff;

  border: 1px solid var(--accent-red);

  padding: 8px 15px;

  border-radius: 25px;

  font-family: Poppins;

  font-weight: 500;

  font-style: SemiBold;

  font-size: 16px;

  line-height: 20px;

  letter-spacing: 0%;



  color: var(--primary-color);

  display: flex;

  align-items: center;

  box-shadow: 10px 10px 10px 0px #EDD6CF;

  gap: 8px;

}

.badge .badge-highlight {

  color: var(--accent-red);

  font-weight: 600;

}



/* Buttons */

.actions {

  display: flex;

  gap: 10px;

}



.btn {

  text-decoration: none;

  padding: 8px 12px;

  border-radius: 8px;

  color: #fff;

  font-size: 16px;

  line-height: 1.2;

  display: flex;

  align-items: center;

  gap: 5px;

  font-weight: 500;

}



/* Call Button */

.call {

  background: #C12F30;

}



/* WhatsApp Button */

.whatsapp {

  background: #14D65C;

}



/* Hover */

.btn:hover {

  opacity: 0.9;

}



/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .header-container {

    flex-wrap: wrap;

    width: 100%;



  }



    .navbar{

      padding: 0;

      padding-bottom: 16px;

    }



    .badge {

    font-size: 14px;

    /* padding: 6px 10px; */

    white-space: nowrap;

    padding: 8px 8px;

    gap: 6px;

    width: 100%;

    border: none;

    border-radius: 0;

    box-shadow: none;

  }

  /* Optional: Fine-tune spacing inside your inner text elements if you have spans */

  .badge span {

    white-space: nowrap;

    /* display: inline-block; */

  }



  /* 2nd Row Left Side: Logo */

  .logo {

    order: 2;

    width: auto;

    flex-grow: 1;

    text-align: left;

    padding: 16px 0px 0px 8px;

  }



  .logo img {

    mix-blend-mode: darken;

    height: 30px;

  }

  .logo .companylogo{

    mix-blend-mode: darken;

  }



  /* 2nd Row Right Side: Action Buttons */

  .actions {

    order: 3;

    width: auto;

    justify-content: flex-end;

    gap: 6px;

    padding: 16px 8px 0px 0px;  

  }



  .btn {

    padding: 5px 10px; /* Slightly increased touch target size for user-friendliness */

    font-size: 13px;

  }

}



@media (max-width: 360px) {

  .badge {

    font-size: 12px;

    padding: 6px 10px;

    gap: 6px;

    border-radius: 0;

    box-shadow: none;

  }

  .badge span{

    white-space: nowrap;

  }

  

}



/* --------------------------------------------------------------------------

   4. Hero Section

   -------------------------------------------------------------------------- */

/* --- Core Hero Section Styles --- */

.hero-section {

  background-color: #0E2330;

  position: relative;

  background:url('./assests/desktopbg.webp') no-repeat center center / cover;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;

  color: #ffffff;

  /* padding: 30px 0 0 0; */

  overflow: hidden;

}



.hero-container {

  display: flex;

  max-width: 1320px;

  min-height: 550px;

  margin: 0 auto;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

}



/* --- Left Side Content Area --- */

.hero-content {

  max-width: 616px;

  /* padding: 0px 8px; */

}



.patented-badge {

  margin-bottom: 25px;

}



.hero-content h1 {

    font-family: Playfair Display;

    font-weight: 600;

    font-style: SemiBold;

    font-size: 42px;

    line-height: 50px;

    padding-right: 20px;

    letter-spacing: 0%;

    color: var(--text-light);

    letter-spacing: 0.5px;

}

.hero-content h1 span{

  color: #E8986E;

}



.hero-description {

    font-family: Poppins;

    font-weight: 400;

    font-style: Regular;

    font-size: 18px;

    margin:28px 0;

    line-height: 28px;

    letter-spacing: 0%;

    max-width: 551px;

}



/* ==========================================================================

   RIGHT SIDE VISUAL SHOWCASE ENGINE (Figma Exact Match Blueprint)

   ========================================================================== */

.hero-visual-showcase {

  flex: 1;

  display: flex;

  justify-content: flex-end;

  gap: 20px; /* Precise layout gap between the Before & After frame cards */

  max-width: 600px;

  width: 100%;

  /* CRITICAL: Padding gives safety space for the overflowing top images */

  padding-top: 55px; 

  margin-top: 80px;

  box-sizing: border-box;

}



/* White Shadow Framing Trace Box */

.case-showcase-card {

  background: linear-gradient(138.67deg, #FFFFFF 35.56%, #FFC5C6 93.34%);

  border-radius: 20px;

  padding: 14px; /* Marginally adjusted internal breathing room */

  width: calc(50% - 10px);

  max-width: 330px;

  height: 280px;

  box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.18);

  display: flex;

  flex-direction: column;

  gap: 14px;

  box-sizing: border-box;

  position: relative;

}



/* 

  PICTURE OVERLAP ENGINE:

  Negative top margin pulls the frame up past the container edge.

  The customized aspect-ratio handles the taller vertical silhouette.

*/

.case-img-crop {

  width: 100%;

  aspect-ratio: 0.76 / 1; /* Taller vertical proportions matching your blueprint */

  border-radius: 16px;

  overflow: hidden;

  background-color: #f1f5f9;

  margin-top: -60%; /* CRITICAL: Pops the photo out past the top white layout line */

  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);

  flex-shrink: 0;

  min-height: 370px;

}



.case-img-crop img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}



/* Bottom Metric Ribbon Labels */

.case-label {

  /* Use absolute positioning relative to the .case-showcase-card */

  position: absolute;

  bottom: 0;

  

  /* CRITICAL: These three lines dynamically calculate the exact horizontal center */

  left: 50%;

  right: auto;

  transform: translateX(-50%); 

  

  width: fit-content;

  height: 38px;

  padding: 8px 24px; /* Added horizontal padding to give text balanced side margins */

  border-radius: 8px 8px 0 0; /* Keeps the clean flat bottom edge line layout intact */

  

  display: flex;

  align-items: center;

  justify-content: center;

  

  /* Typography specifications */

  font-family: 'Playfair Display', serif;

  font-weight: 600;

  font-style: normal;

  font-size: 20px;

  line-height: 20px;

  letter-spacing: 0%;

  text-align: center;

  text-transform: uppercase;

  color: #ffffff;

  white-space: nowrap; /* Prevents text elements from wraps on narrow widths */

}





/* Shading Tone Variants Map */

.label-before {

  background: #E8986E/* Soft matching peach pill backing */

}



.label-after {

  background: #C12F30 /* Bold deep crimson pill backing */

}



/* ==========================================================================

   RESPONSIVE DESIGN BREAKPOINTS (All Device Layout Adjustments)

   ========================================================================== */

/* ==========================

   MOBILE HERO FIX

========================== */

@media (max-width: 768px) {



  .hero-visual-showcase{

    width: 100%;

    max-width: 100%;

    justify-content: center;

    gap: 12px;

    padding-top: 0;

    margin-top: 40px;

  }



  .case-showcase-card{

    width: calc(50% - 6px);

    padding: 8px;

    height: auto;

    border-radius: 16px;

  }



  .case-img-crop{

    min-height: auto;

    height: 260px;

    aspect-ratio: unset;

    margin-top: -28px;

    border-radius: 12px;

  }



  .case-label{

    height: 32px;

    padding: 8px 18px;

    font-size: 12px;

    line-height: 12px;

    border-radius: 6px 6px 0 0;

  }

}



@media (max-width: 480px){



  .hero-visual-showcase{

    gap: 8px;

    margin-top: 80px;

  }



  .case-showcase-card{

    width: calc(50% - 4px);

    padding: 6px;

  }



  .case-img-crop{

    height: 220px;

    margin-top: -80px;

    margin-bottom: 29px;

  }



  .case-label{

    font-size: 11px;

    height: 28px;

    padding: 6px 14px;

  }

}



/* --- Central Scroll Arrow --- */

.scroll-indicator {

  position: absolute;

  top: -22px; /* Pulls the circle up over the top border seam cleanly */

  left: 50%;

  transform: translateX(-50%);

  z-index: 10;

}



.arrow-circle {

  width: 44px;

  height: 44px;

  background: #1D4158;

  border: 2px solid #335F7B;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  animation: bounce 1.5s infinite;

  border-radius: 50%;

  font-size: 18px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.3);

  cursor: pointer;

}



@keyframes bounce {

  0%, 100% { transform: translateY(0); }

  50% { transform: translateY(6px); }

}



/* --- Footer Bar Canvas Container --- */

.metrics-bar {

  position: relative;

  background-color: #132D3E; /* Dark blue background color */

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding: 40px 40px 40px 40px;

  box-sizing: border-box;

}



/* ==========================================================================

   PRODUCTION INLINE FORM ENGINE (Figma Layout Exact Match)

   ========================================================================== */

.inline-form-container {

  max-width: var(--max-width);

  margin: 0 auto 0px auto; /* Margin at bottom separates form rows from secondary text labels */

  width: 100%;

  text-align: center;

}



.inline-form-title {

  font-family: 'Playfair Display', serif; /* Signature serif display title */

  font-size: 22px;

  font-weight: 600;

  color: #ffffff;

  margin: 0 0 25px 0;

  letter-spacing: 0.5px;

}



.inline-form {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 14px; /* Exact uniform horizontal space between input slots */

  width: 100%;

}



.inline-input-group {

  flex: 1; /* Automatically distributes equal widths across form items */

  min-width: 0;

}



/* Gives the message box wider row layout coverage space */

.inline-input-group.message-field {

  flex: 1.6; 

}



.inline-input-group input {

  width: 100%;

  padding: 14px 18px;

  border: 1px solid #E1C8C1;

  border-radius: 8px;

  font-size: 13.5px;

  background-color: #ffffff;

  box-sizing: border-box;

  color: #334155;

  font-family: 'Poppins', sans-serif;

  height: 48px; /* Standardize fields height profile boundary line */

}



.inline-input-group input::placeholder {

  color: #8D7069;

}



.inline-input-group input:focus {

  outline: none;

  border-color: #ffffff;

  box-shadow: 0 0 0 2px rgba(225, 200, 193, 0.3);

}



/* Horizontal Red Submit Action Button Container */

.inline-submit-btn {

  height: 48px; /* Locks height to perfectly match the adjacent fields */

  min-width: 150px;

  background-color: #C12F30; /* Theme Crimson Red */

  color: #ffffff;

  border: none;

  padding: 0 24px;

  border-radius: 8px;

  font-family: 'Poppins', sans-serif;

  font-size: 14px;

  font-weight: 500;

  cursor: pointer;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  white-space: nowrap;

  transition: opacity 0.2s ease, transform 0.1s ease;

}



.inline-submit-btn:hover {

  opacity: 0.95;

}



.inline-submit-btn:active {

  transform: scale(0.98);

}





/* ==========================================================================

   TRUSTED HIGHLIGHTS BANNER LAYOUT ENGINE

   ========================================================================== */

.trusted-highlights-banner {

  width: 100%;

  max-width: var(--max-width);

  margin: 40px auto 10px auto; /* Margin top separates it from the inline form cleanly */

  border-top: 1px solid rgba(255, 255, 255, 0.15); /* Thin subtle top border partition line */

  padding-top: 35px;

  padding-left: 28px;

  text-align: center;

  box-sizing: border-box;

}



.trusted-banner-title {

 font-family: Poppins;

font-weight: 500;

font-style: Medium;

font-size: 18px;

line-height: 20px;

letter-spacing: 10%;

color: #fff;

text-align: center;

text-transform: uppercase;



  margin: 0 0 30px 0;

}



/* Horizontal Row Flex Grid Distribution */

.trusted-highlights-row {

  display: flex;

  align-items: center;

  justify-content: space-between; /* Spreads items evenly from left to right across the row */

  gap: 20px;

  width: 100%;

}



.trusted-highlight-item {

  display: flex;

  align-items: center;

  gap: 10px; /* Space between icon circle and label string */

}



/* Distinctive Orange Filled Verification Badges */

.orange-check-icon {

  position: relative;

  flex-shrink: 0;

}



.orange-check-icon::before {

    content: "";

    position: absolute;

    right: 0px;

    top: -14px;

    width: 24px;

    height: 24px;

    background: url(./assests/tickicon.svg) no-repeat center;

    background-size: contain;

}



.trusted-highlight-item .highlight-text {

  font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 16px;

line-height: 30px;

color: #FFFFFF;

letter-spacing: 0%;

  white-space: nowrap; /* Prevents phrases from unexpectedly wrapping on monitors */

}



/* ==========================================================================

   RESPONSIVE LAYOUT RESPONSIVE ADAPTATIONS

   ========================================================================== */

@media (max-width: 1100px) {

  /* Fits nicely onto medium tablet screens by turning into a 2x2 square block matrix */

  .trusted-highlights-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px 40px;

    max-width: 700px;

    margin: 0 auto;

  }

  

  .trusted-highlight-item {

    justify-content: flex-start;

  }

}



@media (max-width: 650px) {

  .trusted-highlights-banner {

    margin-top: 30px;

    padding-top: 25px;

  }



  .trusted-banner-title {

    font-size: 16px;

    letter-spacing: 1px;

    line-height: 1.4;

    margin-bottom: 20px;

    padding: 0 10px;

  }



  /* Collapses row completely on mobile screens into a modern, single vertical column list */

  .trusted-highlights-row {

    display: flex;

    flex-direction: column;

    align-items: flex-start; /* Aligns checkboxes neatly along the left edge on mobile */

    max-width:auto;

    padding: 0px 24px;

    gap: 4px;

  }



  .trusted-highlight-item .highlight-text {

    font-size: 14px;

  }

}





/* ==========================================================================

   RESPONSIVE DESIGN BREAKPOINTS (All Viewport Devices Fixes)

   ========================================================================== */

@media (max-width: 992px) {

  .hero-container {

    min-height: auto;

    flex-direction: column;

    text-align: center;

    padding: 30px 16px;

  }



  .hero-content {

    display: flex;

    flex-direction: column;

    align-items: center;

  }



  .hero-description {

    margin-left: auto;

    margin-right: auto;

  }



  .features-grid {

    justify-content: center;

    max-width: 500px;

  }



  /* 

    TABLET OPTIMIZATION: 

    Converts 1 wide row layout into a clean 2x2 fields block matrix 

    so items stay fully legible without shrinking.

  */

  .inline-form {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;

  }

  

  .inline-input-group.message-field,

  .inline-submit-btn {

    grid-column: span 2;

    width: 100%;

    max-width: 100%;

  }

}



@media (max-width: 768px) {

  .hero-section {

      background:url('./assests/mobilebg.webp') no-repeat center center / cover;

    background-color: #0E2330;

    padding-top: 30px 16px;

  }



  .patented-badge {

    margin-bottom: 10px;

  }



  .hex-wrapper {

    width: 100%;

    height: auto;

    margin-bottom: 20px;

    padding: 0;

  }



  .hex-wrapper::before,

  .hex-wrapper::after {

    display: none; 

  }



  .hero-content h1 {

    font-size: 30px;

    line-height: 35px;

    margin-bottom: 12px;

  }



  .hero-description {

    font-size: 14px;

    line-height: 18px;

    margin: 8px 0px;

  }



  .features-grid {

    grid-template-columns: 1fr;

    gap: 0px;

    text-align: left;

    margin-bottom: 1rem;

  }

  

  .fallback-span {

    grid-column: span 1;

  }



  .feature-item {

    font-size: 14px;

    line-height: 22px;

  }



  .patented-badge img {

    width: 50%;

    margin: 0 auto;

  }



  /* --- Mobile Inline Form Refinement Reset --- */

  .metrics-bar {

  padding: 30px 16px;

  }



  .inline-form-title {

    font-size: 18px;

    line-height: 24px;

    margin-bottom: 18px;

  }



  /* 

    MOBILE SMARTPHONE RE-MAPPING:

    Collapses grid columns down into a standard single column 

    vertical list stacking order track.

  */

  .inline-form {

    display: flex;

    flex-direction: column;

    gap: 12px;

  }



  .inline-input-group {

    width: 100%;

  }



  .inline-input-group input {

    height: 36px;

    padding: 12px 14px;

    font-size: 13px;

  }



  .inline-submit-btn {

    height: 36px;

    width: 100%;

  }



}





/* --------------------------------------------------------------------------

   7. Real Transformations (Split Slider)

   -------------------------------------------------------------------------- */

/* --- Global Section Base Canvas --- */

.transformations-section {

  background-color: var(--bg-cream);

  border-top: 1px solid #CAA69D;

  padding: 80px 24px;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;

}



.transform-container {

  max-width: 1320px;

  margin: 0 auto;

}



/* Header Areas */

.transform-header {

  text-align: center;

  max-width: 760px;

  margin: 0 auto 48px auto;

}



.transform-title {

  font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 40px;

line-height: 55px;

letter-spacing: 0%;

color: var(--primary-color);

text-align: center;



  margin: 0 0 16px 0;

}



.transform-subtitle {

  font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 17px;

line-height: 28px;

letter-spacing: 0%;

text-align: center;

color: #705149;

max-width: 782px;

  font-weight: 400;

}



/* --- Desktop Slider View Layout Rules (3 Cards Grid Default) --- */

.transform-slider-controls {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  width: 100%;

  margin-bottom: 30px;

}



.transform-slider-wrapper {

  width: 100%;

  overflow-x: auto;

  overflow-y: hidden;

  scroll-snap-type: x mandatory;

  scroll-behavior: smooth;

  flex: 1;

  /* max-width: 380px; */

}



.transform-slider-wrapper::-webkit-scrollbar {

  display: none;

}



.transform-slider-wrapper {

  scrollbar-width: none;

}



.transform-slider-track {

  display: flex;

  gap: 24px;

  width: max-content;

  margin: 0 auto;

}



/* Navigation Buttons - Hidden on mobile, Visible on desktop */

.transform-nav-btn {

  display: flex;

  width: 48px;

  height: 48px;

  border-radius: 50%;

  border: 2px solid #e6ded9;

  background-color: white;

  cursor: pointer;

  transition: all 0.3s ease;

  align-items: center;

  justify-content: center;

  color: var(--primary-color);

  flex-shrink: 0;

}



.transform-nav-btn:hover {

  border-color: var(--accent-red);

  color: var(--accent-red);

}



.transform-nav-btn.active-btn {

  background-color: var(--accent-red);

  border-color: var(--accent-red);

  color: white;

}



@media (max-width: 900px) {

  .transform-slider-controls {

    gap: 8px;

    margin-bottom: 20px;

  }



  .transform-nav-btn {

    width: 40px;

    height: 40px;

  }

}



/* Mobile controls - shown only on mobile devices */

.transform-mobile-controls {

  display: none;

  gap: 12px;

  justify-content: center;

  align-items: center;

  margin-top: 16px;

}



@media (max-width: 900px) {

  .transform-mobile-controls {

    display: flex;

  }

}

.transform-card {

  background: linear-gradient(129.67deg, #FFD3D3 2.25%, #FFFFFF 90.03%);

  border: 1px solid #D7BAB2;

  border-radius: 16px;

  padding: 24px;

  box-shadow: 0px 10px 25px rgba(108, 59, 43, 0.04);

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  align-items: center;

  max-width: 430px;

  flex-shrink: 0;

}



.card-logo-wrap {

  width: 100%;

  text-align: center;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

}



.clinic-logo {

  /* height: 28px; */

  mix-blend-mode: darken;

  object-fit: contain;

}



/* Split Image Columns Placement Inside Cards */

.images-split-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

  width: 100%;

  margin-bottom: 18px;

}



.img-box {

  position: relative;

  width: 100%;

  aspect-ratio: 0.9 / 1;

  border-radius: 12px;
  overflow: hidden;
  background-color: #f7f7f7;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Status Labels Overlays */
.status-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 0;
  color: #ffffff;
}

.tag-before { 
    background-color: #E8986E;
    text-align: center;
    margin: 0 auto;
    padding: 4px 20px;
    border-radius: 4px 4px 0px 0px;
    width: fit-content;
}
.tag-after { 
    background-color: #C12F30;
    text-align: center;
    margin: 0 auto;
    padding: 4px 20px;
    border-radius: 4px 4px 0px 0px;
    width: fit-content;
} 

/* Bottom Card Metric Labels Grid */
.card-meta-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: 14px;
  color: #111111;
  font-weight: 400;
  padding: 0 8px;
}

.card-meta-bar .meta-item span.meta-lbl {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #0E2330;
}

/* Custom Horizontal Pagination Dots */
.slider-dots-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ecd4ca;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px; /* Extended dash style element exact match */
  border-radius: 4px;
  background-color: #c12f30;
}

/* ==========================================================================
   PRODUCTION MOBILE RE-ENGINEERING (Figma Specification Match)
   ========================================================================== */
@media (max-width: 900px) {
  .transform-header {

    padding-right: 0;

    margin: 0 auto 16px auto;

  }



  .transform-title { font-size: 24px; line-height: 32px; }

  .transform-subtitle { font-size: 14px; line-height: 18px; padding: 0px 16px; }

  .transform-slider-controls {

    flex-direction: column;

    gap: 12px;

  }



  .transform-slider-wrapper {

    overflow-x: auto;

    overflow-y: hidden;

    scroll-snap-type: x mandatory;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    width: 100%;

  }



  .transform-slider-wrapper::-webkit-scrollbar {

    display: none;

  }



  .transform-slider-track {

    display: flex;

    gap: 16px;

    width: max-content;

    padding: 0;

  }



  /* 

    MOBILE CARD SIZING:

    82vw takes up most of the viewport, leaving slight peek of next card

  */

  .transform-card {

    width: 82vw;

    max-width: 340px;

    flex-shrink: 0;

    scroll-snap-align: start;

    padding: 16px;

  }



  .images-split-grid { gap: 8px; margin-bottom: 14px; }

  .card-meta-bar { font-size: 12px; padding-top: 10px; gap: 6px; }

  .card-meta-bar .meta-item {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    hyphens: auto;
  }

  .slider-dots-indicator { padding-right: 0; margin-top: 24px; }

}





/* --------------------------------------------------------------------------

   8. Process Journey (Restart Hair)

   -------------------------------------------------------------------------- */

/* SECTION */



/* CONTAINER */

.vip-section {

  background: #F9E2DB;

  border-bottom: 1px solid #CAA69D;

  padding: 50px 0px;

}



/* MEDIA STRIP */

.media-strip {

  position: relative;

  text-align: center;

  color: black;

  font-family: Poppins;

font-weight: 500;

font-style: Medium;

font-size: 18px;

line-height: 20px;

letter-spacing: 10%;

text-align: center;

text-transform: uppercase;



}





.logo-slider {

  overflow: hidden;

  margin-top: 40px;

  width: 100%;

}



/* Track */

.logo-track {

  display: flex;

  width: max-content; /* 🔥 IMPORTANT */

  animation: scroll 50s linear infinite;

}



/* Card */

.logo-card {

  width: 180px;

  height: 90px;

  margin: 0 15px;

  background: #FFF0EC;

  border-radius: 12px;



  display: flex;

  align-items: center;

  justify-content: center;



  flex-shrink: 0;

}



/* Logo image */

.logo-card img {

  max-width: 70%;

  max-height: 60%;

  mix-blend-mode: darken;

  object-fit: contain;

}



/* Animation */

@keyframes scroll {

  0% {

    transform: translateX(0);

  }

  100% {

    transform: translateX(-50%);

  }

}





@media (max-width: 992px) {



  .logo-card {

    width: 120px;

    height: 50px;

    margin: 0 8px;

  }



  .logotracktitle{

    font-size: 14px;

  }

  /* 🔥 IMPORTANT: ENABLE SCROLL ALSO IN TABLET */

  .vip-features {

    display: flex;

    overflow-x: auto;

    flex-wrap: nowrap;

    gap: 15px;

    padding: 15px 20px;



    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

  }



  .hex {

    flex: 0 0 160px; /* fixed width */

    scroll-snap-align: center;

  }

}



@media (max-width: 768px) {

  .vip-section {

    padding: 30px 0px;

  }

  .vip-features {

    display: flex;

    overflow-x: auto;

    flex-wrap: nowrap; /* 🔥 important */

    gap: 15px;

    padding: 10px 20px;



    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

  }



  /* Hide scrollbar */

  .vip-features::-webkit-scrollbar {

    display: none;

  }



  .logo-slider{

    margin-top: 20px;

  }

}





.logo-track {

  display: flex;

  animation: scroll 20s linear infinite;

}



.logo-slider:hover .logo-track {

  animation-play-state: paused;

}









/* --- Global Section Base Canvas --- */

.trust-metrics-section {

  background-color: #fdf0ea; /* Exact background skin canvas color match */

  padding: 80px 24px;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;

  overflow: hidden;

  border-top: 1px solid #CAA69D;

  border-bottom: 1px solid #CAA69D;

}



.metrics-container {

  max-width: var(--max-width);

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  gap: 50px;

}



/* --- Top Row Structural Two-Column Split Layout --- */

.metrics-top-split {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;

  width: 100%;

}



.metrics-info-col {

  flex: 1.1;

  max-width: 609px;

}



.metrics-info-col .cost-action-row{

  margin-top: 28px;

}



.metrics-image-col {

  flex: 1.2;

  display: flex;

  justify-content: flex-end;

}



/* Headings & Texts Shading / Sizes Typography */

.metrics-main-title {

 font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 40px;

line-height: 55px;

letter-spacing: 0%;

  margin: 0 0 25px 0;

  color: #0E2330;

}



.metrics-main-title span {

  color: #c12f30; /* Terracotta Red / Orange highlight color match */

}



.metrics-desc {

  font-family: Poppins;

font-weight: 400;

font-style: Regular;

color: #0E2330;

font-size: 17px;

line-height: 28px;

letter-spacing: 0%;



  margin: 0 0 25px 0;

}



.metrics-glance-marker {

font-family: Poppins;

font-weight: 600;

font-style: SemiBold;

font-size: 20px;

line-height: 20px;

letter-spacing: 5%;

text-transform: uppercase;

color: #0E2330;



  margin: 25px 0 0 0;

}



/* Rounded Clinic Graphic Image Frame */

.clinic-img-frame {

  width: 100%;

  max-width: 600px;

  border-radius: 20px; /* Exact match smooth corner curvature */

  overflow: hidden;

  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);

}



.clinic-img-frame img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}



/* --- Bottom 6-Column Interlocking Hexagon Matrix Track --- */

.metrics-hexagon-grid {

  display: grid;

  grid-template-columns: repeat(6, 1fr); /* 6 clean column tracks layout map */

  gap: 16px;

  width: 100%;

}



/* Base Hexagon Frame Logic */

.metric-hex-card {

  width: 100%;

  aspect-ratio: 1 / 1.05; /* Locks exact proportional dimensional height metrics */

  position: relative;

  box-sizing: border-box;

}



/* Dual Layer 18-Point Smooth Curved Hexagon Architecture */

.hex-border-trace {

  background: #ffffff; /* Ambient white border edge glow line trace */

  padding: 2.5px;

  width: 100%;

  height: 100%;

  box-sizing: border-box;

  filter: drop-shadow(0px 12px 24px rgba(108, 59, 43, 0.12));

  

  background: url('./assests/polygonshap.png') no-repeat center;

  background-size: contain;

}



.hex-core-content {

  width: 100%;

  height: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 16px 8px;

  box-sizing: border-box;

}



/* Internal Metrics Card Typography */

.metric-number {

 font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 35px;

line-height: 40px;

letter-spacing: 0%;

text-align: center;

margin-bottom: 12px;

  color: #c12f30; /* Clear deep high-contrast red stats color */

  display: flex;

  align-items: baseline;

  justify-content: center;

  gap: 2px;

}



.metric-number .sup-txt {

  font-family: 'Poppins', sans-serif;

  font-size: 10px;

  font-weight: 500;

  color: #c12f30;

  margin-right: 3px;

}



.metric-label {

  font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 17px;

line-height: 25px;

letter-spacing: 0%;

text-align: center;



  margin: 0;

}



/* ==========================================================================

   PRODUCTION ALL-DEVICE RESPONSIVE BREAKPOINTS (Tablets & Smartphones)

   ========================================================================== */



@media (max-width: 1100px) {

  .metrics-main-title { font-size: 32px; line-height: 42px; }

  

  /* Matrix Scales to a 3-column / 2-row layout format on small screens */

  .metrics-hexagon-grid {

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    max-width: 720px;

    margin: 0 auto;

  }

}



@media (max-width: 900px) {

  /* Conversions: Flips row layout into single stacked blocks columns */

  .metrics-top-split {

    flex-direction: column;

    text-align: center;

    gap: 16px;

  }

  .metrics-container{

    gap: 30px;

  }



  .metrics-info-col .cost-action-row{

  margin-top: 16px;

}

  

  .metrics-info-col { max-width: 100%; }

  

  .clinic-img-frame {

    max-width: 520px;

    margin: 0 auto;

  }

}



@media (max-width: 600px) {

  .trust-metrics-section {

    padding: 30px 16px;

  }



  .metrics-main-title {

    font-size: 24px;

    line-height: 32px;

    margin-bottom: 16px;

  }



  .metrics-desc {

    font-size: 14px;

    line-height: 18px;

    margin-bottom: 16px;

  }



  .metrics-glance-marker {

    margin-top: 16px;

    font-size: 12px;

  }



  /* Compact 2-column distribution mobile tracking mesh */

  .metrics-hexagon-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    max-width: 340px;

  }



  .metric-number { font-size: 24px; line-height: 32px; }

  .metric-label { font-size: 14px; line-height: 18px; }

}









/* --- Global Section Base Canvas --- */

.techniques-section {

  border-bottom: 1px solid #CAA69D;

  background-color: #FFF0EC; /* Matching Pale Pastel Soft Cream canvas backdrop color */

  padding: 80px 24px;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;

  overflow: hidden;

}



.techniques-container {

  max-width: var(--max-width);

  margin: 0 auto;

}



/* Header Context Typographic Layout */

.techniques-header {

  text-align: center;

  max-width: 960px;

  margin: 0 auto 55px auto;

}



.techniques-header h2 {

 font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 40px;

line-height: 55px;

letter-spacing: 0%;

text-align: center;

  margin: 0 0 16px 0;

}



.techniques-subtitle {

font-family: Poppins;

font-weight: 400;

font-style: Regular;

max-width: 900px;

font-size: 17px;

line-height: 28px;

letter-spacing: 0%;

color: #705149;

text-align: center;

}



/* --- Core 3-Column Card Layout Engine --- */

.techniques-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr); /* Balanced 3-column distribution map */

  gap: 30px;

  width: 100%;

}



/* Individual Base Card Block Frame */

.tech-card {

  background-color: #ffffff;

  border-radius: 20px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  overflow: hidden;

  box-shadow: 0px 10px 50px 0px #00000014;

  box-sizing: border-box;

  /* min-height: 530px; */

}



/* --- Card Header Layers --- */

.tech-card-header {

  height: 160px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 20px;

  box-sizing: border-box;

}



.giant-acronym {

font-family: Playfair Display;

font-weight: 700;

font-style: Bold;

font-size: 35px;

line-height: 18px;

letter-spacing: 5%;

text-align: center;

text-transform: uppercase;





}



/* --- Card Body Blocks --- */

.tech-card-body {

  padding: 20px 25px;

  /* flex-grow: 1; */

  display: flex;

  flex-direction: column;

}



.tech-title {

  font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 25px;

line-height: 30px;

letter-spacing: 0%;

color: #0E2330;

  margin: 0 0 18px 0;

}



.tech-desc {

  font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 18px;

line-height: 30px;

letter-spacing: 0%;

  color: #334155;

  /* margin: 0 0 20px 0; */

  font-weight: 400;

}



.tech-benefit {

 font-family: Poppins;

font-weight: 600;

font-style: Italic;

font-size: 18px;

line-height: 30px;

letter-spacing: 0%;

color: #0E2330;

}



/* --- Card Footer Callout Bars --- */

.tech-card-footer {

  min-height: 82px;

  padding: 0px 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  box-sizing: border-box;

}



.tech-card-footer p {

  font-family: Poppins;

font-weight: 400;

font-style: SemiBold;

font-size: 18px;

line-height: 30px;

letter-spacing: 0%;

  color: #000000;

  margin: 0;

}





/* --- Card Body Base Configuration Extension --- */

.tech-card-body {

  padding: 30px 25px;

  flex-grow: 1;

  display: flex;

  flex-direction: column;

}



/* ==========================================================================

   KEY BENEFITS SECTION LAYOUT MATRIX

   ========================================================================== */

.card-benefits-wrapper {

  margin-bottom: 10px;

  width: 100%;

  text-align: left;

}



.benefits-heading {

 font-family: Poppins;

font-weight: 600;

font-style: SemiBold;

font-size: 18px;

line-height: 30px;

letter-spacing: 0%;

  margin: 0 0 16px 0;

}



/* Splits checklist items side-by-side into 2 fluid columns */

.benefits-split-columns {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 0 24px; /* 24px horizontal space separation between list paths */

  width: 100%;

}



.benefits-column {

  display: flex;

  flex-direction: column;

  gap: 8px; /* Uniform vertical gap space between checklist items */

}



.benefit-item {

  font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 16px;

line-height: 30px;

letter-spacing: 0%;

color: #000000;

  gap: 8px; /* Precise padding distance from checkmark symbol to text label */

}



/* The light subtle italic serif styled tick marks */

.benefit-tick {

  color: #000000;

  font-weight: 600;

  font-size: 18px;

  font-family: 'Playfair Display', Georgia, serif;

  user-select: none;

}



/* --- Card Footer Callout Bars (Updated) --- */

.tech-card-footer {

  min-height: 82px;

  padding: 30px 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  box-sizing: border-box;

  background-color: #faeee8; /* Default background fill for red variant base card footer */

  border-top: 1px solid #ebd3c9;

}





/* ==========================================================================

   PRODUCTION ALL-DEVICE RESPONSIVE BREAKPOINTS (Mobile view adaptations)

   ========================================================================== */

@media (max-width: 600px) {

  /* 

    MOBILE ADAPTATION:

    Collapses the 2-column checklist into a single vertical row list on phones 

    to guarantee text lines never cramp or overflow.

  */

  .benefits-split-columns {

    grid-template-columns: 1fr;

    gap: 12px 0;

  }

  

  .benefits-heading {

    font-size: 15px;

    margin-bottom: 12px;

  }

  

  .benefit-item {

    font-size: 14px;

    line-height: 18px;

  }



  .tech-card-footer p {

    font-size: 15px; /* Marginally scaled down to fit small viewports natively */

    line-height: 24px;

  }

}



/* ==========================================================================

   COLOR SCHEME THEMATIC ASSIGNMENTS

   ========================================================================== */



/* 1. B.E.S.T (Crimson Red Theme Modifiers) */

.card-red { border: 1px solid #CAA69D; }

.card-red .tech-card-header { background: linear-gradient(346.67deg, #FFD6D6 -6.38%, #D55455 106.82%); }

.card-red .giant-acronym { color: #C12F30; }

.card-red .tech-card-footer { background-color: #F9E2DB; border-top: 1px solid #CAA69D; }

.hl-red { color: #be2e2f; font-weight: 600; }



/* 2. L.H.T (Purple Lavender Theme Modifiers) */

.card-purple { border: 1px solid #AE9DDB; }

.card-purple .tech-card-header { background: linear-gradient(346.67deg, #EFE9FF -6.38%, #9A86D1 106.82%); }

.card-purple .giant-acronym { color: #53369C; }

.card-purple .tech-card-footer { background-color: #ECE5FF; border-top: 1px solid #AE9DDB; }

.hl-purple { color: #be2e2f; font-weight: 600; } /* Retains signature text highlight color */



/* 3. I.T (Mint Green Theme Modifiers) */

.card-green { border: 1px solid #94C6A6; 

box-shadow: 0px 10px 50px 0px #00000014;

}

.card-green .tech-card-header { background: linear-gradient(346.67deg, #E2FFED -6.38%, #59B87C 106.82%);}

.card-green .giant-acronym { color: #32B362; }

.card-green .tech-card-footer { background-color: #E7FFF0; border-top:1px solid #94C6A6; }

.hl-green { color: #c12f30; font-weight: 600; }



.tech-mobile-tabs {

  display: none;

}

/* ==========================================================================

   PRODUCTION ALL-DEVICE RESPONSIVE BREAKPOINTS (Tablets & Smartphones)

   ========================================================================== */



@media (max-width: 1024px) {

  .techniques-header h2 { font-size: 32px; }

  .giant-acronym { font-size: 22px; line-height: 32px; }

  .tech-title { font-size: 18px; }

  .tech-desc, .tech-benefit { font-size: 14px; line-height: 18px; }

}



@media (max-width: 900px) {

  /* Tablet Shift: Adjusts grid down to 2 columns to prevent narrow card squeezing */

  .techniques-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

  }

}



@media (max-width: 640px) {

  .techniques-section {

    padding: 30px 16px;

  }



  .techniques-header{

    margin-bottom: 20px;

  }



  .techniques-header h2 {

    font-size: 24px;

    line-height: 1.3;

    margin-bottom: 12px;

  }



  .techniques-subtitle {

    font-size: 14px;

    line-height: 18px;

  }



  /* Mobile Smartphone Shift: Flips row layout into a clean single-column vertical stack */

  .techniques-grid {

    grid-template-columns: 1fr;

    max-width: 380px;

    margin: 0 auto;

    gap: 24px;

  }



  .tech-card {

    min-height: auto; /* Relaxes strict height boundaries to let contents expand naturally */

  }



  .tech-card-header {

    height: 80px;

    padding: 10px 14px;;

  }



  .tech-card-body {

    padding: 10px 14px;

  }



  .tech-benefit {

    margin-top: 16px; /* Space buffer for flexible alignments */

  }

  .tech-card-footer p {

    font-size: 16px;

    line-height: 20px;

    text-align: start;

  }



  .tech-card-footer{

    min-height: 80px;

    padding: 10px 14px;

    justify-content: start;

  }





  /* TAB BUTTON */



  /* Show tabs only on mobile */

  .tech-mobile-tabs {

    display: flex;

    gap: 8px;

    margin-bottom: 20px;

    overflow-x: auto;

  }



  .tech-tab-btn {

    flex: 1;

    border: 1px solid #CAA69D;

    background: #fff;

    padding: 12px 16px;

    border-radius: 10px;

    font-family: Poppins, sans-serif;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;

  }



  .tech-tab-btn.active {

    background: #C12F30;

    color: #fff;

    border-color: #C12F30;

  }



  /* Keep grid single column */

  .techniques-grid {

    display: block;

    max-width: 100%;

  }



  /* Hide all cards */

  .tech-card {

    display: none;

  }



  /* Show active card */

  .tech-card.active {

    display: flex;

  }

}



/* --------------------------------------------------------------------------

   9. Founders & Doctors Profiles

   -------------------------------------------------------------------------- */

/* --- Global Section Base Canvas --- */

.experts-section {

  background-color: #F9E2DB; /* Soft signature background canvas tint */

  padding: 80px 24px;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;

  border-bottom: 1px solid #CAA69D

}



.experts-container {

  max-width: 1320px;

  margin: 0 auto;

}



/* Header Component Typography */

.experts-header {

  text-align: center;

  display: flex; 

  justify-content: center;

  margin-bottom: 55px;

}



.experts-header h2 {

 font-family: Playfair Display;

 max-width: 734px;

font-weight: 600;

font-style: SemiBold;

text-align: center;

font-size: 40px;

line-height: 55px;

letter-spacing: 0%;

text-align: center;



}



.experts-header h2 span {

  color: #c12f30; /* Theme Accent Crimson color mapping */

}



/* Two-Column Side-by-Side Flex Cards Grid */

.experts-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 32px;

  align-items: stretch;

}



/* Individual Card Frame Layer Wrapper */

.expert-card {



  /* background-color: #fffcfb; */

  background-image: url('./assests/doctorcardbg.svg'); 

  background-repeat: no-repeat;

  background-position: center center;

  background-size: cover;

  

  border: 1px solid #ebd4ca;

  border-radius: 20px;

  display: flex;

  position: relative;

  overflow: hidden; /* Clips the background slanted geometry layers cleanly */

  box-shadow: 0px 15px 35px rgba(108, 59, 43, 0.04);

  box-sizing: border-box;

}



.expert-card::after {

  content: "";

  position: absolute;

  bottom: 0;

  right: 0;

  width: 50%;   /* 🔥 control size */

  height: 90%;

  background: url('./assests/doctor1.webp') no-repeat bottom right;

  background-size: contain;



  z-index: 1;

  pointer-events: none;

}



.expert-card:nth-child(2)::after {

  background: url('./assests/doctor2.webp') no-repeat bottom right;

  background-size: contain;

}



.expert-card::before {

  content: "";

  position: absolute;

  bottom: -80px;   /* push down for half cut */

  right: -80px;    /* push right for crop effect */



  width: 420px;    /* 🔥 control size */

  height: 420px;



  background: linear-gradient(139.12deg, #E8986E 13.29%, #FFFFFF 74.33%);

  border-radius: 50%;



  z-index: 0; /* behind image */

}





/* --- Left Side Content Column Area --- */

.card-content-left {

  flex: 1.1;

  padding: 40px 10px 40px 40px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  z-index: 5; /* Forces textual details above any background graphics overlays */

}



.expert-name {

  font-family: Playfair Display;

font-weight: 600;

 white-space: nowrap;

font-style: SemiBold;

font-size: 38px;

line-height: 55px;

letter-spacing: 0%;

  color: #0c2333;

  margin: 0 0 10px 0;

}



.expert-tagline {

  font-family: Poppins;

   white-space: nowrap;

  font-weight: 600;

  font-style: SemiBold;

  font-size: 15px;

  line-height: 25px;

  padding: 8px 0;

  letter-spacing: 5%;

  text-align: left;

  text-transform: uppercase;

  border-top: 1px solid #e4bfb5;

  border-bottom: 1px solid #e4bfb5;

  color: #c12f30;

  letter-spacing: 0.5px;

  margin: 0 0 25px 0;

  line-height: 1.4;

}



/* Checklist Styling */

.expert-bullets {

  list-style: none;

  padding: 0;

  margin: 0 0 30px 0;

}



.expert-bullets li {

  font-family: Poppins;

font-weight: 500;

font-style: Medium;

font-size: 17px;

line-height: 24px;

letter-spacing: 0%;



  font-weight: 500;

  max-width: 278px;

  color: #2c3e50;

  line-height: 1.5;

  margin-bottom: 12px;

  display: flex;

  align-items: center;

  gap: 10px;

}



/* Red Circular Check Indicator circles */

.bullet-check {

  border-radius: 50%;



  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;



  position: relative; /* important */

}



/* Custom icon inside circle */

.bullet-check::before {

  content: "";

  width: 20px;

  height: 20px;



  background: url('./assests/tickicon.svg') no-repeat center;

  background-size: contain;

}



/* Button CTA Component */

.btn-consultation {

  background-color: #c12f30;

  color: #ffffff;

  text-decoration: none;

  font-size: 13.5px;

  font-weight: 600;

  padding: 12px 24px;

  border-radius: 6px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: max-content;

  transition: opacity 0.2s ease;

}



.btn-consultation:hover {

  opacity: 0.95;

}



/* --- Right Side Visual Graphic Engine --- */

.card-visual-right {

  flex: 0.9;

  position: relative;

  display: flex;

  align-items: flex-end;

  justify-content: flex-end;

}

.dctor-img {

  position: relative;

  height: 100%; /* Keeps top head room spacing within layout boundaries */

  width: auto;

  object-fit: contain;

  z-index: 2; /* Sits cleanly over the background slant pattern shape */

  display: block;

}



/* Manual position alignment refinements to match original character positions */

.img-offset-left {

  transform: translateX(10px);

}



.img-offset-right {

  transform: translateX(0px);

}





/* ==========================================================================

   PRODUCTION ALL-DEVICE RESPONSIVE BREAKPOINTS (Tablets & Mobile Optimization)

   ========================================================================== */



@media (max-width: 1024px) {

  .expert-name { font-size: 24px; 



  }

  .expert-bullets li { font-size: 14px; margin-bottom: 10px; }

  /* .expert-card::after {

    display: none;

  }

  .expert-card:nth-child(2)::after {

    display: none;

  } */

  .doctor-img { height: 82%; } /* Downscales image space on smaller monitors */

}



@media (max-width: 900px) {

  /* Conversions: Swaps side-by-side format into a single column vertical stack loop */

  .experts-grid {

    grid-template-columns: 1fr;

    max-width: 580px;

    margin: 0 auto;

    gap: 28px;

  }



  .card-content-left {

    padding: 35px 0px 35px 35px;

  }



  .doctor-img {

    height: 90%;

  }

}



@media (max-width: 550px) {

  .experts-section {

    padding: 30px 16px;

  }



  .experts-header{

    margin-bottom: 16px;

  }

  .experts-header h2 {

    font-size: 24px;

    line-height: 1.3;

  }



  /* Smart Mobile Transformation: Re-aligns elements vertically so text doesn't clash with images */

  .expert-card {

    flex-direction: column;

    overflow: hidden;

    height: 520px;

  }



    .expert-card::before {

    width: 240px;   /* 🔥 smaller circle */

    height: 240px;



    bottom: -60px;  /* adjust position */

    right: -40px;



    border-radius: 50%;

   background: linear-gradient(139.12deg, #E8986E 13.29%, #FFFFFF 74.33%);





    z-index: 0;

  }



  .card-content-left {

    padding: 10px 14px;

    width: 100%;

    box-sizing: border-box;

  }



  .expert-name { font-size: 22px; line-height: 32px; }

  .expert-tagline {

    white-space: inherit;

    font-size: 12px;

  }

  .btn-consultation { 

    font-size: 12px;

    font-weight: 500;

    padding: 4px 8px;

    width: fit-content; 

    box-sizing: border-box; 

  } 

  



  /* Places the doctor at the base of the card without overlapping text details */

  .card-visual-right {

    width: 100%;

    height: 240px;

    overflow: hidden;

    border-bottom-left-radius: 20px;

    border-bottom-right-radius: 20px;

    justify-content: center;

  }



  .slanted-bg-shape {

    transform: skewY(-6deg) translateY(40px); /* Swaps to a horizontal slant pattern on mobile screen viewports */

    right: 0;

    left: 0;

    top: auto;

    height: 100%;

  }



  .doctor-img {

    height: 100%;

    transform: none;

  }

}















/* --- Global Section Base Canvas --- */

.pillars-section {

  background-color: #FFF0EC; /* Soft signature pale pink background color match */

  padding: 80px 24px;

  border-bottom:1px solid #CAA69D;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;

  overflow: hidden;

}



.pillars-container {

  max-width: var(--max-width);

  margin: 0 auto;

}



/* Header Text Component Alignment */

.pillars-header {

  text-align: center;

  margin-bottom: 50px;

}



.pillars-header h2 {

  font-family: 'Playfair Display', serif; /* Elegant display typography selection */

  font-size: 38px;

  font-weight: 700;

  line-height: 1.3;

  color: #0c2333; /* Corporate Dark Navy */

  margin: 0;

}



/* --- Core 3-Column Matrix Layout Engine --- */

.pillars-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr); /* 3 balanced columns grid array width specs */

  gap: 24px;

  width: 100%;

}



/* Individual Core Feature Card Block */

.pillar-card {

  background-color: #FFFFFF;

  border: 1px solid #CAA69D;

  border-radius: 16px;

  padding: 30px 24px 35px 24px;

  box-shadow: 0px 10px 30px rgba(108, 59, 43, 0.03);

  box-sizing: border-box;

  display: flex;

  gap: 20px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;

}



.pillar-card:hover {

  transform: translateY(-2px);

  box-shadow: 0px 15px 35px rgba(108, 59, 43, 0.06);

}



/* Header Row Area Inside Card Workspace */

.pillar-card-header {

  display: flex;

  flex-direction: column;

  align-items: start;

  gap: 20px;

  width: 100%;

}





/* Custom Earthy Tone Circular Icon Shield Backings */

.icon-shield {

  background-color: #E8986E; /* Smooth desaturated terracotta background color */

  color: #ffffff;

  width: 75px;

  height: 75px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

}



.icon-shield svg {

  width: 40px;

  height: 52px;

}



/* Card Heading Components Typeface */

.pillar-card-header h3 {

 font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 24px;

line-height: 32px;

letter-spacing: 0%;

}



/* Card Body Content Layout Blocks */

.pillar-desc {

 font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 17px;

line-height: 28px;

letter-spacing: 0%;

}



/* ==========================================================================

   PRODUCTION DEVICE ADAPTABILITY BREAKPOINTS (Tablets & Smartphones)

   ========================================================================== */



@media (max-width: 1024px) {

  .pillars-header h2 { font-size: 32px; }

  .pillar-card-header h3 { font-size: 17px; }

  .pillar-desc { font-size: 14px; line-height: 18px; }

}



@media (max-width: 900px) {

  /* Tablet Shift Viewports: Restructures row to a balanced 2-column distribution map */

  .pillars-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

  }

}



@media (max-width: 600px) {

  .pillars-section {

    padding: 30px 16px;

  }

  .pillars-header{

    margin-bottom: 20px;

  }

  .pillars-header h2 {

    font-size: 24px;

    line-height: 1.3;

  }



  /* Smartphone Mobile Shift: Collapses grid down into a clean 1-column layout list track */

  .pillars-grid {

    grid-template-columns: 1fr;

    max-width: 420px;

    margin: 0 auto;

    gap: 16px;

  }



  .pillar-card {

    padding: 16px 18px;

    gap: 10px;

  }



  .pillar-card-header {

    margin-bottom: 14px;

  }



  .icon-shield {

    width: 46px;

    height: 46px;

  }



  .icon-shield img {

    width: 28px;

    height: 28px;

  }



  .pillar-card-header h3 {

    font-size: 18px;

    line-height: 24px;

  }

}











/* --------------------------------------------------------------------------

   11. Comparison Table

   -------------------------------------------------------------------------- */



/* --- Global Section Base Canvas --- */

.comparison-table-section {

  background-color: #fff1eb;

  padding: 80px 24px;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;

}



.comp-table-container {

  max-width: 1040px;

  margin: 0 auto;

}



/* Header Component */

.comp-table-header {

  text-align: center;

  max-width: 680px;

  margin: 0 auto 55px auto;

}



.comp-table-title {

  font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 40px;

line-height: 55px;

letter-spacing: 0%;

text-align: center;

  margin: 0 0 16px 0;

}



.comp-table-title .vs-text {

  color: #c12f30;

font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 40px;

line-height: 55px;

letter-spacing: 0%;

text-align: center;



  margin: 0 8px;

}



.comp-table-subtitle {

 font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 17px;

line-height: 28px;

letter-spacing: 0%;

text-align: center;

  color: #705149;

}



/* --- Table Grid Matrix Wrapper --- */

.table-scroll-wrapper {

  width: 100%;

  border-radius: 20px 20px 16px 16px;

  box-shadow: 0px 15px 40px rgba(108, 59, 43, 0.05);

}



.comparison-matrix {

  width: 100%;

  border-collapse: separate;

  border-spacing: 0;

  /* background-color: #ffffff; */

  border-radius: 20px 20px 16px 16px;

}



/* --- Table Header Cells Styling --- */

.comparison-matrix th {

  padding: 0; /* Reset default padding to allow inner blocks to dictate custom height offsets */

  vertical-align: bottom; /* Forces the shorter features block to anchor perfectly to the row floor line */

  box-sizing: border-box;

}



/* 

  EXACT HEIGHT STEP MATCHING ENGINE:

  The left column inner box stands shorter (54px), while the product tabs 

  next to it extend taller (74px) to replicate the exact look from your design image.

*/

.th-inner-features {

  background-color: #0e273c;

  color: #ffffff;

  font-family: Playfair Display;

font-weight: 500;

font-style: Medium;

font-size: 22px;

line-height: 28px;

letter-spacing: 0%;



  text-align: left;

  padding: 0 24px;

  height: 54px; /* Shorter height */

  display: flex;

  align-items: center;

  border-top-left-radius: 20px;

}



.th-inner-tab {

  color: #ffffff;

 font-family: Playfair Display;

font-weight: 700;

font-style: Bold;

font-size: 22px;

line-height: 28px;

letter-spacing: 0%;

text-align: center;



  height: 74px; /* Taller height */

  display: flex;

  align-items: center;

  justify-content: center;

  border-top-left-radius: 20px;

  border-top-right-radius: 20px;

}



/* Column Width Specifications */

.col-width-features { width: 50%; }

.col-width-tab { width: 25%; }



/* Tab Themes */

.blue-tab-bg { background-color: #14558f; }

.peach-tab-bg { background-color: #eb9c7d; }



/* --- Table Body Data Rows --- */

.comparison-matrix td {

  padding: 16px 24px;

  border-bottom: 1px solid #CAA69D;

  vertical-align: middle;

  box-sizing: border-box;

}



/* Internal Column Separators */

.comparison-matrix td:not(:last-child) {

  border-right: 1px solid #CAA69D;

}



.comparison-matrix td:first-child{

  background-color: white;

  border-left: 1px solid #CAA69D;

}

.comparison-matrix td:last-child{

  border-right: 1px solid #779CB4;

  background-color: #E2F3FF;

}





.feature-name {

  font-family: Poppins;

font-weight: 500;

font-style: Medium;

font-size: 17px;

line-height: 28px;

letter-spacing: 0%;



  text-align: left;

}



.status-cell {

  text-align: center;

}



/* Column Fills */

.cell-blue-bg { background-color: #FFE9DE; color: #E8986E; }

.cell-peach-bg { background-color: rgba(235, 156, 125, 0.06); color: #155076; }



/* --- Validation Icons --- */

.badge-icon {

  width: 22px;

  height: 22px;

  border-radius: 50%;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-size: 10px;

  font-weight: bold;

}



/* FUE Column Badges */

.check-blue { background-color: #14558f; color: #ffffff; }

.cross-blue { background-color: #a2c6e4; color: #14558f; }



/* VIP Column Badges */

.check-peach { background-color: #d76a43; color: #ffffff; }



/* Bottom Security Border Radii Clamps */

.comparison-matrix tr:last-child td:first-child { border-bottom-left-radius: 16px; }

.comparison-matrix tr:last-child td:last-child { border-bottom-right-radius: 16px; }



/* ==========================================================================

   PRODUCTION ALL-DEVICE RESPONSIVE BREAKPOINTS (Tablets & Smartphones)

   ========================================================================== */

@media (max-width: 820px) {



  .table-scroll-wrapper {

    overflow-x: visible;

    width: 100%;

  }



  .comparison-matrix {

    width: 100%;

    table-layout: fixed;

  }



  .col-width-features {

    width: 50%;

  }



  .col-width-tab {

    width: 25%;

  }



  .th-inner-features {

    height: auto;

    min-height: 48px;

    padding: 10px 8px;

    font-size: 14px;

    line-height: 18px;

  }



  .th-inner-tab {

    height: auto;

    min-height: 60px;

    padding: 10px 6px;

    font-size: 12px;

    line-height: 16px;

    text-align: center;

  }



  .comparison-matrix td {

    padding: 10px 6px;

    font-size: 12px;

    line-height: 16px;

    text-align: center;

    word-break: break-word;

  }



  .feature-name {

    text-align: left;

    font-size: 12px;

    line-height: 16px;

    word-break: break-word;

    white-space: normal;

  }



  .badge-icon {

    font-size: 14px;

  }

}



@media (max-width: 500px) {



  .comparison-table-section {

    padding: 30px 16px;

  }



  .comparison-matrix {

    width: 100%;

  }



  .col-width-features {

    width: 48%;

  }



  .col-width-tab {

    width: 26%;

  }



  .th-inner-features,

  .th-inner-tab,

  .comparison-matrix td {

    font-size: 13px;

    line-height: 14px;

    padding: 8px 4px;

    text-align: center;

    justify-content: center;

  }



  .comp-table-title {

    font-size: 24px;

    line-height: 1.3;

  }



  .comp-table-subtitle {

    font-size: 14px;

    line-height: 18px;

  }



  .comp-table-header {

    margin-bottom: 20px;

  }



  .feature-name {

    font-size: 11px;

    line-height: 14px;

  }



  .badge-icon {

    font-size: 12px;

  }

}





/* --- Global Section Base Canvas --- */

.journey-section {

  background-color: #fcece6;

  background: url('./assests/journeyprocessbg.webp') no-repeat center center / cover;

  padding: 100px 40px 40px 40px;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;

  overflow: hidden;

}



.journey-container {

  max-width: 1320px;

  margin: 0 auto;

  padding-right: 20px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

}



/* --- Left Typography Section --- */

.journey-info {

  flex: 1;

  max-width: 360px;

}



.journey-title {

  font-family: 'Playfair Display', serif;

  max-width: 305px;

  font-weight: 600;

  font-size: 40px;

  line-height: 55px;

  color: var(--text-dark);

  margin: 0 0 24px 0;

}



.journey-title span {

  color: #c12f30; /* Theme Accent Crimson */

}



.journey-description {

  font-family: 'Poppins', sans-serif;

  font-weight: 400;

  font-size: 17px;

  line-height: 28px;

  color: #705149;

}



/* --- Right Interlocking Hexagon Layout Engine --- */

.journey-grid {

  display: grid;

  grid-template-columns: repeat(3, 240px);

  /* gap: 40px 15px;  */

  margin-right: 30px;

  position: relative;

  justify-content: center;

}



/* Base Hexagon Sizing Outer Box */

.journey-step-wrapper {

  width: 240px;

  height: 240px; /* Exact explicit dimensions requested */

  box-sizing: border-box;

}



/* --- Interlocking Layout Positioning Engine --- */



/* Row 1 Content: Steps 1, 3, 5 */

.journey-step-wrapper:nth-child(1) { grid-column: 1; grid-row: 1; transform: translateY(0); }

.journey-step-wrapper:nth-child(3) { grid-column: 2; grid-row: 1; transform: translateY(0); }

.journey-step-wrapper:nth-child(5) { grid-column: 3; grid-row: 1; transform: translateY(0); }



/* Row 2 Content: Steps 2, 4, 6 pushed right and shifted up to nest cleanly */

.journey-step-wrapper:nth-child(2) { grid-column: 1 / span 2; grid-row: 1; transform: translate(130px, 200px); }

.journey-step-wrapper:nth-child(4) { grid-column: 2 / span 2; grid-row: 1; transform: translate(130px, 200px); }

/* Step 6 drops down to avoid overflow limits while keeping the visual slope alignment */

.journey-step-wrapper:nth-child(6) { grid-column: 3; grid-row: 2; transform: translate(130px, -35px); }





/* Smooth Curved Hexagon Border Frame Simulation */

/* .hex-border-box {

  background: #E8986E; 

  padding: 2.5px;

  width: 100%;

  height: 100%;

  box-sizing: border-box;

  filter: drop-shadow(0px 12px 20px rgba(108, 59, 43, 0.12));

  

  clip-path: polygon(

    42% 1%, 50% 0%, 58% 1%, 

    94% 21%, 99% 25%, 100% 32%, 

    100% 68%, 99% 75%, 94% 79%, 

    58% 99%, 50% 100%, 42% 99%, 

    6% 79%, 1% 75%, 0% 68%, 

    0% 32%, 1% 25%, 6% 21%

  );

} */



.hex-border-box {

  width: 100%;

  height: 100%;

  position: relative;



  background: url('./assests/hexagon.png') no-repeat center;

  background-size: contain;

  background-blend-mode: darken;

  display: flex;

  align-items: center;

  justify-content: center;



  filter: drop-shadow(0px 12px 20px rgba(108, 59, 43, 0.12));

}





.hex-card-inner {

  /* background-color: #FFF0EC; */

  width: 100%;

  height: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 20px;

  box-sizing: border-box;

}



/* Round Badge Circle Numbers */

.step-number {

  background-color: #c12f30; 

  color: #ffffff;

  width: 32px;

  height: 32px;

  border-radius: 50%;

  font-size: 14px;

  font-weight: 600;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 12px;

}



/* Step Description Titles */

.step-text {

 font-family: Poppins;

font-weight: 500;

font-style: Medium;

font-size: 20px;

line-height: 28px;

letter-spacing: 0%;

text-align: center;



  color: #0E2330;

  margin: 0;

  letter-spacing: -0.2px;

}



/* ==========================================================================

   RESPONSIVE LAYOUT CONVERSIONS & DESIGN BREAKPOINTS

   ========================================================================= */



@media (max-width: 1200px) {

  .journey-container {

    flex-direction: column;

    text-align: center;

    padding: 0 12px;

  }

  

  .journey-info {

    max-width: 600px;

    margin-bottom: 20px;

  }

}



/* --- Tablets & Mobile Phones (Handles everything under 900px) --- */

@media (max-width: 900px) {

  .journey-section {

    padding: 20px 16px; 

  }



  .journey-container {

    gap: 0;

    padding: 0;

  }



  .journey-title {

    font-size: 24px;

    line-height: 32px;

    max-width: 100%;

    margin-bottom: 10px;

  }



  .journey-description {

    font-size: 14px;

    line-height: 20px;

    /* margin-bottom: 30px; */

  }



  /* 

    PERFECT FLEXBOX-GRID MATRIX:

    Changes from Grid layout to a 2-column Flex row layout. 

    This natively handles the staggered vertical columns without height clipping bugs.

  */

  .journey-grid {

    display: flex;

    justify-content: center;

    width: 100%;

    max-width: 500px;

    margin: 0 auto;

    gap: 16px; /* EXACT HORIZONTAL GAP BETWEEN THE COLUMNS */

  }



  /* Set uniform responsive hexagon scaling properties */

  .journey-step-wrapper {

    width: 100%;

    height: auto;

    aspect-ratio: 1 / 1.05;

    transform: none !important;

  }



  /* 

    MODERN FLEX TIMELINE CONVERSION:

    Splits the 6 steps into two independent vertical stacking flows.

  */

  

  /* Creates a separate left column for steps 1, 3, 5 */

  .journey-grid::before {

    content: '';

    display: none;

  }

  

  /* Force a clean structural flow rearrangement */

  .journey-grid {

    grid-template-columns: none !important; /* Strips old grid traits */

  }



  /* 

    To preserve your exact HTML structure without editing any files, 

    we turn the column groups into structural flex stacks with equal pixel gaps.

  */

  .journey-grid {

    display: grid !important;

    grid-template-columns: repeat(2, 1fr) !important;

    gap: 0px 16px !important; /* 16px precise side gaps */

    position: relative;

  }



  /* Clear out chaotic desktop configurations */

  .journey-step-wrapper {

    grid-column: auto !important;

    grid-row: auto !important;

  }



  /* Left Column Track Group (1, 3, 5) */

  .journey-step-wrapper:nth-child(1) { grid-column: 1; grid-row: 1; margin-bottom: 20px; }

  .journey-step-wrapper:nth-child(3) { grid-column: 1; grid-row: 2; margin-bottom: 20px; }

  .journey-step-wrapper:nth-child(5) { grid-column: 1; grid-row: 3; }



  /* 

    Right Column Track Group (2, 4, 6)

    Shifted down by exactly 75px. 

    This creates an identical interlocking nested look with perfectly equal vertical gaps!

  */

  .journey-step-wrapper:nth-child(2) { grid-column: 2; grid-row: 1; transform: translateY(85px) !important; margin-bottom: 20px; }

  .journey-step-wrapper:nth-child(4) { grid-column: 2; grid-row: 2; transform: translateY(85px) !important; margin-bottom: 20px; }

  .journey-step-wrapper:nth-child(6) { grid-column: 2; grid-row: 3; transform: translateY(85px) !important; }



  /* 

    FIX FOR STEP 6 CUTTING OFF:

    Creates empty tracking spacer layout box logic underneath the last node row

    so the section wrapper calculates the height dynamically and remains fully visible.

  */

  .journey-grid::after {

    content: "";

    grid-column: span 2;

    height: 95px; /* Matches the exact translation height gap bounds */

    display: block;

  }



  /* Typography Scale Fixes */

  .step-text {

    font-size: 12px;

    line-height: 1.4;

  }

  

  .step-number {

    width: 30px;

    height: 30px;

    font-size: 13px;

    margin-bottom: 6px;

  }

}



/* --- Micro Devices Optimization (Screens under 400px wide) --- */

@media (max-width: 400px) {

  .journey-section {

    background: url(./assests/stepperbg.svg) no-repeat center center / cover;

    overflow: hidden;

}

  .journey-grid {

    gap: 0px 10px !important; /* Tighter layout gap on old tiny device viewports */

  }

  

  .journey-step-wrapper:nth-child(1),

  .journey-step-wrapper:nth-child(3),

  .journey-step-wrapper:nth-child(2),

  .journey-step-wrapper:nth-child(4) { 

    margin-bottom: 35px; /* Scales down gaps on small screens so shapes don't detach */

  }



  .journey-step-wrapper:nth-child(2),

  .journey-step-wrapper:nth-child(4),

  .journey-step-wrapper:nth-child(6) { 

    transform: translateY(65px) !important; /* Proportional shift reduction */

  }



  .journey-grid::after {

    height: 70px;

  }



  .step-text {

    font-size: 11px;

    line-height: 1.3;

  }



  .step-number {

    width: 26px;

    height: 26px;

    font-size: 12px;

    margin-bottom: 4px;

  }

}







/* --- Global Section Canvas Base --- */

.cost-breakdown-section {

  background-color: #fdf0ea; /* Exact background skin canvas color match from image */

   background: url('./assests/journeyprocessbg.webp') no-repeat center center / cover; /* Leverages your existing honeycomb vector path image if desired */

  background-repeat: no-repeat;

  background-position: center center;

  background-size: cover;

  padding: 80px 24px;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;

  overflow: hidden;

}



.cost-section-container {

  max-width: var(--max-width);

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  align-items: center;

}



/* --- Section Title Heading Typography --- */

.cost-header {

  text-align: center;

  margin-bottom: 55px;

}



.cost-header h2 {

  font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 40px;

line-height: 55px;

letter-spacing: 0%;

text-align: center;

color: #0E2330;



}



.cost-header h2 span {

  color: #c12f30; /* Figma Crimson Highlight Text Accent */

}



/* --- Main Split Dual-Panel Card Layout Box --- */

.cost-main-panel {

  background-color: #ffffff;

  border: 1px solid #CAA69D;

  border-radius: 20px;

  display: grid;

  grid-template-columns: 1fr 1fr; /* Clean horizontal split into two equal columns */

  width: 100%;

  max-width: 1040px;

  box-shadow: 0px 15px 40px rgba(108, 59, 43, 0.04);

  box-sizing: border-box;

  overflow: hidden;

}



/* --- Left Column Factors List Workspace --- */

.cost-panel-left {

  padding: 50px 45px 50px 55px;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  justify-content: center;

  /* Recreates the elegant thin center divider gray line seen in your reference picture */

  border-right: 1px solid #CAA69D; 

}



.factors-intro-text {

font-family: Poppins;

font-weight: 600;

font-style: SemiBold;

font-size: 16px;

line-height: 28px;

letter-spacing: 0%;

  margin: 0 0 24px 0;

}



.factors-checklist {

  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  flex-direction: column;

  gap: 14px; /* Uniform vertical gap space layout between lists entries */

}



.factors-checklist li {

  display: flex;

  align-items: center;

  gap: 12px;

}



/* Precise Orange Filled Circles Checkmarks */

.factor-check-icon {

  background-color: #e8986e; /* Signature Figma warm peach color fill */

  color: #ffffff;

  font-size: 8px;

  font-weight: 900;

  width: 18px;

  height: 18px;

  border-radius: 50%;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

}



.factor-label-text {

  font-family: Poppins;

font-weight: 500;

font-style: Medium;

font-size: 16px;

line-height: 30px;

letter-spacing: 0%;

color: #0E2330;



}



/* --- Right Column Pricing Layout Workspace --- */

.cost-panel-right {

  padding: 50px 55px 50px 55px;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  justify-content: center;

}



.price-heading {

  font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 25px;

line-height: 30px;

letter-spacing: 0%;

color: #000000;

  margin: 0 0 4px 0;

}



/* Stylized Terracotta Pricing Callout Label */

.price-highlight {

 font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 25px;

line-height: 30px;

letter-spacing: 0%;



  color: #E8986E;

  margin-bottom: 24px;

}



.price-disclaimer-text {

  font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 16px;

line-height: 26px;

margin-bottom: 20px;

letter-spacing: 0%;



}



.price-secondary-note {

font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 16px;

line-height: 26px;

letter-spacing: 0%;

margin-bottom: 20px;





}



/* Bottom Action Row Placement Button */

.cost-action-row {

  display: flex;

  justify-content: flex-start;

  width: 100%;

}



.btn-book-consultation {

  background-color: #c12f30; /* Theme Crimson Red Exact Match */

  color: #ffffff;

  text-decoration: none;

  font-family: 'Poppins', sans-serif;

  font-size: 14px;

  font-weight: 500;

  padding: 12px 28px;

  border-radius: 6px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  transition: opacity 0.2s ease, transform 0.1s ease;

  box-shadow: 0px 4px 15px rgba(193, 47, 48, 0.15);

}



.btn-book-consultation:hover {

  opacity: 0.95;

}



.btn-book-consultation:active {

  transform: scale(0.98);

}



/* ==========================================================================

   PRODUCTION RESPONSIVE ADAPTABILITY ENGINE (Tablets & Mobile Viewports)

   ========================================================================== */



@media (max-width: 900px) {

  .cost-header h2 { font-size: 32px; }

  

  /* Compresses padding fields to fit comfortably on small screens layers */

  .cost-panel-left { padding: 40px 30px; }

  .cost-panel-right { padding: 40px 30px; }

  

  .price-heading { font-size: 21px; }

  .price-highlight { font-size: 28px; }

}



@media (max-width: 768px) {

  /* 

    MOBILE WORKSPACE TRANSFORMATION:

    Collapses grid side-by-side columns down into a modern, 

    user-friendly single vertical stacking order track framework.

  */

  .cost-main-panel {

    grid-template-columns: 1fr;

    max-width: 480px; /* Clamps max width matrix bounds on handheld screen shapes */

  }



  .cost-panel-left {

    padding: 16px;

    

    border-right: none; /* Clears horizontal divider line */

    border-bottom: 1px solid #f2e4de; /* Re-maps the divider line horizontally underneath the list track */

  }



  .cost-panel-right {

    padding: 16px;

  }



  .btn-book-consultation {

    width: 100%; /* Fluid full-width action button target for touch convenience on phone displays */

    box-sizing: border-box;

  }



  .factors-checklist {

  gap: 0px

}

}



@media (max-width: 500px) {

  .cost-breakdown-section {

    padding: 30px 16px;

  }



  .cost-header{

    margin-bottom: 20px;

  }

  .cost-header h2 {

    font-size: 24px;

    line-height: 1.3;

  }



  .factors-intro-text { font-size: 14px; line-height: 18px; margin-bottom: 16px; }

  .factor-label-text { font-size: 14px; }

  .price-heading { font-size: 19px; }

  .price-highlight { font-size: 24px; margin-bottom: 16px; }

  .price-disclaimer-text, .price-secondary-note { font-size: 12.5px; line-height: 1.5; }

}











/* --------------------------------------------------------------------------

   12. Testimonials Carousel

   -------------------------------------------------------------------------- */

/* --- Global Testimonial Canvas Styles --- */

.testimonial-section {

  background-color: var(--bg-cream);

  border-bottom: 1px solid #CAA69D;

  padding: 80px 0;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;

  overflow: hidden;

}



.testimonial-container {

  margin: 0 auto;

  text-align: center;

}



/* Typography Titles */

.testimonial-title {

  font-family: Playfair Display;

  font-weight: 600;

  font-style: SemiBold;

  font-size: 40px;

  line-height: 55px;

  letter-spacing: 0%;

  text-align: center;



  margin: 0 0 16px 0;

  letter-spacing: -0.5px;

}



.testimonial-subtitle {

  font-family: Poppins;

  font-weight: 400;

  font-style: Regular;

  font-size: 17px;

  line-height: 28px;

  letter-spacing: 0%;

  text-align: center;

  color:#705149;

  max-width: 614px;

  margin: 0 auto 60px auto;

  font-weight: 400;

}



/* --- Slider Core Layout Architecture --- */

.slider-wrapper {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 40px;

  width: 100%;

  /* max-width: 960px; */

  margin: 0 auto;

  position: relative;

}



/* Layered Card Stack Configuration */

.card-stack-container {

  position: relative;

  flex: 1;

  max-width: 850px;

  min-height: 340px;

}



.bg-stack-card {

  position: absolute;

  top: 40px;

  bottom: 60px;

  left: -20px;

  right: -20px;

  background-color: #FFF0EC;

  border: 1px solid #CAA69D;

  box-shadow: 0px 20px 50px 0px #00000014;

  border-radius: 20px;

  z-index: 1;

  pointer-events: none;

}



/* Main Frontend Card Layout */

.testimonial-slider-window {

  position: relative;

  background-color: #FFF0EC;

  box-shadow: 0px 20px 50px 0px #00000014;

  border: 1px solid #CAA69D;

  border-radius: 24px;

  padding: 45px 50px;

  text-align: left;

  box-shadow: 0 15px 35px rgba(193, 47, 48, 0.04);

  z-index: 2;

  overflow: hidden;

}



/* Slide Visibility Engine */

.testimonial-slide {

  display: none;

  width: 100%;

}



.testimonial-slide.active {

  display: block;

  animation: fadeIn 0.4s ease-in-out;

}



/* Header Content Inside Card */

.slide-header {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 24px;

}



.stars {

  color: #c12f30; /* Exact Crimson star review scheme */

  font-size: 18px;

  letter-spacing: 2px;

}



.google-brand {

  font-size: 16px;

  font-weight: 600;

  color: #4285F4; /* Google branding default base blue */

  letter-spacing: -0.5px;

}

.google-brand img{

  mix-blend-mode: darken;

}



/* Review Blockquote */

.review-text {

 font-family: Poppins;

font-weight: 500;

font-style: Italic;

font-size: 20px;

line-height: 34px;

letter-spacing: 0%;

  margin: 0 0 30px 0;

  max-height: 130px;

  overflow-y: auto; 

  padding-right: 10px; /* space for scrollbar */

}



/* Scrollbar width */

.review-text::-webkit-scrollbar {

  width: 4px; /* ✅ figma width */

}



/* Track (background) */

.review-text::-webkit-scrollbar-track {

  background: #E2C2BA; /* light color */

  border-radius: 10px;

}



/* Thumb (scroll moving part) */

.review-text::-webkit-scrollbar-thumb {

  background: #765851; /* dark color */

  border-radius: 10px;

}



/* Hover effect */

.review-text::-webkit-scrollbar-thumb:hover {

  background: #5a4039;

}

/* Bottom Profile Alignment Blocks */

.reviewer-footer {

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.author-block {

  display: flex;

  align-items: center;

  gap: 14px;

}



.avatar-circle {

  width: 50px;

  height: 50px;

  background-color: #fcece6;

  border: 1px solid #ebd8d0;

  border-radius: 50%;

  color: #c12f30;

  font-size: 24px;

  font-weight: 600;

  display: flex;

  align-items: center;

  justify-content: center;

}



.meta-info {

  display: flex;

  flex-direction: column;

  gap: 3px;

}



.author-name {

  font-family: Poppins;

  font-style: normal;

font-weight: 600;

font-style: SemiBold;

font-size: 18px;

line-height: 20px;

letter-spacing: 0%;

color: #0E2330;

}



.hair-grade {

  font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 14px;

line-height: 20px;

letter-spacing: 0%;

color: #000000;



}



/* Decorative Giant Orange/Peach Quote Mark */

.quote-mark-icon {

  font-family: 'Playfair Display', serif;

  font-size: 90px;

  line-height: 0;

  color: #f7bda3; /* Light pastel terracotta exact match tint */

  transform: translateY(15px);

  user-select: none;

}



/* --- Control Buttons Architecture --- */

.nav-btn {

  width: 46px;

  height: 46px;

  border-radius: 50%;

  border: 1px solid #ebd8d0;

  background-color: rgba(255, 255, 255, 0.5);

  color: #a69288;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: all 0.2s ease;

  flex-shrink: 0;

  z-index: 3;

}



.nav-btn:hover {

  background-color: #ffffff;

  transform: scale(1.03);

}



/* The solid dark-red state shown on the right next-btn */

.active-btn {

  background-color: #c12f30;

  border-color: #c12f30;

  color: #ffffff;

  box-shadow: 0 4px 12px rgba(193, 47, 48, 0.25);

}



.active-btn:hover {

  background-color: #aa2728;

  color: #ffffff;

}



@keyframes fadeIn {

  from { opacity: 0; transform: translateY(2px); }

  to { opacity: 1; transform: translateY(0); }

}



  .slider-wrapperbutton{

 display: none;

  }



/* ==========================================================================

   MOBILE & RESPONSIVE VIEWPORTS (max-width: 768px)

   ========================================================================== */

@media (max-width: 768px) {

  .testimonial-section {

    padding: 25px 16px;

    padding-bottom: 80px;

  }



  .testimonial-title {

    font-size: 26px;

    line-height: 32px;

  }



  .testimonial-subtitle {

    font-size: 14px;

    line-height: 18px;

    margin-bottom: 20px;

  }



  .slider-wrapper {

    flex-direction: column; /* Stack controls and slide panel cleanly */

    gap: 16px;

    position: relative;

  }

  /* .slider-wrapper .nav-btn{

    display: none;

  } */

  .slider-wrapperbutton{

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-around;

    margin-top: 16px;

  }



  .card-stack-container {

    width: 100%;

    min-height: auto;

  }



  /* Reduce padding and hide stack extension layers for clean mobile screens */

  .bg-stack-card {

    left: -8px;

    right: -8px;

    top: 10px;

    bottom: 10px;

  }



  .testimonial-slider-window {

    padding: 30px 20px;

  }



  .review-text {

    font-size: 14px;

    line-height: 1.6;

    padding-right: 0;

    border-right: none; /* Strip out side divider block on small ports */

    margin-bottom: 20px;

  }



  .reviewer-footer {

    align-items: flex-end;

  }



  .quote-mark-icon {

    font-size: 60px;

    transform: translateY(10px);

  }



  /* Reposition arrows row side-by-side below the primary message matrix */

  .prev-btn, .next-btn {

    order: 2;

    display: inline-flex;

  }



  /* Keep buttons visible */

  .nav-btn {

    position: absolute;

    bottom: -60px; /* push below card */

    z-index: 10;

  }



  /* Left button */

  .prev-btn {

    left: 20px;

  }



  /* Right button */

  .next-btn {

    right: 20px;

  }



}





/* --------------------------------------------------------------------------

   13. FAQ Accordion

   -------------------------------------------------------------------------- */

.faq-section {

  background-color: #fff1eb;

  padding: 80px 0px;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;

}





/* Title Header Placement matching picture font weight */

.faq-title {

  font-family: Playfair Display;

font-weight: 600;

font-style: 600;

font-size: 40px;

line-height: 55px;

letter-spacing: 0%;

text-align: center;

color: var(--text-dark);

  margin-bottom: 45px;

}



/* Two-Column Side-by-Side Grid Configuration */

.faq-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 0 24px; /* Eliminates vertical space between column layouts */

  align-items: start;

}



.faq-column {

  display: flex;

  flex-direction: column;

}



/* Individual FAQ Accordion Row Component */

.faq-item {

  background-color: transparent;

  border: 1px solid #CAA69D;

  box-shadow: 0px 10px 20px 0px #0000000A;

  border-radius: 14px;

  margin-bottom: 16px;

  box-shadow: 0 2px 8px rgba(193, 47, 48, 0.03);

  overflow: hidden;

  transition: background-color 0.25s ease, border-color 0.25s ease;

}



/* Style variants applied to an active accordion row */

.faq-item.active {

  background-color: #fff6f2; /* Light accent tint inside when active */

  border-color: #f5cfc1;

}



/* Clickable Header Button Structure */

.faq-trigger {

  width: 100%;

  background: none;

  border: none;

  padding: 16px 20px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  cursor: pointer;

  text-align: left;

  gap: 16px;

}



.faq-question {

font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 18px;

line-height: 25px;

letter-spacing: 0%;



  color: #0E2330;

}



/* The Crimson Circular Toggle Badges */

.faq-icon-badge {

  position: relative;

  width: 24px;

  height: 24px;

  border-radius: 50%;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: transform 0.3s ease, background-color 0.2s ease;

}



/* Plus/Closed Mode Design */

.plus-icon {

  background-color: #c12f30; /* Primary Crimson Theme Color */

}



.plus-icon::before,

.plus-icon::after {

  content: '';

  position: absolute;

  background-color: #ffffff;

}



/* Horizontal line component */

.plus-icon::before {

  width: 10px;

  height: 2px;

}



/* Vertical line component */

.plus-icon::after {

  width: 2px;

  height: 10px;

}



/* Minus/Open Active Mode Design */

.minus-icon {

  background-color: #eba382; /* Desaturated Terracotta/Orange Tone */

}



.minus-icon::before {

  content: '';

  position: absolute;

  background-color: #ffffff;

  width: 10px;

  height: 2px;

}



/* Dynamic Panel Container managing smooth opening height transitions */

.faq-content {

  max-height: 0;

  overflow: hidden;

  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}



.faq-content-inner {

  padding: 0 20px 18px 20px;

 font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 14px;

line-height: 24px;

letter-spacing: 0%;

  color: #0E2330;

  font-weight: 400;

}



/* ==========================================================================

   RESPONSIVE MOBILE VIEWPORTS (max-width: 992px)

   ========================================================================== */

@media (max-width: 992px) {

  .faq-section {

    padding: 30px 16px;

  }



  .faq-title {

    font-size: 18px;

    line-height: 22px;

    margin-bottom: 20px;

  }



  /* Grid automatically converts from columns into 1 linear stack layout */

  .faq-grid {

    grid-template-columns: 1fr;

    gap: 0;

  }

  

  .faq-item {

    margin-bottom: 12px;

  }



  .faq-trigger {

    padding: 14px 16px;

  }



  .faq-question {

    font-size: 16px;

  }



  .faq-content-inner {

    padding: 0 16px 14px 16px;

    font-size: 14px;

  }

}





/* --------------------------------------------------------------------------

   14. Footer Section

   -------------------------------------------------------------------------- */

/* --- Global Footer Styles --- */

.main-footer {

  background-color: #0c2333;

  color: #ffffff;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;

  padding: 60px 0 20px 0;

  text-align: center;

}



/* --- Top CTA Block --- */

.footer-cta-container{

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

}

.footer-cta-container h2 {

font-family: Playfair Display;

font-weight: 600;

font-style: SemiBold;

font-size: 40px;

line-height: 55px;

letter-spacing: 0%;

text-align: center;

  color:var(--text-light);

  max-width: 825px;

  margin-bottom: 20px;

  letter-spacing: 0.5px;

}



.footer-cta-container h2 span {

  color: #E8986E;

}



.footer-cta-container .sub-text {

    font-family: Poppins;

    font-weight: 400;

    font-style: Regular;

    max-width: 614px;

    font-size: 17px;

    line-height: 28px;

    letter-spacing: 0%;

    text-align: center;

    font-weight: 300;

}





/* CTA Buttons */

.cta-buttons {

  display: flex;

  justify-content: center;

  gap: 15px;

  margin: 50px 0;

}



.cta-buttons a {

  text-decoration: none;

  font-size: 14px;

  font-weight: 500;

  padding: 12px 24px;

  border-radius: 6px;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  transition: opacity 0.2s ease;

}



.cta-buttons a:hover {

  opacity: 0.9;

}



.btn-assessment {

  background-color: #d33c3a; /* Deep Red Accent */

  color: #ffffff;

}



.btn-wa {

  background-color: #10cc52; /* WhatsApp Bright Green */

  color: #ffffff;

}



/* Structural Layout Dividers */

.footer-divider {

  border: 0;

  height: 1px;

  background-color: rgba(255, 255, 255, 0.1);

  margin: 0 auto;

  max-width: var(--max-width);

}



/* --- 3-Column Info Grid Layout --- */

.footer-grid {

  display: grid;

  grid-template-columns: 1.2fr 1.5fr 1fr; /* Custom weight to prioritize middle text */

  max-width: var(--max-width);

  margin: 0 auto;

  /* padding: 50px 0; */

  gap: 20px;

}



.footer-col {

  padding: 30px;

  display: flex;

  flex-direction: column;

  align-items: center;

}



/* Border lines between column structures */

.footer-col:not(:last-child) {

  border-right: 1px solid rgba(255, 255, 255, 0.1);

}



.footer-col:first-child {

    align-items: flex-start;

}



/* Column Elements Styling */

.footer-logo img {

  max-height: 50px;

  /* background-color: #ffffff; */

  margin-bottom: 20px;

}



.brand-description {

  font-size: 13px;

  line-height: 1.6;

  color: #a4b3be;

  text-align: left;

}



.icon-circle {

  background-color: #d33c3a;

  width: 40px;

  height: 40px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 15px;

}



.footer-col h3 {

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 1px;

  margin-bottom: 15px;

  color: #ffffff;

}



.footer-col p {

  font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 16px;

line-height: 28px;

letter-spacing: 0%;

color:var(--text-light)

  /* max-width: 320px; */

}



.phone-number {

  font-size: 15px !important;

  font-weight: 500;

  color: #ffffff !important;

}



/* --- Bottom Copyright Area --- */

.footer-copyright {

  font-family: Poppins;

font-weight: 400;

font-style: Regular;

font-size: 16px;

line-height: 28px;

letter-spacing: 0%;

text-align: center;

  padding-top: 25px;

  font-size: 12px;

  color: #657b8c;

}



.desktop-only {

  display: block;

}



/* ==========================================================================

   MOBILE & RESPONSIVE BREAKPOINTS (max-width: 768px)

   ========================================================================== */

@media (max-width: 768px) {

    .footer-col:first-child {

    align-items: center;

}

  .main-footer {

    padding: 20px 16px;

  } 



  .desktop-only {

    display: none; /* Prevents awkward header breaks on modern phone viewports */

  }



  .footer-cta-container h2 {

    max-width: auto;

    font-size: 18px;

    line-height: 24px;

  }



  .footer-cta-container .sub-text {

    max-width: auto;

    font-size: 14px;

    line-height: 18px;

  }

  .cta-buttons {

    flex-direction: column;

    align-items: stretch;

    max-width: 320px;

    margin: 20px auto;

    gap: 12px;

  }

  

  .cta-buttons a {

    justify-content: center;

  }



  /* Structural Shift: Grid collapses to a clean single column stacking flow */

  .footer-grid {

    grid-template-columns: 1fr;

    padding: 10px 0;

    gap: 20px;

  }



  .footer-col {

    padding: 0;

  }



  /* Removes horizontal borders and adds spacing between elements */

  .footer-col:not(:last-child) {

    border-right: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    padding-bottom: 40px;

  }



  .brand-description {

    text-align: center;

  }



  .footer-col p {

    font-size: 14px;

    line-height: 18px;

  }

}







/* 

cta section css */



.cta-section {

  display: none;

}

.btn-call span,

.btn-outline span {

  display: flex;

}

.awards-strip-wrapper {

  display: flex;

  align-items: center;

  justify-content: center;

  /* flex-wrap: wrap; */



  background: var(--light-pink);

  border-radius: 12px;



  overflow: hidden;

}



.award-item {

  position: relative;



  padding: 18px 24px;



  font-family: var(--font-body);

  font-size: 15px;

  font-weight: 500;

  line-height: 1.7;



  color: var(--text-main);



  transition: var(--transition);

}



.award-item:hover {

  background: rgba(255, 255, 255, 0.05);

}



.award-item:not(:last-child)::after {

  content: "";



  position: absolute;

  top: 50%;

  right: 0;



  transform: translateY(-50%);



  width: 1px;

  height: 18px;



  background: rgba(255, 255, 255, 0.2);

}

.awards {

  text-align: center;

  margin-top: 1rem;

  font-family: var(--font-heading);

  font-size: 20px;

}

/* Responsive */

@media (max-width: 992px) {

  .awards-strip-wrapper {

    flex-wrap: wrap;

  }

  .award-item {

    font-size: 14px;

  }

  .stats-section {

    padding: 25px 0;

  }

  .stat-card {

    flex: 0 0 50%;

    padding: 15px 10px;

  }

  .stat-number {

    font-size: 24px;

  }

  .stat-text {

    font-size: 12px;

  }



  .section-padding {

    padding: 60px 0;

  }

  .section-title {

    font-size: 2rem;

  }



  /* Hero Mobile */

  .hero {

    min-height: auto;

    padding-top: 40px;

  }

  .hero-container-flex {

    flex-direction: column-reverse;

    text-align: center;

    gap: 30px;

  }

  .hero-text h1 {

    font-size: 2.2rem;

  }

  .hero-text p {

    margin: 0 auto 20px;

  }

  .hero-features {

    justify-content: center;

    gap: 20px;

  }

  .hero-image-side {

    order: -1;

    width: 100%;

    max-width: 400px;

    margin: 0 auto;

  }

  .hero-image-side img {

    box-shadow: 10px 10px 0px rgba(201, 169, 110, 0.1);

  }



  .appointment-form {

    flex-direction: column;

    align-items: stretch;

  }

  .form-title {

    text-align: center;

    margin-bottom: 10px;

  }

  .doctor-wrapper {

    grid-template-columns: 1fr;

  }

  .procedures-grid {

    grid-template-columns: 1fr 1fr;

  }

  .row {

    flex-direction: column;

  }

  .testimonial-grid {

    grid-template-columns: 1fr;

  }

  .footer-content {

    grid-template-columns: 1fr 1fr;

  }

}



@media (max-width: 600px) {

  .hero {

    padding-top: 20px;

  }



  .badge,

  .hero-text h1,

  .hero-text p {

    margin-bottom: 0px;

  }

  .hero-features {

    margin: 10px 0;

  }

  .hero-container-flex {

    gap: 15px;

    padding-bottom: 20px;

  }

  .cta-final .section-title,

  .section-title {

    font-size: 24px;

    line-height: 1.3;

  }

  .doctor-info .sub-head {

    font-size: 18px;

    margin-bottom: 0;

  }

  .sub-head.awards {

    margin-bottom: 10px;

  }

  .award-item:not(:last-child)::after {

    content: none;

  }

  .award-item {

    padding: 10px;

  }

  .cta-buttons {

    flex-direction: column;

  }

  .stats-container {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

  }



  .stat-card {

    width: 50%;

    flex: 0 0 50%;

    min-width: unset;

    padding: 10px;

    text-align: center;

  }



  .stat-card::after {

    display: none;

  }



  .stat-number {

    font-size: 24px;

  }



  .stat-text {

    font-size: 13px;

    max-width: 100%;

  }



  /* Last single card center */

  .stat-card:last-child {

    margin: 0 auto;

  }

  .hero-text h1 {

    font-size: 24px;

    line-height: 1.3;

  }

  .hero-text p {

    font-size: 16px;

  }

  .hero-features {

    flex-direction: column;

    align-items: center;

    gap: 15px;

  }

  .procedures-grid {

    grid-template-columns: 1fr;

  }

  .benefit-grid {

    grid-template-columns: 1fr;

  }

  .footer-content {

    grid-template-columns: 1fr;

  }

  .cta-section {

    background-color: var(--primary-color);

    padding: 0px;

    position: sticky;

    bottom: 0;

    display: block;

    z-index: 999;

  }

  .cta-section .container {

    padding: 0;

  }

  .cta-columns .icon-bx-cta:nth-of-type(1) {

    background-color: #c12f30

  }



  .cta-columns .icon-bx-cta:nth-of-type(2) {

    background-color: var(--primary-light);

  }

  .cta-columns {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    text-align: center;

  }

  .icon-bx-cta {

    display: flex;

    flex-direction: column;

    color: #fff;

    text-decoration: none;

    align-items: center;

    padding: 10px;

    gap: 5px;

    font-size: 14px;

  }

  .icon-bx-cta:not(:last-child) {

    border-right: 1px solid #fff;

  }

  .procedures-grid {

    gap: 15px;

  }

}





/* new */

.site-footer {

    width: 100%;

}



.medical-disclaimer {

    width: 100%;

    padding: 18px 20px;

    margin-top: 20px;

    border-top: 1px solid #e5e5e5;

}



.medical-disclaimer p {

    margin: 0;

    font-size: 12px;

    line-height: 1.7;

    font-weight: 400;

    color: #777;

    text-align: center;

}



.medical-disclaimer a {

    color: inherit;

    text-decoration: underline;

    text-underline-offset: 2px;

}



.medical-disclaimer a:hover {

    text-decoration: none;

}



/* Tablet */

@media (max-width: 991px) {

    .medical-disclaimer {

        padding: 16px 15px;

    }



    .medical-disclaimer p {

        font-size: 12px;

        line-height: 1.65;

    }

}



/* Mobile */

@media (max-width: 575px) {

    .medical-disclaimer {

        padding: 14px 12px;

    }



    .medical-disclaimer p {

        font-size: 11px;

        line-height: 1.6;

        text-align: center;

    }

}