/* =========================
   HOME PAGE CSS
   ========================= */

/* HERO SECTION */
.hero {
  position: relative;
  height: calc(100vh - var(--header-height, 0px));
  background: url(/assets/icons/pbg-1.jpg) no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(249,161,27,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>'); */
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}



.hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-description {
  font-size: 18px;
  color: #e89a10;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 28, 52, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 
  color: #fff;
  padding: 0 20px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* WHY CHOOSE US */
.why-choose-us {
  padding: 80px 0;
  background-color: #f9fafb;
  margin-top: 0;
}

.why-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.why-head-left {
  flex: 1;
}

.why-head-left .title {
  font-size: 42px;
  line-height: 1.3;
}

.why-head-right {
  flex-shrink: 0;
}

.about-btn {
  background-color: var(--brand);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.about-btn:hover {
  background-color: #e89a10;
  transform: translateY(-2px);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-box {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  justify-content: flex-start;
}

.feature-box:hover {
  transform: translateY(-15px) scale(1.08);
  box-shadow: 0 25px 50px rgba(249, 161, 27, 0.3);
  border-color: var(--brand);
  border-width: 2px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(249, 161, 27, 0.1) 100%);
  padding: 40px 30px 50px 30px;
}

.feature-box:hover .icon-circle {
  animation: scaleIcon 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.15);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand), #ffc145);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 25px;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 0;
  color: var(--dark);
  line-height: 1.4;
  text-align: left;
  width: 100%;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.3px;
  text-align: left;
  width: 100%;
}

/* ABOUT US SECTION */
.about-us {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-text .title {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.eyebrow {
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

.highlight {
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.8;
}

.description {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.about-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.about-media{margin:0;border-radius:12px;overflow:hidden;box-shadow:0 12px 30px rgba(2,6,23,0.06)}
.about-image{display:block;width:100%;height:auto;object-fit:cover;transition:transform .4s ease}
.about-media:hover .about-image{transform:scale(1.03)}

/* TESTIMONIALS */
.testimonial-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 350px;
}

.quote-icon {
  font-size: 32px;
  color: var(--brand);
}

.stars {
  display: flex;
  gap: 5px;
}

.stars i {
  color: #ffc107;
  font-size: 16px;
}

.testimonial-text {
  flex: 1;
}

.testimonial-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

.client-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--light);
  color: var(--dark);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--brand);
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 42px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-header {
    flex-direction: column;
    gap: 20px;
  }

  .why-head-right {
    width: 100%;
  }

  .about-actions {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero .overlay {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #ffffff;
  }

  .hero-description {
    font-size: 16px;
    color: #f9a11b;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 100%;
  }

  .why-choose-us,
  .about-us,
  .testimonial-section {
    padding: 50px 0;
  }

  .about-text .title {
    font-size: 28px;
  }

  .why-head-left .title {
    font-size: 28px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 10px;
  }

  .hero-buttons a {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }

  .hero-buttons .orange {
    background-color: #f9a11b;
    color: #ffffff;
  }

  .hero-buttons .orange:active {
    transform: scale(0.95);
  }

  .hero-buttons .white {
    background-color: #ffffff;
    color: #071c34;
    border: 2px solid #ffffff;
  }

  .hero-buttons .white:active {
    transform: scale(0.95);
  }
}

@keyframes scaleIcon {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1.15);
  }
}

/* ========================= 
   SWIPER PAGINATION STYLING
   ========================= */
.swiper-pagination {
  position: relative;
  bottom: auto !important;
  padding: 20px 0 0 0;
  text-align: center;
}

.swiper-pagination-bullet {
  background: #d1d5db;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #f7931e;
  opacity: 1;
  width: 28px;
  border-radius: 5px;
  transform: scale(1.1);
}

.swiper-pagination-bullet:hover {
  opacity: 0.8;
}

