/* --- A. ROOT DESIGN SYSTEM --- */
:root {
  /* B. COLOUR SYSTEM */
  --color-base: #ffffff; /* Base / Hero bg */
  --color-section-bg: #fafafa; /* Industries / Cred bar */
  --color-text-main: #1c1917; /* All headlines & body */
  --color-text-secondary: #9ca3af; /* Descriptions / captions */
  --color-primary-accent: #16a34a; /* Forest Green Buttons/Links */
  --color-green-tint: #dcfce7; /* AFD card / eco sections */
  --color-gold: #d97706; /* IndiaStar ONLY */

  /* C. TYPOGRAPHY SYSTEM */
  --font-head: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* --- RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--color-base);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.75; /* Default Inter line-height */
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* Header CSS Start  */

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);

  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  transition: all 0.35s ease;
}

.main-header.scrolled {
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */

.logo img {
  height: 38px;
  transition: 0.3s ease;
  margin-top: 15px;
}

/* NAV LINKS DESKTOP */

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-main);
  transition: 0.3s ease;
  position: relative;
}

/* Underline animation */

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--color-primary-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA */

.nav-cta {
  background: var(--color-primary-accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-main);
  transition: 0.3s ease;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 230px;
  list-style: none;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

/* Hover show */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: transparent;
    padding: 10px 0;
    text-align: center;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 10px 0;
    text-align: center;
    font-size: 15px;
  }
}
/* ==================================================
   MOBILE RESPONSIVE
================================================== */

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 30px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a::after {
    display: none;
  }
}
/* Header CSS End  */

/* ----------------------------------------------------Index Page CSS Start  */
/* Hero Section CSS start  */

.accent-green {
  color: var(--color-primary-accent);
}

/* hero section Start */

.hero-banner {
  width: 100%;
  background: #ffffff;
  padding: 90px 20px 00px; /* top space from header */
}

/* CONTAINER */

.hero-banner-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* IMAGE */

.hero-banner-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* -------- Tablet -------- */

@media (max-width: 992px) {
  .hero-banner {
    padding: 70px 20px 00px;
  }
}

/* -------- Mobile -------- */

@media (max-width: 768px) {
  .hero-banner {
    padding: 75px 15px 05px; /* keeps space from header */
  }

  .hero-banner-container img {
    width: 100%;
    margin-top: 35px;
  }
}

/* -------- Small Mobile -------- */

@media (max-width: 480px) {
  .hero-banner {
    padding: 75px 12px 20px; /* proper spacing for small phones */
  }
}
/* --- SECTION 2 CSS Start  */
.rock-impact-bounce {
  animation: slowRockDropStay 2.2s cubic-bezier(0.25, 1, 0.3, 1) forwards;
}

.credibility-section {
  background-color: var(--color-section-bg);
  padding: 120px 0;
  overflow: hidden; /* Keep the section contained */
}
.scroller-label {
  margin-bottom: 40px !important;
  text-align: center !important;
  font-size: 22px;
  font-weight: 800;
}

.logo-slider {
  width: 100%;
  position: relative;
  padding: 40px 0; /* Creates "safe zone" so zoomed images don't cut off */
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 120px;
  animation: scrollLogos 40s linear infinite;
}

.logo-track img {
  height: 50px;
  width: auto;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* THE FIX: Zooming without breaking boundaries */
.logo-track img:hover {
  transform: scale(1.4) translateY(-10px);
  z-index: 10; /* Brings zoomed logo to front */
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- SECTION 3: PRODUCT GRID --- */
.portfolio-section {
  padding: 100px 0;
  background: #fff;
}

.portfolio-header {
  margin-bottom: 60px;
  text-align: center;
}
.section-h2 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.product-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #f0f0f0;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  background-color: var(--color-green-tint);
}

/* Make the image wrapper a block so it fills the space */
.img-link-wrapper {
  display: block;
  text-decoration: none;
  overflow: hidden; /* Keeps the zoom effect inside the box */
  border-radius: 16px 16px 0 0; /* Matches your card top corners */
}

/* Add a smooth zoom effect when the image (or the card) is hovered */
.product-card:hover .card-img-box img {
  transform: scale(1.08);
  transition: transform 0.4s ease;
}

.card-img-box img {
  transition: transform 0.4s ease;
  display: block;
  width: 100%;
}

/* Optional: Subtle dim effect on hover to show it is active */
.img-link-wrapper:hover .card-img-box {
  opacity: 0.9;
}

.card-img-box {
  /* background: #f9f9f9; */
  border-radius: 16px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}

.card-img-box img {
  max-width: 80%;
  transition: 0.5s ease;
}
.product-card:hover .card-img-box img {
  transform: scale(1.1);
}

.award-badge {
  background: var(--color-primary-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}

.card-content h3 {
  font-family: var(--font-head);
  font-size: 18px;
  margin-bottom: 12px;
}
.card-content p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 16px;

  padding: 10px 22px; /* smaller padding */
  border-radius: 40px;

  background: #16a34a;
  color: #fff;

  font-size: 13px; /* slightly smaller text */
  font-weight: 600;
  text-decoration: none;

  transition: all 0.25s ease;

  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.22);
}

