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

body {
  font-family: 'Inter', sans-serif;
  background-color: #000000;
  color: #ffffff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Color Theme - Black, Fluorescent Green, White */
:root {
  --primary: #000000;
  --primary-dark: #000000;
  --accent: #39ff14;
  --accent-glow: #5fff3a;
  --secondary: #ffffff;
  --gray-light: #1a1a1a;
  --gray-border: #2a2a2a;
  --text-dark: #ffffff;
  --text-muted: #cccccc;
}

/* Custom scrollbar - fluorescent green accent */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #111111;
}
::-webkit-scrollbar-thumb {
  background: #39ff14;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #5fff3a;
}

/* Logo Styles */
.logo-img {
  width: 220px !important;
  height: auto !important;
  max-height: 90px !important;
  object-fit: contain;
  display: block;
}

.logo-link {
  display: inline-block;
  cursor: pointer;
}

.footer-logo-img {
  width: 200px !important;
  height: auto !important;
  max-height: 80px !important;
  object-fit: contain;
  margin-bottom: 15px;
}

.footer-logo-link {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.footer-logo-link:hover {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

/* NAVIGATION - black with fluorescent green border */
nav {
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(57, 255, 20, 0.5);
  transition: 0.3s;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #f0f0f0;
  transition: 0.25s;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: #39ff14;
  transform: translateY(-2px);
  display: inline-block;
}

/* BANNER SLIDER */


.video-slider {
  width: 100%;
  height: 600px;
  margin-top: 110px;
  background: #000;
  overflow: hidden;
  position: relative;
}



.video-slider video,
.video-slider img,
.gif-slider img,
.category-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #000;
}

.video-banner-slider {
  isolation: isolate;
}

.category-video.slide-enter {
  animation: videoFadeZoom 0.55s ease both;
}

@keyframes videoFadeZoom {
  from { opacity: 0.45; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

.video-title {
  position: absolute;
  right: 55px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 68px;
  font-weight: 900;
  text-shadow: 0 0 25px #39ff14;
}

/* VIDEO SLIDER ARROWS */
.video-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(57, 255, 20, 0.65);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  color: #39ff14;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  pointer-events: auto;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.22);
  transition: all 0.22s ease;
  z-index: 5;
}

.video-arrow:hover {
  background: #39ff14;
  color: #000;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.55);
}

.video-arrow.left,
.video-arrow-left {
  left: 28px;
}

.video-arrow.right,
.video-arrow-right {
  right: 28px;
}

@media (max-width: 768px) {
  .video-slider {
    height: 280px;
	margin-top: 50px;
  }

  .video-title {
    font-size: 34px;
    right: 20px;
  }

  .video-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;

  }

  .video-arrow.left,
.video-arrow-left {
    left: 12px;
  }

  .video-arrow.right,
.video-arrow-right {
    right: 12px;
  }
}

/* Container */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffffff;
}
.section-title:after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: #39ff14;
  margin: 16px auto 0;
  border-radius: 4px;
}
.section-sub {
  text-align: center;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

/* UNIQUE MAGAZINE-STYLE COLLAGE CATALOG */
.catalog-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin: 40px 0;
}

