/* HEADER PAGE CSS START================================================================================================= */

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #e9ebec, #c8e4f3, #f9e9e9);
  padding: 10px 5%;
  width: 95%;
  position: fixed;
  top: 0;
  left: 0px;
  z-index: 1000;
  height: 75px; /* Navbar ची exact height */
  margin-right: 40px;
}

.hero-section {
  margin-top: 50px; /* Navbar height मुळे gap द्या */
  padding: 0px;
}



/* Logo Styling */
.logo img {
  height: 50px; /* Adjust height as needed */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Fix for missing logo issue */
.logo {
  margin-left: 20px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  position: relative;
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  padding: 10px 15px;
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Hover & Active Link Effects */
.nav-links a:hover {
  color: #007bff;
  transform: translateY(-2px);
}

.nav-links a.active {
  color: #0056b3;
  border-bottom: 2px solid #0056b3;
}


/* Dropdown Menu */
/* Ensure dropdown is scrollable */
.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(230, 230, 230, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  top: 100%;
  left: 0;
  z-index: 1000;
  border-radius: 8px;
  padding: 8px 0;
  transition: all 0.3s ease-in-out;
  max-height: 300px; /* Set max height */
  overflow-y: auto; /* Enable vertical scrolling */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Scrollbar styling (optional) */
.dropdown-content::-webkit-scrollbar {
  width: 6px;
}

/* .dropdown-content::-webkit-scrollbar-track {
  background: #f1f1f1;
} */

/* .dropdown-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
} */

/* .dropdown-content::-webkit-scrollbar-thumb:hover {
  background: #555;
} */


.dropdown-content a {
  color: #222;
  padding: 12px 18px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-weight: 600px;
  font-family: 'Poppins', sans-serif;
  border-radius: 6px;
  transition: background 0.3s ease-in-out, transform 0.2s;
}

.dropdown-content a:hover {
  background: #fff9f94d;
  color: #007bff;
  transform: scale(1.05);
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(5px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  padding: 15px;
  color: #000;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .nav-links {
      gap: 10px;
  }

  .nav-links a {
      font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .menu-toggle {
      display: block;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background: rgba(230, 230, 230, 0.767);
      backdrop-filter: blur(10px);
      box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
      text-align: center;
      padding: 10px 0;
      
  }

  .nav-links.active {
      display: flex;
  }

  .nav-links li {
      margin: 10px 0;
  }

  .dropdown-content {
      display: none;
      /* background: rgba(0, 0, 0, 0.9); */
      position: relative;
  }

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

  .dropdown .dropbtn {
      display: block;
      width: 100%;
      text-align: center;
  }
}


/* HEADER PAGE CSS END================================================================================================= */

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ✅ Contact Section Full Width Background with Smooth Blend */
.contact-section {
  display: flex;
  justify-content: center;
  padding: 30px;
  /* background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.9)
    ),
    url("../Assests/map.jpeg") no-repeat 85% 5%;
  background-size: 55%; 
  position: relative; */
}

/* <!-- CSS for smooth UI --> */

.map-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: 450px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* हलका shadow */
    top: 50px;
}

/* Google Map iframe */
.map-container iframe {
    width: 100%;
    height: 100%;
    position: relative;
    border: none;
    border-radius: 15px;
    filter: brightness(0.95) contrast(1.05);
}

/* हलकासा blending effect */
.map-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* हलकासा पांढरा blending effect */
    border-radius: 15px;
}



/* Map Background */
.map-container {
    
    position: relative;
    width: 50%;
    height: 400px; /* Adjust as needed */
    overflow: hidden;
}

/* Clickable Overlay (Transparent Click Area) */
.map-overlay {
  margin-top: 90px;
   padding-top: 90px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0); /* Transparent Clickable Layer */
}

/* Map Styling */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* Prevent direct interactions */
}



/* Contact Info Section */
.contact-info {
  flex: 1;
  padding-right: 30px;
  position: relative;
  top: 100px; /* Khali shift kela */
}

