/* ===== BRAND COLOR SYSTEM ===== */
:root {
  --primary: #0b5e7e;
  --primary-light: #f7944b;
  --primary-dark: #094c66;
  --text-dark: #1a2c3e;
  --text-muted: #2c4a6e;
  --bg-soft: #eceef0;
  --border-light: #eef2f6;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER & NAVIGATION ========== */
.site-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  gap: 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-area img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-item {
  position: relative;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: #2c3e4f;
  transition: all 0.2s ease;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link i {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.nav-link:hover {
  color: var(--primary-light);
  border-bottom-color: var(--primary-light);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
  border: 1px solid var(--border-light);
  margin-top: 24px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #2c3e4f;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: var(--bg-soft);
  color: var(--primary-light);
  padding-left: 26px;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 750px;
  max-width: 85vw;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  border: 1px solid var(--border-light);
  padding: 24px;
  margin-top: 30px;
}

.nav-item.mega:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mega-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  border-left: 3px solid var(--primary-light);
  padding-left: 10px;
}

.mega-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.8rem;
  color: #4a627a;
  text-decoration: none;
  transition: 0.2s;
}

.mega-col a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 880px) {
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 85%;
    max-width: 340px;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.5rem;
    transition: left 0.3s ease;
    z-index: 1001;
    box-shadow: 6px 0 24px rgba(0, 0, 0, 0.1);
    border-right: 1px solid var(--border-light);
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-item {
    width: 100%;
    position: static;
  }
  .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f5;
    white-space: normal;
  }
  .dropdown-menu,
  .mega-dropdown {
    position: static;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    padding: 0 0 0 20px;
    margin-top: 8px;
    background: #fafcff;
    border-radius: 12px;
    transition: none;
  }
  .dropdown-menu.active-mobile,
  .mega-dropdown.active-mobile {
    display: block;
  }
  .mega-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mega-col h4 {
    margin-top: 12px;
  }
  .nav-link .fa-chevron-down {
    transition: transform 0.2s;
  }
  .nav-link.rotated .fa-chevron-down {
    transform: rotate(180deg);
  }
}

/* ========== HERO SECTION ========== */
.hero {
  background: #e3e3e3; 
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  /* background: var(--primary-light); */
  opacity: 0.2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 148, 75, 0.12);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 28px;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0b2b3b;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 92%;
}

.button-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--bg-soft);
  border: 1px solid #c7c9c9;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 18px rgba(11, 94, 126, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(11, 94, 126, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid #c7c9c9;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.stats-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #3a5a78;
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary-light);
  opacity: 0.85;
}

.hero-right {
  background: #ffffff;
  border-radius: 10px;
  padding: 5px 5px 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s;
}

.hero-right:hover {
  transform: translateY(-5px);
}

.hero-right img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.cert-badge {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #3f6b8c;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  h1 {
    font-size: 2.2rem;
  }
  .hero-right {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.9rem;
  }
  .btn-primary,
  .btn-outline {
    padding: 8px 20px;
  }
  .stats-row {
    gap: 28px;
  }
}

/* Hero Slider Styles */
.hero-slider {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-md);
     flex-shrink: 0; 
}
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    /* flex-shrink: 0; */
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center top;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(11, 94, 126, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.slider-arrow:hover {
    background: var(--primary-light);
}
.prev {
    left: 15px;
}
.next {
    right: 15px;
}
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.2s;
}
.dot.active {
    background: var(--primary-light);
    width: 24px;
    border-radius: 10px;
}
@media (max-width: 992px) {
    .hero-slider {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===== SECTION HEADER (common) ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-block;
  background: rgba(247, 148, 75, 0.12);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary-light);
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0b2b3b;
  margin-bottom: 15px;
}
.section-header h2 .highlight {
  color: var(--primary-light);
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT DETAILED ===== */
.about-detailed {
  padding: 80px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text{
  padding-top: 50px;
}

.about-text .about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.highlight-item i {
  font-size: 1.8rem;
  color: var(--primary-light);
  width: 45px;
}
.highlight-item strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
}
.highlight-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  padding: 12px 28px;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}
.btn-about:hover {
  background: var(--primary-light);
  gap: 14px;
}
.about-stats-box {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 3px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.stat-card-big {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 24px;
}
.stat-card-big .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-card-big .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.about-img {
  grid-column: span 2;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  margin-top: 10px;
}

/* ===== MISSION & VISION ===== */
.mission-vision {
  padding: 60px 0;
  background: var(--bg-soft);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.mission-card,
.vision-card {
  background: white;
  padding: 35px;
  padding: 70px 20px 80px;
  text-align: center;
  border: 1px solid var(--border-light);
}
.mission-card i,
.vision-card i {
  font-size: 2.5rem;
  color: var(--primary-light);
  margin-bottom: 20px;
}
.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}
.mission-card p,
.vision-card p {
  color: var(--text-muted);
  line-height: 1.5;
}


/* ===== CATEGORIES (PREMIUM DESIGN) ===== */

.categories-info {
  padding: 80px 0;
  background: #fff;
}

/* grid */
.cat-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* card */
.cat-info-card {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 28px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* hover gradient bg */
.cat-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b5e7e, #f7944b);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

/* content above */
.cat-info-card > * {
  position: relative;
  z-index: 1;
}

/* hover effect */
.cat-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.cat-info-card:hover::before {
  opacity: 1;
}

/* icon circle */
.cat-info-card i {
  min-width: 60px;
  height: 60px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-light);
  transition: 0.3s;
}

/* icon hover */
.cat-info-card:hover i {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* heading */
.cat-info-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  transition: 0.3s;
}

/* description */
.cat-info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
  transition: 0.3s;
}

