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

.montserrat {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
}

.nunito {
  font-family: "nunito", serif;
  font-optical-sizing: auto;
}

body {
  overflow-x: hidden !important;
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-section.inner-hero {
  height: 80vh;
  min-height: 450px;
}

.hero-section.inner-hero .slider {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* =========================
   NAVBAR
========================= */
.custom-nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.logo img {
  height: 80px;
}

/* =========================
   NAV LINKS
========================= */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  font-size: 18px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* =========================
   DROPDOWN (SMOOTH + ROTATE)
========================= */
.gb-dropdown {
  position: relative;
  z-index: 10001;
}

/* hover gap fix */
.gb-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.gb-dropdown>a {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Arrow animation */
.gb-dropdown>a::after {
  content: "▾";
  transition: transform 0.3s ease;
}

/* rotate arrow */
.gb-dropdown.open>a::after {
  transform: rotate(180deg);
}

/* Dropdown box */
.gb-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 99999;
}

/* Show dropdown */
.gb-dropdown.open .gb-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gb-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.gb-dropdown-menu a:hover {
  background: #f2f2f2;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  margin: 4px 0;
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 70%;
  background: white;
  padding: 30px;
  transition: 0.4s ease;
  z-index: 9999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  margin: 15px 0;
  color: #000;
  text-decoration: none;
  font-size: 30px;
}

.close-btn {
  font-size: 30px;
  cursor: pointer;
  display: block;
  margin-bottom: 20px;
}

/* MOBILE PRODUCT MENU */
.mobile-product button {
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;

}

.mobile-product-menu {
  display: none;
  margin-left: 15px;
}

.mobile-product-menu.active {
  display: block;
}

/* =========================
   SLIDER
========================= */
.slider {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 5s ease;
}

.slider.active {
  opacity: 1;
  transform: scale(1.15);
}

/* =========================
   OVERLAY
========================= */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

/* =========================
   HERO TEXT
========================= */
.hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 26px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo img {
    height: 60px;
  }
}



/* ===== FOOTER STYLING ===== */
.main-footer {
  background: #f9fafb;
  color: #111;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #e5e7eb;
  font-size: 16px;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 55px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  font-size: 25px;
}

/* LEFT SIDE */
.footer-logo {
  max-width: 120px;

}

/* .footer-about {
   max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-about p {

  font-size: 17px;
  line-height: 1.5;
  color: #444;
  text-align: justify;
  margin: 10px 0 15px;
} */

.footer-contact p {
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* HEADINGS */
.footer-col h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #111;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #000;
  padding-left: 6px;
}

.footer-col ul li a,
.footer-contact p {
  font-size: 16px;
}

/* NEWSLETTER */
.newsletter p {
  font-size: 16px;
  margin-bottom: 12px;
  color: #444;
}

.newsletter input {
  width: 100%;
  font-size: 16px;
  padding: 14px;
  border: 1px solid #ccc;
  margin-bottom: 12px;
}

.newsletter button {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  font-size: 16px;
  padding: 14px;
  cursor: pointer;
}

.newsletter button:hover {
  background: #333;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 18px;
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* .footer-about {
    align-items: center;
  } */

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}