/* hover */

.card-link:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(22, 163, 74, 0.32);
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  /* date:-2/3/26 by jayraj for mobile responsive */
  .hero-split {
    display: flex;
    flex-direction: column;
  }
}

/* Sections CSS 2 End here */

/* Section 3 CSS start Here */

.indiastar-premium {
  padding: 140px 0;
  background: linear-gradient(180deg, #0d3a2a 0%, #0b2f22 100%);
  position: relative;
  overflow: hidden;
}

.indiastar-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

/* LEFT CONTENT */

.award-kicker {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.award-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 30px;
}

.award-title span {
  color: var(--color-gold);
}

/* GOLD DIVIDER */

.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin-bottom: 30px;
  border-radius: 10px;
}

.award-desc {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

/* RIGHT VISUAL */

.indiastar-right {
  display: flex;
  justify-content: center;
}

.trophy-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  padding: 50px 40px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.trophy-card img {
  width: 220px;
  display: block;
}

.trophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Interactive 3D Explorer  styling for mobile  by jayraj date:-13/3/2026*/
.adjust-st {
  margin: 20px;
  font-family: var(--font-head);
  text-align: center;
  font-size: 30px;
}

/* Section 3 CSS end Here */
/* ---section 4 CSS Start --- */
.industries-modern {
  padding: 120px 0;
  background: #fafafa;
}

.industry-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.bento-tile {
  background: white;
  padding: 50px 40px;
  border-radius: 24px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.tile-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}
.bento-tile h3 {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  color: #1c1917;
}
.tile-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  transition: 0.3s;
  color: #16a34a;
}

.bento-tile:hover {
  transform: scale(1.03);
  border-color: #16a34a; /* PRIMARY ACCENT */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.bento-tile:hover .tile-arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* MOBILE */
@media (max-width: 992px) {
  .indiastar-wrap {
    display: flex;
    flex-direction: column;
  }
  .trophy-content {
    flex-direction: column;
    text-align: center;
  }
  .industry-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .industry-bento-grid {
    grid-template-columns: 1fr;
  }
}
/* Section 4 CSS End here */

/* section 5 css start */

.industry-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.bento-tile {
  background: white;
  padding: 50px 40px;
  border-radius: 24px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.tile-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}
.bento-tile h3 {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  color: #1c1917;
}
.tile-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  transition: 0.3s;
  color: #16a34a;
}

/* INNER IMAGE BOX */
.card-image-box {
  flex: 1;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6d7bb;
  overflow: hidden;
}

/* IMAGE FIT */
.card-image-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* BOTTOM ROW */
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

/* TITLE
.card-title {
  font-size: 14px;
  font-weight: 500;
} */

/* ARROW */
.card-arrow {
  font-size: 20px;
  transition: 0.3s ease;
}

/* HOVER */
.bento-tile:hover {
  transform: translateY(-4px);
  background-color: var(--color-green-tint);
}

.tile-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}
.bento-tile h3 {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  color: #1c1917;
}
.tile-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  transition: 0.3s;
  color: #16a34a;
}

.bento-tile:hover {
  transform: scale(1.03);
  border-color: #16a34a; /* PRIMARY ACCENT */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.bento-tile:hover .tile-arrow {
  opacity: 1;
  transform: translateX(5px);
}