/* product count badge */
.product-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(247, 148, 75, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  transition: 0.3s;
}

/* hover text color */
.cat-info-card:hover h4,
.cat-info-card:hover p,
.cat-info-card:hover .product-count {
  color: #fff;
}

/* hover badge style */
.cat-info-card:hover .product-count {
  background: rgba(255,255,255,0.2);
}

/* subtle animation */
.cat-info-card {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

.cat-info-card:nth-child(1) { animation-delay: 0.1s; }
.cat-info-card:nth-child(2) { animation-delay: 0.2s; }
.cat-info-card:nth-child(3) { animation-delay: 0.3s; }
.cat-info-card:nth-child(4) { animation-delay: 0.4s; }
.cat-info-card:nth-child(5) { animation-delay: 0.5s; }
.cat-info-card:nth-child(6) { animation-delay: 0.6s; }

/* animation */
@keyframes fadeUp {
  from {
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* mobile */
@media (max-width: 576px) {
  .cat-info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cat-info-card i {
    margin-bottom: 10px;
  }
}
/* ===== PRODUCT RANGE ===== */

.range-info{
    padding: 70px 0;
    background: var(--bg-soft);
    overflow-x: clip;
}

.range-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0 30px;
}

/* Tablet: 2 per row */
@media (max-width: 992px) {
    .range-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile: 1 per row */
@media (max-width: 576px) {
    .range-image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.range-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Image */
.range-image-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Overlay (hidden by default) */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 94, 126, 0.75); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 350px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    padding: 20px;
}

/* Text style */
.overlay h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.overlay p {
    color: #e0f2ff;
    font-size: 0.9rem;
}

/* Hover effect */
.range-image-card:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Optional image zoom */
.range-image-card:hover img {
    transform: scale(1.08);
    transition: 0.4s;
}


/* ===== WHY CHOOSE US ===== */
.whyus-info {
  padding: 70px 0;
  background: #fff;
}

/* Desktop: 3 cards per row */
.whyus-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Tablet: 2 cards per row */
@media (max-width: 992px) {
  .whyus-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Mobile: 1 card per row */
@media (max-width: 576px) {
  .whyus-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Card styles remain the same */
.whyus-info-card {
  text-align: center;
  padding: 30px;
  border: 1px solid var(--border-light);
  border-radius: 28px;
  transition: all 0.3s;
}
.whyus-info-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.whyus-icon-bg {
  width: 70px;
  height: 70px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.whyus-icon-bg i {
  font-size: 2rem;
  color: var(--primary-light);
}
.whyus-info-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.whyus-info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}


.whyus-info-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #fff;
  transition: all 0.4s ease;
}

/* Background image layer */
.whyus-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 0.4s ease;
  z-index: -2;
}

/* Dark overlay */
.whyus-info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 94, 126, 0.75);
  opacity: 0;
  transition: 0.4s ease;
  z-index: -1;
}

/* Hover effect */
.whyus-info-card:hover::before {
  opacity: 1;
}

.whyus-info-card:hover::after {
  opacity: 1;
}

/* Text color change on hover */
.whyus-info-card:hover h4,
.whyus-info-card:hover p {
  color: #fff;
}

/* Icon background adjust */
.whyus-info-card:hover .whyus-icon-bg {
  background: rgba(255,255,255,0.2);
}

.whyus-info-card:hover .whyus-icon-bg i {
  color: #fff;
}


/* ===== PROCESS STEPS (MODERN HORIZONTAL) ===== */

.process-info {
  padding: 70px 0;
  background: var(--bg-soft);
}

/* container */
.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 60px;
  gap: 20px;
}

/* connector line */
.process-steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: var(--primary-light);
  opacity: 0.25;
  z-index: 0;
}

