 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #faf9f5;
      font-family: "Ubuntu", sans-serif;
    }

    /* =============================NAVBAR=============================== */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      /* fully transparent at start */
      box-shadow: none;
      /* no shadow initially */
      border-bottom: none;
      /* prevent any thin line */
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }

    /* When scrolled */
    nav.scrolled {
      background: white;
      /* white background */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      /* soft shadow only after scroll */
    }



    /* Left section = logo + links */
    .nav-left {
      display: flex;
      align-items: center;
      gap: 30px;
      padding: 0px 5px;
    }

    .mainlogo img {
      height: 62px;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .nav-links li a {
      text-decoration: none;
      color: #333;
      font-size: 16px;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 6px 12px;
      border-radius: 8px;
    }

    .nav-links li a:hover {
      color: #ff8300
    }

    /* Right section = CTA button + phone */
    .nav-right {
      position: relative;
      /* make it the container */
      padding: 7px;
      text-align: center;
      border-radius: 100% 0% 71% 29% / 0% 100% 0% 100%;
      background: rgba(255, 255, 255, 0);
      /* base white */
      color: #333;

      display: flex;
      align-items: center;
      gap: 10px;

      overflow: hidden;
      /* ⬅️ keeps animation INSIDE shape */
      transition: color 0.5s ease;
    }

    /* gradient overlay */
    .nav-right::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      /* start at right edge */
      width: 0%;
      /* hidden initially */
      height: 100%;
      background: #ff8300;
      border-radius: inherit;
      /* match nav-right shape */
      z-index: 0;
      transition: width 1s ease-in-out;
    }

    .nav-right:hover::before {
      width: 100%;
      /* expands fully from right → left */
    }

    .nav-right * {
      position: relative;
      /* keep text/icon above gradient */
      z-index: 1;
    }

    .nav-right .phone {
      color: #000000;
      transition: color 1.5s ease;
    }

    .nav-right:hover .phone {
      color: white;
    }

    .agent-icon img {
      display: block;
      height: 45px;
      margin-left: 35px;
      transition: filter 3s ease;
    }

    .nav-right:hover .agent-icon img {
      filter: brightness(0) invert(1);
      /* turns white */
    }




    /* Mobile toggle */
    .menu-toggle {
      display: none;
      font-size: 28px;
      color: #333;
      cursor: pointer;
    }

    @media (max-width: 900px) {
      .nav-left {
        flex: 1;
        justify-content: space-between;
      }
      .mainlogo img {
        height: 50px;
      }

      /* Mobile Nav - Slide in from right */
      .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;

        position: fixed;
        top: 0;
        right: -100%;
        /* hidden off-screen */
        height: 100vh;
        width: 70%;
        background: #fff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        padding: 60px 30px;

        transition: right 0.4s ease-in-out, opacity 0.4s ease-in-out;
        opacity: 0;
        z-index: 1001;
        /* higher than overlay */
      }

      .nav-links.active {
        right: 0;
        opacity: 1;
      }

      /* Each nav item animation */
      .nav-links li {
        border: none;
        transform: translateX(30px);
        opacity: 0;
        transition: all 0.4s ease;
      }

      .nav-links.active li {
        transform: translateX(0);
        opacity: 1;
      }

      .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
      }

      .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
      }

      .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
      }

      .nav-links li a {
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: #333;
        padding: 12px 0;
        transition: color 0.3s ease;
      }

      .nav-links li a:hover {
        color: #ff8300;
      }

      /* Hamburger stays */
      .menu-toggle {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: #ff8300;
        z-index: 1002;
        /* above overlay */
      }

      /* Overlay behind menu */
      .nav-overlay {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 1000;
      }

      .nav-links.active~.nav-overlay {
        opacity: 1;
        pointer-events: auto;
        /* clickable */
      }

      /* Hide CTA on mobile */
      .nav-right {
        display: none;
      }
    }


    /* ==================================END NAVBAR=============================== */