.bento-tile:hover .tile-arrow {
  opacity: 1;
  transform: translateX(5px);
}
/* MOBILE */
@media (max-width: 992px) {
  .trophy-content {
    flex-direction: column;
    text-align: center;
  }
  .industry-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .industry-bento-grid {
    grid-template-columns: 1fr;
  }
}

/* section 5 css end */

/* Section 6 footer CTA CSS start From here  */

.footer-cta-section {
  padding: 100px 0;
}

/* White Card */

.footer-cta-card {
  background: var(--color-base); /* #FFFFFF */
  border-radius: 20px;
  padding: 70px 80px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.footer-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

/* Text */

.footer-cta-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.footer-cta-description {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 520px;
}

/* Primary Accent Button */

.cta-accent-btn {
  background: var(--color-primary-accent); /* #16A34A */
  color: #ffffff;
  padding: 18px 42px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.04em;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  transition: all 0.3s ease;
}

.cta-accent-btn:hover {
  background: #13863d; /* slightly darker shade */
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(22, 163, 74, 0.25);
}

@media (max-width: 768px) {
  .footer-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }

  .footer-cta-heading {
    font-size: 32px;
  }
}

/* Section 6 css End here  */

/* ----------------------------------------------------Index Page CSS Start  */

/* About Us page CSS Start  */

/* ===== HERO ===== */
.about-hero {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, var(--color-green-tint));
}

.about-hero h1 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-hero p {
  max-width: 700px;
  margin: auto;
  color: var(--color-text-secondary);
}

.accent {
  color: var(--color-primary-accent);
}

/* ===== INTRO ===== */
.about-intro {
  padding: 80px 0;
  text-align: center;
}

.about-intro h2 {
  font-family: var(--font-head);
  margin-bottom: 20px;
}

.about-intro p {
  max-width: 750px;
  margin: 10px auto;
  color: var(--color-text-secondary);
}

/*  */

/* ===== STATS SECTION ===== */
/* ============================= */
/* STATS SECTION */
/* ============================= */

.about-stats {
  padding: 80px 0;
  background: var(--color-section-bg);
}

/* HEADING */

.stats-tagline {
  text-align: center;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 60px;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* MAIN LAYOUT */

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

/* LEFT SIDE */

.stats-left {
  width: 100%;
}

/* STATS GRID */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */

.stat-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  background: var(--color-green-tint);
}

/* NUMBER */

.stat-card h3 {
  font-size: 34px;
  margin-bottom: 8px;
  font-family: var(--font-head);
  color: var(--color-primary-accent);
}

/* TEXT */

.stat-card span {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* RIGHT IMAGE */

.stats-media {
  width: 100%;
  height: 100%;
}

.stats-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 26px;
}

/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width: 1024px) {
  .about-stats {
    padding: 70px 0;
  }

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

  .stats-media {
    order: -1;
  }

  .stats-media img {
    height: 380px;
  }

  .stats-tagline {
    font-size: 26px;
    margin-bottom: 40px;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {
  .about-stats {
    padding: 60px 0;
  }

  .stats-tagline {
    font-size: 24px;
  }

  .stats-grid {
    gap: 18px;
  }

  .stat-card {
    padding: 26px 20px;
  }

  .stat-card h3 {
    font-size: 28px;
  }
}

/* ============================= */
/* SMALL MOBILE */
/* ============================= */

@media (max-width: 480px) {
  .stats-tagline {
    font-size: 22px;
  }

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

  .stat-card {
    padding: 24px 18px;
  }

  .stat-card h3 {
    font-size: 26px;
  }

  .stats-media img {
    height: 260px;
  }
}
/* STATS CSS END */
/* ===== CREATIVE JOURNEY SECTION ===== */

.creative-journey {
  padding: 120px 0;
  background: #fdfaf3;
  overflow: hidden;
}

/* HEADER */

.journey-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 100px;
}

.sub-heading {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #2d6a4f;
  background: #e9f5ef;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.journey-header h2 {
  font-family: var(--font-head);
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1b4332;
}

.highlight {
  color: #2d6a4f;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: #e9f5ef;
  border-radius: 6px;
}

.journey-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

/* GRID */

.journey-grid {
  position: relative;
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 110px;
}

/* TIMELINE SVG */

.journey-svg-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.timeline-path {
  fill: none;
  stroke: #2d6a4f;
  stroke-width: 3;
  stroke-dasharray: 10 10;
  opacity: 0.5;
}

/* ROW */

.milestone-row {
  position: relative;
  display: flex;
  width: 100%;
}

/* alternating layout */

.row-1,
.row-3,
.row-5 {
  justify-content: flex-start;
}

.row-2,
.row-4 {
  justify-content: flex-end;
}

/* CARD */

.milestone-card {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  width: 44%;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 2px solid #333;
  box-shadow: 8px 8px 0 rgba(45, 106, 79, 0.15);
  transition: 0.35s;
}

.milestone-card:hover {
  transform: translateY(-6px);
  box-shadow: 12px 12px 0 #2d6a4f;
  border-color: #2d6a4f;
}

/* ICON */

.icon-box {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f3f7f4, #e3efe9);
  border: 2px dashed #2d6a4f;
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.08),
    inset 0 0 0 6px rgba(255, 255, 255, 0.7);
}

