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

    body {
      font-family: "Poppins", sans-serif;
      color: #333;
      background: #f9f9f9;
    }

    /* NAVBAR */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 50px;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav .logo img {
      height: 40px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    nav .logo img:hover {
      transform: scale(1.1);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
      margin-left: auto;
    }

    nav ul li {
      cursor: pointer;
      position: relative;
    }

    nav ul li:hover {
      color: #e60000;
    }

    /* new one css nav bar animation */
    nav ul li {
      cursor: pointer;
      position: relative;
      padding: 5px 0;
    }

    nav ul li::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0;
      height: 2px;
      background: #e60000;
      transition: width 0.3s ease;
    }

    nav ul li:hover::after {
      width: 100%;
    }

    nav ul li ul {
      position: absolute;
      top: 40px;
      left: 0;
      background: #fff;
      padding: 10px 0;
      list-style: none;
      border-radius: 6px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition: all 0.3s ease;
    }

    nav ul li:hover ul {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    nav ul li ul li {
      padding: 5px 5px;
      white-space: nowrap;
      text-align: left;
    }

    nav ul li ul li:hover {
      background: #f6f6f6;
      color: #e60000;
    }

    nav {
      animation: slideDown 0.6s ease;
    }

    @keyframes slideDown {
      from {
        transform: translateY(-80px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* nav.sticky {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: 0.3s ease;
    } */

    ul li a {
      text-decoration: none;
      /* removes underline */
      color: inherit;
      /* keeps the text color same as the parent */
    }

    /* --- BUTTON --- */
    .nav-btn {
      background: #e60000;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .nav-btn:hover {
      background: #913a0f;
      transform: scale(1.05);
    }



    /* Hero Background (covers 1/4 of form height visually) */
    .hero-bg {
      background: url('../image/mainbg3.webp') no-repeat center center/cover;
      height: 400px;
      /* Adjust height for 1/4 of the visible form area */
      width: 100%;
      position: relative;
    }

    /* Contact Section */
    .contact-section {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      margin-top: -150px;
      /* Pulls the form up over the image */
      padding: 0 20px 100px;
      position: relative;
      z-index: 10;
    }

    .contact-container {
      background: #fff;
      width: 100%;
      max-width: 800px;
      padding: 50px;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    .contact-container h1 {
      color: #f04b4b;
      font-size: 2rem;
      margin-bottom: 10px;
      text-align: center;
    }

    .contact-container p {
      text-align: center;
      color: #666;
      margin-bottom: 30px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: none;
      border-color: #2e7d32;
      box-shadow: 0 0 6px rgba(46, 125, 50, 0.3);
    }

    .btn {
      display: block;
      width: 100%;
      padding: 14px;
      background: #f04b4b;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      background: #e20606;
    }

    /* Footer */


    /* Responsive */
    @media (max-width: 768px) {
      .contact-container {
        padding: 30px;
      }

      .hero-bg {
        height: 200px;
      }

      .contact-section {
        margin-top: -100px;
      }
    }


    /* CONTACT SECTION */
    /* =========================
   CONTACT INFO SECTION
========================= */
    .contact-info-section {
      background: #fff;
      border-top: 1px solid #f1f1f1;
      padding: 40px 20px;
    }

    .contact-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 30px;
    }

    /* LEFT SIDE */
    .contact-left {
      flex: 1;
      min-width: 250px;
    }

    .contact-logo {
      width: 200px;
      margin-bottom: 10px;
    }

    .tagline {
      /* font-weight: 600; */
      font-size: 16px;
      color: #111;
    }

    /* CENTER INFO */
    .contact-center {
      flex: 2;
      min-width: 300px;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 15px;
    }

    .info-icon {
      width: 22px;
      height: 22px;
      margin-top: 4px;
      object-fit: contain;
    }

    .info-item p {
      font-size: 16px;
      color: #111;
      margin: 0;
      line-height: 1.6;
    }

    /* CONTACT DETAILS (New Wrapper) */
    .contact-details {
      margin-top: 15px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-top: 1px solid #eee;
      padding-top: 10px;
    }

    /* RIGHT SIDE ICONS */
    .contact-right {
      display: flex;
      gap: 40px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }

    .icon-card {
      text-align: center;
      transition: transform 0.3s ease;
    }

    .icon-card:hover {
      transform: translateY(-5px);
    }

    .icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .icon.blue {
      background: #00AEEF;
    }

    .icon.orange {
      background: #F47C20;
    }

    .icon-img {
      width: 55%;
      height: 55%;
      object-fit: contain;
    }

    .icon-card p {
      font-weight: 600;
      font-size: 16px;
      color: #111;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 992px) {
      .contact-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .contact-center,
      .contact-left,
      .contact-right {
        text-align: center;
      }

      .info-item {
        justify-content: center;
      }

      .contact-details {
        align-items: center;
      }
    }

    /* ==============================
       FOOTER
    ============================== */
    footer {
      background-color: #121111;
      color: #cbd5e1;
      padding: 36px 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 18px;
      max-width: 1200px;
      margin: 0 auto;
    }

    footer a,
    footer h4,
    footer p {
      text-align: left;
      color: #cbd5e1;
      display: block;
      margin: 6px 0;
    }

    footer a {
      text-decoration: none;
    }

    footer h4 {
      margin-bottom: 18px;
      /* creates space below the heading */
    }

    footer a:hover {
      color: #f04b4b;
    }

    hr {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      margin-top: 20px;
    }

    @media (max-width: 600px) {
      footer {
        text-align: center;
      }

      footer a,
      footer h4,
      footer p {
        text-align: center;
      }
    }

    hr {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      margin-top: 20px;
      /* space above the line */

      /* translucent white */
    }

    #About a {
      text-decoration: none;
    }



    /* 
    mobile version */


    /* ===============================
   MOBILE NAVIGATION (356px – 900px)
   =============================== */
    @media (min-width: 356px) and (max-width: 900px) {
      nav {
        padding: 15px 25px;
      }

      /* Show hamburger icon */
      .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
      }

      .hamburger span {
        width: 25px;
        height: 3px;
        background: #000;
        border-radius: 3px;
        transition: 0.3s ease;
      }

      /* Hamburger animation (X shape) */
      .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
      }

      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
      }

      /* Hide desktop nav menu initially */
      nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        /* height: calc(100vh - 65px); */
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(6px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* center li horizontally */
        gap: 30px;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
      }

      /* When menu is shown */
      nav ul.show {
        right: 0;
      }

              .nav-btn {
        width: 90%;
        margin: 10px auto;
        display: block;
    }

      nav ul li {
        font-size: 18px;
        text-align: center;
        width: 100%;
      }

      nav ul li:hover {
        color: #e60000;
      }

      /* Remove underline animation on mobile */
      nav ul li::after {
        display: none;
      }
    }

    /* For smaller phones (below 356px) */
    @media (max-width: 355px) {
      .hamburger span {
        width: 22px;
        height: 2.5px;
      }

      nav ul li {
        font-size: 16px;
      }
    }
  /* --------------------------------------- */


