:root {

    /* COLORS */
    --primary-color: #112342;
    --secondary-color: #32975f;
    --text-dark: #1f2937;
    --text-light: #565656;
    ;
    --white: #ffffff;
    --border-color: #e7e7e7;
    --section-bg: #f7f7f5;

    /* GRADIENTS */
    --primary-gradient: linear-gradient(135deg, #1d2951, #24356b);

    /* TYPOGRAPHY */
    /* --heading-font: 'Playfair Display', serif; */
    --body-font: 'Inter', sans-serif;

    /* COMMON */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;

    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 20px 50px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s ease;
}

body {
    font-family: var(--body-font);
    color: var(--text-dark);
}

h1,
h2,
h4,
h3,
h5,
h6 {
    font-family: var(--heading-font);
    margin-bottom: 0;
}


p {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

/* ================================COMMON BUTTONS========================= */

.btn-primary-custom {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline-custom {
    border: 1px solid #cfe1da;
    color: var(--secondary-color);
    background: var(--white);
    padding: 14px 24px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-custom:hover {
    background: #f7faf9;
    color: var(--secondary-color);
}
/* -----------------About----------------------- */

.about-hero{
    background: url("https://confidentialrehab.in/dr/assets/image/bg-new.png");
        min-height: 435px;
    overflow: hidden;
    display: flex;
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
    padding-top:40px;
}

.hero-label{
    color:#17a27b;
    font-size:15px;
    font-weight:600;
    letter-spacing:5px;
    margin-bottom:24px;
}

.about-title{
    font-size:50px;
    line-height:1.05;
    font-weight:300;
    color:#fff;
    margin-bottom:28px;
}

.about-description{
    font-size:18px;
    font-weight:400;
    max-width:760px;
}

.d-flex-btn{
    display: flex;
}

/* BUTTONS */

.hero-buttons{
    gap:18px;
    margin-bottom:34px;
}

.btn-specialist{
    height:64px;
    padding:0 34px;
    border:none;
    border-radius:20px;
    background:#071f3d;
    color:#fff;
    font-size:17px;
    font-weight:600;
}

.btn-whatsapp{
    height:64px;
    padding:0 32px;
    border-radius:20px;
    background:#fff;
    border:2px solid #dce3ea;
    color:#2ca55b;
    font-size:17px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:12px;
}

.btn-whatsapp svg{
    width:22px;
    height:22px;
}


.section-divider{
    border-top:1px solid #edf1f5;
    margin-bottom:34px;
}

.section-space{
    height:70px;
}

.section-label{
    color:#047857;
    font-size:14px;
    font-weight:700;
    letter-spacing:5px;
}

.section-title{
    font-size:24px;
    line-height:1.4;
    font-weight:700;
    color:#0f172a;
}

.condition-tabs{
    border-bottom:1px solid #e8edf3;
    background:#fff;
}

.condition-tabs .container-fluid{
    max-width:1780px;
}

.condition-tabs .nav-link{
    border:none;
    background:none;
    padding:24px 0;
    color:#64748b;
    font-size:16px;
    font-weight:500;
    position:relative;
}

.condition-tabs .nav-link.active{
    color:#0f172a;
    font-weight:600;
}

.condition-tabs .nav-link.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-1px;
    width:100%;
    height:3px;
    background:#0f172a;
    border-radius:50px;
}

.condition-wrapper{
    padding:48px 0 70px;
}

.condition-wrapper .container-fluid{
    max-width:1780px;
}

.overview-label{
    font-size:14px;
    font-weight:700;
    letter-spacing:5px;
    color:#047857;
    margin-bottom:16px;
}

.overview-title{
    font-size:32px;
    color:var(--primary-color);
}

.overview-content{
    font-size:19px;
    line-height:1.95;
    color:#64748b;
    max-width:1100px;
    margin-bottom:36px;
}

.athena-timeline-row .timeline-column {
    border-left: 1px solid #d7d7d7;
  }

  .athena-timeline-row .timeline-item {
    position: relative;
  }

  .athena-timeline-row .timeline-marker {
    width: 13px;
    height: 13px;
    min-width: 13px;
    border-radius: 50%;
    border: 2px solid #1b7b6b;
    background: #fff;
    position: absolute;
    left: -7px;
    top: 4px;
  }

  .athena-timeline-row .timeline-marker::after {
    content: "";
    width: 5px;
    height: 5px;
    background: #1b7b6b;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .athena-timeline-row .timeline-marker.gold {
    border-color: #D99A1E;
  }

  .athena-timeline-row .timeline-marker.gold::after {
    background: #D99A1E;
  }

  .athena-timeline-row .timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: #17695d;
  }

.timeline-title {
        font-size: 20px;
    line-height: 1.35;
    color: #071c3d;
    font-family: var(--body-font);
  }

  .athena-timeline-row .timeline-text {
    font-size: 17px;
    line-height: 1.8;
    color: #5e6673;
  }

/* =========================
SIDEBAR
========================= */

.sidebar{
    border-left:1px solid #edf1f5;
     box-shadow: -12px 0 20px -12px rgb(172 207 173 / 20%);
    padding: 30px;
    border-radius: 20px;
}

.sidebar-image{
    border-radius:24px;
    overflow:hidden;
    margin-bottom:18px;
}

.sidebar-image img{
    width:100%;
    height:165px;
    object-fit:cover;
    display:block;
}

/* CONSULT BOX */

.consult-box{
    border:1px solid #e8edf3;
    border-radius:24px;
    padding:26px;
    background:#fff;
    margin-bottom:18px;
}

.consult-title{
    font-size:22px;
    line-height:1.3;
    font-weight:700;
    color:#0f172a;
    margin-bottom:22px;
}

.custom-input,
.custom-select{
    height:56px;
    border:1px solid #e7ebf0;
    border-radius:14px;
    font-size:16px;
    color:#64748b;
    padding:0 18px;
    box-shadow:none !important;
    margin-bottom:12px;
}

.custom-input::placeholder{
    color:#9ca3af;
}

.custom-select{
    appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 16px center;
    background-size:16px;
}

.btn-consult{
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    background:#08213f;
    color:#fff;
    font-size:17px;
    font-weight:600;
    margin-bottom:14px;
}

.consult-note{
    text-align:center;
    color:#64748b;
    font-size:14px;
    margin-bottom:16px;
}

.phone-box{
    background:#f6f8fb;
    border-radius:14px;
    padding:18px;
}

.phone-box h5{
    font-size:18px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:4px;
}

.phone-box span{
    font-size:15px;
    color:#64748b;
}

/* WHY CHOOSE */

.why-box{
    border:1px solid #e8edf3;
    border-radius:24px;
    padding:28px;
    background:#fff;
}

.why-box h4{
    font-size:18px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:24px;
}

.why-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.why-box li{
    display:flex;
    align-items:center;
    gap:14px;
    color:#64748b;
    font-size:16px;
    margin-bottom:16px;
}

.why-box li::before{
    content:"";
    width:18px;
    height:18px;
    background:#08213f;
    border-radius:50%;
    flex-shrink:0;
}

.section-divider{
    border-top:1px solid #edf1f5;
    margin:42px 0 26px;
}

.section-label{
    color:#047857;
    font-size:14px;
    font-weight:700;
    letter-spacing:5px;
}

.section-title{
    font-size:24px;
    line-height:1.3;
    font-weight:700;
    color:#0f172a;
}

.section-description{
    font-size:18px;
    line-height:1.9;
    color:#64748b;
}

 .value-card{
    background:#fff;
    transition:.3s ease;
  }

  .value-card:hover{
    transform:translateY(-5px);
  }

  .icon-wrap{
    width:48px;
    height:48px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#0a6a5a;
  }

  .mission-bg{
    background:#edf5f1;
  }

  .values-bg{
    background:#eef3e4;
    color:#60812a;
  }

  .promise-bg{
    background:#eaf1fb;
    color:#2563c9;
  }
      .read-more-btn{
        font-size:13px; background:#112342; color:#fff; padding:9px 20px;
    }
  .slider-container {
    width: 100%;
    position: relative;
  }
  .slider-track {
    display: flex;
    will-change: transform;
  }
  .post-card {
    transition: all 0.2s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  .post-card .card {
    transition: box-shadow 0.2s ease;
  }

  button:disabled {
    cursor: not-allowed;
    pointer-events: auto;
  }

  .small-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    color:#0a6a5a;
  }


  .card-desc{
    font-size:17px;
    line-height:1.8;
    color:#5d6675;
  }

  .card-stat{
    font-size: 27px;
    font-family: var(--);
    font-weight: 500;
    color: #071c3d;
  }

  .card-stat span{
    color:#0a6a5a;
  }
  
  .stats-box{
    text-align: center;
       border-right: 1px solid #cdcdcd;
    padding: 10px;
  }

  .stats-box h3{
    font-size:40px;
    font-weight:700;
    color:#0c6b5b;
    margin-bottom:8px;
  }

  .stats-box p{
    font-size:14px;
    line-height:1.5;
    color:#7b8794;
    margin-bottom:0;
  }

  .standard-card{
    background:#fff;
    transition:.3s ease;
  }

  .standard-card:hover{
    transform:translateY(-5px);
     background: #E8F5EF;
    border-color:#83bca7 !important;
  }

  .card-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#edf6f2;
    color:#0c6b5b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
  }

  .standard-card h5{
    font-size:22px;
    color:#071c3d;
  }

  .standard-badge{
    background:#e8f5ef;
    color:#0c6b5b;
    font-size:12px;
    padding:8px 14px;
    width: fit-content;
  }

  .referral-form{
    box-shadow:0 4px 24px rgba(0,0,0,0.07); border:1px solid #ececec;
    background-color:#e8f5ef ;
  }
      .section-label{
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    color:#0c6b5b;
  }

  .section-heading{
    font-size:42px;
    font-weight:700;
    line-height:1.2;
    color:#071c3d;
  }

  .section-text{
    font-size:16px;
    line-height:1.8;
    color:#667085;
    max-width:850px;
  }

  .centre-card{
    background:#fff;
    transition:.3s ease;
  }

  .centre-card:hover{
    transform:translateY(-5px);
  }

  .centre-img{
    height:240px;
    object-fit:cover;
  }

  .location-badge{
    position:absolute;
    left:16px;
    bottom:16px;
    background:#0c6b5b;
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:6px 14px;
    border-radius:30px;
  }

  .green-badge{
    background:#1e7d4f;
  }

  .facility-tag{
    font-size:12px;
    color:#0c6b5b;
    background:#edf7f2;
    padding:7px 12px;
    border-radius:30px;
    font-weight:500;
  }

  .stats-number{
    font-size:22px;
    font-weight:700;
    color:#0c6b5b;
  }

  .stats-label{
    font-size:13px;
    color:#6b7280;
  }
  
  .process-wrapper{
    background:#fff;
  }

  .process-step{
    gap:18px;
    padding:22px 0;
    border-bottom:1px solid #e5e7eb;
  }

  .step-number{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:50%;
    background:#071c3d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
  }

  .step-title{
    font-size:20px;
    font-weight:700;
    color:#071c3d;
    line-height:1.4;
  }

  .step-text{
    font-size:15px;
    line-height:1.7;
    color:#6b7280;
    max-width:900px;
  }
      .hero-buttons{
        display:flex;
        flex-direction:row !important;
        align-items:center;
        gap:14px;
        margin-bottom:34px;
    }

    .btn-specialist{
        flex:1;
        width:auto;
        height:56px;
        padding:0 18px;
        font-size:15px;
        border-radius:16px;
        white-space:nowrap;
    }

    .btn-whatsapp{
        width:auto;
        min-width:170px;
        height:56px;
        padding:0 18px;
        font-size:15px;
        border-radius:16px;
        justify-content:center;
        white-space:nowrap;
    }

    .btn-whatsapp svg{
        width:18px;
        height:18px;
    }


    .stats-card{
        display:none;
    }
.about-title{
        color: #fff;
    font-weight: 500;
    font-size: 50px;
}

.green-label{
   color: var(--secondary-color);
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.urgent-sidebar{
    background:#031f3d;
    border-radius:28px;
}

.crisis-btn{
    background:#b52a2d;
    color:#fff;
    border-radius:18px;
    border:none;
    font-size:18px;
}

.crisis-btn:hover{
    background:#9f2427;
    color:#fff;
}

.sidebar-sticky{
    position:sticky;
    top:110px;
}
.custom-gap{
  gap: 35px;
}


/* ---------RESPONSIVE -----*/


  @media(max-width:575px){
      .d-flex-btn{
    display: block;
}
.about-title {
    font-size: 38px;
    margin-top: 20px;
}
        .about-hero{
        min-height:auto;
        padding:70px 0 30px;
    }

    .hero-content{
        padding:0;
    }

    .hero-buttons{
        flex-direction:column;
        gap:12px;
    }

    .btn-specialist,
    .btn-whatsapp{
        width:100%;
        height:52px;
        justify-content:center;
        border-radius:14px;
        font-size:15px;
        padding:0 18px;
        margin-bottom:10px;
    }

    .btn-whatsapp svg{
        width:18px;
        height:18px;
    }

    .stats-card{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        max-width:240px;
        margin:30px auto 0;
        padding:20px;
        border-radius:16px;
    }

    .stats-number{
        font-size:42px;
    }

    .stats-text{
        font-size:15px;
        line-height:1.5;
    }

    .standards-text{
      font-size:15px;
      line-height:1.7;
    }

    .stats-box h3{
      font-size:28px;
    }

    .standard-card{
      padding:1.5rem !important;
    }

    .standard-card h5{
      font-size:20px;
    }

    .standard-card p{
      font-size:14px;
    }
    .value-card{
      padding:1.5rem !important;
    }

    .card-heading{
      font-size:22px;
    }

    .card-stat{
      font-size:22px;
    }
    
    .section-heading{
      font-size:28px;
    }

    .section-text{
      font-size:15px;
      line-height:1.7;
    }

    .centre-img{
      height:200px;
    }

    .centre-card .p-4{
      padding:1.25rem !important;
    }
      .custom-gap{
    gap: 44px;
  }
  }

  @media(max-width:991px){
    .sidebar-sticky{
        position:relative;
        top:auto;
    }
        .athena-timeline-row .timeline-column:last-child {
      margin-top: 10px;
    }

    .athena-timeline-row .timeline-title {
      font-size: 20px;
    }

    .athena-timeline-row .timeline-text {
      font-size: 15px;
      line-height: 1.7;
    }
    
    .condition-tabs{
        overflow:auto;
    }

    .condition-tabs .nav{
        flex-wrap:nowrap;
    }

    .left-content{
        padding-right:0;
    }

    .sidebar{
        border-left:none;
        padding-left:0;
        margin-top:40px;
    }

    .overview-title{
        font-size:28px;
    }

    .overview-content{
        font-size:16px;
        line-height:1.8;
    }

    .overview-content{
        font-size:17px;
    }
        .section-title{
        font-size:22px;
    }


    .stats-card{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        max-width:320px;
        margin-top:50px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .btn-specialist,
    .btn-whatsapp{
        width:100%;
        justify-content:center;
    }
    .section-heading{
      font-size:34px;
    }

    .centre-img{
      height:220px;
    }
        .stats-box h3{
      font-size:32px;
    }

    .card-heading{
      font-size:26px;
    }

    .card-stat{
      font-size:24px;
    }

    .card-desc{
      font-size:15px;
      line-height:1.7;
    }
  }


  @media(max-width:767px){

    .process-step{
      gap:14px;
      padding:18px 0;
    }

    .step-number{
      width:30px;
      height:30px;
      min-width:30px;
      font-size:13px;
    }

    .step-title{
      font-size:17px;
    }

    .step-text{
      font-size:14px;
      line-height:1.6;
    }
        .post-card {
      min-width: calc(100% - 0px) !important;
      flex: 0 0 100% !important;
    }
  }



@media(max-width:1199px){

    .overview-content{
        font-size:17px;
    }
}