.icon-box i {
  font-size: 24px;
  color: #2d6a4f;
}

.milestone-card:hover .icon-box {
  background: #2d6a4f;
}

.milestone-card:hover .icon-box i {
  color: #fff;
}

/* TEXT */

.content h4 {
  margin-bottom: 6px;
  font-weight: 800;
  color: #1b4332;
}

.content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* MOBILE */

@media (max-width: 768px) {
  .journey-svg-line {
    display: none;
  }

  .milestone-row {
    justify-content: center !important;
  }

  .connector {
    display: none;
  }

  .milestone-card {
    width: 100%;
  }
}
/* Joureny END */
/* ===== CERTIFICATES ===== */
.about-certificates {
  padding: 80px 0;
  background: var(--color-section-bg);
  text-align: center;
}

.certificate-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.certificate-grid img {
  width: 100%;
  border-radius: 20px;
  transition: 0.3s ease;
}

.certificate-grid img:hover {
  transform: scale(1.05);
}
/* MOBILE VIEW */
@media (max-width: 768px) {
  .certificate-grid {
    grid-template-columns: 1fr; /* one certificate per row */
    gap: 20px;
  }
}

/* ===== CLIENTS ===== */
.about-clients {
  padding: 110px 0;
  position: relative;
}

/* MAIN WRAPPER */
.client-split-wrapper {
  display: flex;
  align-items: center;
  gap: 110px;

  /* text first, logos second */
  flex-direction: row-reverse;
}

/* LEFT SIDE (LOGOS) */
.logo-bento {
  flex: 1;
  position: relative;
}

/* glow background behind logos */
.logo-bento::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(22, 163, 74, 0.12) 0%,
    rgba(22, 163, 74, 0) 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.bento-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* LOGO CARD */
.glass-card {
  background: linear-gradient(145deg, #ffffff, #fbfbfb);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 32px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  box-shadow:
    0 8px 14px rgba(0, 0, 0, 0.04),
    0 2px 4px rgba(0, 0, 0, 0.02);
}

/* LOGO */
.glass-card img {
  max-height: 38px;
  opacity: 1;
  transition: transform 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-14px) scale(1.03);
  border-color: rgba(22, 163, 74, 0.35);

  box-shadow:
    0 30px 50px rgba(0, 0, 0, 0.09),
    0 0 0 1px rgba(22, 163, 74, 0.15);
}

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

/* TEXT SIDE */
.content-side {
  flex: 1;
  text-align: left;
}

.section-h2 {
  font-weight: 700;
  line-height: 1.3;
}

.description {
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
  margin: 28px 0;
  max-width: 520px;
}

/* STATS */
.stats-row {
  display: flex;
  gap: 55px;
  margin-top: 35px;
}

.stat-number {
  display: block;
  font-size: 38px;
  font-weight: 800;
}

.stat-label {
  font-size: 14px;
  color: #8a8a8a;
}

