*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  background: #FFF8F0;
  color: #2C2015;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: #2C2015;
}



/* navbar start */

nav {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #EDD9C4;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 24px rgba(196, 98, 45, 0.08);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #8B3D18;
  text-decoration: none;
  line-height: 1.2;
}

.logo span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #D4855A;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  color: #7A5C44;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: #C4622D;
  transition: width 0.25s;
}

.nav-links a:hover { 
    color: #C4622D; 
}

.nav-links a:hover::after { 
    width: 100%; 
}

.nav-links a.active { 
    color: #C4622D; 
}

.nav-links a.active::after { 
    width: 100%; 
}

.nav-cta {
  background: #C4622D;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  background: #8B3D18;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #2C2015;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { 
    transform: rotate(45deg) translate(5px, 5px); 
}

.hamburger.open span:nth-child(2) { 
    opacity: 0; 
}

.hamburger.open span:nth-child(3) { 
    transform: rotate(-45deg) translate(5px, -5px); 
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: #FFFDF9;
  border-bottom: 1px solid #EDD9C4;
  padding: 1.5rem 5%;
  z-index: 999;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu.open { 
    display: flex; 
}

.mobile-menu a {
  text-decoration: none;
  font-size: 1rem;
  color: #7A5C44;
  font-weight: 400;
}

.mobile-menu a:hover { 
    color: #C4622D; 
}

@media (max-width: 900px) {

  .nav-links,nav .nav-cta { 
    display: none; 
  }

  .hamburger { 
    display: flex; 
  }

}

/* navbar end */

/* About banner start */

.page-hero {
  padding: 8rem 5% 5rem;
  background: #F5E6D3;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  right: -60px; top: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,98,45,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #C4622D 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.07;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-hero-left {
  animation: slideUp 0.8s ease both;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #B89A80;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: #C4622D;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { 
    color: #8B3D18; 
}

.breadcrumb span { 
    color: #B89A80; 
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #2C2015;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.page-hero h1 em {
  color: #C4622D;
  font-style: italic;
}

.page-hero p {
  font-family: 'Lexend', sans-serif;
  font-size: 0.97rem;
  color: #7A5C44;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-stat-row {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #EDD9C4;
  flex-wrap: wrap;
}

.h-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #C4622D;
  font-weight: 700;
  line-height: 1;
}

.h-stat-label {
  font-family: 'Lexend', sans-serif;
  font-size: 0.7rem;
  color: #B89A80;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
  font-weight: 400;
}

.page-hero-right {
  animation: slideUp 0.8s 0.2s ease both;
}

.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  border: 1px solid #EDD9C4;
  box-shadow: 0 24px 64px rgba(196,98,45,0.1);
  background: #EDD9C4;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero-img-wrap:hover img {
  transform: scale(1.04);
}


.hero-img-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid #EDD9C4;
  border-radius: 20px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #2C2015;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.pulse-dot {
  width: 8px; height: 8px;
  background: #28a745;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-img-card {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,253,249,0.95);
  border: 1px solid #EDD9C4;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.hero-img-card-icon { 
    font-size: 1.4rem; 
}

.hero-img-card strong {
  font-family: 'Lexend', sans-serif;
  font-size: 0.85rem;
  color: #2C2015;
  font-weight: 500;
  display: block;
}

.hero-img-card span {
  font-family: 'Lexend', sans-serif;
  font-size: 0.72rem;
  color: #B89A80;
  font-weight: 300;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@media (max-width: 900px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-img-wrap {
    height: 300px;
  }

  .page-hero {
    padding: 7rem 5% 4rem;
  }

  .hero-stat-row {
    gap: 1.5rem;
  }
}

@media (max-width: 560px) {
  .hero-img-wrap {
    height: 240px;
  }

  .hero-stat-row {
    gap: 1.25rem;
  }

  .h-stat-num {
    font-size: 1.6rem;
  }
}

/* About banner end */

/* our story start */

.story {
  padding: 6rem 5%;
  background: #FFF8F0;
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 460px;
  border: 1px solid #EDD9C4;
  background: #F5E6D3;
  box-shadow: 0 24px 64px rgba(196,98,45,0.08);
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.story-img:hover img {
  transform: scale(1.04);
}

.story-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid #EDD9C4;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.story-img-badge-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.story-img-badge strong {
  font-family: 'Lexend', sans-serif;
  font-size: 0.88rem;
  color: #2C2015;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.story-img-badge span {
  font-family: 'Lexend', sans-serif;
  font-size: 0.72rem;
  color: #B89A80;
  font-weight: 300;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-text .section-label {
  font-family: 'Lexend', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C4622D;
  font-weight: 500;
  margin-bottom: 0;
}

.story-text .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #2C2015;
  line-height: 1.2;
  margin-bottom: 0;
}

.story-text p {
  font-family: 'Lexend', sans-serif;
  font-size: 0.95rem;
  color: #7A5C44;
  line-height: 1.9;
  font-weight: 300;
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D4EDDA;
  color: #155724;
  font-family: 'Lexend', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  margin-top: 0.5rem;
  width: fit-content;
}

.pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: #28a745;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1;}
  50%       { opacity: 0.3;}
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-img {
    height: 320px;
  }
}