.contact-info h1 {
  font-size: 30px;
  font-weight: 700;
  color: #515155;
  font-family: "Poppins", sans-serif; /* ✅ Poppins font lavla */
  margin-bottom: 2px;
  margin-left: 80px;
  position: relative;
  top: 120px;
}

.contact-info p {
  font-size: 14px;
  font-weight: bold;
  color: #555555;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; /* ✅ Roboto font lavla */
  margin-bottom: 0;
  line-height: 1.4;
  margin-left: 80px;
  position: relative;
  top: 105px;
}


/* Contact Form Section */
.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 480px; /* Width mothi keli */
  height: 400px; /* ✅ HEIGHT add keli */
  margin-left: 100px; /* LEFT margin kami kela (thoda right la aanla) */
  margin-right: 100px; /* Right margin fix kela */
  position: relative;
  top: 150px; /* ✅ Box thoda khali aanla */
  text-align: center; /* Center madhye text align rahu dila */
}
.contact-form textarea {
  width: calc(100% - 20px); /* Width adjust kela */
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 15px; /* Gap maintain kela */
  resize: vertical; /* Vertical resize allow kela */
  font-family: inherit;
  background-color: #faf6f6;
}

/* Form Inputs */
.contact-form input,
.contact-form select {
  width: calc(100% - 20px);
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  background-color: #faf6f6;
}

/* Phone Input */
.phone-input {
  display: flex;
  gap: 10px;
}

.phone-input select {
  width: 30%;
}

.phone-input input {
  width: 70%;
}

/* Terms + Submit Button in Same Row */
.terms-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

/* Terms Checkbox */
.terms {
  display: flex;
  align-items: center;
  gap: 5px;
}

.terms input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0b4b68;
  cursor: pointer;
}

.terms span {
  font-size: 14px;
  color: #555;
}

.terms a {
  color: #0b4b68;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

/* Submit Button */
.contact-form button {
  background-color: #167eaf;
  color: #ffffff;
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #083a52;
}

/* Footer Section */
.footer1 {
  background-color: #0e658dd6;
  /* background-color: #001f3f; */
  color: #fff;
  padding: 40px 60px;
}

/* Footer Content */
.footer-content {
  text-align: left;
  margin-left: 50px;
}

/* h3 (Keep In Touch) */
.footer-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; /* ✅ Poppins font lavla */
}

/* h4 (Headquarters, Email Us) */
.footer-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
  margin-top: 0px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif; /* ✅ Poppins font lavla */
}

/* Paragraph */
.footer-content p {
  font-size: 18px;
  color: #ddd;
  margin: 0;
  line-height: 1.4;
  font-family: "Times New Roman", Times, serif; /* ✅ Lato font lavla */
}

/* Section gap - Headquarters ani Email Us madhil gap same thevla */
.footer-content > h4:not(:first-child) {
  margin-top: 20px; /* Headquarters ani Email Us madhil gap same */
}

/* Social Icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px; /* Social icons la perfect alignment */
}

.social-icons img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* .enquiry bussnes carre  */

.enquiry-container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.enquiry-box {
  align-items: center;
  width: 200px; /* बॉक्सची रुंदी वाढवली */
  height: 240px; /* बॉक्सची उंची वाढवली */
  border: 1px solid #ccc;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  transition: transform 0.3s ease;
  margin-left: 60px;
}