/* MOBILE */
/* MOBILE ORDER FIX */
@media (max-width: 992px) {
  .client-split-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  /* show text first */
  .content-side {
    order: 1;
    text-align: center;
  }

  /* logos after text */
  .logo-bento {
    order: 2;
  }

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

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* About Us page CSS END  */

/* Industries CSS Start */

/* ===== ROOT DESIGN SYSTEM ===== */
:root {
  --color-base: #ffffff;
  --color-section-bg: #f9fafb;
  --color-text-main: #1c1917;
  --color-text-secondary: #6b7280;
  --color-primary-accent: #16a34a;
  --color-green-tint: #dcfce7;

  --font-head: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

body {
  background: var(--color-base);
  font-family: var(--font-body);
  color: var(--color-text-main);
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* --- UI Variables --- */
:root {
  --primary-green: #22c55e;
  --dark-green: #16a34a;
  --text-dark: #0f172a;
  --text-slate: #475569;
  --glass: rgba(255, 255, 255, 0.75);
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* hero section css add by jayraj date:-6/3/26 */

/* HERO */
.industries-hero {
  padding: 170px 0 120px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #dcfce7 100%);
}

.industries-hero h1 {
  font-family: var(--font-head);
  font-size: 50px;
  margin-bottom: 20px;
}

.industries-hero p {
  max-width: 720px;
  margin: auto;
  color: var(--text-light);
}

/* SECTION REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: var(--transition);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* CENTERED HEADING STYLE */
.section-title {
  text-align: center;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 70px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

/* GRID LAYOUT */
.industry-section {
  padding: 120px 0;
  overflow: hidden;
}

.industry-section:nth-child(even) {
  background-color: #f8fafc;
}

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

/* IMAGE FLOATING EFFECT */
@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.industry-image.floating img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  animation: softFloat 6s ease-in-out infinite;
}

/* GLASSMORPHISM BOX */
.industry-box {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 50px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.industry-box:hover {
  background: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(34, 197, 94, 0.15);
  border-color: var(--primary-green);
}

/* DECORATIVE NUMBERING */
.number-bg {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(34, 197, 94, 0.06);
  line-height: 1;
  user-select: none;
}

/* TYPOGRAPHY */
.industry-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 25px 0 10px;
}

.industry-box h4:first-of-type {
  margin-top: 0;
}

.industry-box p {
  color: var(--text-slate);
  line-height: 1.7;
  margin-bottom: 0;
}

/* CTA PILL BUTTON */
.industry-product {
  margin-top: 35px;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  background: var(--primary-green);
  color: white !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.cta-pill span {
  margin-left: 10px;
  transition: transform 0.3s;
}

.cta-pill:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

.cta-pill:hover span {
  transform: translateX(5px);
}

/* ALTERNATE ROW LOGIC */
.industry-section.alt .industry-grid {
  direction: rtl;
}
.industry-section.alt .industry-content {
  direction: ltr;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .industry-section.alt .industry-grid {
    direction: ltr;
  }
  .industry-box {
    padding: 35px;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .industries-hero h1 {
    font-size: 36px;
  } /* for hero add by jayraj date:-6/3/26*/
}
/* All Sections CSS END */

/* Industries CSS Start */

/* ========== Careers Page CSS Start  */

/* ===============================
   CAREERS HERO SECTION
================================ */

.careers-hero {
  padding: 160px 0 120px;
  background: #ffffff;
}

/* background block */

/* title */

.careers-hero-inner h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
}

.careers-hero-inner span {
  color: var(--color-primary-accent);
}

/* subtitle */

.hero-subtext {
  max-width: 680px;
  margin: 0 auto 35px;
  font-size: 18px;
  color: black !important;
}

/* CTA */

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--color-primary-accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.25s ease;
}

.hero-btn:hover {
  background: #15803d;
  transform: translateY(-2px);
}

/* ===============================
   CAREERS HERO SECTION
================================ */

.careers-hero {
  padding: 180px 0 120px;
  text-align: center;

  /* same background style like About page */
  background: linear-gradient(180deg, #e8f3ee 0%, #d6ebe0 100%);
}

.careers-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Title */

.careers-hero-inner h1 {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
}

.careers-hero-inner span {
  color: var(--color-primary-accent);
}

/* Subtext */

.hero-subtext {
  max-width: 650px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--color-text-secondary);
}

/* Button */

.hero-btn {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 50px;

  background: var(--color-primary-accent);
  color: #fff;

  text-decoration: none;
  font-weight: 600;

  transition: all 0.25s ease;
}

.hero-btn:hover {
  background: #15803d;
  transform: translateY(-2px);
}

/* OPENINGS */
.openings-section {
  padding: 120px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: 36px;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-light);
}

.job-list {
  max-width: 900px;
  margin: auto;
}

.job-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px 35px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.job-card:hover .apply-btn {
  background: #16a34a;
  color: #fff !important;
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  background-color: var(--color-green-tint);
}

.job-left h3 {
  font-family: var(--font-head);
  margin-bottom: 8px;
}

.job-meta span {
  font-size: 14px;
  color: var(--text-light);
  margin-right: 20px;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 28px;
  border-radius: 50px;

  background: #16a34a;
  color: #fff !important;

  font-weight: 600;
  text-decoration: none;

  transition: all 0.3s ease;

  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
}

/* hover effect */

.apply-btn:hover {
  background: #15803d;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.35);
}

/* ================= TABLET ================= */

@media (max-width: 992px) {
  .job-card {
    padding: 25px 28px;
  }

  .job-left h3 {
    font-size: 20px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
  }

  .job-meta span {
    margin-right: 12px;
  }

  .apply-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}
/*  */

/* ==============================
   APPLICATION SECTION
============================== */

.application-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.application-box {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 70px 60px 90px;
  border-radius: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* HEADER */

.application-box h2 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}

.application-box p {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: 45px;
}

/* FORM */

.application-form {
  width: 100%;
}

/* GRID ROW */

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 22px;
}

/* INPUTS */

.application-form input,
.application-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  font-family: var(--font-body);
  font-size: 14px;
  background: #fafafa;
  transition: all 0.25s ease;
}

/* FOCUS */

.application-form input:focus,
.application-form textarea:focus {
  border-color: var(--color-primary-accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.08);
  outline: none;
}

/* TEXTAREA */

.application-form textarea {
  height: 140px;
  resize: none;
  margin-bottom: 20px;
}

/* FILE INPUT */

.file-row {
  margin-bottom: 40px;
}

.file-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.file-row input[type="file"] {
  width: 100%;
  background: #f3f4f6;
  padding: 14px;
  border-radius: 12px;
  border: 1px dashed #d1d5db;
  cursor: pointer;
  transition: 0.2s ease;
}

.file-row input[type="file"]:hover {
  border-color: var(--color-primary-accent);
  background: #f0fdf4;
}

/* =========================
   STICKY SUBMIT BUTTON
========================= */

.form-submit {
  position: sticky;
  bottom: 0;

  display: block;
  width: 100%;

  background: var(--color-primary-accent);
  color: #ffffff;

  padding: 18px;
  border-radius: 100px;

  border: none;
  font-weight: 600;
  font-size: 16px;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* hover */

.form-submit:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.25);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .application-box {
    padding: 45px 28px 80px;
  }

  .application-box h2 {
    font-size: 28px;
  }

  .form-submit {
    font-size: 15px;
    padding: 16px;
  }
}