/* Basic nav layout */
nav {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    position: sticky;
}

.logo img {
    height: 40px;
}

/* Nav list */
.nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Container relative for proper dropdown placement */
.dropdown {
  position: relative;
}

/* Button */
.dropbtn {
  padding: 10px 16px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

/* Dropdown content */
.dropdown-content {
  position: absolute; /* critical for accuracy */
  top: 100%;          /* directly under the button */
  left: 0;            /* align to left of parent */
  min-width: 200px;   /* adjust width as needed */
  margin-top: 6px;    /* small gap below button */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  padding: 4px 0;
  display: none;
  z-index: 1000;
}

/* Dropdown links */
.dropdown-content li a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #111;
  white-space: nowrap; /* prevents text wrap */
}

/* Hover effect */
.dropdown-content li a:hover {
  background: #f2f2f2;
}

/* Show on hover desktop */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .dropdown-content {
    position: static; /* part of flow */
    padding-left: 12px;
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropbtn::after { content: "▾"; float: right; }
}


/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    margin: 4px 0;
    background: #000;
    border-radius: 2px;
}

/* Mobile styles */
@media (max-width:768px) {
    .hamburger {
        display: block;
        margin-left: auto;
    }

    .nav-list {
        position: absolute;
        top: 64px;
        /* below nav */
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        padding: 10px 8px;
        display: none;
        z-index: 1500;
        border-top: 1px solid #eaeaea;
    }

    .nav-list.show {
        display: flex;
    }

    /* Make each nav item full-width and tappable */
    .nav-list>li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list>li>a,
    .nav-list>li>button,
    .dropbtn {
        display: block;
        width: 100%;
        padding: 12px 16px;
        box-sizing: border-box;
        text-align: left;
    }

    /* Mobile dropdown content becomes part of flow */
    .dropdown-content {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding-left: 8px;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .nav-cta {
        padding: 12px 16px;
    }
}