.collage-item-vertical {
  grid-row: span 2;
  grid-column: span 1;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  height: 100%;
  min-height: 660px;
  border: 1px solid rgba(57, 255, 20, 0.3);
}
.collage-item-top-left {
  grid-row: 1;
  grid-column: 2;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  height: 320px;
  border: 1px solid rgba(57, 255, 20, 0.3);
}
.collage-item-top-right {
  grid-row: 1;
  grid-column: 3;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  height: 320px;
  border: 1px solid rgba(57, 255, 20, 0.3);
}
.collage-item-bottom-left {
  grid-row: 2;
  grid-column: 2;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  height: 320px;
  border: 1px solid rgba(57, 255, 20, 0.3);
}
.collage-item-bottom-right {
  grid-row: 2;
  grid-column: 3;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  height: 320px;
  border: 1px solid rgba(57, 255, 20, 0.3);
}
.collage-item-horizontal {
  grid-row: 3;
  grid-column: span 3;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  height: 280px;
  border: 1px solid rgba(57, 255, 20, 0.3);
}
.collage-item-vertical:hover,
.collage-item-top-left:hover,
.collage-item-top-right:hover,
.collage-item-bottom-left:hover,
.collage-item-bottom-right:hover,
.collage-item-horizontal:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -12px rgba(57, 255, 20, 0.4);
  border-color: #39ff14;
}
.collage-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.collage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.collage-item-vertical:hover .collage-image img,
.collage-item-top-left:hover .collage-image img,
.collage-item-top-right:hover .collage-image img,
.collage-item-bottom-left:hover .collage-image img,
.collage-item-bottom-right:hover .collage-image img,
.collage-item-horizontal:hover .collage-image img {
  transform: scale(1.08);
}
.collage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(57, 255, 20, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}
.collage-item-vertical:hover .collage-overlay,
.collage-item-top-left:hover .collage-overlay,
.collage-item-top-right:hover .collage-overlay,
.collage-item-bottom-left:hover .collage-overlay,
.collage-item-bottom-right:hover .collage-overlay,
.collage-item-horizontal:hover .collage-overlay {
  opacity: 1;
}
.collage-content {
  text-align: center;
  color: white;
  transform: translateY(30px);
  transition: transform 0.5s;
  padding: 20px;
}
.collage-item-vertical:hover .collage-content,
.collage-item-top-left:hover .collage-content,
.collage-item-top-right:hover .collage-content,
.collage-item-bottom-left:hover .collage-content,
.collage-item-bottom-right:hover .collage-content,
.collage-item-horizontal:hover .collage-content {
  transform: translateY(0);
}
.collage-content i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: inline-block;
  animation: pulse 2s infinite;
  color: #39ff14;
}
.collage-image::before {
  text-transform: uppercase !important;
}
.collage-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.collage-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 15px;
}
.collage-btn {
  display: inline-block;
  padding: 8px 24px;
  background: #39ff14;
  color: black;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.collage-btn:hover {
  background: #5fff3a;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(57, 255, 20, 0.4);
}

/* ==================== CATALOG TEXT OVERLAY ==================== */
/* Static text overlay on catalog images - white bold text, medium-large, centered */
.collage-image::before {
  content: attr(data-category-name);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  z-index: 2;
  pointer-events: none;  /* Allows clicking through to the overlay/button */
  white-space: nowrap;
  background: rgba(0,0,0,0.5);
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  backdrop-filter: blur(4px);
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide the text overlay when hovering over any catalog item */
.collage-item-vertical:hover .collage-image::before,
.collage-item-top-left:hover .collage-image::before,
.collage-item-top-right:hover .collage-image::before,
.collage-item-bottom-left:hover .collage-image::before,
.collage-item-bottom-right:hover .collage-image::before,
.collage-item-horizontal:hover .collage-image::before {
  opacity: 0;
  visibility: hidden;
}

/* Responsive text size for smaller devices */
@media (max-width: 768px) {
  .collage-image::before {
    font-size: 1.4rem;
    white-space: normal;
    text-align: center;
    padding: 0.3rem 0.8rem;
  }
}
@media (max-width: 480px) {
  .collage-image::before {
    font-size: 1.1rem;
    padding: 0.2rem 0.6rem;
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Info Row - Black & Fluorescent Green Cards */
.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: #0a0a0a;
  border-radius: 56px;
  padding: 60px 40px;
  margin: 30px 0;
  border: 1px solid rgba(57, 255, 20, 0.2);
}
@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    width: 100%;
    max-width: 320px; /* nice centered cards */
  }
}

.info-card {
  flex: 1;
  text-align: center;
  background: #111111;
  padding: 36px 20px;
  border-radius: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 2px solid transparent;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(57, 255, 20, 0.15);
  border-bottom: 2px solid #39ff14;
}

.info-card i {
  font-size: 3rem;
  color: #39ff14;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: white;
}

.info-card p {
  color: #cccccc;
  margin-bottom: 25px;
}


@media (max-width: 640px) {
  .catalog-collage {
    display: grid;
    grid-template-columns: 1fr;  /* ek column */
    gap: 15px;
  }

  /* ALL items same size */
  .collage-item-vertical,
  .collage-item-top-left,
  .collage-item-top-right,
  .collage-item-bottom-left,
  .collage-item-bottom-right,
  .collage-item-horizontal {
    height: 220px;        /* same height */
    min-height: auto;
    grid-column: span 1;
    grid-row: auto;
  }
}
/* Read More Button - Stylish & Animated */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #39ff14;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border: 2px solid #39ff14;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.read-more-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #39ff14;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 50px;
}