/* ================ About Heading ==================== */

     .section-aboutheading {
       position: relative;
       display: flex;
       align-items: center;
       justify-content: space-between;
       /* text on left, image on right */
       padding: 200px 10%;
       background: linear-gradient(-45deg, #f69153, #f9fafc, #fff4eb, #e99b4d);
       background-size: 150% 150%;
       animation: gradientMove 5s ease-in-out infinite;
       gap: 40px;
       /* spacing between text and image */
       flex-wrap: wrap;
       /* allows natural wrapping if space is tight */
     }

     /* Gradient animation */
     @keyframes gradientMove {
       0% {
         background-position: 0% 100%;
       }

       50% {
         background-position: 50% 50%;
       }

       100% {
         background-position: 0% 100%;
       }
     }

     .text-content-aboutheading {
       max-width: 800px;
       flex: 1;
       text-align: left;
     }

     .text-content-aboutheading h1 {
       font-size: clamp(1.6rem, 2.5vw, 2.1rem);
       /* fluid scaling */
       color: #0a1f44;
       margin-bottom: 10px;
     }

     .text-content-aboutheading h1 span {
       color: #ff7b00;
       position: relative;
     }

     .text-content-aboutheading p {
       font-size: clamp(0.95rem, 1.2vw, 1.2rem);
       /* fluid scaling */
       color: #0d2b3e;
       margin-bottom: 30px;
       line-height: 1.6;
     }

     /* Button */
     .btn {
       display: inline-block;
       border: none;
       padding: 12px 26px;
       border-radius: 30px;
       color: #fff;
       cursor: pointer;
       font-weight: 600;
       font-size: clamp(0.9rem, 1vw, 1rem);
       /* fluid scaling */
       background: linear-gradient(135deg, #ff7b00, #ff9f40);
       position: relative;
       overflow: hidden;
       text-decoration: none;
       transition: transform 0.35s ease, box-shadow 0.35s ease;
     }

     .btn::after {
       content: "";
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: rgba(255, 255, 255, 0.3);
       transform: skewX(-25deg);
       transition: left 0.6s ease;
     }

     .btn:hover::after {
       left: 200%;
     }

     .btn:hover {
       transform: scale(1.07) translateY(-3px);
       box-shadow: 0 10px 22px rgba(255, 123, 0, 0.35);
     }

     /* Image wrapper with fluid scaling */
     .image-wrapper-aboutheading {
       flex-shrink: 0;
     }

     .image-wrapper-aboutheading img {
       width: clamp(250px, 40vw, 600px);
       /* scales between 250px and 600px */
       height: auto;
       display: block;
       max-width: 83%;
       border-radius: 50%;
       transition: width 0.3s ease;
     }

     /* ================= Responsive ================= */

     /* Tablets */
     @media (max-width: 1024px) {
       .section-aboutheading {
         flex-direction: column;
         align-items: center;
         justify-content: center;
         padding: 120px 8%;
         text-align: center;
       }

       .text-content-aboutheading {
         max-width: 100%;
         text-align: center;
       }

       .image-wrapper-aboutheading img {
         width: clamp(180px, 60vw, 400px);
         margin-top: 30px;
       }
     }

     /* Mobile */
     @media (max-width: 600px) {
       .section-aboutheading {
         padding: 100px 6%;
       }

       .image-wrapper-aboutheading {
         display: none;
         /* hide image only on small screens */
       }

       .text-content-aboutheading h1 {
         font-size: clamp(1.3rem, 5vw, 1.6rem);
       }

       .text-content-aboutheading p {
         font-size: clamp(0.85rem, 4vw, 0.95rem);
       }

       .btn {
         padding: 10px 22px;
         font-size: clamp(0.85rem, 4vw, 0.95rem);
       }
     }


     /* ============== About Heading /END ================= */








/* ===================FORM========================= */

/* Wrapper */
.con-main{
    background: #faf9f5;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}
.contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin: auto;
}

/* Form box */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff7b00;
  box-shadow: 0 0 6px rgba(255, 123, 0, 0.3);
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #e96c00, #ff7b00);
  transform: translateY(-2px);
}

/* Contact info box */
.contact-info {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #444;
}

.contact-info li i {
  font-size: 1.2rem;
  color: #ff7b00;
  margin-right: 12px;
  margin-top: 4px;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff7b00;
  color: #fff;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }
}


/* ===================END FORM========================= */








/* =====================Google-Map========================= */
.g-map {
    display: flex;
    justify-content: center;
}
/* ====================Google Map End ========================== */














/* ====================PARAGRAPH==================== */
    .contact-disclaimer {
      background: #faf9f5;
      padding: 60px 20px;
      display: flex;
      justify-content: center;
      box-sizing: border-box;
    }

    /* ✅ Main container */
    .contact-container {
      display: flex;
      align-items: flex-start;
      gap: 30px;
      max-width: 1150px;
      /* controlled width */
      width: 100%;
      background: #ffffff;
      border: 2px solid #ff8300;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      margin: 0 auto;
      flex-wrap: wrap;
      box-sizing: border-box;
      overflow-wrap: break-word;
      word-break: break-word;
      margin-bottom: 50px;
    }

    .contact-container:hover {
      transform: translateY(-4px);
    }

    /* ✅ Image (left side) */
    .contact-image {
      flex-shrink: 0;
      text-align: center;
    }

    .contact-image img {
      max-width: 220px;
      width: 100%;
      border-radius: 16px;
    }

    /* ✅ Text (right side) */
    .contact-text {
      flex: 1 1 300px;
      min-width: 0;
      /* ✅ critical fix for flex overflow */
      font-size: 0.95rem;
      line-height: 1.6;
      color: #000000;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* 🔹 Fix logo inside text */
    .contact-text img {
      max-width: 180px;
      /* ✅ keeps logo small */
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px;
    }

    .contact-text p {
      margin-bottom: 16px;
    }

    .contact-text .license {
      font-size: 0.85rem;
      margin-top: 10px;
      color: #6b6b6b;
      text-align: center;
    }

    .contact-text .license span {
      color: #e63946;
      font-weight: bold;
      text-align: center;
    }

    /* 🔹 Responsive */
    @media (max-width: 900px) {
      .contact-container {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        max-width: 560px;
      }

      .contact-image img {
        max-width: 180px;
        margin-bottom: 20px;
      }
    }

    @media (max-width: 600px) {
      .contact-disclaimer {
        padding: 40px 15px;
      }

      .contact-container {
        max-width: 95%;
        padding: 20px 15px;
        gap: 15px;
      }

      .contact-text {
        font-size: 0.9rem;
      }

      .contact-text .license {
        font-size: 0.8rem;
      }

      .contact-text img {
        max-width: 140px;
        /* ✅ shrink logo more on small screens */
      }
    }

    /* ================PARAGRAPH-END==================== */









        /* ==========================Footer Base================================== */
    .footer-section {
      background: #000;
      color: #fff;
      padding: 120px 8% 40px;
      position: relative;
      font-family: Arial, sans-serif;
      overflow: visible;
      text-align: left;
    }


    /* Floating Logo */
    .footer-logo-container {
      position: absolute;
      top: -70px;
      /* Push half outside */
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
    }

    .footer-logo-bg {
      background: #fff;
      /* White background */
      border-radius: 20px;
      padding: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 300px;
      height: 140px;
    }

    .footer-logo {
      max-width: 290px;
      height: auto;
    }


    /* Grid Layout */
    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    /* Titles */
    .footer-column h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: #ff8300;
    }

    /* Lists */
    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 12px;
    }

    .footer-column a {
      text-decoration: none;
      color: #ddd;
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: #ff8300;
    }

    /* Form */
    .footer-form input,
    .footer-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border-radius: 8px;
      border: none;
      outline: none;
    }

    .footer-form .form-row {
      display: flex;
      gap: 10px;
    }

    .footer-form button {
      background: #ff8300;
      border: none;
      padding: 12px;
      width: 100%;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      color: white;
      transition: background 0.3s;
    }

    .footer-form button:hover {
      background: #ff7b00;
    }

    /* Socials */
    .footer-socials {
      margin-top: 15px;
    }

    .footer-socials a img {
      width: 35px;
      margin-right: 10px;

      transition: transform 0.3s;
    }

    .footer-socials a img:hover {
      transform: scale(1.1);
    }

    /* Bottom */
    .footer-bottom {
      text-align: center;
      border-top: 1px solid #333;
      padding-top: 20px;
      font-size: 0.85rem;
      margin-bottom: 50px;
      color: #aaa;
    }

    /* Scroll animation */
    .animate-rtl {
      opacity: 0;
      transform: translateX(-80px);
      transition: all 0.8s ease;
    }

    .animate-rtl.show {
      opacity: 1;
      transform: translateX(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-form .form-row {
        flex-direction: column;
      }

      .footer-logo {
        max-width: 200px;
      }
    }