@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
header {
  background-color: #ffffff;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  height: 70px;
  position: relative;
  background-color: #e2e0e0;
}

/* LOGO */
.logo-with-text {
  display: flex;
  align-items: center;
  color: black;
}

.company-logo {
  height: 70px;
  margin-right: 10px;
}

.company-title {
  font-size: 18px;
  color: black;
  font-weight: 600;
}

/* DESKTOP MENU */
.main-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-menu a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
}

.main-menu a:hover {
  color: #ff6600;
}

/* SOCIAL ICONS */
.social-icons i {
  font-size: 22px;
  margin-left: 10px;
  color: black;
  cursor: pointer;
}

/* HAMBURGER */
.hamburger {
  font-size: 32px;
  color: black;
  display: none;
  cursor: pointer;
}

/* DROPDOWN BASE */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: black;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  min-width: 260px;
  z-index: 9999;
  flex-direction: column;
  padding: 10px;
  border-radius: 4px;
  padding-left: 20px;
}

.dropdown-menu a {
  color: white;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ===============================
   MOBILE RESPONSIVE MENU
================================ */
/* ===============================
   MOBILE RESPONSIVE MENU (FIXED)
================================ */
@media (max-width: 768px) {

  /* Hamburger visible */
  .hamburger {
    display: block;
  }

  /* Hide desktop title */
  .company-title {
    display: none;
  }

  /* Slide-in mobile menu */
  .main-menu {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 260px;
    background: #111;
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.3s ease-in-out;
    z-index: 99999;
  }

  /* When menu opens */
  .main-menu.show {
    right: 0;
  }

  /* Each item spacing equal */
  .main-menu a,
  .dropdown-toggle {
    color: white;
    padding: 11px 0;   /* Equal spacing */
    font-size: 18px;
     text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.15); /* subtle divider */
  }

  /* HIDE ARROW ICONS IN MOBILE */
  .dropdown-toggle i {
    display: none !important;
  }

  /* Dropdown items in mobile */
  .dropdown-menu {
    display: none !important;
    background: transparent;
    padding-left: 25px;
  }

  .dropdown-menu a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: none;
  }

  /* Bullet for mobile submenu */
  .dropdown-menu a::before {
    content: "• ";
    color: #ff914d;
  }

  /* Logo smaller */
  .company-logo {
    height: 70px;
    margin-left: -10px;
  }
  .dropdown {
    width: 100%;
    text-align: left !important;
  }
}

/* VERY SMALL PHONES */
@media (max-width: 415px) {
  .company-logo {
    height: 60px;
    margin-left: 10px;
  }
}


/* ==============================
   DESKTOP VIEW (UNCHANGED)
================================ */
@media (min-width: 769px) {

  .top-nav {
    height: 100px;
  }

  .company-logo {
    height: 90px !important;
    margin-left: 20px;
  }

  .dropdown-menu a::before {
    content: "•";
    position: absolute;
    left: 8px;
    font-size: 20px;
  }
}

/* CLOSE BUTTON (ONLY MOBILE) */
.close-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 100000;
}

@media (max-width: 768px) {
  .close-btn {
    display: block;
  }
}




/* Location Section */

.location-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 80px 30px;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
  color: black;
}

.contact-item i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ff6600;
}

.contact-item p {
  margin: 0;
  font-size: 18px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-item a {
  color: black;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ✅ Mobile Responsive */
@media screen and (max-width: 768px) {
  .location-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px;
  }

  .contact-item {
    max-width: 100%;
    font-size: 15px;
  }

  .contact-item i {
    font-size: 30px;
  }

  .contact-item p {
    font-size: 14px;
    padding: 0 10px;
  }
}



/* Contact Section */
.contact-section {
  background: #fff;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

/* Card Wrapper */
.contact-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 40px auto; /* ✅ Add this line */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #fefaf9;
  padding: 40px 30px;
}


/* Right Card */
.contact-wrapper h2 {
  color: #1F2A44;
  margin-bottom: 20px;
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.row.full {
  flex-direction: column;
}

input,
select,
textarea {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
}

textarea {
  resize: none;
}

.con-btn-si {
  background: #ff6600;
  color: #fff;
  padding: 14px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
  font-family: 'Playfair Display', serif;
}

.con-btn-si:hover {
  background-color: white;
  color: #ff6600;
  border: 1px solid #ff6600;
}

/* Responsive - Tablets & Mobiles */
@media (max-width: 768px) {
  .contact-wrapper {
    padding: 30px 20px;
  }

  .row {
    flex-direction: column;
    gap: 10px;
  }

  .contact-right h2 {
    font-size: 24px;
  }

  .con-btn-si {
    font-size: 15px;
  }
}

/* Responsive - Small Mobiles */
@media (max-width: 480px) {
  .contact-wrapper {
    padding: 20px 15px;
  }

  input,
  select,
  textarea {
    font-size: 13px;
    padding: 10px;
  }

  .contact-right h2 {
    font-size: 20px;
  }

  .con-btn-si {
    font-size: 14px;
    padding: 12px;
  }
}



/* Google Map Section */

.map-container {
      width: 100%;
      height: 500px;
      border: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      border-radius: 10px;
      overflow: hidden;
      padding: 20px 60px;
    }

    h2 {
      text-align: center;
      margin-top: 20px;
      color: #333;
      padding-bottom: 20px;
      font-size: 2.2rem;
      font-family: 'Playfair Display', serif;
    }



/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  font-size: 18px;
  background-color: #ff6600;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#scrollTopBtn:hover {
  background-color: #555;
  transform: scale(1.1);
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  #scrollTopBtn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  #scrollTopBtn {
    width: 36px;
    height: 36px;
    font-size: 14px;
    bottom: 45px;
    right: 12px;
  }
}

@media (max-width: 360px) {
  #scrollTopBtn {
    width: 32px;
    height: 32px;
    font-size: 12px;
    bottom: 50px;
    right: 15px;
  }
}