/*------ home page styles start -------*/

 :root{
    --navy: #ffffff;
    --navy-deep: #ffffff;
    --teal: #1C5363;
    --gold: #C7A356;
    --gold-soft: #E7D5A8;
    --ivory: #F6F4EF;
    --ink-soft: #5B6B73;
    --font-display: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
  }
  
  .post-thumbnail{
      display:none;
  }

  .about-doctor{
        background: linear-gradient(90deg, #0b4fa2, #1c75bc);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .about-doctor::before{
    content:"";
    position:absolute;
    top:-120px; right:-120px;
    width:420px; height:420px;
    border-radius:50%;
    background: radial-gradient(circle, rgba(199,163,86,0.10) 0%, rgba(199,163,86,0) 70%);
  }

  .ad-container{ position: relative; z-index: 2; }

  /* Header */
  .ad-header{
    text-align:center;
    margin-bottom: 64px;
  }
  .ad-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .ad-eyebrow::before,
  .ad-eyebrow::after{
    content:"";
    width: 28px;
    height: 1px;
    background: var(--gold);
  }
  .ad-name{
     
    font-weight: 600;
    font-size: clamp(34px, 5vw, 56px);
    letter-spacing: 1px;
    color: var(--navy-deep);
    line-height: 1.1;
  }

  /* Grid row spacing */
  .ad-grid{
    --bs-gutter-x: 64px;
    align-items: center;
  }

  /* Image side */
  .ad-img-wrap{
    position: relative;
  }
  .ad-img-frame{
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: var(--navy);
    aspect-ratio: 3/4;
  }
  .ad-img-frame img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display:block;
    filter: saturate(0.92) contrast(1.02);
  }
  .ad-img-frame::after{
    content:"";
    position:absolute;
    inset:0;
    box-shadow: inset 0 0 0 1px rgba(199,163,86,0.35);
    border-radius: 6px;
    pointer-events:none;
  }
  .ad-img-rule{
    position:absolute;
    top: 22px; left: 22px; right: 22px; bottom: 22px;
    border: 1px solid rgba(247,245,241,0.35);
    border-radius: 4px;
    pointer-events:none;
  }

  /* Credential badge - signature element */
  .ad-badge{
    position:absolute;
    position: absolute;
    bottom: -15%;
    left: 50%;
    background: var(--navy-deep);
    color: #000000;
    padding: 22px 26px;
    border-radius: 4px;
    box-shadow: 0 18px 40px -12px rgba(8, 27, 39, 0.45);
    min-width: 80%;
    border-left: 3px solid var(--gold);
    transform: translate(-50%, -50%);
  }
  .ad-badge-label{
        font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #284fb4;
    margin-bottom: 6px;
    font-weight: 700;
  }
  .ad-badge-value{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
  }

  /* Content side */
  .ad-title{
     
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 600;
    color: var(--navy-deep);
    line-height: 1.18;
    margin-bottom: 6px;
  }
  .ad-subtitle{
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 28px;
  }

  .ad-text{
    font-family: var(--font-body);
    color: #e6f1ff;
    margin-bottom: 16px;
    padding-left: 18px;
    border-left: 2px solid rgba(199,163,86,0.4);
  }
  .ad-text.is-highlight{
    color: var(--navy-deep);
    font-weight: 500;
    border-left-color: var(--gold);
  }

  /* Credential strip */
  .ad-creds{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 34px;
  }
  .ad-chip{
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    color: #000000;
    background: #fff;
    border: 1px solid rgba(14,42,59,0.12);
    padding: 8px 14px;
    border-radius: 30px;
  }
  
  