/* ========== Careers Page CSS END */

/* ===== Quote Page CSS start ==== */
:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --text-main: #0f172a;
  --text-light: #64748b;
  --bg-soft: #f8fafc;
  --border-color: #e2e8f0;
  --font-head: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
}

.quote-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.quote-container {
  max-width: 800px;
  margin: -40px auto 100px;
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

/* Step Indicator */
.step-wizard {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.step-wizard::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-light);
  transition: 0.3s;
}

.step.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

/* Form Styling */
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group h3 {
  font-family: var(--font-head);
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--text-main);
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.option-card {
  border: 2px solid var(--border-color);
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.option-card:hover {
  border-color: var(--green);
  background: #f0fdf4;
}

input[type="radio"]:checked + .option-card {
  border-color: var(--green);
  background: #f0fdf4;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  margin-bottom: 20px;
  outline: none;
}

input:focus {
  border-color: var(--green);
}

/* Navigation Buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.btn-next,
.btn-submit {
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-back {
    background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}


.btn-next:hover {
  background: var(--green-dark);
}

/* WhatsApp Backup */
.whatsapp-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 600px) {
  .options-grid {
    grid-template-columns: 1fr;
  }
  .quote-container {
    padding: 30px 20px;
  }
}

/* ===== Quote Page CSS END ==== */