.read-more-btn:hover:before {
  left: 0;
}

.read-more-btn:hover {
  color: #000000;
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(57, 255, 20, 0.3);
}

.read-more-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  margin: 0;
  color: currentColor;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* Customization Options - Black Background with Fluorescent Green Accents */
.customize-wrapper {
  background: #0a0a0a;
  border-radius: 56px;
  padding: 60px 48px;
  color: white;
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.customize-wrapper .section-title {
  color: white;
  text-align: left;
}

.customize-wrapper .section-title:after {
  margin: 16px 0 0;
  background: #39ff14;
}

.custom-options {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0 20px;
}

.opt-group {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 36px;
  padding: 32px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(57, 255, 20, 0.2);
}

.opt-group:hover {
  transform: translateY(-5px);
  background: rgba(57, 255, 20, 0.1);
  border-color: #39ff14;
}

.opt-group h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-left: 5px solid #39ff14;
  padding-left: 20px;
  color: white;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.badge {
  background: rgba(255,255,255,0.1);
  padding: 8px 22px;
  border-radius: 60px;
  transition: all 0.3s ease;
  color: #e0e0e0;
}

.badge:hover {
  background: #39ff14;
  transform: scale(1.05);
  color: black;
}

.pref-note {
  background: rgba(57, 255, 20, 0.15);
  padding: 22px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(57, 255, 20, 0.3);
  color: white;
}

.pref-note i {
  color: #39ff14;
}

/* Contact Form - Black & Fluorescent Green */
.contact-form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.form-box {
  flex: 1.5;
  background: #0a0a0a;
  padding: 40px;
  border-radius: 40px;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.5);
  border: 1px solid rgba(57, 255, 20, 0.2);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 22px;
  border: 1px solid #2a2a2a;
  border-radius: 60px;
  margin-bottom: 20px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #1a1a1a;
  color: white;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #39ff14;
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.2);
}

.form-group textarea {
  border-radius: 28px;
  resize: vertical;
}

.submit-btn {
  background: #39ff14;
  color: black;
  padding: 14px 34px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 600;
}

.submit-btn:hover {
  background: #5fff3a;
  transform: translateY(-2px);
}

.info-side {
  flex: 1;
  background: #0a0a0a;
  color: white;
  padding: 40px;
  border-radius: 40px;
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.info-side i {
  color: #39ff14;
  margin-right: 12px;
}

.info-side .social-links a:hover i {
  color: #000;
}

.info-side p {
  margin: 20px 0;
  display: flex;
  align-items: center;
}

/* Footer - Black & Fluorescent Green */
footer {
  background: #030303;
  color: #adb7c9;
  padding: 60px 0 30px;
  margin-top: 60px;
  border-top: 1px solid rgba(57, 255, 20, 0.3);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;   /* optional - center bhi ho jayega */
    text-align: center;    /* text bhi center */
  }
}
  

.footer-col h4 {
  color: #39ff14;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: #9aa8bb;
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #39ff14;
  padding-left: 4px;
}

