/* ==========================================================================
   AVANTIKA ELECTRICALS — MASTER STYLESHEET
   ========================================================================== */

:root {
  --color-primary: #B00020;
  --color-primary-dark: #7d0016;
  --color-accent: #E53935;
  --color-dark: #111111;
  --color-white: #FFFFFF;
  --color-light: #F8F8F8;
  --color-gray: #6b6b6b;
  --color-border: #ececec;

  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  --gradient-dark: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --container-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --transition: 0.35s cubic-bezier(.25,.8,.25,1);
  --shadow-sm: 0 4px 16px rgba(17,17,17,0.06);
  --shadow-md: 0 12px 40px rgba(17,17,17,0.1);
  --shadow-red: 0 16px 40px rgba(176,0,32,0.25);
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}
/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; line-height: 1.2; }
.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--color-primary); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
  border-radius: 100px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(176,0,32,0.35); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color:#fff; }
.btn-outline-sm { border: 1.5px solid var(--color-dark); padding: 10px 20px; border-radius: 100px; font-size: 0.85rem; font-family: var(--font-heading); font-weight: 600; }
.btn-outline-sm:hover { background: var(--color-dark); color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; padding: 10px 20px; border-radius: 100px; font-size: 0.85rem; font-family: var(--font-heading); font-weight: 600; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,0.35); }
.btn-light { background: #fff; color: var(--color-primary); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.btn-light:hover { transform: translateY(-3px); }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }
.btn-block { width: 100%; justify-content: center; }
.btn span { position: relative; z-index: 1; }

/* Ripple */
.btn::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 60%);
  opacity: 0; transform: scale(0.5); transition: opacity 0.5s, transform 0.5s;
}
.btn:active::after { opacity: 1; transform: scale(1.4); transition: 0s; }

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; background: var(--color-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-bolt svg { width: 60px; height: 60px; animation: pulseBolt 1s ease-in-out infinite; }
@keyframes pulseBolt { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.25); opacity: 0.6; } }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 1001; background: transparent; }
.scroll-progress-bar { height: 100%; width: 0%; background: var(--gradient-primary); transition: width 0.1s linear; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 22px 0; transition: all var(--transition);
  background: transparent;
}
.site-header.scrolled { padding: 14px 0; background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 14px; }
.logo-box {
  height: 62px; display: flex; align-items: center; justify-content: flex-start;
  transition: height var(--transition);
}
.site-header.scrolled .logo-box { height: 46px; }
.logo-img {
  height: 100%; width: auto; max-width: 260px; max-height: 100%; object-fit: contain;
  flex-shrink: 0;
}
.footer-logo .logo-box { height: 60px; }
.logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; line-height: 1.1; color: var(--color-dark); letter-spacing: 0.5px; }
.site-header:not(.scrolled) .logo-text { color: #fff; }
.logo-text em { display: block; font-style: normal; font-size: 0.6rem; font-weight: 600; letter-spacing: 2px; color: var(--color-primary); }

.main-nav ul { display: flex; gap: 36px; }
.main-nav a {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem;
  color: #fff; position: relative; padding: 4px 0;
}
.site-header.scrolled .main-nav a { color: var(--color-dark); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--gradient-primary); transition: width var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.site-header:not(.scrolled) .btn-outline-sm { border-color: rgba(255,255,255,0.7); color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 70px; z-index: 1100; }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--color-dark); transition: all var(--transition); }
.site-header:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header.menu-open .hamburger span { background: var(--color-dark); }

/* ---------- HERO SLIDER ---------- */
.hero { position: relative; min-height: 100vh; overflow: hidden; }
.hero-slider { position: relative; width: 100%; height: 100vh; min-height: 640px; }

.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; z-index: 1;
  transition: opacity 1.1s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }

.hero-slide-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.12); transition: transform 7s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,2,3,0.92) 0%, rgba(20,3,5,0.75) 45%, rgba(20,3,5,0.35) 100%);
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 78% 25%, rgba(229,57,53,0.22), transparent 55%); z-index: 1; }

.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.shape { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.5; }
.shape-1 { width: 220px; height: 220px; border: 1px solid rgba(255,255,255,0.15); top: 12%; left: 8%; animation: floatY 7s ease-in-out infinite; }
.shape-2 { width: 140px; height: 140px; border: 1px solid rgba(229,57,53,0.35); bottom: 15%; left: 20%; animation: floatY 9s ease-in-out infinite reverse; }
.shape-3 { width: 90px; height: 90px; background: rgba(176,0,32,0.25); top: 22%; right: 12%; animation: floatY 6s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }

.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.particle { position: absolute; width: 3px; height: 3px; background: rgba(255,255,255,0.5); border-radius: 50%; animation: rise linear infinite; }
@keyframes rise { from { transform: translateY(0); opacity: 0; } 10% { opacity: 1; } to { transform: translateY(-100vh); opacity: 0; } }

.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 90px; }
.hero-content { max-width: 680px; }
.eyebrow { font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--color-accent); margin-bottom: 16px; }
.hero-content h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; margin-bottom: 22px; }
.hero-desc { color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.8; max-width: 560px; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; }

/* Slide entrance animation for content */
.hero-slide .eyebrow, .hero-slide h1, .hero-slide .hero-desc, .hero-slide .hero-btns {
  opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-slide.active .eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.hero-slide.active h1 { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.hero-slide.active .hero-desc { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.hero-slide.active .hero-btns { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }

/* Arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 54px; height: 54px; border-radius: 50%; color: #fff;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: all var(--transition); backdrop-filter: blur(6px);
}
.hero-arrow:hover { background: var(--gradient-primary); border-color: transparent; transform: translateY(-50%) scale(1.08); }
.hero-arrow-prev { left: 30px; }
.hero-arrow-next { right: 30px; }

/* Dots */
.hero-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 12px; }
.hero-dot { width: 42px; height: 5px; border-radius: 4px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; transition: background var(--transition); }
.hero-dot span { position: absolute; inset: 0; background: var(--gradient-primary); width: 0%; }
.hero-dot.active span { animation: dotFill 6s linear forwards; }
.hero-dot:hover { background: rgba(255,255,255,0.5); }
@keyframes dotFill { from { width: 0%; } to { width: 100%; } }

.scroll-indicator { position: absolute; bottom: 34px; left: 30px; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px; z-index: 5; }
.scroll-indicator span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: #fff; border-radius: 3px; animation: scrollDot 1.6s ease infinite; }
@keyframes scrollDot { 0% { top: 8px; opacity: 1; } 70% { top: 24px; opacity: 0; } 100% { top: 8px; opacity: 0; } }

@media (max-width: 900px) {
  .scroll-indicator { display: none; }
  .hero-arrow { width: 42px; height: 42px; font-size: 0.95rem; }
  .hero-arrow-prev { left: 14px; }
  .hero-arrow-next { right: 14px; }
}

/* ---------- SECTION HEAD ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-head.light .eyebrow { color: var(--color-accent); }
.section-head.light h2 { color: #fff; }

/* ---------- ABOUT ---------- */
.about { padding: 120px 0; background: #F2F0EF }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-badge {
  position: absolute; bottom: -26px; left: -26px; background: var(--gradient-primary);
  color: #fff; padding: 22px 26px; border-radius: var(--radius-md); box-shadow: var(--shadow-red);
  text-align: center;
}
.about-badge span { display: block; font-family: var(--font-heading); font-weight: 900; font-size: 1.8rem; }
.about-badge small { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; }

.about-content h2 { margin-bottom: 20px; }
.about-content > p { color: var(--color-gray); line-height: 1.85; margin-bottom: 28px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 42px; }
.about-points li { font-weight: 500; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.about-points i { color: var(--color-primary); }

.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.counter-item { text-align: left; }
.counter { font-size: clamp(1.6rem, 3vw, 2.3rem); background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.counter-item span { font-size: 0.78rem; color: var(--color-gray); font-weight: 500; }

/* ---------- WHY US ---------- */
.why-us { padding: 120px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card {
  padding: 42px 32px; border-radius: var(--radius-md); border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), border-color var(--transition), transform 0.2s ease;
  position: relative; overflow: hidden; will-change: transform;
  background-color: #de708442;
}
.why-card::before {
  content: ""; position: absolute; inset: 0; padding: 1.5px; border-radius: inherit;
  background: var(--gradient-primary); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.why-card:hover::before { opacity: 1; }
.why-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 22px; transition: transform var(--transition); }
.why-card:hover .why-icon { transform: rotate(-8deg) scale(1.08); }
.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { color: var(--color-gray); font-size: 0.92rem; line-height: 1.7; }

/* ---------- PRODUCTS ---------- */
.products { padding: 120px 0; background: #DAD4D2}
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.product-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform 0.2s ease; will-change: transform;
}
.product-card:hover { box-shadow: 0 24px 50px rgba(176,0,32,0.18); }
.product-img { position: relative; overflow: hidden; aspect-ratio: 5/4; }
.product-img::after { content:""; position: absolute; inset:0; background: linear-gradient(to top, rgba(17,17,17,0.55), transparent 55%); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img img { transform: scale(1.12); }
.product-body { padding: 26px 28px 30px; }
.product-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.product-body p { color: var(--color-gray); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.6; }
.read-more { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; color: var(--color-primary); display: inline-flex; align-items: center; gap: 8px; }
.read-more i { transition: transform var(--transition); }
.read-more:hover i { transform: translateX(5px); }

/* ---------- GALLERY ---------- */
/* .gallery { padding: 120px 0; }

.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 50px; }
.filter-btn {
  padding: 11px 24px; border-radius: 100px; border: 1.5px solid var(--color-border);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; color: var(--color-gray);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-btn.active { background: var(--gradient-primary); color: #fff; border-color: transparent; box-shadow: var(--shadow-red); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 20px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: zoom-in;
  grid-row: span 1; transition: transform 0.6s ease, opacity 0.4s ease, box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.gallery-item.span-tall { grid-row: span 2; }
.gallery-item.gallery-hide { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease, filter 0.6s ease; }
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gallery-item:hover img { transform: scale(1.14); filter: brightness(0.7); }

.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px;
  background: linear-gradient(to top, rgba(10,2,3,0.92), transparent 80%);
  transform: translateY(14px); opacity: 0; transition: all var(--transition);
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery-item figcaption span { display: block; color: var(--color-accent); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 4px; }
.gallery-item figcaption h4 { color: #fff; font-size: 1.02rem; font-weight: 700; }
.gallery-item::after {
  content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute;
  top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; color: #fff; font-size: 0.9rem;
  background: rgba(176,0,32,0.75); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.6) rotate(-20deg); transition: all var(--transition);
}
.gallery-item:hover::after { opacity: 1; transform: scale(1) rotate(0deg); } */
/* ---------- GALLERY UPDATED ---------- */
.gallery { padding: 120px 0; }

.gallery-grid {
  display: grid; 
  /* Rows ki height badha di hai taaki images badi dikhein */
  grid-template-columns: repeat(4, 1fr); 
  grid-auto-rows: 280px; 
  gap: 25px;
}

.gallery-item {
  position: relative; 
  border-radius: var(--radius-md); 
  overflow: hidden; 
  cursor: zoom-in;
  /* Grid span ko adjust kiya hai */
  grid-row: span 1; 
  transition: transform 0.4s ease, box-shadow var(--transition);
  box-shadow: var(--shadow-md);
}

.gallery-item.span-tall { grid-row: span 2; }

/* Image scaling aur view ke liye */
.gallery-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s ease;
}

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

/* Responsive adjustments for bigger look */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
}



@keyframes galleryPop {
  from { opacity: 0; transform: scale(0.85) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.lightbox { position: fixed; inset: 0; background: rgba(10,10,10,0.94); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; padding: 40px; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); transform: scale(0.9); transition: transform 0.4s ease; }
.lightbox.active img { transform: scale(1); }
.lightbox-close { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 1.6rem; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); display:flex;align-items:center;justify-content:center; }
.lightbox-close:hover { background: var(--color-primary); }

/* ---------- STRENGTH ---------- */
.strength { padding: 120px 0; background: var(--gradient-dark); position: relative; overflow: hidden; }
.strength::before { content:""; position:absolute; width: 500px; height: 500px; background: var(--color-primary); opacity: 0.15; filter: blur(140px); top: -100px; right: -100px; border-radius: 50%; }
.strength-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; position: relative; z-index: 1; }
.strength-card { text-align: center; padding: 32px 16px; border-radius: var(--radius-md); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: transform var(--transition), background var(--transition); }
.strength-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.08); }
.strength-card i { font-size: 1.8rem; color: var(--color-accent); margin-bottom: 16px; display: block; }
.strength-card h3 { font-size: 0.92rem; color: #fff; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { padding: 120px 0;background-color: #EFF2F2; }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: start; }
.faq-head h2 { margin: 14px 0 16px; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.faq-sub { color: var(--color-gray); margin-bottom: 30px; line-height: 1.7; }

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%; text-align: left; padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem;
}
.faq-question i { transition: transform var(--transition); color: var(--color-primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 22px; }
.faq-answer p { color: var(--color-gray); line-height: 1.7; font-size: 0.95rem; }

/* ---------- CTA ---------- */
.cta { position: relative; padding: 110px 0; background: var(--gradient-primary); overflow: hidden; text-align: center; }
.cta-glow { position: absolute; width: 600px; height: 600px; background: rgba(255,255,255,0.15); filter: blur(120px); border-radius: 50%; top: -200px; left: 50%; transform: translateX(-50%); animation: pulseGlow 4s ease-in-out infinite; }
@keyframes pulseGlow { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.cta-inner { position: relative; z-index: 1; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.85); margin-bottom: 34px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- CONTACT ---------- */
.contact { padding: 120px 0; background: var(--color-light); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.contact-info h2 { margin: 14px 0 34px; }
.contact-card { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 22px; }
.contact-card i { width: 48px; height: 48px; border-radius: 14px; background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--color-gray); font-size: 0.92rem; }
.contact-card a:hover { color: var(--color-primary); }

.map-placeholder { margin-top: 30px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); height: 260px; }
.map-placeholder iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3); }

