 body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
      color: #333;
    }
.top{
  height: 30px;
  text-align: center;
  font-weight: bold;
  background-color: rgb(12, 12, 43);
  color: yellow;
  padding-top: 15px;
}

   /* HERO HEADER */
  body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.header {
  margin-top: 0;
  position: relative;
  z-index: 1;
  height: 80vh;
  background: linear-gradient(rgba(20, 20, 20, 0.7), rgba(20, 20, 20, 0.7));
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align to left */
  text-align: left;
  padding: 0 10%;
  overflow: hidden;
}

/* Background image animation */
.header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  animation: bg 15s ease-in-out infinite;
  background-size: cover;
  background-position: center;
  z-index: -2;
  opacity: 0.7;
}

/* Dark overlay + blur */
.header::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  z-index: -1;
}

/* Animated background images */
@keyframes bg {
  0%   { background-image: url("bg5.jpg"); }
  33%  { background-image: url("bg3.jpg"); }
  66%  { background-image: url("bg4.jpg"); }
  100% { background-image: url("bg5.jpg"); }
}

/* Overlay content */
.header-overlay {
  max-width: 600px;
  z-index: 2;
  animation: fadeInUp 1s ease-out forwards;
}

.header h1 {
  font-size: 56px;
  font-weight: 700;
  text-shadow: 0 0 20px #cbee06;
  margin-bottom: 15px;
  line-height: 1.2;
}

.header h1:nth-of-type(2) {
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  color: #00ffae;
  text-shadow: 0 0 10px #00ffae;
}

.header p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.header .btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: #fff;
  color: #1e3a8a;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header .btn:hover {
  background-color: #1e3a8a;
  color: white;
  transform: translateY(-3px) scale(1.05);
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    justify-content: center;
    text-align: center;
    padding: 0 30px;
  }

  .header-overlay {
    max-width: 100%;
  }

  .header h1 {
    font-size: 36px;
  }

  .header h1:nth-of-type(2) {
    font-size: 24px;
  }

  .header p {
    font-size: 16px;
  }
}

.header-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}

.header-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  animation: fadeInUp 2s ease-out forwards;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 40px;
    text-align: center;
    height: auto;           /* 🔁 Fix: allow height to grow */
    min-height: 100vh;      /* Maintain full screen look */
  }

  .header-overlay, .header-image {
    flex: none;
    width: 100%;
  }

  .header h1 {
    font-size: 32px;        /* 📝 Reduce font size */
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .header h1:nth-of-type(2) {
    font-size: 24px;
  }

  .header p {
    font-size: 16px;
  }

  .header-image {
    justify-content: center;
    margin-top: 20px;
  }

  .header-image img {
    max-width: 200px;
  }
}

    .services-section,.services-section1 {
  padding: 60px 20px;
  background-color: #f0f8ff; /* Light blue tint */
  text-align: center;
}

 .section-title,.section-title1 {
      text-align: center;
      margin: 40px 0;
    }

    .section-title h2,.section-title1 h2 {
      font-size: 50px;
      font-weight: bold;
      color: #003366; /* dark blue */
      margin-bottom: -25px;
      position: relative;
      display: inline-block;
    }

    .section-title h2::before,
    .section-title h2::after,.section-title1 h2::before,
    .section-title1 h2::after {
      content: "";
      position: absolute;
      top: 30%;
      width: 100px;
      margin: 0 -70px;
      height: 2px;
      background-color: #003366;
    }

    .section-title h2::before,.section-title1 h2::before {
      left: -50px;
    }

    .section-title h2::after,.section-title1 h2::after {
      right: -50px;
    }

    .section-title .underlines {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 350px;
      margin-top: 5px;
      
    }
.section-title1 .underlines1 {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 600px;
      margin-top: 5px;
      
    }
    .section-title1 .underlines2 {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 720px;
      margin-top: 5px;
      
    }
    .line,.line1,.line2 {
      width: 200px;
      height: 2px;
      background-color: #FFC107; /* yellow */
      
    }

