
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: white;
      font-family: 'Segoe UI', sans-serif;
        width: 100%;
    height: 100%;
    }



    nav {
    width: 100%;
    height: 80px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      background: white;
      position: fixed;
      top: 0;
      left: 0;
      background-color:white; 
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .logo-img {
      height: 50px;
      vertical-align: middle;
      margin-right: 10px;
      border-radius: 50%;
    }

    label.logo a {
    padding-left: 50px;
      font-size: 25px;
      color: #1c92d2;
      margin: 50px;
      line-height: 80px;
      font-weight:500;
    }

    nav ul {
      float: right;
      list-style-type: none;
      margin-right: 40px;

    }

    nav ul li {
      display: inline-block;
      line-height: 80px;
    }

    nav ul li a {
      text-decoration: none;
      color: #1c92d2;
      font-size: 20px;
      text-transform: capitalize;
      padding: 8px 20px;

    }

    .active {
      background-color: #1c92d2;
      border-radius: 15px;
      color: white;

    }

    nav ul li a {

      position: relative;
    }

    /* Underline hover animation */
    nav ul li a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0%;
      background-color: #1a525e;
      transition: width 0.4s ease;
      margin-left: 10px;
    }

    nav ul li a:hover::after {
      width: 80%;

    }

    a.active :hover {
      color: white;
      border-radius: 15px;
      background-color: #00C19C;
      transition: 0.3s;
    }


    #checkbtn {
      float: right;
      line-height: 80px;
      margin-right: 0px;
      font-size: 30px;
      color: black;
      display: none;

    }

    #check:checked~ul {
      left: 0;
    }

    #check:checked~ul .active {
      margin-right: 0px;
    }

    #check {
      display: none;
    }
    @media (max-width: 1024px) {
      .logo-img {
        margin-right: 0px;
      }
      label.logo a {
        margin: 0;
      }
      label.logo a {
        padding: 2px;
      }
      nav ul li a {
        padding:3px 7px ;
      }
    }


        @media (max-width: 992px) {
  nav ul {
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    transition: 0.5s ease;
    padding-top: 30px;
  }

  nav ul li {
    display: block;
    text-align: center;
    margin: 20px 0;
  }

  #checkbtn {
    display: block;
    color: #1c92d2;
    cursor: pointer;
  }

  #check:checked ~ ul {
    left: 0;
  }
}

@media (max-width: 768px) {
  label.logo a {
    font-size: 18px;
    padding-left: 10px;
  }

  .logo-img {
    height: 35px;
    margin-right: 8px;
  }

  nav {
    height: 70px;
  }

  nav ul li a {
    font-size: 18px;
    padding: 8px 15px;
  }

  #checkbtn {
    font-size: 28px;
    margin-right: 20px;
  }
}

@media (max-width: 480px) {
  nav ul li a {
    font-size: 16px;
    padding: 8px 12px;
  }

  .logo-img {
    height: 30px;
  }

  label.logo a {
    font-size: 12px;
    margin: 0px;
  }

}

/* Floating WhatsApp button styles */
    .whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      /* WhatsApp green */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .whatsapp-btn img {
      width: 35px;
      height: 35px;
    }
/* Responsive adjustments */
@media (max-width: 480px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-btn img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 320px) {
  .whatsapp-btn {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }

  .whatsapp-btn img {
    width: 24px;
    height: 24px;
  }
}

    .heading {
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 3rem;
      font-family: 'Bebas Neue', cursive;
      font-weight: bold;
      color: #0b2545;
      animation: slideDown 1s forwards;
    }

    @keyframes slideDown {
      to {
        top: 100px;
      }
    }

    .top-section {
        margin-top: 150px;
  padding: 40px 100px 40px 100px;
  background-color: #ffffff;
  text-align:left;
  
}

.size {
  padding-left: 50px;
  font-size: larger;
  font-weight: 600;
}

.top-subtitle {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
  text-align: left;
  margin-left: 50px;
}

.top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-items: center;
  margin-top: 50px;
}

.top-card {
  width: 350px;
  height: 400px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 6px 15px rgba(0,0,0,0.1); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.top-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 30px;
}

.top-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.top-card:hover .top-image {
  transform: scale(1.05);
}

.top-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.top-card:hover .top-overlay {
  opacity: 1;
}

.top-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.top-button {
  margin: 15px 0;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #0077cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.top-button:hover {
  background-color: #005fa3;
}


