/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.container {
  width: 90%;
  margin: auto;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);

  padding: 15px 0;
  transition: 0.3s;
}

/* FLEX */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  color: #00a8e8;
  font-weight: 600;
}

/* MENU */
.nav-menu ul {
  display: flex;
  list-style: none;
}

.nav-menu ul li {
  margin: 0 15px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* UNDERLINE EFFECT */
.nav-menu ul li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #00a8e8;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-menu ul li a:hover::after {
  width: 100%;
}

/* BUTTON */
.btn {
  background: #00a8e8;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn,
.btn-outline {
  transition: 0.3s ease;
}

.btn:hover {
  background: #007bb5;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 168, 232, 0.3);
}

.btn-outline:hover {
  transform: translateY(-3px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  transition: 0.3s;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;

    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    text-align: center;
  }

  .nav-menu.active {
    max-height: 300px;
    padding: 20px 0;
  }

  .nav-menu ul {
    flex-direction: column;
  }

  .nav-menu ul li {
    margin: 10px 0;
  }

  .nav-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* HERO */
.hero {
  padding: 80px 0;
  background: linear-gradient(to bottom right, #f5fbff, #eaf7ff);
}

/* LAYOUT */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.hero-text {
  flex: 1;
}

/* TAG */
.hero-tag {
  display: inline-block;
  background: rgba(0, 168, 232, 0.1);
  color: #00a8e8;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 14px;
}

.hero-tag i {
  margin-right: 5px;
}

/* HEADING */
.hero-text h1 {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
}

/* PARAGRAPH */
.hero-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 2px solid #00a8e8;
  color: #00a8e8;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #00a8e8;
  color: #fff;
}

/* TRUST */
.hero-trust {
  display: flex;
  gap: 20px;
}

.hero-trust div {
  transition: 0.3s;
  background: #fff;
  padding: 15px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hero-trust h3 {
  color: #00a8e8;
  margin-bottom: 5px;
}

.hero-trust div:hover {
  transform: translateY(-5px);
}

/* RIGHT */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* GLASS CARD */
.image-card {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 30px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.image-card img {
  width: 100%;
  max-width: 430px;
  border-radius: 20px;
  transition: 0.4s;
}

.image-card::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.image-card img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
  }
}

/* FEATURES */
.features {
  padding: 100px 0;
  background: #fff;
}

/* TITLE */
.section-title {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.section-title span {
  color: #00a8e8;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #111;
}

.section-title p {
  color: #666;
  line-height: 1.7;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.feature-card {
  background: #f8fcff;
  padding: 35px 25px;
  border-radius: 24px;

  transition: 0.4s ease;
  border: 1px solid rgba(0, 168, 232, 0.08);
}

/* ICON */
.feature-icon {
  width: 70px;
  height: 70px;

  background: rgba(0, 168, 232, 0.1);
  color: #00a8e8;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  margin-bottom: 25px;
}

.feature-icon i {
  font-size: 28px;
}

/* TEXT */
.feature-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

/* HOVER */
.feature-card:hover {
  transform: translateY(-10px);

  background: #00a8e8;
  color: #fff;

  box-shadow: 0 20px 40px rgba(0, 168, 232, 0.2);
}

/* HOVER TEXT */
.feature-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* HOVER ICON */
.feature-card:hover .feature-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media (max-width: 768px) {

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 32px;
  }

}

@media (max-width: 480px) {

  .features-grid {
    grid-template-columns: 1fr;
  }

}

/* DOCTOR */
.doctor {
  padding: 100px 0;
  background: linear-gradient(to bottom right, #f8fcff, #ffffff);
}

/* LAYOUT */
.doctor-content {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* IMAGE SIDE */
.doctor-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* CARD */
.doctor-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 30px;

  backdrop-filter: blur(10px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.doctor-card img {
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  transition: 0.4s ease;
}

.doctor-card img:hover {
  transform: scale(1.03);
}

/* FLOATING BADGE */
.doctor-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;

  background: #00a8e8;
  color: #fff;

  padding: 20px;
  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0, 168, 232, 0.3);
}

.doctor-badge h3 {
  font-size: 28px;
}

/* TEXT SIDE */
.doctor-text {
  flex: 1;
}

/* TAG */
.doctor-tag {
  display: inline-block;
  background: rgba(0, 168, 232, 0.1);
  color: #00a8e8;

  padding: 8px 16px;
  border-radius: 30px;

  margin-bottom: 20px;
}

/* HEADING */
.doctor-text h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

/* DESIGNATION */
.designation {
  color: #00a8e8;
  font-weight: 600;
  margin-bottom: 20px;
}

/* RATING */
.doctor-rating {
  color: #ffc107;
  margin-bottom: 20px;
}

.doctor-rating span {
  color: #555;
  margin-left: 8px;
}

/* DESCRIPTION */
.doctor-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* INFO */
.doctor-info {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

/* INFO BOX */
.info-box {
  display: flex;
  align-items: center;
  gap: 15px;

  background: #fff;
  padding: 15px 20px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.info-box i {
  width: 50px;
  height: 50px;

  background: rgba(0, 168, 232, 0.1);
  color: #00a8e8;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
}

@media (max-width: 768px) {

  .doctor-content {
    flex-direction: column;
    text-align: center;
  }

  .doctor-text h2 {
    font-size: 34px;
  }

  .doctor-info {
    flex-direction: column;
  }

  .doctor-badge {
    right: 10px;
    bottom: -10px;
  }

}

/* VISION */
.vision {
  padding: 100px 0;
  background: linear-gradient(to bottom right, #ffffff, #f5fbff);
  overflow: hidden;
}

/* CONTENT */
.vision-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

  position: relative;
}

/* IMAGE BOX */
.vision-box {
  position: relative;
  flex: 1;
}

.vision-box img {
  width: 100%;
  height: 450px;
  object-fit: cover;

  border-radius: 30px;

  transition: 0.4s ease;
}

/* BLUR EFFECT */
.blurry img {
  filter: blur(2px) brightness(0.9);
}

/* LABEL */
.vision-label {
  position: absolute;
  bottom: 20px;
  left: 20px;

  background: rgba(255, 255, 255, 0.15);
  color: #fff;

  padding: 10px 18px;

  border-radius: 30px;

  backdrop-filter: blur(10px);
}

/* CENTER CARD */
.vision-card {
  position: absolute;

  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(14px);

  padding: 40px;
  border-radius: 30px;

  text-align: center;

  max-width: 350px;

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);

  z-index: 5;
}

/* ICON */
.vision-icon {
  width: 80px;
  height: 80px;

  background: rgba(0, 168, 232, 0.1);
  color: #00a8e8;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 24px;

  margin: auto;
  margin-bottom: 25px;
}

.vision-icon i {
  font-size: 32px;
}

/* TEXT */
.vision-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.vision-card p {
  color: #666;
  line-height: 1.7;
}

@media (max-width: 768px) {

  .vision-content {
    flex-direction: column;
  }

  .vision-card {
    position: relative;
    margin: 20px 0;
  }

  .vision-box img {
    height: 300px;
  }

  .section-title h2 {
    font-size: 32px;
  }

}

/* SERVICES */
.services {
  padding: 100px 0;
  background: #fff;
}

/* GRID LAYOUT */
.services-layout {
  display: grid;

  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #f8fcff;

  padding: 35px;
  border-radius: 30px;

  transition: 0.4s ease;

  border: 1px solid rgba(0, 168, 232, 0.08);
}

/* LARGE CARD */
.large-card {
  grid-row: span 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* WIDE CARD */
.wide-card {
  grid-column: span 2;
}

/* ICON */
.service-icon {
  width: 80px;
  height: 80px;

  background: rgba(0, 168, 232, 0.1);
  color: #00a8e8;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 24px;

  margin-bottom: 25px;
}

.service-icon i {
  font-size: 32px;
}

/* TEXT */
.service-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.8;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-10px);

  background: #00a8e8;
  color: #fff;

  box-shadow: 0 25px 50px rgba(0, 168, 232, 0.2);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media (max-width: 768px) {

  .services-layout {
    grid-template-columns: 1fr;
  }

  .large-card,
  .wide-card {
    grid-column: span 1;
    grid-row: span 1;
  }

}

/* APPOINTMENT */
.appointment {
  padding: 100px 0;

  background: linear-gradient(to bottom right, #eaf7ff, #f8fcff);
}

/* LAYOUT */
.appointment-content {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* LEFT */
.appointment-text {
  flex: 1;
}

/* TAG */
.appointment-tag {
  display: inline-block;

  background: rgba(0, 168, 232, 0.1);
  color: #00a8e8;

  padding: 8px 18px;
  border-radius: 30px;

  margin-bottom: 20px;
}

/* HEADING */
.appointment-text h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

/* PARAGRAPH */
.appointment-text p {
  color: #666;
  line-height: 1.8;

  margin-bottom: 30px;
}

/* FEATURES */
.appointment-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* BOX */
.appointment-box {
  display: flex;
  align-items: center;
  gap: 15px;

  background: rgba(255, 255, 255, 0.7);

  padding: 18px 20px;

  border-radius: 20px;

  backdrop-filter: blur(10px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.appointment-box i {
  color: #00a8e8;
  font-size: 20px;
}

/* RIGHT */
.appointment-form {
  flex: 1;

  background: rgba(255, 255, 255, 0.7);

  padding: 40px;
  border-radius: 30px;

  backdrop-filter: blur(14px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* INPUT GROUP */
.input-group {
  margin-bottom: 20px;
}

/* INPUTS */
.input-group input,
.input-group textarea {
  width: 100%;

  padding: 16px;

  border: 1px solid rgba(0, 168, 232, 0.15);
  border-radius: 16px;

  outline: none;

  font-family: inherit;

  background: rgba(255, 255, 255, 0.8);

  transition: 0.3s;
}

/* FOCUS */
.input-group input:focus,
.input-group textarea:focus {
  border-color: #00a8e8;

  box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.08);
}

/* BUTTON */
.appointment-form .btn {
  width: 100%;
  border: none;
  cursor: pointer;

  padding: 16px;
  border-radius: 18px;

  font-size: 16px;
}

@media (max-width: 768px) {

  .appointment-content {
    flex-direction: column;
    text-align: center;
  }

  .appointment-text h2 {
    font-size: 34px;
  }

}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  background: #fff;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.testimonial-card {
  position: relative;

  background: rgba(255, 255, 255, 0.7);

  padding: 35px;
  border-radius: 30px;

  backdrop-filter: blur(12px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);

  transition: 0.4s ease;
}

/* QUOTE ICON */
.quote-icon {
  width: 70px;
  height: 70px;

  background: rgba(0, 168, 232, 0.1);
  color: #00a8e8;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  margin-bottom: 25px;
}

.quote-icon i {
  font-size: 28px;
}

/* TEXT */
.testimonial-card p {
  color: #666;
  line-height: 1.9;

  margin-bottom: 30px;
}

/* USER */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* IMAGE */
.testimonial-user img {
  width: 60px;
  height: 60px;

  object-fit: cover;

  border-radius: 50%;
}

/* NAME */
.testimonial-user h4 {
  margin-bottom: 4px;
}

.testimonial-user span {
  color: #777;
  font-size: 14px;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 60px rgba(0, 168, 232, 0.12);
}

@media (max-width: 768px) {

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

}

/* FOOTER */
.footer {
  background: #07131d;
  color: #fff;

  padding-top: 100px;
}

/* CONTENT */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;

  gap: 50px;

  padding-bottom: 60px;
}

/* ABOUT */
.footer-about h2 {
  color: #00a8e8;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 15px;

  margin-top: 25px;
}

.footer-social a {
  width: 45px;
  height: 45px;

  background: rgba(255, 255, 255, 0.08);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  transition: 0.3s;
}

.footer-social a:hover {
  background: #00a8e8;
  transform: translateY(-5px);
}

/* LINKS */
.footer-links h3,
.footer-contact h3 {
  margin-bottom: 25px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);

  text-decoration: none;

  margin-bottom: 14px;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #00a8e8;
  padding-left: 5px;
}

/* CONTACT */
.footer-contact p {
  color: rgba(255, 255, 255, 0.7);

  margin-bottom: 16px;
}

.footer-contact i {
  color: #00a8e8;
  margin-right: 10px;
}

/* MAP */
.footer-map iframe {
  filter: grayscale(100%);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;

  padding: 25px;

  background: #040b12;

  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {

  .footer-content {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

}

/* WHATSAPP */
.whatsapp {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 60px;
  height: 60px;

  background: #25D366;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  font-size: 30px;

  text-decoration: none;

  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);

  z-index: 999;

  transition: 0.3s;
}

.whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
}

/* PULSE */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp {
  animation: pulse 2s infinite;
}