.contact-form-wrap {
  background: rgba(255,255,255,0.6); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8); border-radius: var(--radius-lg);
  padding: 46px 42px; box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 28px; font-size: 1.3rem; }
.form-group { position: relative; margin-bottom: 26px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 16px 18px; border-radius: var(--radius-sm); border: 1.5px solid var(--color-border);
  background: #fff; font-family: var(--font-body); font-size: 0.95rem; transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-primary); outline: none; }
.form-group label {
  position: absolute; left: 18px; top: 16px; color: var(--color-gray); font-size: 0.95rem;
  pointer-events: none; transition: all 0.2s ease; background: #fff; padding: 0 6px;
}
.form-group input:focus + label, .form-group input:not(:placeholder-shown) + label,
.form-group input.filled + label, .form-group textarea:focus + label, .form-group textarea.filled + label {
  top: -10px; font-size: 0.75rem; color: var(--color-primary);
}
.error-msg { display: none; font-size: 0.78rem; color: var(--color-primary); margin-top: 6px; }
.form-group.error input, .form-group.error textarea { border-color: var(--color-primary); }
.form-group.error .error-msg { display: block; }
.form-success { display: none; text-align: center; margin-top: 18px; color: #1c7a3f; font-weight: 500; }
.form-success.show { display: block; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,0.75); padding: 90px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; }
.footer-logo { margin-bottom: 20px; }
.footer-col p { line-height: 1.8; font-size: 0.9rem; margin-bottom: 22px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 12px; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { color: var(--color-accent); margin-top: 3px; }

.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.social-icons a:hover { background: var(--gradient-primary); border-color: transparent; transform: translateY(-4px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; text-align: center; font-size: 0.82rem; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-red); z-index: 900; opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-5px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1280px) {
  .strength-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero-inner { text-align: center; padding-top: 130px; }
  .hero-content { margin: 0 auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 480px; margin: 0 auto; }
  .why-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { position: fixed; top: 0; right: -100%; width: min(360px, 82%); height: 100vh; background: #fff; flex-direction: column; padding: 120px 40px; transition: right 0.5s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.15); }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 26px; }
  .main-nav a { color: var(--color-dark) !important; font-size: 1.05rem; }
  .hamburger { display: flex; }
  .btn-outline-sm span, .btn-whatsapp span { display: none; }
  .btn-outline-sm, .btn-whatsapp { padding: 10px 14px; }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .strength-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about, .why-us, .products, .gallery, .strength, .faq, .contact, .cta { padding: 80px 0; }
  .why-grid, .products-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-filters { gap: 8px; }
  .filter-btn { padding: 9px 16px; font-size: 0.78rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .contact-form-wrap { padding: 34px 26px; }
  .site-header { padding: 16px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-content h1 { font-size: 2.1rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.span-tall { grid-row: span 1; }
  .counters { grid-template-columns: 1fr 1fr; }
  .about-badge { left: 0; bottom: -18px; padding: 16px 18px; }
}









/* ---------- ABOUT SECTION RESPONSIVE FIX ---------- */
.about-image { 
  position: relative; 
  width: 100%; 
  overflow: hidden; 
  border-radius: var(--radius-lg);
}

.about-image img { 
  width: 100%; 
  height: auto; 
  display: block;
  /* Image ki original proportion maintain karega */
  aspect-ratio: 4/3; 
  object-fit: cover; 
  box-shadow: var(--shadow-md);
  transition: transform 0.5s ease;
}

/* Mobile Screens ke liye */
@media (max-width: 768px) {
  .about-image { 
    margin-bottom: 30px; 
  }
  
  .about-image img { 
    aspect-ratio: 16/9; /* Mobile ke liye thoda wider view */
    max-height: 350px; 
  }

  .about-badge {
    padding: 15px 20px;
    bottom: -15px;
    left: 10px;
    transform: scale(0.9); /* Badge ko chota rakha taaki overlap na ho */
  }
}