@media (max-width: 560px) {
  .story {
    padding: 4rem 5%;
  }

  .story-img {
    height: 260px;
  }

  .story-img-badge {
    padding: 10px 14px;
  }

  .story-img-badge strong {
    font-size: 0.8rem;
  }
}

/* our story end */

/* mission vission start */

.mission {
  padding: 6rem 5%;
  background: #F5E6D3;
}

.mission-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Lexend', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C4622D;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #2C2015;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mission-card {
  background: #FFFDF9;
  border: 1px solid #EDD9C4;
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(196,98,45,0.1);
}

.mission-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #C4622D;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.mission-card:hover::after {
  transform: scaleX(1);
}

.mission-icon {
  width: 56px; height: 56px;
  background: #FFE8D6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.mission-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #2C2015;
  margin-bottom: 0.75rem;
}

.mission-card p {
  font-family: 'Lexend', sans-serif;
  font-size: 0.88rem;
  color: #7A5C44;
  line-height: 1.8;
  font-weight: 300;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .mission {
    padding: 4rem 5%;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    padding: 1.75rem;
  }
}

/* mission vission end */

/* core value start */

.values {
  padding: 6rem 5%;
  background: #FFF8F0;
}

.values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Lexend', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C4622D;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #2C2015;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.value-card {
  background: #FFFDF9;
  border: 1px solid #EDD9C4;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(196,98,45,0.1);
  border-color: #DEC9B0;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #C4622D;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #2C2015;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-family: 'Lexend', sans-serif;
  font-size: 0.82rem;
  color: #7A5C44;
  line-height: 1.75;
  font-weight: 300;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .values {
    padding: 4rem 5%;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .value-card {
    padding: 1.5rem 1.25rem;
  }

  .value-icon {
    font-size: 1.6rem;
  }
}

/* core value end */

/* our doctor start */

.team {
  padding: 6rem 5%;
  background: #F5E6D3;
}

.team-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.section-label {
  font-family: 'Lexend', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C4622D;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #2C2015;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-body {
  font-family: 'Lexend', sans-serif;
  font-size: 0.95rem;
  color: #7A5C44;
  font-weight: 300;
  line-height: 1.8;
}

.btn-viewmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #C4622D;
  background: #FFFDF9;
  border: 1.5px solid #EDD9C4;
  padding: 11px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-viewmore:hover {
  background: #C4622D;
  color: #fff;
  border-color: #C4622D;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,98,45,0.2);
}

.btn-arrow {
  font-size: 1rem;
  transition: transform 0.2s;
}

