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

/* Body */
body {
  font-family: 'Poppins', sans-serif;
  background: #fdf6f0;
  color: #333;
}

/* Announcement Bar */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #3c096c;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  z-index: 1001;
  overflow: hidden;
}

#announcement-text {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 40px;
  width: 100%;
  background: #3c096c;
  z-index: 1000;
  color: white;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}

.site-logo {
  width: 100px;    /* Change this value as needed */
  height: auto;    /* Keeps the aspect ratio */
  vertical-align: middle; /* Aligns with text if needed */
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: right 0.3s;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 24px;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffb703;
}

.cta-button {
  background: #7b2cbf;
  padding: 8px 18px;
  border-radius: 20px;
  margin-left: 25px;
  color: #fff !important;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #9d4edd;
}

@media (max-width: 900px) {
  .navbar-container {
    padding: 0 10px;
  }
  .site-logo {
    width: 90px;
  }
  
  .nav-links {
    position: fixed;
    top: 110px;
    right: -100%;
    width: 220px;
    height: calc(100vh - 110px);
    background: #3c096c;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: right 0.3s;
    z-index: 1002;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    margin: 0 0 18px 0;
    font-size: 1.1rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  padding-top: 150px; /* adjust as needed for your navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background-video-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
}

.background-video {
  width: 100vw;
  height: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) blur(0.5px);
  position: absolute;
  top: 0; left: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 100%;
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-content h2 {
  font-size: 1.3rem;
  margin: 10px 0;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.appointment-button {
  padding: 10px 25px;
  background: #7b2cbf;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.3s;
}

.appointment-button:hover {
  background: #9d4edd;
}

/* Services Section */
.services {
  padding: 70px 30px;
  text-align: center;
  background: #fffaf5;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #5e548e;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service {
  background: #ffffffcc;
  padding: 30px;
  border-radius: 20px;
  width: 180px;
  transition: transform 0.3s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service img {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}

.service p {
  color: #3c096c;
  font-weight: 600;
}

.service:hover {
  transform: translateY(-10px);
}

/* Profile Section */
.profile {
  padding: 50px 20px;
  text-align: center;
  background: #eef2f7;
}

.profile h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 20px 0;
}

/* Appointment Section */
.appointment-section {
  background: #ede6fa; /* Home page par yahi light purple hai */
  padding: 60px 0 40px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.appointment-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #7b2cbf, #9d4edd);
  -webkit-background-clip: text;
  color: transparent;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.10);
  letter-spacing: 2px;
}

#form {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(123, 44, 191, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#form input,
#form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #b197fc;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  background: #fdf6f0;
  color: #3c096c;
  transition: border 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(123, 44, 191, 0.03);
}

#form input:focus,
#form textarea:focus {
  border: 1.5px solid #7b2cbf;
  outline: none;
  box-shadow: 0 0 8px #b197fc;
}

#form textarea {
  min-height: 80px;
  resize: vertical;
}

#form button {
  background: linear-gradient(90deg, #7b2cbf 0%, #9d4edd 100%);
  color: #fff;
  padding: 14px 0;
  font-size: 17px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(123, 44, 191, 0.10);
  transition: background 0.3s, box-shadow 0.3s;
  letter-spacing: 1px;
}

#form button:hover {
  background: linear-gradient(90deg, #9d4edd 0%, #7b2cbf 100%);
  box-shadow: 0 6px 24px rgba(123, 44, 191, 0.18);
}

@media (max-width: 500px) {
  .appointment-section {
    padding: 30px 0 20px 0;
  }
  #form {
    padding: 18px 8px;
  }
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* Footer */
.footer {
  background-color: #3c096c;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

.service-heading {
    text-align: center; /* Heading ko center kare */
    margin-top: 60px;   /* Announcement bar ke niche gap */
    font-size: 2.5rem;  /* Heading ka size */
    font-weight: bold;  /* Bold text */
    color: #3c096c;     /* Heading ka color */
}


.service-video-section {
  width: 100%;
  padding: 30px 0;
  background-color: #fffaf5;
  text-align: center;
}
.service-video {
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  filter: brightness(0.85) saturate(1.1);
}
.service-description {
  background: #fdf6f0;
  padding: 50px 20px;
  text-align: center;
}
.service-description h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #5f0f40;
}
.service-description p {
  max-width: 850px;
  margin: 10px auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.back-home {
  text-align: center;
  margin-top: 20px;
}
.home-button {
  padding: 10px 25px;
  background-color: #0077b6;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}
.home-button:hover {
  background-color: #023e8a;
}
@media (max-width: 500px) {
  .appointment-section {
    padding: 30px 0;
  }
  #form {
    padding: 18px 8px;
  }
