* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.4s;
  padding: 15px 40px;
  background: transparent;
}



/* SCROLL WHITE */
.navbar.scrolled {
  background: #f5efe9;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border: 1px solid #c89b6d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c89b6d;
}

.logo h2 {
  font-size: 18px;
}

.logo p {
  font-size: 10px;
  letter-spacing: 2px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  position: relative;
}

.nav-links a.active::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #c89b6d;
  position: absolute;
  bottom: -5px;
  left: 0;
}

/* BUTTON */
.btn {
  border: 1px solid #000;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  color: inherit;
}

/* RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 20px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: -100%;   /* 👈 start hidden above */
  left: 0;
  width: 100%;
  height: auto;
  background: #f5efe9;
  padding: 20px;
  transition: 0.4s ease;
  z-index: 1000;
}

.mobile-menu.active {
  top: 0;   /* 👈 slide down */
}

.mobile-menu {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-menu {
  font-size: 20px;
  cursor: pointer;
}

/* MOBILE LINKS */
.mobile-links {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 20px;
}

.mobile-links a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.mobile-btn {
  display: block;
  margin-top: 30px;
  text-align: center;
}





/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 30px;
  left: 0;
  background: #fff;
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}


.mobile-dropdown-header {
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 10px;
  margin-top: 10px;
}

.mobile-submenu a {
  font-size: 16px;
  padding: 5px 0;
}

/* ACTIVE STATE */
.mobile-dropdown.active .mobile-submenu {
  display: flex;
}

/* RESPONSIVE */
@media(max-width: 900px) {

  .nav-links {
    display: none;
  }
  .navbar{
    padding: 15px 18px;
  }

  .menu-toggle {
    display: block;
  }

  /* ONLY hide navbar button */
  .nav-right .btn {
    display: none;
  }

  /* HERO BUTTONS FIX */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}









.hero {
  height: 100vh;
  background: url('background.png') no-repeat center/cover;
  position: relative;
}

/* OVERLAY FOR SOFT FADE */
.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 80px 60px;
}

/* LEFT CONTENT */
.hero-content {
  max-width: 600px;
}

/* TAGLINE */
.tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: 600;
}

.tagline .line {
  width: 40px;
  height: 2px;
  background: #c89b6d;
}

.tagline p {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c89b6d;
}

/* HEADING */
.hero h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
}

.hero .highlight {
  color: #c89b6d;
}

/* DESCRIPTION */
.desc {
  margin: 20px 0;
  font-size: 16px;
  color: #555;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn.primary {
  background: #1a1a1a;
  color: #fff;
  padding: 12px 25px;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
}

.btn.secondary {
  border: 1px solid #ccc;
  padding: 12px 25px;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #333;
}

/* RIGHT YEARS */
.years {
  text-align: right;
  margin-right: 40px;
}

.years h2 {
  font-size: 48px;
  color: #c89b6d;
}

.years p {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c89b6d;
}

/* ================= MOBILE ================= */

@media(max-width: 900px) {
  .hero {
    background: url('bg.png') no-repeat center top;
    background-size: contain;
    background-color: #f5efe9;
    min-height: 50vh; /* ✅ gives space so image not squeezed */


}

  .hero-overlay {
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 20px 40px;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0.16) 40%,
      rgba(255, 255, 255, 0.95) 100%
    );
  }


  .hero h1 {
    font-size: 36px;
    font-weight: 600;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .years {
    align-self: flex-end;
    margin-top: 40px;
  }
  }








  /* ===== STATS SECTION ===== */
.stats {
  background: #f5efe9;
  border-top: 1px solid #e6ddd5;
  border-bottom: 1px solid #e6ddd5;
  padding: 70px 40px;
}

/* CONTAINER */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

/* EACH ITEM */
.stat h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.stat p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #c89b6d;
}

/* ===== MOBILE DESIGN ===== */
@media(max-width: 900px) {

  .stats {
    padding: 50px 20px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .stat h2 {
    font-size: 28px;
  }

}











/* ===== SECTION ===== */
.doctor {
  background: #f5efe9;
  padding: 50px 60px;
}

/* GRID */
.doctor-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.doctor-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* NAME BELOW IMAGE */
.doctor-name {
  margin-top: 20px;
}

.doctor-name span {
  font-size: 11px;
  letter-spacing: 3px;
  color: #c89b6d;
}

.doctor-name h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-top: 5px;
}