/* step card */
.step {
  position: relative;
  background: #fff;
  padding: 25px 20px;
  border-radius: 18px;
  text-align: center;
  width: 100%;
  max-width: 230px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  z-index: 1;
  border: 1px solid var(--border-light);
}

/* hover */
.step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

/* number circle */
.step-num {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 3px solid var(--primary-light);
  color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

/* number hover effect */
.step:hover .step-num {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  box-shadow: 0 0 0 6px rgba(247, 148, 75, 0.15);
}

/* text */
.step-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* subtle animation */
.step {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

/* stagger effect */
.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

/* animation keyframes */
@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }
}
/* ===== SLIDER – INFINITE FORWARD (FIXED) ===== */

.slider-info {
    padding: 70px 0;
    overflow-x: clip;
}

/* ✅ FIX: remove flex */
.slider-info-wrapper {
    position: relative;
    overflow: hidden;
}

/* track */
.slider-info-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* cards */
.slider-info-card {
    flex: 0 0 calc((100% - 75px) / 3); /* 4 cards, 3 gaps */
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.slider-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* image */
.slider-info-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* content */
.info-card-content {
    padding: 18px;
}

.info-card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.info-card-content .category {
    font-size: 0.7rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.info-card-content .description {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.info-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* button */
.info-view {
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    padding: 8px 0;
    width: 100%;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.info-view:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}


.slider-info-btn {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    z-index: 10;
}

.slider-info-btn:hover {
    background: var(--primary-light);
    transform: translateY(-50%) scale(1.05);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .slider-info-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }
}

@media (max-width: 576px) {
    .slider-info-card {
        flex: 0 0 100%;
    }

    .slider-info-btn {
        width: 36px;
        height: 36px;
        right: 5px;
    }
}

/* ===== TESTIMONIAL SLIDER PREMIUM ===== */

.testimonials-info {
  padding: 80px 0;
  background: #fff;
}

.testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.testimonials-slider-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

/* cards */
.testimonial-info-card {
  flex: 0 0 calc((100% - 50px) / 3);
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  position: relative;
}

/* glow border */
.testimonial-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, #0b5e7e, #f7944b);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}

.testimonial-info-card:hover::before {
  opacity: 0.08;
}

.testimonial-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* quote icon */
.quote-icon i {
  font-size: 2rem;
  color: var(--primary-light);
  opacity: 0.3;
  margin-bottom: 15px;
}

/* text */
.testimonial-info-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* client */
.client-detail {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-detail img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.client-detail strong {
  color: var(--primary);
  font-size: 0.9rem;
}

.client-detail span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* button */
.testimonial-btn {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.testimonial-btn:hover {
  background: var(--primary-light);
  transform: translateY(-50%) scale(1.1);
}

/* responsive */
@media (max-width: 992px) {
  .testimonial-info-card {
    flex: 0 0 calc((100% - 25px) / 2);
  }
}

@media (max-width: 576px) {
  .testimonial-info-card {
    flex: 0 0 100%;
  }
}

/* ===== BLOG ===== */
.blog-info {
  padding: 70px 0;
  background: var(--bg-soft);
}
.blog-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.blog-info-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
}
.blog-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-info-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.blog-info-content {
  padding: 22px;
}
.blog-date {
  font-size: 0.7rem;
  color: var(--primary-light);
  display: block;
  margin-bottom: 10px;
}
.blog-info-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.blog-info-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}
.read-more {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
}
.read-more i {
  transition: 0.2s;
}
.read-more:hover i {
  transform: translateX(4px);
}

/* ===== FAQ ===== */
.faq-info {
  padding: 70px 0;
  background: #fff;
}
.faq-info-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-info-item {
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 15px;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
}
.faq-q i {
  color: var(--primary-light);
  transition: 0.2s;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.faq-info-item.active .faq-q i {
  transform: rotate(45deg);
}
.faq-info-item.active .faq-a {
  max-height: 200px;
}


/* ===== FOOTER ENHANCED ===== */
.footer-enhanced {
  background: #0b2b3b;
  color: #eef2f6;
  padding: 50px 0 30px;
  margin-top: 0;
}
.footer-enhanced a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.2s;
}
.footer-enhanced a:hover {
  color: var(--primary-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.85rem;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.social-links a {
  background: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.social-links a:hover {
  background: var(--primary-light);
  color: white;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .about-stats-box {
    grid-template-columns: 1fr;
  }
  .cat-info-card {
    flex-direction: column;
    text-align: center;
  }
  .range-info-item {
    flex-direction: column;
    text-align: center;
  }
  .slider-info-card {
    min-width: 220px;
  }
  .cta-info-box h2 {
    font-size: 1.6rem;
  }
}