.enquiry-box img {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.enquiry-box p {
  font-size: 13px;
  color: #333;
  margin-bottom: 10px;
}

.enquiry-btn {
  background-color: #0b5031;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 12px;
  transition: background 0.3s ease;
}

.enquiry-btn:hover {
  background-color: #093d25;
}

/* पहिल्या बॉक्सला फिक्स्ड background आणि टेक्स्ट स्टाइल */
.enquiry-box:first-child {
  /* background: linear-gradient(135deg, #387794, #04455bcd, #5c7bc5); */
  background: linear-gradient(135deg, #918424e7, #045b54cd, #045b54cd);

  color: white;
  font-weight: bold;
}

.enquiry-box:first-child .enquiry-title {
  color: white; /* Enquire चा रंग पांढरा केला */
  font-size: 20px; /* टेक्स्ट मोठा केला */
  font-weight: bold;
}
/* ======= Responsive Design for Tablets & Mobiles ======= */

@media screen and (max-width: 1024px) {
  .contact-info {
    padding-right: 0;
    text-align: center;
    top: 50px;
  }

  .contact-info h1,
  .contact-info p {
    margin-left: 0;
    top: 80px;
  }

  .contact-form {
    width: 90%;
    margin: 0 auto;
    top: 80px;
  }

  .enquiry-container {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }

  .enquiry-box {
    margin: 10px;
  }
}

@media screen and (max-width: 768px) {
  /* .navbar {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 15px;
  } */

  .logo {
    margin-left: 0;
    margin-bottom: 10px;
  }

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

  .nav-links {
    width: 100%;
    background: rgba(230, 230, 230, 0.95);
  }

  .contact-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .contact-form {
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    top: 0;
  }

  .map-container {
    margin-top: 50px;
    width: 100%;
    height: 350px;
       padding-top: 9px;

  }

  .contact-info {
    top: 0;
  }

  .contact-info h1,
  .contact-info p {
    text-align: center;
    margin: 0 auto;
    top: 0;
  }

  .footer-content {
    margin-left: 0;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .contact-form {
    padding: 15px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 14px;
  }

  .enquiry-box {
    width: 90%;
    height: auto;
    padding: 20px;
  }

  .enquiry-box img {
    width: 80px;
    height: 80px;
  }

  .enquiry-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .footer-content h3 {
    font-size: 24px;
  }

  .footer-content h4 {
    font-size: 18px;
  }

  .footer-content p {
    font-size: 14px;
  }
}
/* For tablets */
@media screen and (max-width: 1024px) {
  .map-container {
    margin-top: 30px;
    width: 90%;
    height: 380px;
  }
}

/* For small tablets and large phones */
@media screen and (max-width: 768px) {
  .map-container {
    width: 95%;
    height: 320px;
  }
}

/* For mobile phones */
@media screen and (max-width: 480px) {
  .map-container {
    width: 100%;
    margin-top: 60px;
    height: 280px;
    margin: 20px auto;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);

}

.modal-content {
  background: #fff;
  padding: 25px;
  margin: 10% auto;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
  margin-top: 0;
  text-align: center;
  color: #007bff;
}

.modal-content ul {
  padding-left: 20px;
}

.modal-content .close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}







.hero-section {
    margin-top: 50px;
    padding: 0px;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo {
    margin-left: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0;
}

.nav-links li {
    position: relative;
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    padding: 10px 15px;
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.nav-links a:hover {
    color: #007bff;
    transform: translateY(-2px);
}

.nav-links a.active {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
}

/* Dropdown Menu */
.dropdown-content {
    list-style: none; /* ✅ Bullet points removed */
    display: none;
    position: absolute;
    background: rgba(230, 230, 230, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    top: 100%;
    left: 0;
    z-index: 1000;
    border-radius: 8px;
    padding: 8px 0;
    transition: all 0.3s ease-in-out;
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content a {
    color: #222;
    padding: 12px 18px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    border-radius: 6px;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.dropdown-content a:hover {
    background: #fff9f94d;
    color: #007bff;
    transform: scale(1.05);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding: 15px;
    color: #000;
}

/* Tablet View */
@media screen and (max-width: 1024px) {
    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 75px;
        left: 0;
        background: rgba(230, 230, 230, 0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
        text-align: center;
        padding: 10px 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .dropdown-content {
        position: relative;
        background: none;
        box-shadow: none;
        backdrop-filter: none;
        padding: 0;
        max-height: unset;
        list-style: none;
    }

    .dropdown-content a {
        padding: 10px 15px;
        border-radius: 0;
        background: none;
        text-align: center;
    }

    .dropdown-content a:hover {
        background: rgba(0, 123, 255, 0.1);
        transform: none;
    }

    .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: center;
    }

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