.about-two__btn-box .thm-btn{
    background-color:#000000;
}

  /* Responsive */
  @media (max-width: 991px){
    .ad-img-wrap{
      max-width: 380px;
      margin: 0 auto;
      margin-top: 70px;
    }
    .ad-content{ text-align:center; }
    .ad-text{ text-align:left; }
    .ad-footer{ justify-content: center; text-align:center; }
    .ad-creds{ justify-content:center; }
  }

  @media (max-width: 520px){
    .about-doctor{ padding: 70px 0; }
    .ad-badge{
      left: 50%;
      transform: translateX(-50%);
      bottom: -26px;
    }
    .ad-img-wrap{ margin-bottom: 50px; }
  }
  
  .expertise-section{
    background: #F6F4EF;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }

  .expertise-section::before{
    content:"";
    position: absolute;
    top: -160px; left: -160px;
    width: 460px; height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,163,86,0.12) 0%, rgba(199,163,86,0) 70%);
  }

  .expertise-section .exp-container{
    position: relative;
    z-index: 2;
  }

  /* Header */
  .expertise-section .exp-header{
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
  }
  .expertise-section .exp-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C7A356;
    margin-bottom: 16px;
  }
  .expertise-section .exp-eyebrow::before,
  .expertise-section .exp-eyebrow::after{
    content:"";
    width: 28px;
    height: 1px;
    background: #C7A356;
  }
  .expertise-section .exp-title{
    font-weight: 500;
    font-size: clamp(32px, 4.4vw, 50px);
    color: #081B27;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .expertise-section .exp-subtitle{
    font-size: 15.5px;
    line-height: 1.85;
    color: #5B6B73;
  }

  /* Card */
  .expertise-section .exp-card{
    background: #FFFFFF;
    border-radius: 4px;
    padding: 38px 32px 32px;
    height: 100%;
    position: relative;
    border-top: 2px solid transparent;
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  }
  .expertise-section .exp-card:hover{
    border-top-color: #C7A356;
    transform: translateY(-8px);
    box-shadow: 0 22px 44px -16px rgba(8,27,39,0.18);
  }

  .expertise-section .exp-index{
    font-style: italic;
    font-size: 13px;
    color: #C7A356;
    letter-spacing: 1px;
    margin-bottom: 18px;
    display: block;
  }

  .expertise-section .exp-icon-box{
    width: 105px;
    height: 105px;
    border-radius: 4px;
    background: #081B27;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    position: relative;
  }
  .expertise-section .exp-icon-box::after{
    content:"";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(199,163,86,0.4);
    border-radius: 3px;
    pointer-events: none;
  }
  .expertise-section .exp-icon-box img{
    width: 90px;
  }

  .expertise-section .exp-card-title{
    font-weight: 500;
    font-size: 21px;
    color: #1154c1;
    line-height: 1.3;
    margin-bottom: 14px;
  }
  .expertise-section .exp-card-text{
    font-size: 14.5px;
    line-height: 1.8;
    color: #5B6B73;
  }

  .expertise-section .exp-card-rule{
    width: 36px;
    height: 2px;
    background: #C7A356;
    margin-bottom: 18px;
    opacity: 0.7;
  }

  /* Responsive */
  @media (max-width: 991px){
    .expertise-section{ padding: 90px 0; }
    .expertise-section .exp-card{ padding: 32px 28px 28px; }
  }

  @media (max-width: 575px){
    .expertise-section{ padding: 70px 0; }
  }

  @media (prefers-reduced-motion: reduce){
    .expertise-section .exp-card{ transition: none; }
  }
  
   .care-section{
    background: linear-gradient(135deg, #081B27 0%, #0E2A3B 45%, #1C5363 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }

  .care-section::before{
    content:"";
    position: absolute;
    top: -180px; right: -180px;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,163,86,0.16) 0%, rgba(199,163,86,0) 70%);
  }
  .care-section::after{
    content:"";
    position: absolute;
    bottom: -200px; left: -160px;
    width: 460px; height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28,83,99,0.5) 0%, rgba(28,83,99,0) 70%);
  }

  .care-section .care-container{
    position: relative;
    z-index: 2;
  }

  .care-section .care-content{
    max-width: 640px;
  }

  .care-section .care-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C7A356;
    margin-bottom: 18px;
  }
  .care-section .care-eyebrow::before{
    content:"";
    width: 28px;
    height: 1px;
    background: #C7A356;
  }

  .care-section .care-title{
    font-weight: 500;
    font-size: clamp(30px, 4vw, 46px);
    color: #F6F4EF;
    line-height: 1.2;
    margin-bottom: 26px;
  }

  .care-section .care-text{
    font-size: 15.5px;
    line-height: 1.9;
    color: #C7D2D6;
    margin-bottom: 36px;
  }
  .care-section .care-text b{
    color: #F6F4EF;
    font-weight: 600;
  }

  .care-section .care-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .care-section .care-list li{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    font-weight: 500;
    color: #F6F4EF;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(246,244,239,0.1);
  }
  .care-section .care-list li:last-child{
    border-bottom: none;
    padding-bottom: 0;
  }

  .care-section .care-list .care-check{
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #C7A356;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .care-section .care-list .care-check svg{
    width: 14px;
    height: 14px;
    stroke: #C7A356;
    fill: none;
    stroke-width: 2.4;
  }

  /* Visual / signature side */
  .care-section .care-visual{
    position: relative;
    height: 100%;
    min-height: 360px;
    align-items: center;
    justify-content: center;
  }

  .care-section .care-badge-card{
    background: rgba(246,244,239,0.04);
    border: 1px solid rgba(199,163,86,0.3);
    border-radius: 6px;
    padding: 46px 38px;
    text-align: center;
    backdrop-filter: blur(6px);
    width: 100%;
  }
  
  .care-visual .about-two__btn-and-sign{
     display: block !important;
  }

  .care-section .care-badge-num{
     
    font-weight: 500;
    font-style: italic;
    font-size: 64px;
    color: #C7A356;
    line-height: 1;
    margin-bottom: 10px;
  }

  .care-section .care-badge-label{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C7D2D6;
    margin-bottom: 30px;
  }

  .care-section .care-badge-divider{
    width: 50px;
    height: 1px;
    background: rgba(199,163,86,0.4);
    margin: 0 auto 30px;
  }

  .care-section .care-badge-sub{
    font-size: 19px;
    color: #F6F4EF;
    line-height: 1.4;
  }

  /* Responsive */
  @media (max-width: 991px){
    .care-section{ padding: 90px 0; }
    .care-section .care-content{
      max-width: 100%;
      margin-bottom: 60px;
    }
    .care-section .care-visual{
      min-height: auto;
    }
  }

  @media (max-width: 575px){
    .care-section{ padding: 70px 0; }
    .care-section .care-badge-card{ padding: 36px 26px; }
    .care-section .care-badge-num{ font-size: 50px; }
  }
  
  
   .locations-section{
    background: #F6F4EF;
    padding: 110px 0;
    font-family: 'Inter', sans-serif;
  }

  .locations-section .loc-header{
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
  }
  .locations-section .loc-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C7A356;
    margin-bottom: 16px;
  }
  .locations-section .loc-eyebrow::before,
  .locations-section .loc-eyebrow::after{
    content:"";
    width: 28px;
    height: 1px;
    background: #C7A356;
  }
  .locations-section .loc-title{
     
    font-weight: 500;
    font-size: clamp(30px, 4.2vw, 46px);
    color: #081B27;
    line-height: 1.18;
    margin-bottom: 16px;
  }
  .locations-section .loc-subtitle{
    font-size: 15.5px;
    line-height: 1.85;
    color: #5B6B73;
  }

  /* Card */
  .locations-section .loc-card{
    background: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 18px rgba(8,27,39,0.06);
    border: 1px solid rgba(8,27,39,0.06);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s cubic-bezier(0.22,1,0.36,1), border-color 0.45s ease;
  }
  .locations-section .loc-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 30px 54px -20px rgba(8,27,39,0.22);
    border-color: rgba(199,163,86,0.35);
  }

  .locations-section .loc-card-body{
    padding: 30px 30px 24px;
  }

  .locations-section .loc-card-title{
     
    font-weight: 600;
    font-size: 21px;
    color: #081B27;
    line-height: 1.32;
    margin-bottom: 14px;
    min-height: 56px;
  }

  .locations-section .loc-address{
    display: flex;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.7;
    color: #5B6B73;
    margin-bottom: 16px;
  }
  .locations-section .loc-address svg{
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    stroke: #C7A356;
    fill: none;
    stroke-width: 1.8;
    margin-top: 3px;
  }

  .locations-section .loc-phone{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1C5363;
    text-decoration: none;
    margin-bottom: 22px;
    transition: color 0.3s ease;
  }
  .locations-section .loc-phone svg{
    width: 15px;
    height: 15px;
    stroke: #1C5363;
    fill: none;
    stroke-width: 2;
    transition: stroke 0.3s ease;
  }
  .locations-section .loc-phone:hover{
    color: #C7A356;
  }
  .locations-section .loc-phone:hover svg{
    stroke: #C7A356;
  }

  /* Map */
  .locations-section .loc-map-wrap{
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  .locations-section .loc-map-wrap iframe{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(28%) contrast(1.02);
    transition: filter 0.5s ease, transform 0.6s ease;
  }
  .locations-section .loc-card:hover .loc-map-wrap iframe{
    filter: grayscale(0%) contrast(1.02);
    transform: scale(1.04);
  }

  .locations-section .loc-map-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,27,39,0) 60%, rgba(8,27,39,0.08) 100%);
    pointer-events: none;
  }

  .locations-section .loc-map-btn{
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #FFFFFF;
    color: #081B27;
    font-size: 12.5px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(8,27,39,0.18);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    z-index: 2;
  }
  .locations-section .loc-map-btn svg{
    width: 12px;
    height: 12px;
    stroke: #081B27;
    fill: none;
    stroke-width: 2.2;
    transition: stroke 0.3s ease;
  }
  .locations-section .loc-map-btn:hover{
    background: #081B27;
    color: #F6F4EF;
    transform: translateY(-2px);
  }
  .locations-section .loc-map-btn:hover svg{
    stroke: #F6F4EF;
  }

  /* Responsive */
  @media (max-width: 991px){
    .locations-section{ padding: 90px 0; }
    .locations-section .loc-card-title{ min-height: auto; }
  }

  @media (max-width: 575px){
    .locations-section{ padding: 70px 0; }
    .locations-section .loc-map-wrap{ height: 180px; }
  }

  @media (prefers-reduced-motion: reduce){
    .locations-section .loc-card,
    .locations-section .loc-map-wrap iframe,
    .locations-section .loc-map-btn,
    .locations-section .loc-phone,
    .locations-section .loc-phone svg{
      transition: none;
    }
  }


 .page-banner{
    background: linear-gradient(120deg, #081B27 0%, #0E3A52 50%, #1C5363 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
  }
 
  /* Large outline watermark text */
  .page-banner .pb-watermark{
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(120px, 16vw, 260px);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(246,244,239,0.08);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
  }
 
  /* Side image */
  .page-banner .pb-image{
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    max-width: 42%;
    display: flex;
    align-items: flex-end;
    z-index: 1;
    opacity: 0.9;
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%);
            mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%);
  }
  .page-banner .pb-image img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
  }
 
  .page-banner::after{
    content:"";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,27,39,0.15) 0%, rgba(8,27,39,0) 40%, rgba(8,27,39,0.25) 100%);
    z-index: 1;
    pointer-events: none;
  }
 
  .page-banner .pb-container{
    position: relative;
    z-index: 2;
  }
 
  .page-banner .pb-title{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 42px);
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
  }
 
  .page-banner .pb-breadcrumb{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(246,244,239,0.75);
  }
  .page-banner .pb-breadcrumb a{
    color: rgba(246,244,239,0.75);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .page-banner .pb-breadcrumb a:hover{
    color: #C7A356;
  }
  .page-banner .pb-breadcrumb .pb-sep{
    color: #C7A356;
    opacity: 0.7;
  }
  .page-banner .pb-breadcrumb .pb-current{
    color: #FFFFFF;
  }
  
  .entry-title{
      display:none;
  }
 
  /* Bottom accent line */
  .page-banner .pb-accent{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #C7A356 0%, rgba(199,163,86,0) 60%);
    z-index: 2;
  }
 
  /* Responsive */
  @media (max-width: 991px){
    .page-banner{ padding: 76px 0 56px; }
    .page-banner .pb-image{
      max-width: 36%;
      opacity: 0.55;
    }
  }
 
  @media (max-width: 767px){
    .page-banner .pb-image{ display: none; }
    .page-banner .pb-watermark{
      font-size: clamp(90px, 26vw, 160px);
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
    }
  }
 
  @media (max-width: 575px){
    .page-banner{ padding: 60px 0 44px; }
    .page-banner .pb-title{ font-size: 26px; }
    .page-banner .pb-breadcrumb{ font-size: 13px; }
  }
 
 .appt-section{
    background: #FBFAF7;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
  }

  /* Left side */
  .appt-section .appt-left{
    background: linear-gradient(135deg, #081B27 0%, #0E3A52 55%, #1C5363 100%);
    border-radius: 10px;
    padding: 56px 46px;
    height: 100%;
    position: relative;
    overflow: hidden;
    color: #F6F4EF;
  }
  .appt-section .appt-left::before{
    content:"";
    position: absolute;
    top: -120px; right: -120px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,163,86,0.16) 0%, rgba(199,163,86,0) 70%);
  }

  .appt-section .appt-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C7A356;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
  }
  .appt-section .appt-eyebrow::before{
    content:"";
    width: 26px;
    height: 1px;
    background: #C7A356;
  }

  .appt-section .appt-left-title{
     
    font-weight: 600;
    font-size: clamp(24px, 2.6vw, 30px);
    line-height: 1.3;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
  }

  .appt-section .appt-loc{
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(246,244,239,0.12);
    position: relative;
    z-index: 2;
  }
  .appt-section .appt-loc:first-of-type{ padding-top: 0; }
  .appt-section .appt-loc:last-of-type{ border-bottom: none; }

  .appt-section .appt-loc-icon{
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(199,163,86,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .appt-section .appt-loc-icon svg{
    width: 19px;
    height: 19px;
    stroke: #C7A356;
    fill: none;
    stroke-width: 1.8;
  }

  .appt-section .appt-loc-name{
     
    font-weight: 600;
    font-size: 16.5px;
    color: #FFFFFF;
    margin-bottom: 6px;
  }
  .appt-section .appt-loc-time{
    font-size: 13.5px;
    line-height: 1.7;
    color: #C7D2D6;
  }

  /* Right side - form */
  .appt-section .appt-card{
    background: #FFFFFF;
    border-radius: 10px;
    padding: 48px 44px;
    height: 100%;
    box-shadow: 0 10px 36px rgba(8,27,39,0.06);
    border: 1px solid rgba(8,27,39,0.05);
  }

  .appt-section .appt-title{
     
    font-weight: 600;
    font-size: clamp(24px, 2.6vw, 30px);
    color: #081B27;
    margin-bottom: 34px;
  }

  .appt-section .appt-field{
    margin-bottom: 24px;
  }
  .appt-section .appt-label{
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #1C5363;
    margin-bottom: 10px;
  }

  .appt-section .appt-input-wrap{
    position: relative;
  }
  .appt-section .appt-input-wrap input,
  .appt-section .appt-input-wrap textarea{
    width: 100%;
    border: 1px solid rgba(8,27,39,0.14);
    border-radius: 5px;
    padding: 14px 44px 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: #081B27;
    background: #FBFAF7;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .appt-section .appt-input-wrap textarea{
    resize: vertical;
    min-height: 120px;
    padding-right: 16px;
  }
  .appt-section .appt-input-wrap input:focus,
  .appt-section .appt-input-wrap textarea:focus{
    outline: none;
    border-color: #C7A356;
    box-shadow: 0 0 0 3px rgba(199,163,86,0.14);
    background: #FFFFFF;
  }
  .appt-section .appt-input-wrap input::placeholder,
  .appt-section .appt-input-wrap textarea::placeholder{
    color: #9AA7AC;
  }
  .appt-section .appt-input-wrap svg{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 17px;
    height: 17px;
    stroke: #C7A356;
    fill: none;
    stroke-width: 1.8;
    pointer-events: none;
  }

  .appt-section .appt-row-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .appt-section .appt-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #081B27;
    color: #FFFFFF;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  .appt-section .appt-btn svg{
    width: 16px;
    height: 16px;
    stroke: #C7A356;
    fill: none;
    stroke-width: 2.2;
    transition: transform 0.3s ease;
  }
  .appt-section .appt-btn:hover{
    background: #1C5363;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -10px rgba(8,27,39,0.35);
  }
  .appt-section .appt-btn:hover svg{
    transform: translateX(4px);
  }

  /* Responsive */
  @media (max-width: 991px){
    .appt-section{ padding: 80px 0; }
    .appt-section .appt-left{ margin-bottom: 28px; padding: 44px 36px; }
    .appt-section .appt-card{ padding: 40px 30px; }
  }

  @media (max-width: 575px){
    .appt-section{ padding: 60px 0; }
    .appt-section .appt-left{ padding: 36px 26px; }
    .appt-section .appt-card{ padding: 32px 22px; }
    .appt-section .appt-row-2{ grid-template-columns: 1fr; }
    .appt-section .appt-btn{ width: 100%; justify-content: center; }
  }

  @media (prefers-reduced-motion: reduce){
    .appt-section .appt-btn,
    .appt-section .appt-btn svg{ transition: none; }
  }

 
 .wall-section{
    background: #FBFAF7;
    padding: 0px 0 110px;
    font-family: 'Inter', sans-serif;
  }

  .wall-section .wall-header{
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
  }
  .wall-section .wall-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C7A356;
    margin-bottom: 16px;
  }
  .wall-section .wall-eyebrow::before,
  .wall-section .wall-eyebrow::after{
    content:"";
    width: 28px;
    height: 1px;
    background: #C7A356;
  }
  .wall-section .wall-title{
    font-weight: 600;
    font-size: clamp(28px, 3.6vw, 40px);
    color: #081B27;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .wall-section .wall-subtitle{
    font-size: 15px;
    line-height: 1.8;
    color: #5B6B73;
  }

  /* Masonry */
  .wall-section .wall-masonry{
    column-count: 4;
    column-gap: 18px;
  }
  .wall-section .wall-item{
    break-inside: avoid;
    margin-bottom: 18px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(8,27,39,0.07);
    background: #fff;
    box-shadow: 0 4px 14px rgba(8,27,39,0.05);
  }
  .wall-section .wall-item img{
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.5s ease;
  }
  .wall-section .wall-item::after{
    content:"";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,27,39,0) 55%, rgba(8,27,39,0.55) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .wall-section .wall-item:hover img{
    transform: scale(1.06);
  }
  .wall-section .wall-item:hover::after{
    opacity: 1;
  }
  .wall-section .wall-zoom{
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2;
  }
  .wall-section .wall-item:hover .wall-zoom{
    opacity: 1;
    transform: translateY(0);
  }
  .wall-section .wall-zoom svg{
    width: 15px;
    height: 15px;
    stroke: #C7A356;
    fill: none;
    stroke-width: 2.2;
  }

  /* Lightbox */
  .wall-lightbox{
    position: fixed;
    inset: 0;
    background: rgba(8,27,39,0.94);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 40px;
  }
  .wall-lightbox.is-open{
    display: flex;
  }
  .wall-lightbox img{
    max-width: 88vw;
    max-height: 84vh;
    border-radius: 4px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
    border: 1px solid rgba(199,163,86,0.25);
  }
  .wall-lightbox .wl-close,
  .wall-lightbox .wl-prev,
  .wall-lightbox .wl-next{
    position: absolute;
    background: rgba(246,244,239,0.08);
    border: 1px solid rgba(199,163,86,0.4);
    color: #F6F4EF;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .wall-lightbox .wl-close:hover,
  .wall-lightbox .wl-prev:hover,
  .wall-lightbox .wl-next:hover{
    background: #C7A356;
    color: #081B27;
  }
  .wall-lightbox .wl-close{ top: 24px; right: 24px; }
  .wall-lightbox .wl-prev{ left: 24px; top: 50%; transform: translateY(-50%); }
  .wall-lightbox .wl-next{ right: 24px; top: 50%; transform: translateY(-50%); }
  .wall-lightbox .wl-prev:hover{ transform: translateY(-50%) scale(1.08); }
  .wall-lightbox .wl-next:hover{ transform: translateY(-50%) scale(1.08); }
  .wall-lightbox .wl-close svg,
  .wall-lightbox .wl-prev svg,
  .wall-lightbox .wl-next svg{
    width: 18px; height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.4;
  }
  .wall-lightbox .wl-counter{
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(246,244,239,0.7);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  /* Responsive */
  @media (max-width: 991px){
    .wall-section .wall-masonry{ column-count: 3; }
  }
  @media (max-width: 700px){
    .wall-section .wall-masonry{ column-count: 2; column-gap: 12px; }
    .wall-section .wall-item{ margin-bottom: 12px; }
  }
  @media (max-width: 480px){
    .wall-section{ padding: 70px 0 80px; }
    .wall-section .wall-masonry{ column-count: 1; }
    .wall-lightbox{ padding: 20px; }
    .wall-lightbox .wl-prev{ left: 10px; }
    .wall-lightbox .wl-next{ right: 10px; }
  }

 
 
 
   .robo-article{
    background: #FBFAF7;
    font-family: 'Inter', sans-serif;
    color: #3C4A52;
    padding: 100px 0 110px;
  }

  .robo-article .ra-container{
    max-width: 980px;
  }

  /* ---------- Eyebrow ---------- */
  .robo-article .ra-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C7A356;
    margin-bottom: 16px;
  }
  .robo-article .ra-eyebrow::before{
    content:"";
    width: 26px;
    height: 1px;
    background: #C7A356;
  }

  /* ---------- Intro block ---------- */
  .robo-article .ra-intro-row{
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 70px;
  }

  .robo-article .ra-h1{
     
    font-weight: 600;
    font-size: clamp(26px, 3vw, 36px);
    color: #081B27;
    line-height: 1.28;
    margin-bottom: 22px;
  }

  .robo-article .ra-text{
    font-size: 15.5px;
    line-height: 1.9;
    color: #5B6B73;
    margin-bottom: 18px;
  }
  .robo-article .ra-text a{
    color: #1C5363;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(28,83,99,0.3);
    transition: color 0.3s ease, border-color 0.3s ease;
  }
  .robo-article .ra-text a:hover{
    color: #C7A356;
    border-color: #C7A356;
  }

  /* ---------- Credential strip ---------- */
  .robo-article .ra-cred-strip{
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
    padding: 18px 22px;
    background: #FFFFFF;
    border-left: 3px solid #C7A356;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 4px 18px rgba(8,27,39,0.05);
  }
  .robo-article .ra-cred-strip p{
    font-size: 14px;
    line-height: 1.7;
    color: #5B6B73;
    margin: 0;
  }
  .robo-article .ra-cred-strip p strong{
    color: #081B27;
    font-weight: 700;
  }

  .robo-article .ra-intro-img{
    position: relative;
  }
  .robo-article .ra-intro-img-frame{
    border-radius: 6px;
    overflow: hidden;
    background: #081B27;
    aspect-ratio: 4/3.6;
    position: relative;
  }
  .robo-article .ra-intro-img-frame img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .robo-article .ra-intro-img-frame::after{
    content:"";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(199,163,86,0.35);
    border-radius: 4px;
    pointer-events: none;
  }
  .robo-article .ra-intro-tag{
    position: absolute;
    bottom: -18px;
    left: 22px;
    background: #C7A356;
    color: #081B27;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: 3px;
  }

  /* ---------- Section heading ---------- */
  .robo-article .ra-h2{
     
    font-weight: 600;
    font-size: clamp(21px, 2.4vw, 26px);
    color: #081B27;
    line-height: 1.32;
    margin: 0 0 18px;
    padding-left: 18px;
    border-left: 3px solid #C7A356;
  }

  .robo-article .ra-h2-sub{
     
    font-style: italic;
    font-weight: 500;
    font-size: 19px;
    color: #1C5363;
    margin: 0 0 50px;
    padding-left: 18px;
  }

  .robo-article .ra-section{
    margin-bottom: 56px;
  }

  /* ---------- Highlight banner ---------- */
  .robo-article .ra-highlight{
    background: linear-gradient(120deg, #081B27 0%, #0E3A52 60%, #1C5363 100%);
    border-radius: 8px;
    padding: 46px 44px;
    margin: 70px 0;
    position: relative;
    overflow: hidden;
  }
  .robo-article .ra-highlight::before{
    content:"";
    position: absolute;
    top: -90px; right: -90px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,163,86,0.18) 0%, rgba(199,163,86,0) 70%);
  }
  .robo-article .ra-highlight-eyebrow{
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C7A356;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
  }
  .robo-article .ra-highlight h3{
     
    font-weight: 600;
    font-size: clamp(21px, 2.6vw, 27px);
    color: #FFFFFF;
    line-height: 1.32;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
  }
  .robo-article .ra-highlight p{
    font-size: 15px;
    line-height: 1.85;
    color: #C7D2D6;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
  }
  .robo-article .ra-highlight p:last-child{ margin-bottom: 0; }
  .robo-article .ra-highlight p a{
    color: #C7A356;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(199,163,86,0.4);
  }

  /* ---------- Related links ---------- */
  .robo-article .ra-links{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 36px 0 56px;
  }
  .robo-article .ra-link-card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(8,27,39,0.08);
    border-radius: 6px;
    padding: 22px 24px;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  .robo-article .ra-link-card:hover{
    border-color: #C7A356;
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -16px rgba(8,27,39,0.18);
  }
  .robo-article .ra-link-card span.ra-link-text{
     
    font-weight: 600;
    font-size: 16.5px;
    color: #081B27;
  }
  .robo-article .ra-link-card svg{
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    stroke: #C7A356;
    fill: none;
    stroke-width: 2.2;
    transition: transform 0.3s ease;
  }
  .robo-article .ra-link-card:hover svg{
    transform: translate(3px,-3px);
  }

  /* ---------- Advantage feature ---------- */
  .robo-article .ra-feature{
    display: flex;
    gap: 24px;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 32px 30px;
    margin-bottom: 56px;
    border: 1px solid rgba(8,27,39,0.06);
    box-shadow: 0 4px 18px rgba(8,27,39,0.05);
  }
  .robo-article .ra-feature-icon{
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #081B27;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .robo-article .ra-feature-icon svg{
    width: 28px;
    height: 28px;
    stroke: #C7A356;
    fill: none;
    stroke-width: 1.8;
  }
  .robo-article .ra-feature-body h3{
     
    font-weight: 600;
    font-size: 19px;
    color: #081B27;
    margin-bottom: 10px;
  }
  .robo-article .ra-feature-body p{
    font-size: 15px;
    line-height: 1.85;
    color: #5B6B73;
    margin: 0;
  }
  .robo-article .ra-stat-pill{
    display: inline-block;
    background: rgba(199,163,86,0.12);
    color: #97743A;
    font-weight: 700;
    font-size: 12.5px;
    padding: 4px 10px;
    border-radius: 30px;
    margin-left: 8px;
  }

  /* ---------- Two-card grid ---------- */
  .robo-article .ra-card-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .robo-article .ra-mini-card{
    background: #FFFFFF;
    border-top: 2px solid #C7A356;
    border-radius: 4px;
    padding: 30px 28px;
    box-shadow: 0 4px 18px rgba(8,27,39,0.05);
  }
  .robo-article .ra-mini-card h3{
     
    font-weight: 600;
    font-size: 18px;
    color: #081B27;
    margin-bottom: 12px;
    line-height: 1.35;
  }
  .robo-article .ra-mini-card p{
    font-size: 14.5px;
    line-height: 1.8;
    color: #5B6B73;
    margin: 0;
  }

  /* ---------- Check / bullet list ---------- */
  .robo-article .ra-list{
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .robo-article .ra-list li{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: #3C4A52;
  }
  .robo-article .ra-list li svg{
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 4px;
    stroke: #C7A356;
    fill: none;
    stroke-width: 2.4;
  }

  /* ---------- Simple text list (education / certifications / affiliations) ---------- */
  .robo-article .ra-line-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .robo-article .ra-line-list li{
    font-size: 15px;
    line-height: 1.8;
    color: #3C4A52;
    padding: 14px 0;
    border-bottom: 1px solid rgba(8,27,39,0.07);
    padding-left: 18px;
    position: relative;
  }
  .robo-article .ra-line-list li:first-child{ padding-top: 0; }
  .robo-article .ra-line-list li:last-child{ border-bottom: none; padding-bottom: 0; }
  .robo-article .ra-line-list li::before{
    content:"";
    position: absolute;
    left: 0;
    top: 24px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C7A356;
  }

  /* ---------- Awards list (icon cards) ---------- */
  .robo-article .ra-award{
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(8,27,39,0.07);
  }
  .robo-article .ra-award:first-child{ padding-top: 0; }
  .robo-article .ra-award:last-child{ border-bottom: none; padding-bottom: 0; }
  .robo-article .ra-award-icon{
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(199,163,86,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .robo-article .ra-award-icon svg{
    width: 18px;
    height: 18px;
    stroke: #97743A;
    fill: none;
    stroke-width: 1.8;
  }
  .robo-article .ra-award p{
    font-size: 14.5px;
    line-height: 1.8;
    color: #5B6B73;
    margin: 0;
  }

  /* ---------- Publication items ---------- */
  .robo-article .ra-pub{
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(8,27,39,0.07);
  }
  .robo-article .ra-pub:first-child{ padding-top: 0; }
  .robo-article .ra-pub:last-child{ border-bottom: none; padding-bottom: 0; }
  .robo-article .ra-pub-num{
    flex-shrink: 0;
     
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
    color: #C7A356;
    width: 32px;
  }
  .robo-article .ra-pub-title{
     
    font-weight: 600;
    font-size: 16px;
    color: #081B27;
    line-height: 1.45;
    margin-bottom: 8px;
  }
  .robo-article .ra-pub-meta{
    font-size: 13.5px;
    line-height: 1.75;
    color: #8A969C;
  }
  .robo-article .ra-pub-meta b{
    color: #5B6B73;
    font-weight: 600;
  }

  /* ---------- Course list ---------- */
  .robo-article .ra-course-list{
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    counter-reset: course;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .robo-article .ra-course-list li{
    counter-increment: course;
    display: flex;
    gap: 16px;
    font-size: 14.5px;
    line-height: 1.8;
    color: #5B6B73;
  }
  .robo-article .ra-course-list li::before{
    content: counter(course);
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #C7A356;
    color: #97743A;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .robo-article .ra-course-list li b{
    color: #081B27;
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 860px){
    .robo-article{ padding: 80px 0 90px; }
    .robo-article .ra-intro-row{
      grid-template-columns: 1fr;
      gap: 44px;
    }
    .robo-article .ra-intro-img{ order: -1; max-width: 360px; margin: 0 auto; }
    .robo-article .ra-links{ grid-template-columns: 1fr; }
    .robo-article .ra-card-grid{ grid-template-columns: 1fr; }
    .robo-article .ra-feature{ flex-direction: column; }
  }

  @media (max-width: 575px){
    .robo-article{ padding: 60px 0 70px; }
    .robo-article .ra-highlight{ padding: 34px 26px; }
    .robo-article .ra-pub{ flex-direction: column; gap: 8px; }
  }

  @media (prefers-reduced-motion: reduce){
    .robo-article .ra-link-card,
    .robo-article .ra-link-card svg{ transition: none; }
  }