/* Responsive for tablets and smaller laptops */
@media (max-width: 1024px) {
  .top-section {
    padding: 40px 60px;
  }

  .top-subtitle {
    font-size: 1.8rem;
    margin-left: 30px;
  }

  .top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .top-card {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .top-image-wrapper {
    height: 300px;
  }

  .top-image {
    height: 100%;
  }

  .top-button {
    font-size: 14px;
    padding: 8px 18px;
  }
}

/* Responsive for mobile devices */
@media (max-width: 768px) {
  .top-section {
    padding: 30px 20px;
  }

  .top-subtitle {
    font-size: 1.5rem;
    margin-left: 10px;
    text-align: center;
  }

  .top-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 30px;
  }

  .top-card {
    max-width: 90%;
    height: auto;
  }

  .top-image-wrapper {
    height: 250px;
    margin-bottom: 20px;
  }

  .top-text {
    font-size: 1rem;
  }

  .top-button {
    font-size: 14px;
    padding: 8px 16px;
  }
    .top-overlay {
    opacity: 1;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .top-subtitle {
    font-size: 1.3rem;
  }

  .top-card {
    max-width: 100%;
  }

  .top-image-wrapper {
    height: 200px;
  }

  .top-button {
    width: 100%;
    padding: 10px;
    font-size: 13px;
  }
  .top-overlay {
    opacity: 1;
  }
  
}





    .grid-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 50px;
      padding: 1rem;
    }

    .card {
      position: relative;
      height: 350px;
      background-size: cover;
      background-position: center;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .overlay {
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      color: white;
      display: flex;
      align-items: center;
      transition: left 0.6s ease-in-out;
    }

    .card:hover .overlay {
      left: 0;
    }

    .description {
      padding: 1rem;
      text-align: left;
      font-size: 0.95rem;
      width: 100%;
    }

    .description h3 {
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
      font-family: sans-serif;
      color: #fff;
    }

    .description p {
      font-size: 26px;
      font-weight: 900;
      font-family: 'Manrope', sans-serif;
      color: #ddd;
      text-align: center;
      line-height: 1.5;
    }

    a {
      text-decoration: none;
      color: white;
    }

    button {
      margin: 10px;
      padding: 10px;
      border-radius: 10px;
      border: none;
      background-color: rgb(0, 195, 255);
      font-weight: bold;
      font-size: 15px;
    }

    /* button:hover {
      transform: scale(1.2);
    } */

    .contactus-page {
      text-align: center;
      margin: 10px;
    }

    @media screen and (max-width: 768px) {
      .heading {
        font-size: 2rem;
      }
      .overlay {
        left: 0%;
      }

      .grid-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
      }

      .description p {
        font-size: 17px;
        font-family: 'Manrope', sans-serif;
        color: #ddd;
        text-align: center;
        line-height: 1.2;
      }

    }

    /* faq */

    .help-section-wrapper {
      margin-top: 50px;
      background: #f2fcfe;
      padding: 0 20px;
      padding-bottom: 20px;
      font-family: 'Inter', sans-serif;
    }

    .help-hero-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(90deg, #e2f0ff 0%, #ffffff 100%);
      padding: 40px 60px;
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .help-hero-content {
      flex: 1;
      max-width: 300px;
    }

    .help-hero-content h2 {
      font-size: 36px;
      color: #1c1c1c;
      margin-bottom: 10px;
    }

    #helpSearchBar {
      padding: 12px 20px;
      border-radius: 10px;
      border: 2px solid #1c92d2;
      width: 100%;
      max-width: 400px;
      font-size: 16px;
      outline: none;
    }

    .help-illustration {
      position: relative;
      margin-left: 40px;
    }

    .help-illustration img {
      max-width: 320px;
      height: auto;
      border-radius: 20px;
      filter: drop-shadow(0 0 25px rgba(226, 240, 255, 0.8));
      backdrop-filter: blur(4px);
    }

    .help-container {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 700px;
      margin: 40px auto 60px auto;
    }

    /* responsive */
        /* Responsive styles */
