/* ============================================
   VIJAY CLOTHING - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --primary: #0d8a4e;
  --primary-dark: #076b3c;
  --primary-light: #12b866;
  --teal: #1ab2a0;
  --teal-light: #e0f7f4;
  --accent: #e8f5e9;
  --dark: #1a2332;
  --dark-2: #2d3748;
  --text: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --light-bg: #f8fffe;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(13, 138, 78, 0.12);
  --shadow-lg: 0 12px 48px rgba(13, 138, 78, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== UTILITIES ===== */
.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.25;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ===== NAVBAR ===== */
.navbar-brand img {
  height: 52px;
  width: auto;
}

.main-navbar {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  /* padding: 12px 0; */
  transition: var(--transition);
  border-bottom: 3px solid var(--primary);
  width: 100%;
  left: 0;
  right: 0;
}

.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark) !important;
  padding: 8px 18px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: var(--accent);
  color: var(--primary) !important;
}

.nav-cta-btn {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(13, 138, 78, 0.3);
}

.nav-cta-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  box-shadow: 0 6px 20px rgba(13, 138, 78, 0.4);
  transform: translateY(-1px);
  color: var(--white) !important;
}

html, body {
  overflow-x: hidden !important;
  position: relative;
  width: 100%;
}

/* Fix for fixed navbar on all pages */
.fixed-top {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* ===== HERO SLIDER ===== */
.hero-slider-section {
  position: relative;
  height: 100vh;
  min-height: 750px;
  overflow: hidden;
  background-color: var(--dark);
  /* Fallback background */
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
  overflow: hidden;
}

.hero-video-bg video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  min-width: 100% !important;
  min-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: cover !important;
  display: block !important;
}

.hero-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, rgba(10, 61, 46, 0.85) 0%, rgba(13, 107, 64, 0.75) 50%, rgba(26, 178, 160, 0.6) 100%);
  z-index: 2;
}

.hero-container {
  position: relative !important;
  z-index: 5 !important;
  width: 100%;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #a8f0d5;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  background: linear-gradient(90deg, #a8f0d5, #64d8c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

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

/* Hero Swiper Controls */
.hero-next,
.hero-prev {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  z-index: 10;
}

.hero-next:after,
.hero-prev:after {
  font-size: 1.4rem !important;
  font-weight: 900;
}

.hero-next:hover,
.hero-prev:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.hero-pagination {
  bottom: 30px !important;
  z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white) !important;
  opacity: 0.4;
  margin: 0 6px !important;
  transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 6px;
  opacity: 1;
  background: var(--primary-light) !important;
}

@media (max-width: 991px) {
  .hero-slider-section {
    min-height: 500px;
  }

  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .hero-slider-section {
    height: 100vh;
    min-height: 450px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn-primary-custom,
  .hero-actions .btn-outline-custom {
    width: 100%;
    max-width: 280px;
  }

  .hero-next,
  .hero-prev {
    display: none;
  }
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(13, 138, 78, 0.35);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(13, 138, 78, 0.45);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

/* ===== SECTIONS ===== */
section {
  padding: 90px 0;
}

.section-light {
  background: var(--light-bg);
}

.section-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

/* ===== ABOUT PREVIEW ===== */
.about-img-wrap {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-accent-img {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.about-badge-float {
  position: absolute;
  top: 30px;
  left: -20px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge-float .num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-float .label {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal-light), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  transform: scale(1.1);
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

/* ===== PRODUCT SLIDER ===== */
.products-section {
  background: linear-gradient(180deg, #f8fffe 0%, var(--white) 100%);
  padding: 90px 0;
}

.swiper-product {
  padding: 20px 10px 60px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 138, 78, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay a {
  background: var(--white);
  color: var(--primary);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.product-body {
  padding: 18px 20px;
}

.product-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.product-body span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.swiper-pagination-bullet {
  background: var(--primary) !important;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ===== WHY CHOOSE US ===== */
.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #a8f0d5;
}

.feature-text h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin: 0;
}

.why-img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--teal));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--white);
  color: var(--text);
  padding: 70px 0 0;
  border-top: 1px solid var(--border);
}

.footer-logo img {
  height: 95px;
}

.footer-logo p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 1rem;
}

.footer-title {
  color: var(--dark);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
  min-width: 18px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
}

.social-icon:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.social-icon.sm {
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  color: var(--white);
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7);
  }
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-3px);
  color: var(--white);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #0d4a30 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%230d8a4e' fill-opacity='0.15'/%3E%3C/svg%3E");
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero .breadcrumb-item.active {
  color: var(--primary-light);
}

.page-hero .breadcrumb-divider {
  color: rgba(255, 255, 255, 0.4);
}

/* Blog Content Typography */
.content-text p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.content-text ul,
.content-text ol {
  margin-bottom: 1.5rem;
}

.content-text li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* ===== ABOUT PAGE ===== */
.mission-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border-left: 5px solid var(--primary);
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mission-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.strength-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.strength-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.strength-item i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 2px;
}

/* ===== SERVICES PAGE ===== */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--teal-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-detail-card:hover .service-detail-icon {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  transform: rotateY(360deg);
  transition: transform 0.6s ease, background 0.3s ease;
}

/* ===== GALLERY ===== */
.filter-btn {
  background: var(--white);
  color: var(--text);
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 138, 78, 0.85), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 1.8rem;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  height: auto;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-control,
.form-select {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 138, 78, 0.1);
}

.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 6px;
}

/* ===== OFFCANVAS ===== */
.offcanvas {
  border-right: none;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
}

.offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}

.offcanvas-body .nav-link {
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--dark) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== MAP ===== */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  border: none;
  width: 100%;
  height: 380px;
}

/* ===== COUNTER SECTION ===== */
.counter-section {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.counter-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.counter-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.counter-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.counter-card:hover .counter-icon-wrap {
  background: var(--primary);
  color: var(--white);
}

.counter-info {
  flex: 1;
}

.counter-num {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.counter-card .plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 2px;
}

.counter-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .counter-grid {
    grid-template-columns: 1fr;
  }

  .counter-card {
    padding: 20px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 100px;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-tagline {
    margin: 0 auto 2rem;
  }

  .hero-img-card {
    margin-top: 3rem;
    transform: none;
  }

  .hero-float-badge-1,
  .hero-float-badge-2 {
    display: none;
  }

  .about-accent-img {
    display: none;
  }

  .about-badge-float {
    display: none;
  }
}

@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }

  .hero-section {
    padding: 90px 0 60px;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat .num {
    font-size: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .main-navbar {
    padding: 10px 0 !important;
  }

  .navbar-brand img {
    height: 45px !important;
  }

  .navbar-toggler {
    padding: 4px 8px !important;
    font-size: 1rem !important;
  }
}

/* ===== ANIMATIONS ===== */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.preloader-ring {
  width: 50px;
  height: 50px;
  border: 4px solid var(--accent);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

/* ===== MANUFACTURING SECTION ===== */
.manufacturing-section {
  position: relative;
  background: linear-gradient(135deg, #0d1e18 0%, #082d21 100%);
  padding: 100px 0;
}

.manufacturing-section .section-title span {
  background: linear-gradient(90deg, #a8f0d5, #1ab2a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.m-feature.justify-content-center {
  justify-content: center;
}

.m-feature i {
  color: #a8f0d5;
  font-size: 1.1rem;
}

.manufacturing-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.manufacturing-video-wrap iframe {
  width: 100%;
  height: 100%;
}