.btn-viewmore:hover .btn-arrow {
  transform: translateX(4px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: #FFFDF9;
  border: 1px solid #EDD9C4;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(196,98,45,0.1);
}

.team-avatar {
  height: 160px;
  background: linear-gradient(135deg, #F5E6D3, #EDD9C4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; 
  display: block;
  transition: transform 0.4s ease;
}

.team-avatar:hover img {
  transform: scale(1.05);
}

.team-avail {
  position: absolute;
  top: 12px; right: 12px;
  background: #D4EDDA;
  color: #155724;
  font-family: 'Lexend', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.avail-dot {
  width: 6px; height: 6px;
  background: #28a745;
  border-radius: 50%;
  flex-shrink: 0;
}

.team-info {
  padding: 1.25rem;
}

.team-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #2C2015;
  margin-bottom: 4px;
}

.team-spec {
  font-family: 'Lexend', sans-serif;
  font-size: 0.78rem;
  color: #C4622D;
  font-weight: 500;
  margin-bottom: 6px;
}

.team-exp {
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  color: #B89A80;
  font-weight: 300;
}

.team-footer {
  display: none;
  justify-content: center;
  margin-top: 2.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .team {
    padding: 4rem 0;
  }

  .team-inner {
    padding: 0;
  }

  .team-header,
  .team-footer {
    padding: 0 5%;
  }

  .team-grid {
    grid-template-columns: unset;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.5rem 5% 1.5rem;
    scrollbar-width: none;
  }
  .team-grid::-webkit-scrollbar {
    display: none;
  }

  .team-card {
    flex: 0 0 calc(100vw - 10%); 
    max-width: calc(100vw - 10%);
    scroll-snap-align: start;
    background: #FFFDF9;
    border: 1px solid #EDD9C4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    padding: 0;
    border-left: 1px solid #EDD9C4;
    border-right: 1px solid #EDD9C4;
    border-top: 1px solid #EDD9C4;
    border-bottom: 1px solid #EDD9C4;
  }

  .team-card:hover {
    transform: none;   
    box-shadow: none;
  }

  .team-avatar {
    height: 220px;
    background: linear-gradient(135deg, #F5E6D3, #EDD9C4);
  }

  .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }

  .team-avail {
    position: absolute;
    top: 12px; right: 12px;
    background: #D4EDDA;
    color: #155724;
    font-size: 0.68rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .team-info {
    padding: 1.25rem;
    background: #FFFDF9;
  }

  .team-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #2C2015;
    margin-bottom: 4px;
  }

  .team-spec {
    font-size: 0.8rem;
    color: #C4622D;
    font-weight: 500;
    margin-bottom: 6px;
  }

  .team-exp {
    font-size: 0.75rem;
    color: #B89A80;
    font-weight: 300;
  }

  .scroll-hint {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
    padding: 0 5%;
  }

  .scroll-hint-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #EDD9C4;
    transition: background 0.2s, width 0.2s;
  }

  .scroll-hint-dot.active {
    background: #C4622D;
    width: 20px;
    border-radius: 4px;
  }

  .team-header .btn-viewmore {
    display: none;
  }

  .team-footer {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0 5%;
  }

  .team-footer .btn-viewmore {
    width: 100%;
    justify-content: center;
  }

}

@media (min-width: 561px) and (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-header .btn-viewmore { 
    display: none; 
  }

  .team-footer { 
    display: flex; 
  }
}
/* our doctor end */

/* our journey start */

.milestones {
  padding: 6rem 5%;
  background: #FFF8F0;
}

.milestones-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Lexend', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C4622D;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #2C2015;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,#C4622D 0%,#EDD9C4 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: 0 0 3rem 2.5rem;
  transition: opacity 0.2s;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.28rem;
  top: 5px;
  width: 14px; height: 14px;
  background: #C4622D;
  border-radius: 50%;
  border: 3px solid #FFF8F0;
  box-shadow: 0 0 0 2px #C4622D;
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 1;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 3px #C4622D, 0 0 12px rgba(196,98,45,0.3);
}

.timeline-year {
  font-family: 'Lexend', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C4622D;
  font-weight: 500;
  margin-bottom: 0.4rem;
  display: inline-block;
  background: #FFE8D6;
  padding: 3px 10px;
  border-radius: 10px;
}

.timeline-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #2C2015;
  margin: 0.5rem 0 0.4rem;
  line-height: 1.3;
}

.timeline-item p {
  font-family: 'Lexend', sans-serif;
  font-size: 0.88rem;
  color: #7A5C44;
  line-height: 1.8;
  font-weight: 300;
  max-width: 580px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0.18rem;
  top: 12px;
  width: 2rem;
  height: 1px;
  background: #EDD9C4;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .milestones-inner {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .milestones {
    padding: 4rem 5%;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-item {
    padding: 0 0 2.5rem 2rem;
  }

  .timeline-dot {
    left: -1.78rem;
    width: 12px; height: 12px;
  }

  .timeline-item::before {
    width: 1.5rem;
  }

  .timeline-item h3 {
    font-size: 1rem;
  }

  .timeline-item p {
    font-size: 0.85rem;
  }
}

/* our journey end */

/* contact banner start */

.cta-banner {
  background: #C4622D;
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.cta-bg-ring {
  position: absolute;
  width: 400px; height: 400px;
  border: 60px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  right: -80px; top: -80px;
  pointer-events: none;
}

.cta-bg-ring2 {
  position: absolute;
  width: 250px; height: 250px;
  border: 40px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  left: 10%; bottom: -60px;
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.cta-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: #C4622D;
  padding: 13px 30px;
  border-radius: 32px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-white:hover {
  background: #FFE8D6;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .cta-banner {
    padding: 4rem 5%;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-white,
  .btn-outline-white {
    width: 100%;
    text-align: center;
  }
}

/* contact banner end */

/* footer start */

footer {
  background: #2C2015;
  color: #C8B5A0;
  padding: 4rem 5% 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #3D2E20;
}

.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #FFE8D6;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.footer-brand .logo span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #B89A80;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  font-weight: 300;
  color: #A0876F;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFE8D6;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: #A0876F;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #FFE8D6;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 8px;
  margin-bottom: 0.75rem;
  font-size: 0.83rem;
  color: #A0876F;
  font-weight: 300;
  line-height: 1.6;
  align-items: flex-start;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6B5240;
  flex-wrap: wrap;
  gap: 0.5rem;
}

span a {
  font-family: 'Lexend', sans-serif;
  font-size: inherit;
  font-weight: 500;
  color: #E8845A;
  text-decoration: none;
  border-bottom: 1px solid #E8845A;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

span a:hover {
  color: #C4622D;
  border-bottom-color: #C4622D;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  footer {
    padding: 3rem 5% 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-top .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }
}
/* footer end */