/* CONTENT */
.doctor-content .tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: #c89b6d;
  margin-bottom: 15px;
}

.doctor-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.doctor-content h2 span {
  color: #c89b6d;
}

/* TEXT */
.desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 500px;
}

/* LINK */
.read-more {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c89b6d;
  text-decoration: none;
}

/* ===== MOBILE ===== */
@media(max-width: 900px) {

  .doctor {
    padding: 60px 20px;
  }

  .doctor-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* IMPORTANT: CONTENT FIRST */
  .doctor-content {
    order: 1;
  }

  .doctor-image {
    order: 2;
  }

  .doctor-content h2 {
    font-size: 30px;
  }

}











/* SECTION */
.procedures {
  background: #f5efe9;
  padding: 50px 60px;
}

/* HEADER */
.procedures-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: #c89b6d;
  margin-bottom: 10px;
}

.procedures h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
}

.all-link {
  font-size: 12px;
  letter-spacing: 2px;
  color: #1a1a1a;
  text-decoration: none;
}

/* GRID */
.procedure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: 0.3s;
}

/* IMAGE */
.card-img {
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER EFFECT */
.card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.card-content {
  padding: 15px 5px;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 14px;
  color: #555;
}

/* ===== MOBILE ===== */
@media(max-width: 900px) {

  .procedures {
    padding: 30px 20px;
  }

  .procedures-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .procedure-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card-img img {
    height: 220px;
  }

}

/* SMALL MOBILE */
@media(max-width: 500px) {

  .procedure-grid {
    grid-template-columns: 1fr;
  }

}

















/* SECTION */
.testimonials {
  background: #f5efe9;
  padding: 50px 60px;
  text-align: center;
}

/* HEADER */
.testimonials-header .tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: #c89b6d;
  margin-bottom: 10px;
}

.testimonials-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 300;   /* 🔥 THIS IS THE KEY */
  font-size: 42px;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.testimonial-card {
  background: #f2ebe4;
  padding: 40px;
  text-align: left;
}

/* ICON */
.icon {
  color: #c89b6d;
  font-size: 20px;
  margin-bottom: 20px;
}

/* TEXT */
.quote {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

/* LINE */
.line {
  height: 1px;
  background: #ddd;
  margin-bottom: 20px;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.user h4 {
  font-size: 14px;
  margin-bottom: 3px;
  font-weight: 400;
}

.user span {
  font-size: 12px;
  color: #777;
}

/* FOOTER */
.testimonial-footer {
  margin-top: 50px;
}

.testimonial-footer a {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c89b6d;
  text-decoration: none;
}

/* ===== MOBILE ===== */
@media(max-width: 900px) {

  .testimonials {
    padding: 60px 20px;
  }

  .testimonials-header h2 {
    font-size: 28px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

}













/* SECTION BACKGROUND */
.features {
  background: linear-gradient(135deg, #2a1b12, #1a0f09);
  padding: 50px 60px;
  color: #fff;
}

/* GRID */
.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* ITEM */
.feature {
  max-width: 350px;
}

/* ICON */
.feature i {
  font-size: 22px;
  color: #c89b6d;
  margin-bottom: 20px;
}

/* TITLE */
.feature h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 15px;
}

/* TEXT */
.feature p {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
}

/* ===== MOBILE ===== */
@media(max-width: 900px) {

  .features {
    padding: 60px 20px;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature {
    max-width: 100%;
  }

}













/* SECTION */
.cta {
  background: #f5efe9;
  padding: 60px 20px;
  text-align: center;
}

/* CONTAINER */
.cta-container {
  max-width: 760px;
  margin: 0 auto;
}

/* TAG */
.cta-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: #c89b6d;
  margin-bottom: 20px;
}

/* TITLE */
.cta-title {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 52px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 25px;
}

/* DESCRIPTION */
.cta-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  color: #fff;
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 3px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #000;
}

/* ===== TABLET ===== */
@media (max-width: 900px) {

  .cta-title {
    font-size: 38px;
  }

  .cta-desc {
    font-size: 15px;
  }

}

/* ===== MOBILE ===== */
@media (max-width: 500px) {

  .cta {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 30px;
  }

  .cta-desc {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

}














/* FOOTER */
.footer {
  background: #f5efe9;
  padding: 40px 60px 30px;
  color: #1a1a1a;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 60px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border: 1px solid #c89b6d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c89b6d;
}

.logo h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* HEADINGS */
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 3px;
  color: #c89b6d;
  margin-bottom: 20px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
}

/* ICON TEXT */
.footer-col i {
  color: #c89b6d;
  margin-right: 10px;
}

/* HOURS ALIGN */
.footer-col span {
  float: right;
  color: #555;
}

/* BUTTON */
.footer-btn {
  display: inline-block;
  margin-top: 20px;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 25px;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
}

/* SOCIALS */
.socials {
  margin-top: 20px;
}

.socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #1a1a1a;
  text-decoration: none;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #e0d6cc;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
}

.footer-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #777;
}