.copyright {
  text-align: center;
  border-top: 1px solid #1e2a3a;
  padding-top: 32px;
  margin-top: 48px;
  color: #888;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .catalog-collage {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .collage-item-vertical {
    grid-row: span 1;
    grid-column: span 2;
    min-height: 350px;
  }
  .collage-item-top-left,
  .collage-item-top-right,
  .collage-item-bottom-left,
  .collage-item-bottom-right {
    grid-column: span 1;
    height: 280px;
  }
  .collage-item-horizontal {
    grid-column: span 2;
    height: 250px;
  }
  .collage-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .slider-main,
  .slider-main .slick-list,
  .slider-main .slick-track,
  .slide {
    height: clamp(240px, 58vw, 420px);
  }
  .slick-prev:before, .slick-next:before {
    font-size: 30px;
  }
  .logo-img {
    width: 160px !important;
    max-height: 65px !important;
  }
  .footer-logo-img {
    width: 150px !important;
    max-height: 60px !important;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0 20px;
    background: rgba(0,0,0,0.98);
    border-radius: 28px;
    margin-top: 12px;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .container {
    padding: 0 20px;
  }
  .section-pad {
    padding: 50px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .custom-options {
    flex-direction: column;
  }
  .info-row {
    padding: 30px 20px;
  }
  .customize-wrapper {
    padding: 40px 24px;
  }
  .opt-group h3 {
    font-size: 1.4rem;
  }
  .read-more-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .catalog-collage {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .collage-item-vertical,
  .collage-item-top-left,
  .collage-item-top-right,
  .collage-item-bottom-left,
  .collage-item-bottom-right,
  .collage-item-horizontal {
    grid-column: span 1;
    height: 280px;
  }
  .collage-content h3 {
    font-size: 1.4rem;
  }
  .collage-content i {
    font-size: 2rem;
  }
}

/* ==================== ADDITIONS FOR ABOUT / HOW WE WORK / WHY CHOOSE US PAGES ==================== */
/* Hero section shared */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: radial-gradient(circle at 30% 10%, rgba(57,255,20,0.12), #000000 80%);
  text-align: center;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(57,255,20,0.2), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.hero-content-center {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: white;
}
.glow-text {
  color: #39ff14;
  text-shadow: 0 0 10px #39ff14;
}
.hero-line {
  width: 100px;
  height: 4px;
  background: #39ff14;
  margin: 20px auto;
  border-radius: 4px;
}
.hero-subtitle {
  font-size: 1.3rem;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto;
}

/* About page grid */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: start;
}
.about-text-card {
  flex: 2;
  background: #0e0e0e;
  padding: 48px;
  border-radius: 48px;
  border: 1px solid rgba(57,255,20,0.25);
  transition: all 0.3s;
}
.about-text-card p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #ddd;
}
.about-lead {
  font-size: 1.5rem;
  font-weight: 600;
  color: #39ff14;
  border-left: 4px solid #39ff14;
  padding-left: 20px;
}
.quote-icon i {
  font-size: 2rem;
  color: #39ff14;
  opacity: 0.5;
  margin-bottom: 20px;
}
.about-highlight {
  background: rgba(57,255,20,0.1);
  padding: 20px;
  border-radius: 32px;
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 25px 0;
  border: 1px solid rgba(57,255,20,0.3);
}
.about-highlight i {
  font-size: 2rem;
  color: #39ff14;
}
.about-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stat-item {
  background: #0a0a0a;
  padding: 30px 20px;
  text-align: center;
  border-radius: 32px;
  border: 1px solid rgba(57,255,20,0.2);
  transition: transform 0.3s;
}
.stat-item:hover { transform: translateY(-5px); border-color: #39ff14; }
.stat-item i { font-size: 2.4rem; color: #39ff14; margin-bottom: 15px; }
.stat-item h3 { font-size: 2rem; color: white; }
.stat-item p { color: #aaa; }

/* Mission Vision */
.mission-vision { background: #030303; }
.mv-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.mv-card {
  flex: 1;
  background: #111;
  padding: 48px 32px;
  border-radius: 48px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}
.mv-card:hover { border-bottom-color: #39ff14; transform: translateY(-8px); background: #151515; }
.mv-card i { font-size: 3rem; color: #39ff14; margin-bottom: 20px; }
.mv-card h3 { font-size: 1.8rem; margin-bottom: 15px; }

/* How we work timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.process-item {
  display: flex;
  gap: 30px;
  background: #0c0c0c;
  border-radius: 40px;
  padding: 32px;
  border: 1px solid rgba(57,255,20,0.2);
  transition: all 0.3s;
}
.process-item:hover { border-color: #39ff14; transform: translateX(8px); background: #0f0f0f; }
.process-icon {
  font-size: 3rem;
  min-width: 80px;
  text-align: center;
  color: #39ff14;
}
.process-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: white;
}
.process-content p {
  color: #ccc;
  margin-bottom: 16px;
  line-height: 1.5;
}
.goal-badge {
  display: inline-block;
  background: rgba(57,255,20,0.15);
  padding: 8px 20px;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #39ff14;
}
.goal-badge i { margin-right: 8px; }

/* Why choose us grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}
.why-card {
  background: #0a0a0a;
  padding: 32px;
  border-radius: 36px;
  border: 1px solid rgba(57,255,20,0.2);
  transition: all 0.35s;
}
.why-card:hover { transform: translateY(-8px); border-color: #39ff14; background: #101010; box-shadow: 0 20px 30px -12px rgba(57,255,20,0.2); }
.why-icon i {
  font-size: 2.8rem;
  color: #39ff14;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: white;
}
.why-card p {
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.5;
}
.benefit-tag {
  display: inline-block;
  background: #1a1a1a;
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #39ff14;
  letter-spacing: 0.3px;
}

/* Responsive additions */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .about-grid { flex-direction: column; }
  .about-text-card { padding: 28px; }
  .process-item { flex-direction: column; text-align: center; }
  .process-icon { margin-bottom: 10px; }
  .why-grid { grid-template-columns: 1fr; }
  .mv-grid { flex-direction: column; }
}
@media (max-width: 480px) {
  .stat-item h3 { font-size: 1.5rem; }
  .process-content h3 { font-size: 1.4rem; }
}


/* ==================== ADDITIONS FOR CUSTOMIZATION & CONTACT PAGES ==================== */

/* Customization Page Styles */
.custom-master-grid {
  margin-bottom: 50px;
}
.full-width {
  width: 100%;
}
.custom-card {
  background: #0c0c0c;
  border-radius: 48px;
  padding: 48px 40px;
  border: 1px solid rgba(57, 255, 20, 0.25);
  transition: all 0.3s ease;
}
.custom-card:hover {
  border-color: #39ff14;
  box-shadow: 0 20px 30px -15px rgba(57, 255, 20, 0.2);
}
.custom-card-header {
  text-align: center;
  margin-bottom: 40px;
}
.custom-card-header i {
  font-size: 3rem;
  color: #39ff14;
  margin-bottom: 15px;
}
.custom-card-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}
.custom-card-header p {
  color: #aaa;
}
.badge-master-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.badge-glow {
  background: #1a1a1a;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  color: #e0e0e0;
  transition: all 0.3s ease;
  border: 1px solid rgba(57, 255, 20, 0.3);
  font-size: 0.95rem;
}
.badge-glow:hover {
  background: #39ff14;
  color: black;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(57, 255, 20, 0.4);
}
.custom-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
}
.feature-block {
  flex: 1;
  background: #0a0a0a;
  padding: 32px 24px;
  border-radius: 32px;
  text-align: center;
  border: 1px solid rgba(57, 255, 20, 0.2);
  transition: all 0.3s;
}
.feature-block:hover {
  transform: translateY(-8px);
  border-color: #39ff14;
  background: #111;
}
.feature-block i {
  font-size: 2.5rem;
  color: #39ff14;
  margin-bottom: 20px;
}
.feature-block h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.custom-cta-block {
  background: linear-gradient(135deg, #0a0a0a, #051505);
  padding: 48px 32px;
  border-radius: 48px;
  text-align: center;
  border: 1px solid #39ff14;
  margin-top: 20px;
}
.custom-cta-block i {
  font-size: 2.5rem;
  color: #39ff14;
  margin-bottom: 20px;
  opacity: 0.7;
}
.custom-cta-block p {
  font-size: 1.3rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  color: #ddd;
}

/* Contact Page Enhanced Grid */
.contact-enhanced-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-form-card, .contact-info-card {
  flex: 1;
  background: #0c0c0c;
  border-radius: 48px;
  border: 1px solid rgba(57, 255, 20, 0.25);
  transition: all 0.3s;
  overflow: hidden;
}
.contact-form-card {
  padding: 40px;
}
.contact-info-card {
  padding: 40px;
}
.form-header, .info-header {
  margin-bottom: 32px;
  text-align: center;
}
.form-header i, .info-header i {
  font-size: 2.5rem;
  color: #39ff14;
  margin-bottom: 15px;
}
.form-header h3, .info-header h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.modern-contact-form .input-group {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border-radius: 60px;
  border: 1px solid #2a2a2a;
  transition: all 0.3s;
}
.modern-contact-form .input-group:focus-within {
  border-color: #39ff14;
  box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.2);
}
.modern-contact-form .input-group i {
  position: absolute;
  left: 20px;
  color: #39ff14;
  font-size: 1.1rem;
}
.modern-contact-form .input-group input, 
.modern-contact-form .input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 20px 16px 50px;
  color: white;
  font-family: inherit;
  outline: none;
  border-radius: 60px;
}
.modern-contact-form .textarea-group {
  align-items: flex-start;
  border-radius: 30px;
}
.modern-contact-form .textarea-group i {
  top: 20px;
}
.modern-contact-form .textarea-group textarea {
  border-radius: 30px;
  padding-top: 16px;
  resize: vertical;
}
.submit-btn.pulse-on-hover {
  width: 100%;
  background: #39ff14;
  color: black;
  font-weight: 700;
  padding: 14px;
  font-size: 1rem;
}
.form-feedback {
  margin-top: 15px;
  text-align: center;
}
.contact-details {
  margin: 30px 0;
}
.detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.detail-item i {
  font-size: 1.8rem;
  color: #39ff14;
  min-width: 40px;
}
.detail-item h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: white;
}
.detail-item a, .detail-item p {
  color: #bbb;
  text-decoration: none;
  display: block;
  transition: 0.2s;
}
.detail-item a:hover {
  color: #39ff14;
}
.business-hours {
  background: #111;
  padding: 15px;
  border-radius: 40px;
  text-align: center;
  margin: 20px 0;
  border: 1px dashed #39ff14;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.social-links a {
  background: #1a1a1a;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #39ff14;
  transition: 0.3s;
}
.social-links a:hover {
  background: #39ff14;
  color: black;
  transform: translateY(-5px);
}
.cta-banner {
  background: linear-gradient(90deg, #0a0a0a, #0f1a0a);
  padding: 50px 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(57, 255, 20, 0.3);
  border-bottom: 1px solid rgba(57, 255, 20, 0.3);
}
.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.cta-flex h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.cta-btn {
  background: #39ff14;
  color: black;
  padding: 14px 32px;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-btn:hover {
  background: #5fff3a;
  transform: scale(1.03);
  box-shadow: 0 5px 20px rgba(57, 255, 20, 0.4);
}
@media (max-width: 768px) {
  .custom-card { padding: 32px 20px; }
  .badge-glow { padding: 8px 18px; font-size: 0.8rem; }
  .feature-block h3 { font-size: 1.3rem; }
  .custom-cta-block p { font-size: 1rem; }
  .cta-flex { flex-direction: column; text-align: center; }
  .contact-form-card, .contact-info-card { padding: 28px; }
}

/* Additional animation effects for staggered loading */
[data-aos="fade-in"] {
  opacity: 0;
  transition-property: opacity;
}

[data-aos="fade-in"].aos-animate {
  opacity: 1;
}

[data-aos="flip-up"] {
  transform: perspective(2500px) rotateX(-100deg);
  transition-property: transform, opacity;
}

[data-aos="flip-up"].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos="flip-right"] {
  transform: perspective(2500px) rotateY(100deg);
  transition-property: transform, opacity;
}

[data-aos="flip-right"].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

/* Slide animations for slider images */
.slide-exit {
  animation: zoomOut 0.6s ease-out forwards;
}

.slide-enter {
  animation: zoomIn 0.8s ease-out forwards;
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Pulse animation for buttons */
.pulse-on-hover:hover {
  animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Stagger delay helper classes (if needed) */
.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }

/* --- SPEED UP CATALOG ANIMATIONS --- */
.collage-image img {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collage-overlay {
  transition: opacity 0.25s ease;
}

.collage-content {
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collage-btn {
  transition: all 0.2s ease;
}

.collage-image::before {
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

@media (max-width: 768px) {

  .contact-enhanced-grid {
    display: flex;
    flex-direction: column;
  }

  /* 1st → Contact Info */
  .contact-info-card {
    order: 1;
  }

  /* 2nd → Form */
  .contact-form-card {
    order: 2;
  }

  /* 3rd → Info cards (agar same section me hain) */
  .info-row {
    order: 3;
  }

}
.info-side .social-links {
  display: flex;
  justify-content: flex-start; /* LEFT ALIGN */
  gap: 12px;
  margin-top: 15px;
}

.info-side .social-links-wrapper .social-links a {
  width: 45px;
  height: 45px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #39ff14; /* fluorescent green */
  font-size: 16px;
  transition: 0.3s ease;
  padding-left: 10px;
}



.info-side .social-links-wrapper .social-links a:hover {
  background: #39ff14;
  color: black !important;
  transform: translateY(-5px);
}



/* ================= CATALOG PAGE 3D CARDS ================= */

.catalog-page-section {
  background:
    radial-gradient(circle at top left, rgba(57,255,20,0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(57,255,20,0.08), transparent 35%),
    #000;
}

.catalog-grid-3d {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  perspective: none;
}

/* Catalog cards fixed: full green border + zoom inside only, no overlap */
.catalog-card-3d {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 3px solid rgba(57, 255, 20, 0.3);
  background: #111111;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  transform: none !important;
}

.catalog-card-3d:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(57, 255, 20, 0.25);
  border-color: #39ff14;
  z-index: 2;
}

.catalog-card-3d img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
  transform: scale(1);
  transition: transform 0.5s ease, filter 0.45s ease;
  display: block;
}

.catalog-card-3d:hover img {
  transform: scale(1.06);
  filter: brightness(0.85) contrast(1.15);
}

.catalog-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  text-align: center;
  padding: 25px;
}

.catalog-card-3d:hover .catalog-card-overlay {
  opacity: 1;
}

.catalog-card-overlay h3 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0,0,0,0.9);
  margin-bottom: 14px;
}

.catalog-card-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #39ff14;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border: 2px solid #39ff14;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
}

.catalog-card-overlay span::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #39ff14;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 50px;
}

.catalog-card-overlay span:hover::before {
  left: 0;
}

.catalog-card-overlay span:hover {
  color: #000000;
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(57, 255, 20, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .catalog-grid-3d {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .catalog-card-3d {
    height: 320px;
  }

  .catalog-card-overlay h3 {
    font-size: 1.7rem;
  }
}

/* =========================================================
   CATALOG HOVER UPDATE - faster + stronger zoom + low opacity
   Only catalog cards changed. Nothing else removed.
   ========================================================= */

/* Index/home catalog collage cards: faster stronger zoom */
.collage-image img {
  transition: transform 0.22s ease-out, filter 0.22s ease-out !important;
  will-change: transform;
}

.collage-item-vertical:hover .collage-image img,
.collage-item-top-left:hover .collage-image img,
.collage-item-top-right:hover .collage-image img,
.collage-item-bottom-left:hover .collage-image img,
.collage-item-bottom-right:hover .collage-image img,
.collage-item-horizontal:hover .collage-image img {
  transform: scale(1.18) !important;
}

.collage-overlay {
  background: rgba(0, 0, 0, 0.42) !important;
  transition: opacity 0.18s ease-out !important;
}

.collage-content {
  transition: transform 0.18s ease-out !important;
}

/* Catalog page 6 banner cards: faster stronger zoom on every card */
.catalog-card-3d {
  overflow: hidden !important;
  transform: none !important;
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out, border-color 0.22s ease-out !important;
}

.catalog-card-3d:hover {
  transform: translateY(-5px) !important;
}

.catalog-card-3d img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  transform: scale(1) !important;
  transform-origin: center center !important;
  transition: transform 0.22s ease-out, filter 0.22s ease-out !important;
  will-change: transform;
}

.catalog-card-3d:hover img {
  transform: scale(1.18) !important;
  filter: brightness(0.9) contrast(1.12) !important;
}

.catalog-card-overlay {
  background: rgba(0, 0, 0, 0.42) !important;
  transition: opacity 0.18s ease-out !important;
}

.catalog-card-overlay span,
.collage-btn {
  transition: all 0.18s ease-out !important;
}