/* Product Details Page CSS start (Fiber Page) */

/* --- PRODUCT PAGE STYLES --- */

/* ===== PRODUCT HEADER WITH CONTINUOUS WAVE ===== */

.product-header {
  background: var(--color-green-tint);
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Floating text effect */
.hero-h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.badge-tag {
  background: var(--color-primary-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 40px;
  letter-spacing: 1.5px;
  display: inline-block;
}

/* Wave container */
.header-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.header-wave svg {
  width: 100%;
  height: 120px;
  display: block;
}

/* Floating animation */
@keyframes floatText {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-h1 {
    font-size: 30px;
  }
  .product-header {
    padding: 120px 0 100px;
  }
}

.sizing-section {
  padding: 80px 0;
  /* background: var(--color-section-bg); */
}

.sizing-wrapper {
  background: #ffffff;
  padding: 60px;
  border-radius: 28px;
  border: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
  border: 1px solid var(--color-primary-accent);
}

/* LEFT SIDE */
.sizing-title {
  font-family: var(--font-head);
  font-size: 26px;
  margin-bottom: 30px;
}

/* TABLE */
.sizing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 18px; /* space between rows */
}

.sizing-table thead th {
  text-align: left;
  padding: 16px 20px;
  font-family: var(--font-head);
  color: var(--color-primary-accent);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.sizing-table tbody tr {
  background: #fafafa;
  transition: 0.3s ease;
}

.sizing-table tbody tr:hover {
  background: var(--color-green-tint);
}

.sizing-table td {
  padding: 20px;
  font-size: 15px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.sizing-table td:first-child {
  border-left: 1px solid #f0f0f0;
  border-radius: 16px 0 0 16px;
}

.sizing-table td:last-child {
  border-right: 1px solid #f0f0f0;
  border-radius: 0 16px 16px 0;
}

/* RIGHT SIDE CARD */
.size-info-card {
  background: var(--color-green-tint);
  padding: 40px;
  border-radius: 24px;
  position: sticky;
  top: 100px;
}

.size-info-card h4 {
  font-family: var(--font-head);
  margin-bottom: 16px;
}

.size-info-card p {
  margin-bottom: 25px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  /* heading font size  adjust by jayraj date:-13/3/2026*/
  /* our journy heading adjust */
  .journey-header h2 {
    font-size: 30px;
  }

  /* Interactive 3D Explorer  styling for mobile */
  .adjust-st {
    margin-bottom: 20px;
    font-family: var(--font-head);
    text-align: center;
  }

  .heading-adjust {
    font-size: 25px;
  }

  /* padding adjust */
  .pd-adjust {
    padding: 50px;
  }
  .pd-top-adjust {
    padding-top: 50px;
  }
  /* margin adjust */

  /* responsive  avaliable size section add by jayraj date:-13/3/2026 */
  .sizing-table {
    width: 100%;
    table-layout: fixed; /* forces columns to fit */
  }

  .sizing-table th,
  .sizing-table td {
    padding: 8px 4px; /* reduce padding */
    font-size: 12px; /* smaller text */
    text-align: center;
    word-break: break-word;
  }

  .sizing-title {
    font-size: 20px;
    text-align: center;
  }

  .sizing-wrapper {
    padding: 25px 15px;
    gap: 25px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .sizing-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .size-info-card {
    position: static;
  }
}

/* 2. Product Showcase Grid */
/* --- Header & New Button Positions --- */
.product-header {
  text-align: center;
  padding: 100px 0 180px;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: white;
  position: relative;
}

.header-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

/* Button Styles for Header */
.btn-outline-white {
  padding: 12px 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.btn-outline-white:hover {
  background: white;
  color: #111;
}

.btn-primary-header {
  padding: 12px 35px;
  background: #ef4444; /* Your brand red */
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-primary-header:hover {
  background: #d32f2f;
  transform: translateY(-2px);
}

/* --- Full Width Motion Gallery --- */
.motion-gallery {
  background: white;
  padding: 50px 0;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-primary-accent);
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: scroll 22s linear infinite;
}

.product-item {
  width: 250px;
  flex-shrink: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-item img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}

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

.motion-gallery:hover .gallery-track {
  animation-play-state: paused;
}

/* Smooth infinite loop */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* 3. Interactive 3D Viewer */
.viewer-3d-wrapper {
  width: 100%;
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.viewer-card {
  width: 95%;
  max-width: 1100px;
  height: 70vh;
  background: #f8f9fa;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1500px;
  cursor: grab;
  border: 1px solid #eee;
  overflow: hidden;
}

.viewer-card:active {
  cursor: grabbing;
}

.object-3d {
  width: 45%;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  display: flex;
  justify-content: center;
}

.object-3d img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.controls-text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 11px;
  color: #888;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #efefef;
  pointer-events: none;
}

/* Loading Progress Bar Styles */
.progress-bar {
  display: block;
  width: 33%;
  height: 10%;
  max-height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.1);
}

.update-bar {
  background-color: var(--color-primary-accent);
  width: 0%;
  height: 100%;
  transition: width 0.3s;
}

.loader-text {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  font-size: 14px;
}

/* 4. Sizing Table */
.sizing-table-container {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  margin-bottom: 50px;
}

.sizing-table {
  width: 100%;
  border-collapse: collapse;
}

.sizing-table th {
  text-align: left;
  padding: 15px;
  background: var(--color-section-bg);
  color: var(--color-primary-accent);
  font-family: var(--font-head);
  border-radius: 8px 8px 0 0;
}

.sizing-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

/* 5. Sidebar Actions */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-outline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid var(--color-primary-accent);
  color: var(--color-primary-accent);
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: var(--color-primary-accent);
  color: white;
}

/* 6. Customisation Bar */

.process-custom-section {
  /* padding: 100px 0; */
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 36px);
  color: var(--color-primary-accent);
  margin-bottom: 60px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* Outer container wrapper */
.parts-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* Grid Layout */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}



/* Card Design */
.part-card {
  position: relative;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 9; /* Keeps cards uniform and cinematic */
  cursor: pointer;
}

/* Red Bottom Border (Inspired by your image) */
.part-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--color-primary-accent, #ef4444);
  z-index: 10;
  transform: scaleX(0.4);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: left;
}

/* paper tube card text */
/* .paper_tubes_card_heading{
  margin-bottom: -3px !important;
  font-size: 15px !important;
} */

/* paper tub card aspect ration */
.papertub_card{
  aspect-ratio: 3/3;
}

.part-card:hover::after {
  transform: scaleX(1);
}

/* Image Styling */
.part-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) grayscale(0.2);
  transition: all 0.6s ease;
}

