
    /* ==== RESET ==== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", Arial, sans-serif;
      color: #000;
     background-color: #fff;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ==== NAVBAR ==== */
    header {
      background-color: #1926b2;
      color: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    }
    .btn-primary {
      background-color: #faaf23;
      color: white;
    }

    .btn-secondary {
      background-color: #ffffff;
      color: #1926b2;
      border: 1px solid #1926b2;
    }

    .navbar {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      font-size-adjust: calc(60px);
    }

    .logo {
      display: flex;
      align-items: center;
      background-color: #1926b2;
    }

    .logo img {
      width: 150px;
      height: 100px;
      border-radius: 5px;
      object-fit: cover;
      border: 1px solid #1926b2;
      margin-right: 10px;
      
    }

    .logo h1 {
      color: #1e90ff;
      font-size: 24px;
      letter-spacing: 1px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    nav ul li a {
      color: #fff;
      font-weight: 1000;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #ff7f11;
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      cursor: pointer;
      color: #fff;
    }

    /* ==== HERO SECTION WITH ANIMATED GRADIENT ==== */
    /* HERO SECTION */
    .hero {
      position: relative;
      height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      overflow: hidden;
    }

    /* Video background */
    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    /* Overlay for darkening video */
    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      z-index: 1;
    }

    /* Hero content */
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .hero-content h1 {
      font-size: 3em;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .hero-content p {
      color: #ffffff;
      font-size: 2em;
      margin-bottom: 30px;
    }

    .hero-content button {
      padding: 12px 35px;
      font-size: 1.5em;
      border: none;
      border-radius: 30px;
      background-color: #1926b2;
      color: #fff;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .hero-content button:hover {
      background-color: #e68900;
    }

    /* Responsive text size */
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2em;
      }
      .hero-content p {
        font-size: 1em;
      }
    }

    /* ==== PACKAGES ==== */
   section.packages-section {
      background-color:#1926b2 ;
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
      font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

    section.packages-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
     
      z-index: 1;
    }

    section.packages-section h2 {
      position: relative;
      z-index: 2;
      font-size: 2.5em;
      margin-bottom: 50px;
    }

    .packages-container {
      display: flex;
      gap: 20px;
      justify-content: center;
      animation: scroll-left 25s linear infinite;
      position: relative;
      z-index: 2;
    }

    .package-card {
      background-color: #fc7806;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 15px;
      padding: 30px;
      width: 250px;
      flex-shrink: 0;
      text-align: center;
      transition: transform 0.3s, background 0.3s;
    }

    .package-card:hover {
      transform: scale(1.05);
      background: rgba(255,255,255,0.25);
    }

    .package-card h3 {
      font-size: 1.5em;
      color: #020000;
      margin-bottom: 10px;
    }

    .package-card .price {
      font-size: 1.8em;
      font-weight: bold;
      color: #fff;
      margin-bottom: 15px;
    }

    .package-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
      color: #160606;
      font-size: 1em;
      text-align: left;
    }

    .package-card ul li {
      margin: 5px 0;
    }

    .package-card button {
      background: #1926b2;
      border: none;
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 1em;
      cursor: pointer;
      transition: background 0.3s;
    }

    .package-card button:hover {
      background: #e68900;
    }

    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (max-width: 768px) {
      .packages-container {
        flex-direction: column;
        align-items: center;
        animation: none;
      }
    }



    /* ==== ABOUT ==== */

/* === ABOUT SECTION STYLING === */
 
.about-section {
      position: relative;
      background: 
        url('jjr.jpg')
        no-repeat center center/cover;
      color: #fff;
      padding: 10px 150px;
      text-align: center;
    box-sizing: border-box;
   transition: all 0.3s ease; 
  }
/* Dark overlay to fade the image for text visibility */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.7)
  ); /* Adjust opacity for more or less fade */
  z-index: 0;
}





/* === FLEX CONTAINER === */
.about-container {
   position: relative;
  z-index: 2; /* keeps text above the faded overlay */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

/* === TEXT SECTION === */
.about-text {
  flex: 1 1 100%;
  min-width: 320px;
  max-width: 1000px;
}

/* Headings scale smoothly */
.about-text h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 2.5em;
  margin-bottom: 25px;
  color:#fc7806;
  font-weight: 600;
}

/* Paragraph scaling with screen width */
.about-text p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 18px;

  /* Control readable width dynamically */
  max-width: clamp(600px, 80vw, 1000px);
  text-align: justify;
  transition: all 0.3s ease;
}