/* ===== MOBILE ===== */
@media(max-width: 900px) {

  .footer {
    padding: 60px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col span {
    float: none;
    display: block;
    margin-top: 5px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links a {
    margin: 0 10px;
  }

}











/*          Services             */




/* HERO SECTION */
.consult-hero{
    position:relative;
    background:url('background-s.png') no-repeat center center/cover;
    min-height:650px;
    overflow:hidden;
}

/* OVERLAY */
.consult-overlay{
    width:100%;
    min-height:650px;
    background:linear-gradient(
        to right,
        rgba(26,26,26,0.92),
        rgba(26,26,26,0.75)
    );
    display:flex;
    align-items:center;
    padding:80px 8%;
}

/* TEXT AREA */
.consult-text{
    max-width:700px;
}

.consult-text h1{
    color:#c89b6d;
    font-size:62px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:25px;
}

.consult-text h2{
    color:#f2f2f2;
    font-size:24px;
    line-height:1.7;
    font-weight:400;
}

/* FORM BOX */
.consult-form-box{
    position:absolute;
    left:50%;
    bottom:-70px;
    transform:translateX(-50%);
    width:90%;
    max-width:1000px;
    background:#222;
    border:1px solid rgba(200,155,109,0.25);
    border-radius:24px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

/* FORM TITLE */
.consult-form-box h3{
    color:#fff;
    font-size:28px;
    margin-bottom:22px;
    font-weight:600;
}

/* FORM */
.consult-form-box form{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* INPUTS */
.consult-form-box input{
    flex:1 1 220px;
    min-width:0;
    padding:16px 18px;
    border-radius:12px;
    border:1px solid rgba(200,155,109,0.25);
    background:#1a1a1a;
    color:#fff;
    outline:none;
    font-size:15px;
    transition:0.3s ease;
}

.consult-form-box input:focus{
    border-color:#c89b6d;
}

/* BUTTON */
.consult-form-box button{
    background:#c89b6d;
    color:#fff;
    border:none;
    padding:16px 30px;
    border-radius:12px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:0.3s ease;
}

.consult-form-box button:hover{
    background:#fff;
    color:#1a1a1a;
}

/* PRIVACY */
.privacy{
    color:#cfcfcf;
    font-size:13px;
    margin-top:18px;
    line-height:1.7;
}
/* ================= MOBILE FIX ================= */

@media(max-width:768px){

    .consult-hero{
        min-height:auto;
    }

    .consult-overlay{
        min-height:auto;
        padding:70px 5% 50px;
        align-items:flex-start;
    }

    .consult-text h1{
        font-size:30px;
        line-height:1.4;
    }

    .consult-text h2{
        font-size:16px;
        line-height:1.7;
        margin-top:15px;
    }

    .consult-form-box{
        position:relative;
        left:auto;
        bottom:auto;
        transform:none;
        width:100%;
        margin:30px auto 0;
        padding:22px;
        border-radius:18px;
    }

    .consult-form-box h3{
        font-size:20px;
        line-height:1.5;
    }

    .consult-form-box form{
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .consult-form-box input{
        width:100%;
        height:52px;
        padding:0 16px;
        font-size:15px;
        flex:none;
    }

    .consult-form-box button{
        width:100%;
        height:52px;
        padding:0;
        font-size:15px;
    }

    .privacy{
        font-size:12px;
        line-height:1.6;
    }

}



.about-section{
  padding:20px 40px;
  background:#1a1a1a;
}

.about-container{
  display:flex;
  align-items:center;
  gap:50px;
  max-width:1200px;
  margin:auto;
}

.about-image{
  flex:1;
}

.about-image img{
  width:100%;
  border-radius:20px;
  display:block;
  border:2px solid rgba(200,155,109,0.25);
}

.about-content{
  flex:1;
}

.about-content p{
  font-size:16px;
  line-height:1.9;
  color:#d5d5d5;
  margin-bottom:20px;
}

/* ================= GYN SECTION ================= */

.gyn-section{
  padding:30px 20px;
  text-align:center;
  background:#1a1a1a;
  max-width:1200px;
  margin:auto;
}

.gyn-section h2{
  color:#c89b6d;
  margin-bottom:35px;
  font-size:42px;
}

/* TABS */

.tabs{
  display:flex;
  flex-wrap:wrap;
  border:1px solid rgba(200,155,109,0.25);
  border-radius:15px 15px 0 0;
  overflow:hidden;
}

.tab{
  flex:1;
  padding:15px;
  border:none;
  background:#222222;
  color:#d5d5d5;
  cursor:pointer;
  transition:0.3s ease;
}

.tab:hover{
  background:#2a2a2a;
}

.tab.active{
  background:#c89b6d;
  color:#ffffff;
}

/* TAB CONTENT */

.tab-content{
  display:none;
  border:1px solid rgba(200,155,109,0.25);
  border-top:none;
  padding:40px;
  background:#222222;
  border-radius:0 0 20px 20px;
}

.tab-content.active{
  display:block;
}

/* CONTENT BOX */

.content-box{
  display:flex;
  gap:40px;
  align-items:center;
  text-align:left;
}

.content-box img{
  width:300px;
  border-radius:20px;
}

.content-box h3{
  color:#c89b6d;
  margin-bottom:15px;
  font-size:30px;
}

.content-box p{
  color:#d5d5d5;
  line-height:1.8;
  margin-bottom:10px;
}

.content-box p::before{
  content:"★";
  color:#c89b6d;
  margin-right:10px;
}

/* ================= WHY SECTION ================= */

.why-section{
  background:
  linear-gradient(rgba(26,26,26,0.92), rgba(26,26,26,0.92)),
  url('your-bg.jpg') no-repeat center/cover;

  color:#ffffff;
  padding:40px 40px;
}

.why-container{
  display:flex;
  gap:50px;
  max-width:1200px;
  margin:auto;
  align-items:center;
}

/* LEFT */

.why-left{
  flex:1;
}

.why-left h2{
  font-size:42px;
  margin-bottom:20px;
  color:#c89b6d;
}

.why-left p{
  margin-bottom:20px;
  line-height:1.9;
  color:#d5d5d5;
}

/* BUTTON */

.why-btn{
  display:inline-block;
  border:2px solid #c89b6d;
  padding:14px 28px;
  color:#ffffff;
  text-decoration:none;
  border-radius:12px;
  margin-top:20px;
  transition:0.3s ease;
}

.why-btn:hover{
  background:#c89b6d;
  color:#1a1a1a;
}

/* RIGHT GRID */

.why-right{
  flex:1;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.why-item{
  text-align:center;
  background:#222222;
  border:1px solid rgba(200,155,109,0.25);
  padding:25px;
  border-radius:18px;
  transition:0.3s ease;
}

.why-item:hover{
  transform:translateY(-5px);
  border-color:#c89b6d;
}

.why-item i{
  font-size:40px;
  margin-bottom:15px;
  color:#c89b6d;
}

.why-item p{
  font-size:14px;
  color:#d5d5d5;
}

/* ================= SCAN SECTION ================= */

.scan-section{
  padding:30px 20px;
  background:#1a1a1a;
}

.scan-container{
  max-width:1300px;
  margin:auto;
  padding:30px 50px;
  border-radius:25px;
  background:#222222;
  border:1px solid rgba(200,155,109,0.25);
}

.scan-container h2{
  text-align:center;
  color:#c89b6d;
  font-size:42px;
  line-height:1.3;
  margin-bottom:50px;
  font-weight:700;
}

/* GRID */

.scan-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:80px;
}

.scan-column{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.scan-item{
  display:flex;
  align-items:center;
  gap:18px;
}

.scan-item i{
  width:38px;
  height:38px;
  background:#c89b6d;
  color:#1a1a1a;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  flex-shrink:0;
}

.scan-item p{
  color:#ffffff;
  font-size:20px;
  font-weight:500;
  line-height:1.5;
}

/* ================= SERVICE SECTION ================= */

.service-section{
  padding:70px 20px;
  background:#1a1a1a;
}

.service-section h2{
  text-align:center;
  font-size:42px;
  color:#c89b6d;
  margin-bottom:50px;
  font-weight:700;
  line-height:1.3;
}

/* SERVICE BOX */

.service-box{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
  background:#222222;
  padding:40px;
  border-radius:25px;
  border:1px solid rgba(200,155,109,0.25);
}

.service-box img{
  width:420px;
  max-width:100%;
  border-radius:20px;
  object-fit:cover;
  display:block;
}

.service-box div{
  flex:1;
}

.service-box h3{
  font-size:34px;
  color:#c89b6d;
  margin-bottom:25px;
  font-weight:700;
}

.service-box p{
  position:relative;
  padding-left:38px;
  margin-bottom:18px;
  font-size:18px;
  line-height:1.7;
  color:#d5d5d5;
}



/* SERVICE ICON */

.service-icon{
  width:220px;
  height:220px;
  border-radius:20px;
  background:#2b2b2b;
  border:1px solid rgba(200,155,109,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.service-icon i{
  font-size:90px;
  color:#c89b6d;
}








/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:900px){

  .about-container,
  .why-container,
  .service-box,
  .content-box{
    flex-direction:column;
  }

  .about-section{
    padding:20px 20px;
    margin-top: 0px;
  }

  .tabs{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .tab{
    font-size:14px;
    padding:12px;
    border:1px solid rgba(200,155,109,0.25);
  }

  .tab:last-child{
    grid-column:span 2;
  }

  .tab-content{
    padding:25px 20px;
  }

  .content-box{
    gap:20px;
  }

  .content-box img{
    width:100%;
  }

  .why-container{
    text-align:center;
  }

  .why-right{
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:30px;
  }

  .scan-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .scan-container{
    padding:20px 20px;
  }

  .service-box{
    gap:25px;
    padding:25px;
  }

}

/* ================= TABLET ================= */

@media(max-width:768px){

  .gyn-section h2,
  .why-left h2,
  .scan-container h2,
  .service-section h2{
    font-size:30px;
    line-height:1.4;
  }

  .content-box h3,
  .service-box h3{
    font-size:24px;
  }

  .about-content p,
  .content-box p,
  .why-left p,
  .scan-item p,
  .service-box p{
    font-size:15px;
    line-height:1.7;
  }

  .why-btn{
    width:100%;
    text-align:center;
  }

  .service-box{
    text-align:left;
  }

  .service-box img{
    width:100%;
  }

  .service-icon{
    width:100%;
    height:180px;
  }

  .service-icon i{
    font-size:70px;
  }

  .scan-item{
    align-items:flex-start;
  }

  .scan-item i{
    width:32px;
    height:32px;
    font-size:14px;
  }

  .scan-item p{
    font-size:16px;
  }

}

/* ================= MOBILE ================= */

@media(max-width:480px){

  .about-section,
  .gyn-section,
  .scan-section,
  .service-section,
  .why-section{
    padding-left:15px;
    padding-right:15px;
  }

  .gyn-section h2,
  .why-left h2,
  .scan-container h2,
  .service-section h2{
    font-size:24px;
  }

  .content-box h3,
  .service-box h3{
    font-size:21px;
  }

  .about-content p,
  .content-box p,
  .why-left p,
  .scan-item p,
  .service-box p{
    font-size:14px;
  }

  .service-box{
    padding:18px;
    border-radius:18px;
  }

  .tab{
    font-size:13px;
    padding:10px;
  }

  .why-right{
    grid-template-columns:1fr;
  }

  .why-item{
    padding:20px;
  }

  .why-item i{
    font-size:34px;
  }

  .scan-container{
    padding:30px 15px;
    border-radius:18px;
  }

  .service-icon{
    height:150px;
  }

  .service-icon i{
    font-size:55px;
  }

}