@media (max-width: 768px) {
  .services-section {
    padding: 40px 15px;
  }

  .section-title h2,.section-title1 h2 {
    font-size: 32px;
    margin-bottom: -15px;
  }

  .section-title h2::before,
  .section-title h2::after {
    width: 60px;
    margin: 0 -40px;
    top: 40%;
  }
 .section-title1 h2::before,
  .section-title1 h2::after{
display: none;
  }
  .section-title h2::before {
    left: -30px;
  }

  .section-title h2::after {
    right: -30px;
  }

  .section-title .underlines {
    gap: 100px; /* Reduce large gap for mobile */
    flex-wrap: wrap; /* Allow wrapping if needed */
    margin-top: 10px;
  }

  .line {
    width: 100px;
  }
    .line1 {
    display: none;
  }
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 45px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
    position: relative; /* so absolute children position relative to this */
    cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  font-size: 20px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 25px;
  line-height: 1.6;

}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card img{
    object-fit: cover;
    width: 60px;
    height: auto;
}
.newDiv {
    position: absolute;
    top:40px;
    right: 18px;
    padding: 10px 15px;
    background-color: #3498db;
    color: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    font-size: 14px;
    pointer-events: none;
    width: 82%;
    height: 90%;
    animation: transform 0.5s ease-in-out;
  
}
@keyframes transform {
    0%{
        transform: translateY(100px);
    }
       100%{
        transform: translateY(0px);
    }
}
.new-heading{
    border-bottom: 2px solid black;
}

 .newDiv p{
    color:yellow ;
 }
 .new-btn:hover{
    background-color: yellow;
    color: black;
 }
 /* REVIEW SECTION */
.review-section {
  background: linear-gradient(to right, #e0f2ff, #ffffff);
  min-height: 100vh;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.review-section h2 {
  font-size: 40px;
  color: #1e3a8a;
  margin-bottom: 60px;
  animation: slideInDown 1s ease forwards;
}

.reviews-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  animation: fadeInUp 1.2s ease forwards;
}

.review-card {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: left;
  animation: fadeIn 1s ease-in-out;
  transition: transform 0.4s ease;
}

.review-card:hover {
  transform: translateY(-10px);
}

.quote {
  font-size: 80px;
  color: #3b82f6;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.2;
}

.review-text {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 10px;
  padding-left: 40px;
  color: #444;
}

.review-author {
  font-weight: bold;
  margin-top: 20px;
  text-align: right;
  color: #1e3a8a;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hmo-newsletter-section {
  padding: 60px 20px;
  background-color: #f9f9f9; /* light background */
}

.hmo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hmo-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hmo-content {
  flex: 1;
}

.hmo-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0B1C3A; /* dark blue title */
}

.hmo-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .hmo-container {
    flex-direction: column;
    text-align: center;
  }

  .hmo-content h2 {
    font-size: 24px;
  }

  .hmo-content p {
    font-size: 15px;
  }
}

/* --- Toggle Button Style --- */
.help-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #1e3a8a;
  color: #fff;
  border-radius: 50%;
  padding: 18px;
  font-size: 22px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.help-toggle:hover {
  transform: scale(1.1);
  background-color: #3b82f6;
}

/* --- Help Form Popup --- */
.help-form-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 300px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 9999;
  animation: slideInUp 0.4s ease;
}

.help-form-container h3 {
  margin-top: 0;
  font-size: 18px;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 15px;
}

.help-form-container input,
.help-form-container textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.help-form-container textarea {
  height: 80px;
  resize: none;
}

.help-form-container button {
  background-color: #1e3a8a;
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.help-form-container button:hover {
  background-color: #3b82f6;
}

/* --- Animation --- */
@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.faq-section {
  background-color: #eff6ff;
  padding: 60px 20px;
  text-align: center;
  color: #1e3a8a;
}

.faq-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  position: relative;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  color: #1e3a8a;
}



.faq-answer {
  padding: 20px;
  display: none;
  border-top: 1px solid #d1d5db;
  text-align: left;
  font-size: 15px;
  color: #111827;
  background-color: #f9fafb;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.about-hope {
  background-image: url("bg5.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: #fff;
  position: relative;
}

.about-overlay {
  background-color: rgba(0, 0, 50, 0.6); /* Dark blue transparent overlay */
  padding: 60px 30px;
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 700;
}

.about-content p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #f1f5f9;
}

.call-now-btn {
  display: inline-block;
  background-color: #3b82f6;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.call-now-btn:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}

/* Fade-in Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }





