/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Montserrat:ital,wght@0,300;0,700;1,600&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(ellipse at top left, #000000, #007164);
  height: 100%;
}

/* Hero Section */
.hero {
  padding: 180px 50px 0px;
  text-align: center;
}

.hero h2 {
  font-size: 60px;
  font-weight: 300;
  font-weight: -20px;
  opacity: 0;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.2s;
  color: white;
}

.hero h1 {
  font-size: 120px;
  font-weight: bolder;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.4s;
  color: white;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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


/* Responsive 1024 */
@media (max-width: 1024px) {
  .hero {
    font-size: 60px;
    margin-top: 50px;
    margin-bottom: -8px;
  }

}

/* Responsive 720 */
@media (max-width: 768px) {


  .hero {
    padding: 150px 20px 0px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero h2 {
    font-size: 24px;
  }


}

@media (max-width: 500px) {
  .hero {
    padding: 150px 20px 0px;
  }

  .hero h1 {
    font-size: 55px !important;
  }

  .hero h2 {
    font-size: 24px;
  }

}



/* book appointment -----------------------------------*/
.book-appointment {
  padding: 15px 30px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background: rgba(10, 9, 9, 0.392);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  backdrop-filter: blur(5px);

  /* Fixed Position Add kiya */
  position: fixed;
  bottom: 30px;
  right: 35px;
  z-index: 1100;
  /* Menu button se upar dikhe */
}

.book-appointment:hover {
  background: rgba(12, 0, 0, 0.879);
  border-color: white;
  transform: scale(1.05);
}

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



/* Hero Section */
.hero-container {
  width: 100%;
  height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1589304402908-f49bf0765ad2?ixlib=rb-4.1.0&auto=format&fit=crop&q=80&w=2069");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 80px;
}




/* Hero Text ------------------------------------ */
.hero-content {
  text-align: left;
  color: white;
  position: relative;
  left: -80px;
  top: -60px;
}

.hero-content h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
}

/* Explore Button */
.btn-explore {
  margin-top: 40px;
  padding: 15px 34px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 40px;
  background-color: white;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #063341;
  transition: 0.4s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.btn-explore:hover {
  background-color: rgb(250, 214, 103);
}

/* Appointment Button */
.btn-appointment {
  position: absolute;
  right: 50px;
  bottom: 45px;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  color: white;
  font-weight: 600;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
}

.btn-appointment:hover {
  background-color: white;
  color: black;
}









/* Section Layout: Text (Left) + Image (Right) */
.content-section {
  background: linear-gradient(90deg, #1a170e 0%, #17291f 50%, #224C3E 100%);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 30px;
  margin: 40px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

/* Text area */
.text-content {
  flex: 1;
  color: white;
  max-width: 50%;
}

.text-content p {
  font-weight: 200;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 25px;
  text-align: right;
}

.highlight {
  color: #FF991C;
  font-weight: bold;
}

/* Right side image + button */
.diagram-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.diagram-card {
  background-color: transparent;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.diagram-card img {
  background-color: #fff;
  width: 90%;
  max-width: 640px;
  height: auto;
  border-radius: 40px;
  padding: 40px 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}



/* Section Layout: Image (Left) + Text (Right) */
.section-wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 30px;
  margin: 20px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

/* Right side text */
.info-text-area {
  flex: 1;
  color: white;
  max-width: 50%;
}

.info-text-area p {
  font-weight: 200;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 25px;
  text-align: left;
}

/* Highlighted text */
.text-highlighted {
  color: #FF991C;
  font-weight: bold;
}

/* Left side image */
.image-display-area {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.visual-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.visual-box img {
  background-color: #fff;
  width: 90%;
  /* takes ~half the screen width */
  max-width: 640px;
  height: auto;
  border-radius: 40px;
  padding: 40px 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}




@media (max-width: 900px) {

  .content-section,
  .section-wrapper {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    gap: 40px;
  }

  .text-content,
  .info-text-area {
    max-width: 100%;
  }

  .diagram-section,
  .image-display-area {
    align-items: center;
    justify-content: center;
  }

}

@media (max-width: 600px) {
  .visual-box img {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
  }

  .visual-box {
    justify-content: flex-start;
  }

  .diagram-card {
    justify-content: flex-end;

  }

  .diagram-card img {
    width: 130%;
    padding: 15px;
    border-radius: 20px;

  }

  .content-section,
  .section-wrapper {
    margin: 30px 0;
  }
}


/* BOOK APPOINTMENT FIXED BUTTON */
.fixed-appointment-btn {
  padding: 15px 30px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: .3s ease;
  backdrop-filter: blur(5px);

  position: fixed;
  bottom: 30px;
  right: 35px;
  z-index: 1100;
}

.fixed-appointment-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: scale(1.05);
}

.btn-arrow-icon {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}














.logo-row {
  display: flex;
}

.foot-top {
  padding: 50px 5vw;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid rgba(255, 255, 255, 0.94);
  padding-bottom: 40px;
}

.title-group {
  margin-left: 60px;
}

.top-border {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  margin: 25px 0;
}

.foot-left {
  max-width: 50%;
}

.left-logo {
  width: 110px;
  margin-bottom: 30px;
}

.main-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
}

.sub-title {
  font-size: 22px;
  color: #72ff90;
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  font-size: 18px;
}

.contact-box p {
  display: flex;
  align-items: center;
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  filter: invert(100%);
}

.highlight-text {
  color: #72ff90;
}

.cds-site {
  margin-top: 25px;
  font-size: 18px;
}

.cds-site a {
  color: #FF991C;
  text-decoration: none;
}

.foot-right {
  text-align: right;
}

.right-logo {
  width: 70%;
  margin-bottom: 20px;
  border: transparent;
  border-radius: 50px;
}

.foot-right a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  margin: 6px 0;
  display: inline-block;
  transition: 0.3s;
}

.foot-right a:hover {
  color: #f8c94a;
}

.website-link a {
  color: #72ff90;
  font-weight: 700;
  margin-top: 15px;
}

.foot-bottom {
  text-align: right;
  font-size: 20px;
  padding: 20px 100px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .foot-top {
    flex-direction: column;
    gap: 40px;
    text-align: left;
  }

  .logo-row {
    display: block;
  }

  .title-group {
    margin-left: 0;
  }

  .foot-bottom {
    text-align: center;
    font-size: 15px;
  }
}





.hero1 {
  width: 100%;
  height: 100vh;
  background-image: url("/assets/images/6.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 8px;
  border-radius: 50px;
}

.hero1 h1 {
  padding: 40px;
  color: #fff;
  font-size: 70px;
  position: absolute;
  top: 20%;
  text-shadow:
    0 0 10px #160a1667,
    0 0 20px #183b3b58,
    0 0 30px #27271146;
}


.main {
  width: 100%;
  height: 100%;
  padding: 50px 50px;
}

.btn-explore1 {
  margin-top: 40px;
  padding: 15px 34px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 40px;
  background-color: white;
  border: none;
  cursor: pointer;
  display: inline-flex;
  position: absolute;
  bottom: 15%;
  justify-content: center;
  left: 6%;
  align-items: center;
  gap: 115px;
  color: #063341;
  width: 330px;
  transition: 0.4s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);

  /* Removing underline from <a> */
  text-decoration: none !important;
}

.btn-explore1:hover {
  background-color: #f98b04;
}

/* RESPONSIVE */
@media (max-width:900px) {
  .section-wrapper {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    gap: 40px;
  }


}






@media (max-width: 900px) {
  .content-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 50px;

  }

  .diagram-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 80px;
  }

}

@media (max-width: 800px) {
  .book-appointment {
    display: flex;
    font-size: 12px;
    padding: 10px 15px;
    right: 7px;
  }
}


@media (max-width: 600px) {
  .hero1 {
    height: 35vh;
  }
}

@media(max-width: 1300px) {
  .info-text-area p,
  .text-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
@media(max-width: 1200px) {
  .info-text-area p,
  .text-content p {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
@media(max-width: 1000px) {
  .info-text-area p,
  .text-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}


/* Responsive */
@media(max-width: 768px) {
  .menu-overlay {
    flex-direction: column;
    gap: 28px;
    padding: 40px;
  }

  .menu-left a {
    font-size: 34px;
  }

  .menu-right {
    text-align: left;
  }

  .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 600px) {
  .hero-content {
    text-align: center;
    left: 0;
    top: 0;
  }

  .btn-appointment {
    right: 20px;
    bottom: 25px;
  }



  .menu-pill {
    right: 10px;
    margin-top: 10px;
  }

  .main {
    padding: 15px 15px;
  }

  .hero1 h1 {
    padding: 0px 0px;
    font-size: 20px;
    left: 10px;
  }

  .btn-explore1 {
    max-width: 134px;
    gap: 20px;
    font-size: 12px;
    padding: 10px 12px;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 55px !important;
  }
}