* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #f9f9f9;
      color: #222;
    }
    .call-icon{
  position: fixed;
  bottom:100px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size:30px;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.call-icon:hover {
  background-color: #1ebe5b;
  transform: scale(1.1);
}


    /* Navbar */
    .navbar {
      display: flex;
      justify-content:space-between;
      align-items: center;
      background:black;
      color:white;
      padding: 10px 30px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo img {
      height:70px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-left:50px;
    }

    .right-icons {
      display: flex;
      gap:20px;
      align-items: center;
      font-weight: 500;
      font-size:20px;
      padding-right:100px;
    }

    .right-icons div {
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }

    .right-icons img {
      width: 24px;
      height: 24px;
    }

    /* Breadcrumb */
    .breadcrumb {
      background: #fff;
      padding: 15px 30px;
      font-size: 15px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .breadcrumb a {
      text-decoration: none;
      color: #d60000;
      font-weight: 500;
    }

    /* Container */
    .container {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 40px;
      max-width: 1100px;
      margin: 50px auto;
      background: #fff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }


.right-icons{
  padding-left:20px;
}

    .right {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .right h2 {
      font-size: 26px;
      margin-bottom: 10px;
      color: #111;
    }

    .right p {
      font-size: 16px;
      color: #555;
      margin-bottom: 25px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    input, select {
      padding: 12px;
      font-size: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      outline: none;
      transition: border 0.3s;
    }

    input:focus, select:focus {
      border-color: #d60000;
    }

    button {
      background:black;
      color: #fff;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      padding: 12px;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover {
      background: #b50000;
    }

    /* WhatsApp Button */
    .whatsapp {
  position: fixed;
  bottom:20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size:30px;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .whatsapp:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    }

    /* Footer */
    footer {
      background: #111;
      color: #fff;
      text-align: center;
      padding: 20px 15px;
      font-size: 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    footer a {
      color:white;
      text-decoration: none;
      font-weight: 500;
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .container {
        flex-direction: column;
        padding: 25px;
      }
    

      .left {
        
        
        height:100px; 
      }

      .right h2 {
        font-size: 22px;
      }

      form input, form select, form button {
        font-size: 14px;
      }

      .menu {
        position: absolute;
        top:75px;
        left: 0;
        width:100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
      }

      .menu.active {
        display: flex;
      }

      .right-icons {
        display: none;
      }

      .hamburger {
        display: flex;
      }
     
    }

    @media (max-width: 600px) {
      .container {
        margin: 20px;
      }

      .breadcrumb {
        font-size: 14px;
        padding: 10px 20px;
      }

      .whatsapp {
        font-size: 20px;
        padding: 12px;
      }

      footer {
        font-size: 13px;
      }
     
    }
    @media (max-width: 480px) {
  .floating-icon {
    font-size: 20px;
    padding: 12px;
    bottom:20px;
    right: 15px;
  }

  .whatsapp {
    bottom:30px;
    font-size:35px;

  }

  }
     .left {
  flex: 1 1 450px;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

/* Image styling */
.left img {
  width: 100%;
  height: auto;
  display: block;        /* ❗ removes bottom gap */
  object-fit: cover;     /* fills container properly */
  border-radius: 10px;
  margin: 0;
  padding: 0;
}

/* ✅ Mobile Responsive */
@media (max-width: 480px) {
  .left {
    width: 100%;
    min-height: auto;
    border-radius: 0;
  }
  .left {
  flex:150px;
  /* min-height:50px; */
  border-radius: 10px;
  overflow: hidden;
}


  .left img {
    width: 100%;
    height: auto;
    display: block;      /* removes white gap below image */
    object-fit: contain; /* keep full image visible */
    margin:0;
    padding: 0;
  }

}
/* Basic navbar styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color:black;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Logo */
.logo img {
  height: 50px; /* desktop me height */
  width: auto;
}

/* Right icons */
.right-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

/* Phone number styling */
.phone-number {
  font-size: 16px;
  font-weight: bold;
}

/* --------------------- */
/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    /* display:flex; */

    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .logo img {
    height:50px;
   
  }

  .right-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    font-size:20px;
    margin-left:20px;
    gap: 5px;
  }

  .phone-number {
    font-size:24px;
  }
}