/* === IMAGE SECTION === */
.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-text h2 {
    margin-top: 15px;
  }

  .about-text p {
    text-align: left;
    max-width: 90%;
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 5%;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
  }

  .about-image img {
    max-width: 100%;
    border-radius: 10px;
  }
}





  
  
   

    /* ==== PARTNERS ==== */
   
    /* Partner section styling */
    .partners-section {
      position: relative;
      background: url('back20.jpg') 
        no-repeat center center/cover;
      padding: 80px 20px;
      color: #fff;
    }

    .partners-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 1;
    }

    .partners-content {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: auto;
    }

    .partners-section h2 {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 60px;
      color: #fc7806; 
      letter-spacing: 1px;
    }

    .partner-item {
      display: flex;
      align-items: center;
      background: rgba(255,255,255,0.1);
      border-radius: 12px;
      margin-bottom: 30px;
      padding: 20px;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .partner-item:hover {
      transform: scale(1.03);
      background: rgba(255,255,255,0.2);
    }

    .partner-logo {
      flex: 0 0 120px;
      margin-right: 25px;
      position: relative;
      animation: floatLogo 4s ease-in-out infinite;
    }

    .partner-logo img {
      width: 120px;
      height: 120px;
      object-fit: contain;
      border-radius: 50%;
      background: #fff;
      padding: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .partner-description {
      flex: 1;
    }

    .partner-description h3 {
      margin: 0 0 10px;
      color: #ddd; 
      font-size: 1.4em;
    }

    .partner-description p {
      color: #ddd;
      line-height: 1.5;
      font-size: 1em;
    }

    /* Floating animation for logos */
    @keyframes floatLogo {
      0% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0); }
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .partner-item {
        flex-direction: column;
        text-align: center;
      }

      .partner-logo {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .partner-description {
        text-align: center;
      }
    }

    /* ==== CONTACT ==== */
 /* Contact Section */
    .contact-section {
      position: relative;
      background: url('https://images.unsplash.com/photo-1525182008055-f88b95ff7980?auto=format&fit=crop&w=1600&q=80') 
        no-repeat center center/cover;
      padding: 100px 20px;
      color: #fff;
      text-align: center;
    }

    /* Overlay */
    .contact-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 1;
    }

    .contact-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      margin: auto;
      background: rgba(255, 255, 255, 0.1);
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    }

    .contact-content h2 {
      color:  #fc7806;
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .contact-content p {
      font-size: 1.1em;
      color: #ddd;
      margin-bottom: 40px;
    }

    /* Contact form */
    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    input, textarea {
      padding: 12px 15px;
      border: none;
      border-radius: 6px;
      font-size: 1em;
      outline: none;
    }

    input:focus, textarea:focus {
      box-shadow: 0 0 5px  #fc7806;
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    button {
      background-color: #fc7806;
      color: #fff;
      padding: 12px 20px;
      font-size: 1em;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover {
      background-color:  #fc7806;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-content {
        padding: 25px;
      }

      .contact-content h2 {
        font-size: 2em;
      }
    }
  
      /* ==== FOOTER ==== */
    /* Footer Section */
       footer {
      position: relative;
      background: url('https://images.unsplash.com/photo-1525182008055-f88b95ff7980?auto=format&fit=crop&w=1600&q=80') 
        no-repeat center center/cover;
      color: #fff;
      padding: 60px 20px 20px;
    }

    /* Overlay */
    footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 1;
    }

    .footer-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1100px;
      margin: auto;
    }

    .footer-box {
      flex: 1 1 250px;
      margin: 20px;
    }

    .footer-box h3 {
      color:  #fc7806;
      margin-bottom: 15px;
      font-size: 1.3em;
    }

    .footer-box p, .footer-box a {
      color: #ddd;
      font-size: 0.95em;
      line-height: 1.6;
      text-decoration: none;
    }

    .footer-box a:hover {
      color:  #fc7806;
    }

    /* Social media icons */
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }

    .social-icons a {
      background:  #fc7806;
      color: #fff;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: background 0.3s, transform 0.3s;
    }

    .social-icons a:hover {
      background: #fff;
      color:  #fc7806;
      transform: scale(1.1);
    }

    /* Footer bottom */
    .footer-bottom {
      position: relative;
      z-index: 2;
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.2);
      margin-top: 30px;
      font-size: 0.9em;
      color: #ccc;
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
        text-align: center;
      }

      .footer-box {
        margin: 15px 0;
      }

      .social-icons {
        justify-content: center;
      }
    }
    /* ==== SCROLL TOP BUTTON ==== */
    #scrollTopBtn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color:  #fc7806;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      cursor: pointer;
      font-size: 22px;
      display: none;
      transition: background 0.3s ease,;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    #scrollTopBtn:hover {
      background-color: #1926b2;
        transform: translateY(-5px);
    }

    
    /* ==== ANIMATIONS ==== */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideDown {
      from { transform: translateY(-30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

     /* Responsive text size */
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2em;
      }
      .hero-content p {
        font-size: 1em;
      }
    }

    /* ==== RESPONSIVE ==== */
    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        display: none;
      }

      nav ul.show {
        display: block;
      }

      .menu-toggle {
        display: block;
      }

      .hero h2 {
        font-size: 34px;
      }
    }
  <title>Check Your Area</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f7f7f7;
    }

    /* Section styling */
    section.check-area {
      background-color:  #fc7806;
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      position: relative;
    }

  

   

    section.check-area h2 {
      position: relative;
      z-index: 2;
      font-size: 2.5em;
      margin-bottom: 30px;
      font-family: 'Times New Roman', Times, serif;
    }

    section.check-area button {
      position: relative;
      z-index: 2;
      padding: 15px 40px;
      font-size: 1.5em;
      border: none;
      border-radius: 30px;
      background-color:#1926b2;
      color: #fff;
      cursor: pointer;
      transition: background 0.3s;
    }

    section.check-area button:hover {
      background-color:  #fc7806;
    }

    /* Popup (modal) styles */
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .modal-content {
      background: #fff;
      color: #333;
      padding: 30px;
      border-radius: 12px;
      width: 90%;
      max-width: 500px;
      text-align: left;
      position: relative;
      animation: fadeIn 0.3s ease;
    }

    .modal-content h3 {
      margin-top: 0;
      color:  #fc7806;
      text-align: center;
    }

    .close-btn {
      position: absolute;
      top: 15px; right: 15px;
      background: none;
      border: none;
      font-size: 1.5em;
      cursor: pointer;
      color: #666;
    }

    ul.areas-list {
      list-style: none;
      padding: 0;
    }

    ul.areas-list li {
      padding: 8px 0;
      border-bottom: 1px solid #ddd;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
  