


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

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow-x: hidden;
}


a {
  text-decoration: none;
  color: inherit;
}



    /* ======= Navbar ======= */
    .home_head_navbar {
      width: 100%;
      /* background: #f7b400; */
          background: url('../images/yellow-bg1.png') no-repeat center center/cover;
      color: #fff;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .home_head_container {
      width: 90%;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 0;
    }

    .home_head_logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 1px;
    }

    .home_head_nav ul {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    .home_head_nav ul li a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      font-size: 1rem;
      transition: color 0.3s ease;
    }

    .home_head_nav ul li a:hover,
    .home_head_nav ul li a.active {
      color: #1b2c71;
    }

    /* ======= Hamburger Icon ======= */
    .home_head_toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .home_head_toggle span {
      width: 25px;
      height: 3px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* Toggle Animation */
    .home_head_toggle.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .home_head_toggle.open span:nth-child(2) {
      opacity: 0;
    }
    .home_head_toggle.open span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ======= Responsive Navbar ======= */
    @media (max-width: 992px) {
      .home_head_toggle {
        display: flex;
      }

      .home_head_nav {
        position: absolute;
        top: 65px;
        right: 0;
        width: 100%;
        background: #f7b400;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
      }

      .home_head_nav.active {
        display: flex;
        animation: slideDown 0.4s ease forwards;
      }

      .home_head_nav ul {
        flex-direction: column;
        gap: 15px;
      }

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



/* ===== Hero Section ===== */

.home_head_hero {
  position: relative;
  background: url('../images/yellow-bg.png') no-repeat center center/cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 150px 5% 80px;
  flex-wrap: wrap;
  overflow: hidden;
}

.home_head_content {
  flex: 1 1 450px;
  position: relative;
  z-index: 2;
}

.home_head_title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.home_head_subtext {
  color: #fff8e1;
  font-size: 1.1rem;
  margin: 20px 0;
  max-width: 420px;
  line-height: 1.6;
}

.home_head_btn {
  display: inline-block;
  background: #1b47ff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  position: relative;
  z-index: 2;
}

.home_head_btn:hover {
  background: #0f32b3;
}

/* ===== Product Images ===== */
.home_head_images {
  position: relative;
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  z-index: 2;
}

.home_head_img {
  width: 500px;
  transition: transform 0.4s ease;
}

.home_head_img:hover {
  transform: scale(1.05);
}

/* ===== Decorative Leaves ===== */
.home_head_leaf {
  position: absolute;
  opacity: 0.9;
  pointer-events: none;
}

/* Leaf 1: Above the title (left side) */
.home_head_leaf1 {
  top: -40px;
  left: -5%;
  width: 90px;
  transform: rotate(-10deg);
  z-index: 1;
}

/* Leaf 2: Below the button, half right side */
.home_head_leaf2 {
  bottom: -30px;
  right: 1%;
  width: 100px;
  transform: rotate(25deg);
  z-index: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {


  .home_head_content {
  flex:inherit;
  position: relative;
  z-index: 2;
}


  .home_head_hero {
    flex-direction: inherit;
    text-align: center;
        justify-content: center;
        align-items: center;
        }

  .home_head_images {
    margin-top: 50px;
  }

  .home_head_leaf1 {
    top: -30px;
    left: 20%;
    width: 70px;
  }

  .home_head_leaf2 {
    bottom: -20px;
    right: 10%;
    width: 80px;
  }
}

@media (max-width: 600px) {
  .home_head_title {
    font-size: 2rem;
  }

  .home_head_subtext {
    font-size: 1rem;
  }

  .home_head_btn {
    padding: 10px 22px;
  }

  .home_head_img {
    width: 350px;
  }

  .home_head_leaf1 {
    top: -20px;
    left: 15%;
    width: 60px;
  }

  .home_head_leaf2 {
    bottom: -15px;
    right: 5%;
    width: 70px;
  }
}


/* =============================================== */


/* Section Wrapper */
.home_blend_section {
  width: 90%;
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
}

/* Heading */
.home_blend_heading {
  font-size: 2rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 60px;
}

/* Container */
.home_blend_container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Card */
.home_blend_card {
  background-color: #1b2c71;
  border-radius: 16px;
  padding: 70px 25px 40px;
  width: 30%;
    height: 360px;
  min-width: 280px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home_blend_card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.25);
}

/* Image Box - positioned above card */
.home_blend_img_box {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  z-index: 2;
}

.home_blend_img {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}

.home_blend_card:hover .home_blend_img {
  transform: scale(1.05);
}

/* Card Text Content */
.home_blend_content {
  /* margin-top: 50px; */
    position: absolute;
    bottom: 15px;

}

.home_blend_title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.home_blend_text {
  font-size: 0.95rem;
  color: #f1f1f1;
  line-height: 1.6;
}

/* View More Link */
.home_blend_view {
  margin-top: 60px;
}

.home_blend_link {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.home_blend_link:hover {
  border-color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .home_blend_card {
    width: 45%;
  }
  .home_blend_img {
    width: 130px;
  }
}

@media (max-width: 768px) {
  .home_blend_heading {
    font-size: 1.8rem;
  }

  .home_blend_card {
    width: 100%;
    height: 300px;
  }

  .home_blend_container {
    gap: 100px;
  }

  .home_blend_img_box {
    top: -50px;
  }

  .home_blend_img {
    /* width: 150px; */
  }
}

@media (max-width: 480px) {
  .home_blend_section {
    width: 95%;
    margin: 60px auto;
  }

  .home_blend_heading {
    font-size: 1.6rem;
  }

  .home_blend_text {
    font-size: 0.9rem;
  }

  .home_blend_img_box {
    top: -40px;
  }

  .home_blend_img {
    width: 100px;
  }
}


/* =============================================== */


    /* ===== Section Wrapper ===== */
    .home_promise_section {
      text-align: center;
      padding: 70px 20px;
      background: #fffaf5;
    }

    .home_promise_title {
      font-size: 2rem;
      font-weight: 700;
      color: #1c1c1c;
      margin-bottom: 10px;
    }

    .home_promise_subtitle {
      font-size: 1rem;
      color: #555;
      max-width: 700px;
      margin: 0 auto 50px;
      line-height: 1.6;
    }

    /* ===== Promise Boxes Container ===== */
    .home_promise_boxes {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      justify-content: center;
      align-items: start;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ===== Single Box ===== */
    .home_promise_box {
      background: #f5a623;
      padding: 40px 20px;
      border-radius: 8px;
      color: white;
      position: relative;
      overflow: hidden;
      min-height: 180px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Brush Effect Background */
    .home_promise_box::before {
      content: "";
      /* background: url('https://i.imgur.com/1zBfwJ3.png') center/cover no-repeat; */
      position: absolute;
      inset: 0;
      opacity: 1;
      z-index: 0;
    }

    .home_promise_icon {
      font-size: 2.2rem;
      margin-bottom: 15px;
      z-index: 1;
      position: relative;
    }

    .home_promise_text {
      font-size: 1rem;
      font-weight: 500;
      z-index: 1;
      position: relative;
    }

    /* ===== Hover Effect ===== */
    .home_promise_box:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    /* ===== Responsive Design ===== */
    @media (max-width: 992px) {
      .home_promise_boxes {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .home_promise_boxes {
        grid-template-columns: 1fr;
      }

      .home_promise_title {
        font-size: 1.6rem;
      }

      .home_promise_subtitle {
        font-size: 0.95rem;
      }
    }



/* =============================================== */



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

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

/* ===== About Us Section ===== */
.home_aboutus_section {
  background: linear-gradient(90deg, #f7b400, #f59e0b);
  padding: 80px 5%;
}

.home_aboutus_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left: Text Content */
.home_aboutus_text {
  flex: 1 1 500px;
  color: #fff;
}

.home_aboutus_heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.home_aboutus_intro {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
}

.home_aboutus_para {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #fffbe6;
}

/* Right: Image */
.home_aboutus_image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home_aboutus_img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  /* box-shadow: 0 8px 20px rgba(0,0,0,0.3); */
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .home_aboutus_container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .home_aboutus_image {
    margin-bottom: 40px;
  }

  .home_aboutus_heading {
    font-size: 1.8rem;
  }

  .home_aboutus_intro {
    font-size: 1.05rem;
  }

  .home_aboutus_para {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .home_aboutus_section {
    padding: 60px 8%;
  }

  .home_aboutus_heading {
    font-size: 1.6rem;
  }

  .home_aboutus_img {
    max-width: 100%;
    border-radius: 10px;
  }
}




/* =============================================== */


 /* ===== Section Wrapper ===== */
    .get_in_touch_section {
      position: relative;
      background-color: #fdf8f3;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 80px 20px;
      overflow: hidden;
    }

    /* ===== Background Image ===== */
    .get_in_touch_bg {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 1200px;
      z-index: 1;
      opacity: 0.9;
    }

    .get_in_touch_bg img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* ===== Contact Card ===== */
    .get_in_touch_card {
      position: relative;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      padding: 50px;
      max-width: 600px;
      width: 100%;
      z-index: 2;
      text-align: center;
    }

    .get_in_touch_card h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #222;
      margin-bottom: 30px;
    }

    /* ===== Form Layout ===== */
    .get_in_touch_form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .get_in_touch_row {
      display: flex;
      gap: 15px;
    }

    .get_in_touch_input {
      flex: 1;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s ease;
    }

    .get_in_touch_input:focus,
    .get_in_touch_textarea:focus {
      border-color: #f5a623;
      box-shadow: 0 0 5px rgba(245, 166, 35, 0.3);
    }

    .get_in_touch_textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 1rem;
      height: 150px;
      resize: none;
    }

    /* ===== Submit Button ===== */
    .get_in_touch_button {
      background-color: #1e3a8a;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 12px 25px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
      align-self: flex-end;
    }

    .get_in_touch_button:hover {
      background-color: #163273;
    }

    /* ===== Responsive Design ===== */
    @media (max-width: 768px) {
      .get_in_touch_card {
        padding: 40px 25px;
      }

      .get_in_touch_row {
        flex-direction: column;
      }

      .get_in_touch_card h2 {
        font-size: 1.7rem;
      }
    }

    @media (max-width: 480px) {
      .get_in_touch_card {
        padding: 30px 20px;
      }

      .get_in_touch_button {
        width: 100%;
      }
    }
 



/* =============================================== */



.footer_container {
  background-color: #243c8f;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer_left {
  flex: 1;
  min-width: 250px;
}

.footer_title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer_address {
  font-size: 14px;
  line-height: 1.6;
}

.footer_contact,
.footer_email {
  margin: 8px 0;
  font-size: 14px;
}

.footer_contact i,
.footer_email i {
  margin-right: 8px;
  color: #fff;
}

.footer_divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  height: auto;
  align-self: stretch;
}

.footer_right {
  flex: 2;
  min-width: 250px;
}

.footer_services_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer_services_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer_services_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_services_list li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #fff;
}



    .footer_services_list ul li a:hover,
    .footer_services_list ul li a.active {
      color: #f7b400;
    }




/* Responsive Design */
@media (max-width: 768px) {
  .footer_content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer_divider {
    display: none;
  }

  .footer_services_list {
    flex-direction: column;
  }

  .footer_services_list ul {
    width: 100%;
  }

  .footer_title {
    font-size: 24px;
  }
}


/* =========================product page codes =========================== */





/* Section Container */
.product_sec_container {
  padding: 60px 20px;
  width: 90%;
  margin:80px auto;
}

/* Header */
.product_sec_header {
  margin-bottom: 50px;
}

.product_sec_title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product_sec_subtitle {
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* Product Item Layout */
.product_sec_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.product_sec_item.reverse {
  flex-direction: row-reverse;
}

/* Text */
.product_sec_text {
  flex: 1;
  min-width: 260px;
  padding: 20px;
}

.product_sec_name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product_sec_desc {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  max-width: 400px;
}

/* Image and Background */
.product_sec_image_wrapper {
  position: relative;
  flex: 1;
  min-width: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.product_sec_bg {
  position: absolute;
  width: 200px;
  height: 60px;
  /* background-color: #f4a017; */
  /* transform: rotate(-5deg); */
  z-index: 1;
}

.product_sec_image {
  position: relative;
  width: 450px;
  z-index: 2;
  filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.15));
}

/* Responsive */
@media (max-width: 992px) {
  .product_sec_container {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .product_sec_item {
    flex-direction: column;
    text-align: center;
  }

  .product_sec_item.reverse {
    flex-direction: column;
  }

  .product_sec_text {
    max-width: 100%;
    text-align: center;
  }

  .product_sec_desc {
    max-width: 100%;
  }

  .product_sec_image_wrapper {
    margin-top: 25px;
  }

  .product_sec_bg {
    width: 160px;
    height: 50px;
  }

  .product_sec_image {
    width: 300px;
  }
}

/* =============================================== */











/* Floating Contact Buttons */
.floating_contact_ {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating_btn_ {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.floating_btn_:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* Individual Button Colors */
.whatsapp_ {
  background-color: #25d366;
}

.call_ {
  background-color: #007bff;
}

.email_ {
  background-color: #ff9800;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .floating_contact_ {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  .floating_btn_ {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
