@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;500;700&display=swap");

:root {
  --brand-orange: #f97316;
  --brand-dark: #0f172a;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #ffffff;
  color: #1e293b;
}

h1,
h2,
h3,
.brand-font {
  font-family: "Outfit", sans-serif;
}

/* Custom Responsive Container */
.container-custom {
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.orange-gradient {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

.text-gradient {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.swiper-pagination-bullet-active {
  background: var(--brand-orange) !important;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.hero-swiper {
  height: 85vh;
  min-height: 600px;
}

.nav-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#mobile-menu {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
}

#mobile-menu.active {
  transform: translateX(0);
}

.menu-link {
  position: relative;
  transition: color 0.3s ease;
}

.menu-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--brand-orange);
  transition: width 0.3s ease;
}

.menu-link:hover::after {
  width: 100%;
}

.logo-box {
  width: 25%;
}
.header-logo {
  width: 70%;
}
.footer-logo {
  width: 85%;
}

#footer .footer-contact ul li a {
  display: flex;
  gap: 5px;
  align-items: center;
}

@media only screen and (min-width: 1366px) and (max-width: 1420px) {
  .hero-swiper {
    height: 85vh;
    min-height: auto;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1365px) {
}
@media only screen and (min-width: 1180px) and (max-width: 1279px) {
}
@media only screen and (min-width: 1024px) and (max-width: 1179px) {
  .hero-swiper {
    height: 50vh;
    min-height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .hero-swiper {
    height: 50vh;
    min-height: auto;
  }

  .swiper-slide {
    padding-top: 50px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .logo-box {
    width: 60%;
  }
  .header-logo {
    width: 100%;
  }
  .footer-logo {
    width: 65%;
  }

  .hero-swiper {
    height: 85vh;
    min-height: auto;
  }

.hero-swiper .container-custom.text-center{
    padding-top: 85px;
}

  .hero-swiper h1, .hero-swiper h2 {
    font-size: 40px !important;
    line-height: 50px;
    margin-bottom: 15px !important;
  }

  .hero-swiper p {
    margin-bottom: 15px !important;
  }

  div.swiper-slide.flex.items-center.justify-center.bg-gray-50.swiper-slide-active
    > div
    > div {
    flex-wrap: nowrap;
    gap: 5px !important;
  }

  .hero-swiper a.btn {
    padding: 12px 13px !important;
  }
  footer div.grid{
    margin-bottom: 20px !important;
  }
}