.part-card:hover img {
  filter: brightness(0.5) grayscale(0);
  transform: scale(1.08);
}

/* Overlay Content */
.part-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Text at bottom */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  z-index: 5;
}

/* Tag/Numbering */
.part-tag {
  position: absolute;
  top: 30px;
  left: 40px;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  background: var(--color-primary-accent, #ef4444);
  padding: 4px 12px;
  border-radius: 50px;
}

/* Text Content */
.part-text h4 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.part-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  max-width: 85%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* Hover Reveal Effect */
.part-card:hover .part-text h4 {
  transform: translateY(0);
}

.part-card:hover .part-text p {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .parts-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .parts-grid {
    grid-template-columns: 1fr !important;
  }

  .part-card {
    aspect-ratio: 4 / 3; /* Taller cards on mobile */
  }
  /* papertube card */
  .papertub_card{
    aspect-ratio: 3/3;;
  }
  /* paper tube card text */
  .paper_tubes_card_heading{
    margin-bottom: 15px !important;
    font-size: 16px !important;
  }

  .part-overlay {
    padding: 25px;
  }

  .part-text p {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-header {
  background: var(--color-green-tint);
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Product Details Page CSS END  */

/* Section under Development CSS Start */
/* UNDER DEVELOPMENT CARD */
.under-dev-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  background: var(--color-section-bg);
  border-radius: 16px;
  border: 1px dashed var(--color-text-secondary);
  padding: 32px;
  text-align: center;
  transition: 0.3s ease;
}

/* Optional subtle hover (keeps it modern) */
.under-dev-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.under-dev-content {
  max-width: 420px;
}

.dev-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.under-dev-content h4 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.under-dev-content p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}

.dev-note {
  font-size: 13px;
  color: var(--color-primary-accent);
  font-weight: 500;
}

/* Section under Development CSS End */
