
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }

    body {
      background: white;
      font-family: 'Segoe UI', sans-serif;
        width: 100%;
    height: 100%;
    /* overflow: hidden; */
    }



    nav {
    width: 100%;
    height: 80px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      background: white;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      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: 10px;
      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:600px) {
      label.logo {
        font-size: 17px;
        margin: 8px 20px;
      }

      .logo-img {
        width: 30px;
        vertical-align: middle;
        margin-right: 5px;
        margin-left: 0px;
      }
      /* 
    nav {
      width: 100%;
      height: 80px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      background: white;
    } 
    }


    @media(max-width:1300px) {
      #checkbtn {
        display: block;
      }

      nav ul {
        width: 100%;
        height: 100vh;
        background-color: white;
        position: fixed;
        top: 80px;
        left: -100%;
        transition: 0.5s;
        z-index: 1000;
        flex-direction: column;

      }


      #check:checked~ul {
        left: 0;
      }

      nav ul li {
        display: block;
        text-align: center;
        line-height: 50px;
        margin: 15px 0;
      }

      nav ul li a.active {
        color: white;
        border-radius: 50px;
        background-color: #1c92d2;
        padding: px;

      }

    } */


        @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;
  }
}

.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;
       }
@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;
  }
}


   /* About Us Section */
   .about-section {
     text-align: center;
     padding: 8px 2px 5px;
     animation: fadeDown 1s ease-out;
     background: white
   }

   .about-section h1 {
     font-size: 60px;
     margin-top: 100px;
     font-family: 'Bebas Neue', cursive;
     letter-spacing: 2px;
     color: #0b2545;
   }

   .about-section p {
     font-size: 20px;
     color: #0b2545;
     margin-top: 15px;
     margin-left: 2px;
     animation: fadeIn 2s ease-in;
     font-family: 'Manrope', sans-serif;
   }

   .card {
     width: 90%;
     height: 500px;
     margin: 60px auto;
     overflow: hidden;
     border-radius: 15px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
   }

   .card img {
     width: 100%;
     height: 100%;
     object-position: center;
     object-fit: cover;
   }

   .section {
     padding: 100px 5% 120px;
     background-color: white;
   }

   @media(max-width:400px) {
     #what-create {
      margin-top: -200px;
     }
   }

   .content {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     flex-wrap: wrap;
   }

   .who-heading, .create-heading {
     font-size: 50px;
     color: #102a43;
     flex: 1;
     min-width: 280px;
     transition: all 1s ease;
     font-family: 'Poppins', sans-serif;
     position: relative;
   }

   .who-heading {
     margin-right: 40px;
     opacity: 0;
     transform: translateX(-100px);
   }

   .create-heading {
     margin-left: 40px;
     opacity: 0;
     transform: translateX(100px);
   }

   .who-heading::after,
   .create-heading::after {
     content: '';
     display: block;
     height: 3px;
     width: 0%;
     background-color: #00a8e8;
     transition: width 1.2s ease-in-out;
     margin-top: 10px;
     transform-origin: right;
   }

   .underline::after {
     width: 100%;
   }

   .points {
     flex: 2;
     min-width: 300px;
     transition: all 1s ease;
   }

   .points.right-anim {
     opacity: 0;
     transform: translateX(100px);
   }

   .points.left-anim {
     opacity: 0;
     transform: translateX(-100px);
   }

   .point {
     margin-bottom: 40px;
   }

   .point-title {
     font-size: 24px;
     color: #0b2545;
     font-weight: bold;
     font-family: 'Poppins', sans-serif;
   }

   .point-desc {
     font-size: 16px;
     color: #333;
     margin-top: 5px;
     font-family: 'Manrope', sans-serif;
   }

   /* Animations */
   .slide-in-left {
     opacity: 1 !important;
     transform: translateX(0) !important;
   }

   .slide-in-right {
     opacity: 1 !important;
     transform: translateX(0) !important;
   }

   @keyframes fadeDown {
     from {
       transform: translateY(-40px);
       opacity: 0;
     }
     to {
       transform: translateY(0);
       opacity: 1;
     }
   }

   @keyframes fadeIn {
     from {
       opacity: 0;
     }
     to {
       opacity: 1;
     }
   }

   @media (max-width: 768px) {
     .content {
       flex-direction: column;
       align-items: center;
     }
     
     .who-heading, .create-heading,
     .points {
       transform: none !important;
       opacity: 1 !important;
       text-align: center;
       margin: 20px 0;
     }

     .card {
       width: 90%;
       height: 300px;
     }
   }

   .support-hero-wrapper {
   background-color: #f0faff;
 }

 .support-hero-section {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 40px 60px;
   max-width: 1200px;
   margin: 0 auto;
   background: linear-gradient(90deg, #e0f5ff 0%, #ffffff 100%);
   border-bottom-left-radius: 30px;
   border-bottom-right-radius: 30px;
   flex-wrap: wrap;
 }

 .support-hero-text {
   flex: 1;
   min-width: 300px;
 }

 .support-hero-text h2 {
   font-size: 36px;
   color: #1c1c1c;
   margin-bottom: 10px;
 }

 #supportSearchInput {
   padding: 12px 20px;
   border-radius: 10px;
   border: 2px solid #1c92d2;
   width: 100%;
   max-width: 400px;
   font-size: 16px;
   outline: none;
 }

 .support-hero-image {
   position: relative;
   margin-left: 40px;
 }

 .support-hero-image img {
   max-width: 320px;
   height: auto;
   border-radius: 20px;
   filter: drop-shadow(0 0 25px rgba(226, 240, 255, 0.8));
 }

 .support-faq-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;
 }

 #supportFaqList {
   margin-top: 30px;
 }

 .support-faq-item {
   border-bottom: 1px solid #ddd;
   margin-bottom: 10px;
 }

 .support-question {
   font-size: 18px;
   font-weight: bold;
   padding: 12px 20px;
   background: #f2fcfe;
   color: #1c92d2;
   cursor: pointer;
   border-left: 4px solid #1c92d2;
   border-radius: 6px;
 }

 .support-question:hover {
   transition: 0.5s;
   box-shadow: 2px 2px 8px #1c92d2;
 }

 .support-answer {
   padding: 12px 20px;
   display: none;
   color: #333;
   background: #ffffff;
   text-align: left;
 }

 .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-container {
           max-width: 80rem;
           margin: 0 auto;
           display: grid;
           grid-template-columns: 1fr;
           gap: 2.5rem;
           align-items: start;
       }

       @media (min-width: 768px) {
           .grid-container {
               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-grid {
           display: grid;
           grid-template-columns: 1fr;
           gap: 2rem;
           
       }

       @media (min-width: 768px) {
           .footer-grid {
               grid-template-columns: repeat(4, 1fr);
           }
       }

       .footer-heading {
           font-size: 1.25rem;
           font-weight: 600;
           margin-bottom: 1rem;
       }

       .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;
       }

       @media (min-width: 380px) {
        .section {
          padding: 10px 5% 12px;
       }}


    .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);
    }

    /* Responsive styles */
@media (max-width: 1024px) {
  .support-hero-section {
    padding: 30px 40px;
  }

  .support-hero-text h2 {
    font-size: 32px;
  }

  .support-hero-image img {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .support-hero-section {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .support-hero-text {
    margin-top: 20px;
  }

  .support-hero-text h2 {
    font-size: 28px;
  }

  #supportSearchInput {
    max-width: 100%;
  }

  .support-hero-image img {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .support-hero-section {
    padding: 15px;
  }

  .support-hero-text h2 {
    font-size: 24px;
  }

  .support-hero-text {
    overflow: hidden;
  }

  #supportSearchInput {
    margin: 0;
    font-size: 14px;
    padding: 10px 16px;
  }

  .support-hero-image img {
    max-width: 220px;
  }
}