@media (max-width: 1024px) {
  .help-hero-section {
    padding: 30px 40px;
  }

  .help-hero-content h2 {
    font-size: 32px;
  }

  .help-illustration img {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .help-hero-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px;
  }

  .help-hero-content {
    margin-top: 20px;
  }

  .help-hero-content h2 {
    font-size: 28px;
  }

  #helpSearchBar {
    max-width: 100%;
  }

  .help-illustration img {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .help-hero-section {
    padding: 15px;
  }

  .help-hero-content h2 {
    font-size: 24px;
  }
  .help-hero-content {
    /* max-width: 100px; */
    overflow: hidden;
  }

  #helpSearchBar {
    margin: 0;
    font-size: 14px;
    padding: 10px 16px;
  }

  .help-illustration img {
    max-width: 220px;
  }
}


    #helpFaqList {
      margin-top: 30px;
    }

    .help-faq-item {
      border-bottom: 1px solid #ddd;
      margin-bottom: 10px;
    }

    .help-question {
      font-size: 18px;
      font-weight: bold;
      padding: 12px 20px;
      background: #f2fcfe;
      color: #1c92d2;
      cursor: pointer;
      border-left: 4px solid #1c92d2;
      border-radius: 6px;
    }

    .help-answer {
      padding: 12px 20px;
      display: none;
      text-align: left;
      color: #333;
      background: #ffffff;
    }

    .help-question:hover {
      transition: 0.5s;
      box-shadow: 2px 2px 8px #1c92d2;
    }

    .values-section {
      margin-top: 40px;
      width: 100%;
      padding: 80px 20px;
      background-color: white;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .values-container {
      max-width: 1400px;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 50px;
    }

    .values-content {
      flex: 1;
      min-width: 300px;
    }

    .values-heading {
      font-family: 'Bebas Neue', cursive;
      font-size: 4rem;
      color: black;
      position: relative;
      margin-bottom: 30px;
      opacity: 0;
      transform: translateX(-50px);
    }

    .values-heading::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 3px;
      background: black;
      animation: underlineGrow 1s forwards 0.5s;
    }

    .values-list {
      list-style-type: disc;
      padding-left: 20px;
      font-family: 'Manrope', sans-serif;
      font-size: 1.3rem;
      color: #333;
      display: flex;
      flex-direction: column;
      gap: 15px;
      opacity: 0;
      transform: translateX(-50px);
    }

    .values-list li {
      line-height: 1.6;
    }

    .values-image-card {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .values-image-card img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
      object-fit: cover;
    }

    /* Animations */
    @keyframes fadeInHeading {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes underlineGrow {
      to {
        width: 100%;
      }
    }

    @keyframes moveLeftToRight {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Animation classes triggered by Intersection Observer */
    .values-heading.fade-in-heading {
      animation: fadeInHeading 1s forwards;
    }

    .values-list.move-left-to-right {
      animation: moveLeftToRight 1s forwards;
    }

    .total body {
      margin: 0;
      padding: 0;
      color: #1f2937;
      box-sizing: border-box;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    a {
      text-decoration: none;
    }

    .contact-info {
      margin-bottom: 2rem;
    }



    .total body {
      margin: 0;
      padding: 0;
      color: #1f2937;
      box-sizing: border-box;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    a {
      text-decoration: none;
    }

    .contact-info {
      margin-bottom: 2rem;
    }

    /* Contact Information Styles */
    .contact-info {
      background-color: white;
      padding: 2rem 1.5rem;
      max-width: 72rem;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .contact-info {
        padding: 3rem;
      }
    }

    .contact-heading {
      font-size: 1.875rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: #7e22ce;
    }

    .contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      font-size: 1.125rem;
    }

    .contact-link {
      color: #2563eb;
      transition: all 0.2s;
    }

    .contact-link:hover {
      text-decoration: underline;
      color: #1e40af;
    }

    /* Contact Section Styles */
    .contact-section {
      background: linear-gradient(to bottom right, white, #3b82f6, #e9d5ff);
      min-height: 100vh;
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .contact-section {
        padding: 3rem;
      }
    }

    .location-title {
      font-weight: bold;
      margin-bottom: 1.25rem;
      font-size: 1.875rem;
    }

    .grid-container1 {
      max-width: 80rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: start;
    }

    @media (min-width: 768px) {
      .grid-container1 {
        grid-template-columns: 1fr 1fr;
      }
    }

    .map-container {
      width: 100%;
      height: 545px;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      border: 1px solid #e5e7eb;
    }

    .map-iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .form-container {
      background-color: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      border-radius: 1.5rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      padding: 2rem;
      height: 545px;
    }

    .form-title {
      font-size: 1.875rem;
      font-weight: bold;
      text-align: center;
      color: white;
      margin-bottom: 1.5rem;
    }

    .form-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .input-group {
      position: relative;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      padding: 1rem;
      border-radius: 0.375rem;
      font-size: 0.875rem;
      color: #111827;
      border: 1px solid #d1d5db;
      outline: none;
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: #2563eb;
    }

    .form-textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-submit {
      background: linear-gradient(to right, white, #3b82f6, #9333ea);
      color: white;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      transition: all 0.3s;
      border: none;
      cursor: pointer;
      display: block;
      margin: 0 auto;
    }

    .form-submit:hover {
      transform: scale(1.05);
    }

    .text-center {
      text-align: center;
    }

    /* Footer Styles */
    .site-footer {
      background-color: #111827;
      color: white;
      padding: 2.5rem 1.5rem;
    }

    @media (min-width: 768px) {
      .site-footer {
        padding: 2.5rem 5rem;
      }
    }

    .footer-grid1 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .footer-grid1 {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .footer-heading {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #1c92d2;
    }

    .footer-subheading {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .footer-text {
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      font-size: 0.875rem;
    }

    .footer-link {
      color: white;
      transition: all 0.2s;
    }

    .footer-link:hover {
      text-decoration: underline;
    }

    .footer-form {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-input {
      padding: 0.5rem;
      border-radius: 0.25rem;
      color: black;
      border: none;
      outline: none;
    }

    .footer-button {
      background-color: #2563eb;
      border-radius: 0.25rem;
      padding: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      border: none;
      cursor: pointer;
      color: white;
      transition: all 0.2s;
    }

    .footer-button:hover {
      background-color: #1d4ed8;
    }

    .footer-copyright {
      text-align: center;
      font-size: 0.875rem;
      margin-top: 2.5rem;
      border-top: 1px solid #374151;
      padding-top: 1.5rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .values-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .values-content,
      .values-image-card {
        transform: none !important;
        animation: none !important;
        opacity: 1 !important;
      }
    }