:root {
  --primary-blue: #092c5a;
  --accent-blue: #1a73e8;
  --sky-blue: #70b4ff;
  --glow-blue: rgba(26, 115, 232, 0.45);
  --pure-white: #ffffff;
  --text-muted: #d8e5f5;
  --card-bg: rgba(255, 255, 255, 0.07);
  --card-border: rgba(255, 255, 255, 0.22);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Default font: Times New Roman */
body, .hero-section, .hero-section * {
  font-family: "Times New Roman", Times, serif !important;
}

/* --- Hero Container --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--pure-white);
  padding:  9rem 70px;
  background-color: #030f20;
}

/* --- Top Slide Progress Bar --- */
.slide-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--sky-blue), var(--pure-white));
  box-shadow: 0 0 12px var(--sky-blue);
  z-index: 10;
}

.slide-progress-bar.animate {
  animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* --- Floating Ambient Glow Orbs --- */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 2;
  animation: floatOrb 10s ease-in-out infinite alternate;
}

.orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.4), transparent 70%);
  top: -80px;
  right: 5%;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(112, 180, 255, 0.25), transparent 70%);
  bottom: -60px;
  left: 10%;
  animation-duration: 14s;
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(40px) scale(1.1); }
  100% { transform: translateY(-30px) scale(0.95); }
}

/* --- Slider & Smooth Left-to-Right Translation + Ken Burns Zoom --- */
.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.9s ease;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.slide.prev {
  opacity: 0;
  transform: translateX(100%);
  z-index: 1;
}

.img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 5s ease-out;
}

.slide.active .slide-img {
  transform: scale(1.12);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    95deg,
    rgba(3, 15, 32, 0.96) 0%,
    rgba(9, 44, 90, 0.25) 55%,
    rgba(3, 15, 32, 0.25) 100%
  );
}

/* --- Content Layout --- */
.hero-container {
  position: relative;
  z-index: 4;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 840px;
}

/* --- Staggered Text Reveal --- */
.anim-item {
  opacity: 0;
  transform: translateY(35px) scale(0.98);
  filter: blur(6px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-item.animate-reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.anim-item:nth-child(1) { transition-delay: 0.12s; }
.anim-item:nth-child(2) { transition-delay: 0.24s; }
.anim-item:nth-child(3) { transition-delay: 0.36s; }
.anim-item:nth-child(4) { transition-delay: 0.48s; }
.anim-item:nth-child(5) { transition-delay: 0.60s; }
.anim-item:nth-child(6) { transition-delay: 0.72s; }

/* --- Badge with Continuous Shimmer & Glow --- */
.badge-wrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  padding: 8px 22px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.3), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(112, 180, 255, 0.5);
  color: var(--sky-blue);
  font-size: 0.95rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(26, 115, 232, 0.3);
  position: relative;
  overflow: hidden;
}

.badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: badgeShine 3.5s infinite;
}

@keyframes badgeShine {
  0% { left: -100%; }
  35%, 100% { left: 200%; }
}

/* --- Typography --- */
.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  font-weight: bold;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--pure-white);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  background: linear-gradient(120deg, #70b4ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(112, 180, 255, 0.4));
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  color: var(--sky-blue);
  margin-bottom: 18px;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: white;
  margin-bottom: 34px;
  max-width: 740px;
}

/* --- Interactive Glowing Buttons --- */
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #1a73e8, #0b4ca0);
  color: var(--pure-white);
  border: 2px solid #2880f5;
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.5);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 28px rgba(26, 115, 232, 0.7);
  border-color: #70b4ff;
}

.btn-shimmer {
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(30deg);
  animation: btnSweep 3s infinite;
}

@keyframes btnSweep {
  0% { left: -70%; }
  30%, 100% { left: 160%; }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--pure-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: var(--pure-white);
  color: var(--primary-blue);
  border-color: var(--pure-white);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* --- Floating Glassmorphism Stat Cards --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 28px;
}

.stat-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 16px 14px;
  border-radius: 8px;
  backdrop-filter: blur(12px);
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  animation: cardFloat 6s ease-in-out infinite alternate;
}

.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 1.5s; }
.stat-card:nth-child(3) { animation-delay: 3s; }
.stat-card:nth-child(4) { animation-delay: 4.5s; }

@keyframes cardFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-6px); }
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.04) !important;
  border-color: var(--sky-blue);
  box-shadow: 0 10px 25px rgba(26, 115, 232, 0.35);
}

.stat-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(112, 180, 255, 0.15), transparent 60%);
  pointer-events: none;
}

.stat-card h4 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--pure-white);
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-card h4 .counter {
  color: #8ac0ff;
  transition: color 0.3s;
}

.stat-card:hover .counter {
  color: #ffffff;
}

.stat-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- Slide Indicators --- */
.slider-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
  width: 38px;
  border-radius: 8px;
  border-color: var(--sky-blue);
  background: var(--accent-blue);
  box-shadow: 0 0 12px var(--accent-blue);
}

/* --- Responsive Breakpoints --- */
@media (max-width: 860px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }
  .btn {
    width: 100%;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}

/* =========================================================
   MOBILE & TABLET RESPONSIVE
   ========================================================= */

/* ---------- Large Tablets ---------- */
@media (max-width: 1024px) {

  .hero-section {
    min-height: 100svh;
    padding: 7rem 40px 5rem;
  }

  .hero-container {
    width: 92%;
    max-width: 900px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }

  .hero-desc {
    max-width: 650px;
    font-size: 1.05rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat-card {
    padding: 15px 12px;
  }

  .stat-card h4 {
    font-size: 1.7rem;
  }
}


/* ---------- Tablets ---------- */
@media (max-width: 768px) {

  .hero-section {
    min-height: 100svh;
    height: auto;
    padding: 7rem 25px 4rem;
    align-items: center;
  }

  .hero-container {
    width: 100%;
    max-width: 680px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  /* Background image */
  .slide-img {
    object-position: center center;
  }

  .slide-overlay {
    background: linear-gradient(
    95deg,
    rgba(3, 15, 32, 0.96) 0%,
    rgba(9, 44, 90, 0.25) 55%,
    rgba(3, 15, 32, 0.25) 100%
  );
  }

  /* Badge */
  .badge-wrapper {
    margin-bottom: 16px;
  }

  .badge {
    padding: 7px 17px;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  /* Heading */
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.35rem);
    margin-bottom: 14px;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 26px;
    max-width: 100%;
  }

  /* Buttons */
  .hero-actions {
    gap: 12px;
    margin-bottom: 30px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 22px;
  }

  .stat-card {
    padding: 14px 10px;
    border-radius: 7px;
  }

  .stat-card h4 {
    font-size: 1.6rem;
  }

  .stat-card p {
    font-size: 0.85rem;
  }

  /* Dots */
  .slider-dots {
    bottom: 18px;
    gap: 9px;
  }

  .dot {
    width: 11px;
    height: 11px;
  }

  .dot.active {
    width: 30px;
  }

  /* Ambient glow */
  .orb-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -80px;
  }

  .orb-2 {
    width: 280px;
    height: 280px;
    bottom: -80px;
    left: -70px;
  }
}


/* ---------- Mobile ---------- */
@media (max-width: 520px) {

  .hero-section {
    min-height: 100svh;
    padding: 3rem 18px 1rem;
  }

  .hero-container {
    width: 100%;
  }

  /* Better mobile background positioning */
  .slide-img {
    object-position: 60% center;
  }

  .slide-overlay {
    background: linear-gradient(
    95deg,
    rgba(3, 15, 32, 0.96) 0%,
    rgba(9, 44, 90, 0.25) 55%,
    rgba(3, 15, 32, 0.25) 100%
  );
  }

  /* Badge */
  .badge-wrapper {
    margin-bottom: 14px;
  }

  .badge {
    padding: 6px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
  }

  /* Main heading */
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  /* Buttons stacked */
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 25px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 11px 20px;
    font-size: 0.98rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    padding-top: 18px;
  }

  .stat-card {
    min-height: 78px;
    padding: 11px 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .stat-card h4 {
    font-size: 1.35rem;
    margin-bottom: 2px;
  }

  .stat-card p {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  /* Reduce floating animation on small screens */
  .stat-card {
    animation-duration: 8s;
  }

  /* Ambient glows */
  .ambient-glow {
    filter: blur(65px);
  }

  .orb-1 {
    width: 220px;
    height: 220px;
    top: -40px;
    right: -80px;
  }

  .orb-2 {
    width: 220px;
    height: 220px;
    bottom: -60px;
    left: -80px;
  }

  /* Slider dots */
  .slider-dots {
    bottom: 10px;
    gap: 7px;
  }

  .dot {
    width: 9px;
    height: 9px;
    border-width: 1px;
  }

  .dot.active {
    width: 25px;
    height: 9px;
  }

  /* Progress bar */
  .slide-progress-bar {
    height: 3px;
  }
}


/* ---------- Small Phones ---------- */
@media (max-width: 380px) {

  .hero-section {
    padding: 6rem 14px 3rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-desc {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .badge {
    font-size: 0.68rem;
    padding: 5px 12px;
  }

  .btn {
    min-height: 45px;
    font-size: 0.92rem;
  }

  .stats-grid {
    gap: 7px;
  }

  .stat-card {
    min-height: 70px;
    padding: 8px 5px;
  }

  .stat-card h4 {
    font-size: 1.2rem;
  }

  .stat-card p {
    font-size: 0.67rem;
  }
}


/* ---------- Very Short Mobile Screens ---------- */
@media (max-width: 520px) and (max-height: 700px) {

  .hero-section {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-desc {
    margin-bottom: 18px;
  }

  .hero-actions {
    margin-bottom: 18px;
  }

  .stats-grid {
    padding-top: 14px;
  }

  .stat-card {
    min-height: 62px;
  }
}


/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {

  .ambient-glow,
  .stat-card,
  .badge::after,
  .btn-shimmer {
    animation: none !important;
  }

  .slide,
  .slide-img,
  .anim-item,
  .btn,
  .stat-card {
    transition: none !important;
  }
}



/* Section 1-1 Starts */
/* --- Products Section Base --- */
.products-section {
  position: relative;
  width: 100%;
  padding: 3.5rem 1.5rem 4.5rem;
  background: transparent;
  overflow: hidden;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Title Wrap */
.section-title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #111827;
}

.title-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 3.5px;
  background: #f7a600;
  border-radius: 2px;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 16px;
  justify-items: center;
}

/* =========================================================
   PERFECT SCROLL REVEAL (GPU-Accelerated Transition)
========================================================= */
.products-section .anim-item {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  filter: blur(4px);
  will-change: opacity, transform, filter;
  transition: 
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.products-section .anim-item.animate-reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* Product Card - Clean Link */
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  cursor: pointer;
  width: 100%;
  max-width: 150px;
}

/* Circular Blue Ring Only */
.circle-frame {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid #1a73e8;
  background: transparent;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-name {
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a73e8;
  text-align: center;
  line-height: 1.25;
  transition: color 0.3s ease;
}

/* Hover Effects (Applied to frame & image) */
.product-card:hover .circle-frame {
  border-color: #70b4ff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(26, 115, 232, 0.25) !important;
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

.product-card:hover .product-name {
  color: #0b4ca0;
}

/* FORCE 2 PRODUCTS PER ROW ON MOBILE */
@media screen and (max-width: 769px) {
  .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 10px !important;
    width: 100% !important;
    justify-items: center !important;
    align-items: start !important;
  }

  .product-card {
    display: flex !important;
    width: 100% !important;
    max-width: 150px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
  }

  .circle-frame {
    width: 120px !important;
    height: 120px !important;
    flex-shrink: 0 !important;
  }
}

@media screen and (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 25px 5px !important;
  }

  .product-card {
    max-width: 140px !important;
  }

  .circle-frame {
    width: 110px !important;
    height: 110px !important;
  }
}

/* Section 1-1 Starts */



/* Section 1 Starts */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #051d3b;
  --accent-blue: #1a73e8;
  --sky-blue: #3b82f6;
  --light-blue-bg: #f4f8fc;
  --pure-white: #ffffff;
  --text-dark: #1b2a47;
  --text-muted-dark: #4b5d78;
  --border-light: #d8e5f3;
}

/* Base Font */
.about-section, .about-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Section Container --- */
.about-section {
  position: relative;
  background-color: var(--pure-white);
  padding: 100px 0;
  overflow: hidden;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

/* --- Content Column --- */
.section-tag {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--light-blue-bg);
  padding: 6px 18px;
  border: 1px solid #c8ddf7;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: bold;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--accent-blue);
}

.about-lead {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.about-text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-muted-dark);
  margin-bottom: 20px;
}

/* --- Product Category Badges --- */
.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.pill {
  background: var(--light-blue-bg);
  color: var(--primary-blue);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  font-size: 0.95rem;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.pill:hover {
  background: var(--primary-blue);
  color: var(--pure-white);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

/* --- Slogan Banner Card --- */
.slogan-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
  color: var(--pure-white);
  padding: 20px 24px;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 10px 25px rgba(11, 60, 117, 0.15);
  border-left: 5px solid var(--sky-blue);
}

.slogan-icon {
  font-size: 2.2rem;
  color: #8ac0ff;
}

.slogan-text h4 {
  font-size: 1.3rem;
  margin-bottom: 2px;
  color: var(--pure-white);
}

.slogan-text p {
  font-size: 1rem;
  color: #c4dcff;
}

/* --- Right Visual Grid --- */
.about-visuals {
  position: relative;
}

.visual-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  padding: 28px 20px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(11, 60, 117, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.feature-card.highlight {
  background: var(--light-blue-bg);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(11, 60, 117, 0.12);
  border-color: var(--accent-blue);
}

.card-num {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.22rem;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--text-muted-dark);
}

/* Floating Established Badge */
.floating-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-blue);
  color: var(--pure-white);
  border: 4px solid var(--pure-white);
  border-radius: 50%;
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
  pointer-events: none;
}

.badge-ring {
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.badge-ring strong {
  font-size: 1.15rem;
}

.badge-ring span {
  font-size: 0.68rem;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* =========================================================
   UNIVERSAL SCROLL REVEAL ANIMATION SYSTEM
   (Use these classes in this and any upcoming sections!)
   ========================================================= */

.reveal-on-scroll {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Fade Up */
.reveal-up {
  transform: translateY(40px);
}

/* Fade from Left */
.reveal-left {
  transform: translateX(-40px);
}

/* Fade from Right */
.reveal-right {
  transform: translateX(40px);
}

/* Pop & Scale */
.reveal-scale {
  transform: translate(-50%, -50%) scale(0.6);
}

/* Active In-View State */
.reveal-on-scroll.revealed.reveal-up,
.reveal-on-scroll.revealed.reveal-left,
.reveal-on-scroll.revealed.reveal-right {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-on-scroll.revealed.reveal-scale {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 580px) {
  .visual-card-grid {
    grid-template-columns: 1fr;
  }
  .floating-badge {
    display: none;
  }
}

/* Section 1 Ends */


/* Section 2 Starts */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #051d3b;
  --accent-blue: #1a73e8;
  --sky-blue: #3b82f6;
  --light-blue-bg: #f4f8fc;
  --pure-white: #ffffff;
  --text-dark: #1b2a47;
  --text-muted-dark: #4b5d78;
  --border-light: #d8e5f3;
}

/* Base Font */
.brands-section, .brands-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* Section Layout */
.brands-section {
  position: relative;
  background-color: var(--light-blue-bg);
  padding: 100px 0;
}

.brands-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--pure-white);
  padding: 6px 18px;
  border: 1px solid #c8ddf7;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: bold;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent-blue);
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

/* Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}

.brand-card {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px 20px 22px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(11, 60, 117, 0.04);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-blue);
  box-shadow: 0 14px 28px rgba(11, 60, 117, 0.12);
}

.brand-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--light-blue-bg);
  color: var(--primary-blue);
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid #cce0f5;
  font-weight: bold;
}

/* Brand Logo Styling */
.brand-logo-holder {
  width: 90px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 12px;
  background: #fbfdff;
  border-radius: 6px;
  padding: 6px;
  border: 1px dashed var(--border-light);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.brand-card:hover .brand-logo-holder {
  transform: scale(1.06);
  border-color: var(--accent-blue);
}

.brand-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 1.55rem;
  font-weight: bold;
  color: var(--primary-blue);
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.brand-tagline {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
  margin-bottom: 16px;
  line-height: 1.4;
  flex-grow: 1;
}

.brand-cta {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--accent-blue);
  transition: transform 0.3s ease;
}

.brand-card:hover .brand-cta {
  transform: translateX(4px);
}

/* Bottom Banner */
.brand-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
  color: var(--pure-white);
  padding: 34px 40px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  box-shadow: 0 10px 25px rgba(11, 60, 117, 0.16);
  border-left: 6px solid var(--sky-blue);
}

.banner-content h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.banner-content p {
  font-size: 1.05rem;
  color: #c4dcff;
}

.btn-banner {
  white-space: nowrap;
  background: var(--pure-white);
  color: var(--primary-blue);
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-banner:hover {
  background: #e8f0fe;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Pop-up Modal */
.brand-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 29, 59, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}

.brand-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.brand-modal-window {
  background: var(--pure-white);
  width: 100%;
  max-width: 720px;
  border-radius: 8px;
  padding: 34px;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.brand-modal-overlay.active .brand-modal-window {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text-muted-dark);
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: #d93025;
}

.modal-header {
  display: flex;
  flex-direction: column;
}

.modal-logo-wrapper {
  width: 100px;
  height: 65px;
  background: var(--light-blue-bg);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.modal-brand-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-badge {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--light-blue-bg);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
  font-weight: bold;
}

.modal-brand-title {
  font-size: 2rem;
  color: var(--primary-blue);
  font-weight: bold;
  margin-bottom: 8px;
}

.modal-brand-description {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
  margin: 10px 0 22px;
}

.modal-products-heading {
  font-size: 1.25rem;
  color: var(--dark-navy);
  font-weight: bold;
  border-bottom: 2px solid var(--light-blue-bg);
  padding-bottom: 8px;
  margin-bottom: 18px;
}

.modal-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.modal-product-card {
  background: var(--light-blue-bg);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.modal-product-card:hover {
  transform: translateY(-4px);
}

.modal-prod-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.modal-prod-info {
  padding: 10px 12px;
  text-align: center;
}

.modal-prod-name {
  font-size: 1rem;
  font-weight: bold;
  color: var(--dark-navy);
}

.modal-footer {
  text-align: right;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.modal-quote-btn {
  display: inline-block;
  background: var(--accent-blue);
  color: var(--pure-white);
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.modal-quote-btn:hover {
  background: var(--primary-blue);
}

/* Responsive */
@media (max-width: 992px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-banner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
}

@media (max-width: 540px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
  .modal-products-grid {
    grid-template-columns: 1fr;
  }
  .brand-modal-window {
    padding: 24px 18px;
  }
}

/* Section 2 Ends */


/* Section 3 Starts */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #051d3b;
  --accent-blue: #1a73e8;
  --sky-blue: #3b82f6;
  --light-blue-bg: #f4f8fc;
  --pure-white: #ffffff;
  --text-dark: #1b2a47;
  --text-muted-dark: #4b5d78;
  --border-light: #d8e5f3;
}

/* Times New Roman Typography */
.products-section, .products-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Products Section Container --- */
.products-section {
  position: relative;
  background-color: var(--pure-white);
  padding: 100px 0;
}

.products-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--light-blue-bg);
  padding: 6px 18px;
  border: 1px solid #c8ddf7;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: bold;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent-blue);
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

/* --- Products Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

/* --- Product Card --- */
.product-card {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(11, 60, 117, 0.04);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-blue);
  box-shadow: 0 14px 28px rgba(11, 60, 117, 0.12);
}

.product-img-holder {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #eaeff5;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Section 3 Ends */


/* Section 4 Starts */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #051d3b;
  --accent-blue: #1a73e8;
  --light-blue-bg: #f4f8fc;
  --pure-white: #ffffff;
  --text-muted-dark: #4b5d78;
  --border-light: #d8e5f3;
}

/* Times New Roman Font */
.brand-ticker-section, .brand-ticker-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

.brand-ticker-section {
  position: relative;
  background-color: var(--light-blue-bg);
  padding: 90px 0 100px;
  overflow: hidden;
}

.ticker-header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--pure-white);
  padding: 6px 18px;
  border: 1px solid #c8ddf7;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: bold;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent-blue);
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
  max-width: 780px;
  margin: 0 auto;
}

/* --- Marquee Wrapper & Gradient Masks --- */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  padding: 20px 0;
}

.marquee-gradient-fade {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.marquee-gradient-fade.left {
  left: 0;
  background: linear-gradient(to right, var(--light-blue-bg) 0%, transparent 100%);
}

.marquee-gradient-fade.right {
  right: 0;
  background: linear-gradient(to left, var(--light-blue-bg) 0%, transparent 100%);
}

/* --- Left-to-Right Scrolling Track --- */
.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLeftToRight 30s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.marquee-group {
  display: flex;
  align-items: center;
}

/* --- Calculated for exactly 5 items visible on desktop screen --- */
.brand-item {
  width: 20vw; /* 100vw / 5 = exactly 5 visible */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: default;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.brand-item:hover {
  transform: translateY(-6px);
}

/* Round Badge */
.round-logo-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 2.5px solid #d0e1f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(11, 60, 117, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.brand-item:hover .round-logo-badge {
  border-color: var(--accent-blue);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.25);
  transform: scale(1.08);
}

.round-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Text Caption Below */
.brand-caption {
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--primary-blue);
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.brand-item:hover .brand-caption {
  color: var(--accent-blue);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .brand-item {
    width: 25vw; /* 4 items on tablets */
  }
}

@media (max-width: 768px) {
  .brand-item {
    width: 33.33vw; /* 3 items on small tablets */
  }
  .round-logo-badge {
    width: 90px;
    height: 90px;
    padding: 12px;
  }
  .brand-caption {
    font-size: 1.02rem;
  }
  .marquee-track {
    animation-duration: 22s;
  }
}

@media (max-width: 480px) {
  .brand-item {
    width: 50vw; /* 2 items on mobile */
  }
  .round-logo-badge {
    width: 75px;
    height: 75px;
    padding: 10px;
  }
  .brand-caption {
    font-size: 0.95rem;
  }
}

/* Section 4 Ends */

/* Section 5 Starst */

:root {
  --primary-blue: #0b3c75;
  --deep-navy: #04172f;
  --accent-blue: #1a73e8;
  --sky-blue: #5ba2f4;
  --ice-blue: #edf4fc;
  --pure-white: #ffffff;
  --text-dark: #12243d;
  --text-muted: #4e637f;
  --border-light: #d6e4f5;
  --gold-accent: #d4af37;
}

/* Base Typography: Strict Times New Roman */
.cert-showcase-section,
.cert-showcase-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Section Container --- */
.cert-showcase-section {
  position: relative;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fc 100%);
  padding: 110px 0;
  overflow: hidden;
}

.cert-shell {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Section Header --- */
.cert-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.cert-pill {
  display: inline-block;
  font-size: 0.92rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--pure-white);
  padding: 7px 22px;
  border: 1px solid #cfe0f5;
  border-radius: 50px;
  margin-bottom: 16px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(26, 115, 232, 0.08);
}

.cert-heading {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: bold;
  color: var(--deep-navy);
  line-height: 1.18;
  margin-bottom: 16px;
}

.cert-heading span {
  color: var(--accent-blue);
}

.cert-subtext {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* --- Main Glassmorphic Showcase Board --- */
.cert-board-wrap {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(11, 60, 117, 0.08);
  padding: 36px;
  margin-bottom: 40px;
}

/* --- Top ISI Quality Banner --- */
.standard-banner {
  background: linear-gradient(135deg, #092c57 0%, var(--deep-navy) 100%);
  border-radius: 12px;
  padding: 28px 32px;
  color: var(--pure-white);
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(4, 23, 47, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.isi-badge-token {
  flex-shrink: 0;
}

.isi-token-core {
  width: 120px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2.5px solid var(--sky-blue);
  box-shadow: 0 0 20px rgba(91, 162, 244, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.isi-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #b9d8ff;
  letter-spacing: 0.8px;
}

.isi-code {
  font-size: 1.85rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1.5px;
  color: var(--pure-white);
  margin: 2px 0;
}

.isi-cert-tag {
  font-size: 0.62rem;
  color: var(--sky-blue);
  text-transform: uppercase;
  font-weight: bold;
}

.standard-details {
  flex: 1;
}

.standard-details h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--pure-white);
  margin-bottom: 6px;
}

.standard-details p {
  font-size: 0.98rem;
  color: #cfe2f8;
  line-height: 1.5;
}

.standard-metrics {
  display: flex;
  gap: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 24px;
}

.metric-item {
  text-align: center;
}

.metric-item strong {
  display: block;
  font-size: 1.45rem;
  color: var(--sky-blue);
  font-weight: bold;
}

.metric-item span {
  font-size: 0.8rem;
  color: #cfe2f8;
  white-space: nowrap;
}

/* --- 3-Column Certificate Deck --- */
.cert-deck-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.deck-card {
  position: relative;
  background: var(--ice-blue);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.deck-card:hover {
  transform: translateY(-8px);
  background: var(--pure-white);
  border-color: var(--accent-blue);
  box-shadow: 0 16px 36px rgba(11, 60, 117, 0.12);
}

.deck-card.featured-deck {
  border-color: #bad3f5;
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.08);
}

.deck-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.deck-seal {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(11, 60, 117, 0.25);
}

.deck-seal svg {
  width: 22px;
  height: 22px;
}

.auth-status {
  font-size: 0.76rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-blue);
  background: rgba(11, 60, 117, 0.08);
  padding: 4px 12px;
  border-radius: 50px;
}

.deck-body {
  flex: 1;
}

.deck-brand-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--deep-navy);
  margin-bottom: 2px;
}

.deck-tier {
  display: inline-block;
  font-size: 0.88rem;
  color: var(--accent-blue);
  font-weight: bold;
  margin-bottom: 12px;
}

.deck-desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.deck-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px dashed var(--border-light);
  padding-top: 16px;
}

.spec-tag {
  font-size: 0.88rem;
  color: var(--primary-blue);
  font-weight: bold;
}

/* --- Perks Ribbon --- */
.quality-perks-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: #fbfdff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 20px 24px;
}

.perk-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.perk-icon {
  font-size: 1.8rem;
  color: var(--accent-blue);
}

.perk-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--deep-navy);
  margin-bottom: 2px;
}

.perk-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* --- Conversion Callout Banner --- */
.trust-action-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
  border-radius: 12px;
  padding: 34px 40px;
  color: var(--pure-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-left: 6px solid var(--sky-blue);
  box-shadow: 0 12px 30px rgba(11, 60, 117, 0.18);
}

.action-text h3 {
  font-size: 1.55rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.action-text p {
  font-size: 1.02rem;
  color: #cce3ff;
}

.btn-cert-action {
  white-space: nowrap;
  background: var(--pure-white);
  color: var(--primary-blue);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cert-action:hover {
  background: #dceafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* --- Responsive Rules --- */
@media (max-width: 1024px) {
  .cert-deck-grid {
    grid-template-columns: 1fr;
  }
  .standard-banner {
    flex-direction: column;
    text-align: center;
  }
  .standard-metrics {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 16px;
    width: 100%;
    justify-content: center;
  }
  .quality-perks-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 650px) {
  .cert-board-wrap {
    padding: 20px;
  }
  .trust-action-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .btn-cert-action {
    width: 100%;
  }
}

/* Section 5 Ends */

/* Section 6 Statrts */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #051d3b;
  --accent-blue: #1a73e8;
  --sky-blue: #3b82f6;
  --light-blue-bg: #f4f8fc;
  --pure-white: #ffffff;
  --text-dark: #1b2a47;
  --text-muted-dark: #4b5d78;
  --border-light: #d8e5f3;
}

/* Base Font: Strict Times New Roman */
.why-us-section,
.why-us-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Section Container --- */
.why-us-section {
  position: relative;
  background-color: var(--pure-white);
  padding: 100px 0;
}

.why-us-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 55px;
}

.section-tag {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--light-blue-bg);
  padding: 6px 18px;
  border: 1px solid #c8ddf7;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: bold;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent-blue);
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

/* --- 6 Pillars Grid --- */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.why-card {
  position: relative;
  background: var(--light-blue-bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 34px 28px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  background: var(--pure-white);
  border-color: var(--accent-blue);
  box-shadow: 0 16px 36px rgba(11, 60, 117, 0.1);
}

/* Icon Box */
.why-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--primary-blue);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(11, 60, 117, 0.2);
  transition: all 0.3s ease;
}

.why-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.why-card:hover .why-icon-wrap {
  background: var(--accent-blue);
  transform: scale(1.08);
}

.why-card-title {
  font-size: 1.45rem;
  font-weight: bold;
  color: var(--dark-navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.why-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
  flex-grow: 1;
}

/* Background Step Counter (01, 02...) */
.why-card-step {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.8rem;
  font-weight: bold;
  color: rgba(11, 60, 117, 0.08);
  user-select: none;
  transition: color 0.3s ease;
}

.why-card:hover .why-card-step {
  color: rgba(26, 115, 232, 0.2);
}

/* --- Banner Strip --- */
.why-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
  color: var(--pure-white);
  padding: 34px 40px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  box-shadow: 0 10px 25px rgba(11, 60, 117, 0.16);
  border-left: 6px solid var(--sky-blue);
}

.why-banner-text h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.why-banner-text p {
  font-size: 1.05rem;
  color: #c4dcff;
}

.btn-why-action {
  white-space: nowrap;
  background: var(--pure-white);
  color: var(--primary-blue);
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-why-action:hover {
  background: #e8f0fe;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .why-banner {
    padding: 24px 20px;
  }
  .btn-why-action {
    width: 100%;
    text-align: center;
  }
}

/* Section 6 Ends */


/* Section 7 Starts */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #051d3b;
  --accent-blue: #1a73e8;
  --sky-blue: #3b82f6;
  --light-blue-bg: #f4f8fc;
  --pure-white: #ffffff;
  --text-dark: #1b2a47;
  --text-muted-dark: #4b5d78;
  --border-light: #d8e5f3;
}

/* Strict Times New Roman Typography */
.reach-section,
.reach-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Section Container --- */
.reach-section {
  position: relative;
  background-color: var(--light-blue-bg);
  padding: 105px 0 110px;
  overflow: hidden;
}

.reach-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.reach-section .section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 55px;
}

.reach-section .section-tag {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--pure-white);
  padding: 6px 18px;
  border: 1px solid #c8ddf7;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: bold;
}

.reach-section .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.reach-section .section-title span {
  color: var(--accent-blue);
}

.reach-section .section-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

/* --- Reach Grid (3x2 Desktop) --- */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* --- Individual Stat Cards --- */
.reach-card {
  position: relative;
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 34px 28px;
  box-shadow: 0 6px 20px rgba(11, 60, 117, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.35s ease;
}

.reach-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-blue);
  box-shadow: 0 16px 36px rgba(11, 60, 117, 0.12);
}

.reach-card.featured {
  border-color: #bad3f5;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

/* Icon Container */
.reach-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-blue-bg);
  color: var(--accent-blue);
  border: 1px solid #d0e2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.reach-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.reach-card:hover .reach-icon-wrap {
  background: var(--primary-blue);
  color: var(--pure-white);
  transform: scale(1.1);
}

/* Number Wrap */
.reach-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 6px;
}

.reach-counter {
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--primary-blue);
  line-height: 1;
}

.reach-unit {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--accent-blue);
  margin-left: 2px;
}

.reach-label {
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.reach-subtext {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-muted-dark);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .reach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 540px) {
  .reach-grid {
    grid-template-columns: 1fr;
  }
  .reach-card {
    padding: 28px 20px;
  }
}

/* Section 7 Ends */


/* Section 8 Starts  */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #051d3b;
  --accent-blue: #1a73e8;
  --sky-blue: #3b82f6;
  --light-blue-bg: #f4f8fc;
  --pure-white: #ffffff;
  --text-dark: #1b2a47;
  --text-muted-dark: #4b5d78;
  --border-light: #d8e5f3;
}

/* Base Font: Strict Times New Roman */
.who-we-serve-section,
.who-we-serve-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Section Container --- */
.who-we-serve-section {
  position: relative;
  background-color: var(--pure-white);
  padding: 100px 0;
}

.serve-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.who-we-serve-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 55px;
}

.who-we-serve-section .section-tag {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--light-blue-bg);
  padding: 6px 18px;
  border: 1px solid #c8ddf7;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: bold;
}

.who-we-serve-section .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.who-we-serve-section .section-title span {
  color: var(--accent-blue);
}

.who-we-serve-section .section-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

/* --- 6-Sector Grid --- */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.serve-card {
  position: relative;
  background: var(--light-blue-bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 34px 28px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.serve-card:hover {
  transform: translateY(-8px);
  background: var(--pure-white);
  border-color: var(--accent-blue);
  box-shadow: 0 16px 36px rgba(11, 60, 117, 0.1);
}

/* Icon Wrap */
.serve-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--primary-blue);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(11, 60, 117, 0.2);
  transition: all 0.3s ease;
}

.serve-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.serve-card:hover .serve-icon-wrap {
  background: var(--accent-blue);
  transform: scale(1.08);
}

.serve-card-title {
  font-size: 1.45rem;
  font-weight: bold;
  color: var(--dark-navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.serve-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
  flex-grow: 1;
  margin-bottom: 18px;
}

/* Sector Badge */
.serve-badge {
  align-self: flex-start;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: bold;
  color: var(--accent-blue);
  background: rgba(26, 115, 232, 0.08);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(26, 115, 232, 0.2);
}

/* --- Banner Strip --- */
.serve-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
  color: var(--pure-white);
  padding: 34px 40px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  box-shadow: 0 10px 25px rgba(11, 60, 117, 0.16);
  border-left: 6px solid var(--sky-blue);
}

.serve-banner-text h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.serve-banner-text p {
  font-size: 1.05rem;
  color: #c4dcff;
}

.btn-serve-action {
  white-space: nowrap;
  background: var(--pure-white);
  color: var(--primary-blue);
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-serve-action:hover {
  background: #e8f0fe;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .serve-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .serve-grid {
    grid-template-columns: 1fr;
  }
  .serve-banner {
    padding: 24px 20px;
  }
  .btn-serve-action {
    width: 100%;
    text-align: center;
  }
}

/* Section 8 Ends */


/* Section 9 Starts */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #051d3b;
  --accent-blue: #1a73e8;
  --sky-blue: #3b82f6;
  --light-blue-bg: #f4f8fc;
  --pure-white: #ffffff;
  --text-dark: #1b2a47;
  --text-muted-dark: #4b5d78;
  --border-light: #d8e5f3;
}

/* Strict Times New Roman Font */
.service-tn-section,
.service-tn-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Section Layout --- */
.service-tn-section {
  position: relative;
  background-color: var(--light-blue-bg);
  padding: 105px 0 110px;
  overflow: hidden;
}

.service-tn-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.service-tn-section .section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}

.service-tn-section .section-tag {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--pure-white);
  padding: 6px 18px;
  border: 1px solid #c8ddf7;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: bold;
}

.service-tn-section .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-tn-section .section-title span {
  color: var(--accent-blue);
}

.service-tn-section .section-desc {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

/* --- 2-Column Grid --- */
.service-tn-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  align-items: center;
  margin-bottom: 50px;
}

/* Left Column */
.hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 1rem;
  color: var(--primary-blue);
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(11, 60, 117, 0.05);
}

.hub-icon {
  font-size: 1.2rem;
}

.tn-lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.tn-badges-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.tn-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  color: var(--text-muted-dark);
}

.badge-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
}

.tn-slogan-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
  color: var(--pure-white);
  padding: 22px 24px;
  border-radius: 8px;
  border-left: 5px solid var(--sky-blue);
  box-shadow: 0 8px 24px rgba(11, 60, 117, 0.15);
}

.slogan-icon {
  font-size: 2.2rem;
  color: #8ac0ff;
}

.slogan-details h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 4px;
  color: var(--pure-white);
}

.slogan-details p {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #cfe2f8;
}

/* Right Column: Region Grid */
.region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.region-card {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px 20px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(11, 60, 117, 0.04);
}

.region-card.highlight {
  background: #fbfdff;
}

.region-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-blue);
  box-shadow: 0 12px 26px rgba(11, 60, 117, 0.12);
}

.region-pin {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--accent-blue);
  margin-bottom: 8px;
}

.region-card h4 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.region-card p {
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--text-muted-dark);
}

/* Bottom Action Banner */
.tn-bottom-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
  color: var(--pure-white);
  padding: 34px 40px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  box-shadow: 0 10px 25px rgba(11, 60, 117, 0.16);
  border-left: 6px solid var(--sky-blue);
}

.banner-text h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.banner-text p {
  font-size: 1.05rem;
  color: #c4dcff;
}

.btn-tn-action {
  white-space: nowrap;
  background: var(--pure-white);
  color: var(--primary-blue);
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-tn-action:hover {
  background: #e8f0fe;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .service-tn-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .tn-bottom-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .region-grid {
    grid-template-columns: 1fr;
  }
  .tn-bottom-banner {
    padding: 24px 20px;
  }
  .btn-tn-action {
    width: 100%;
    text-align: center;
  }
}

/* Section 9 Ends */


/* Section 10 Starst */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #051d3b;
  --accent-blue: #1a73e8;
  --sky-blue: #3b82f6;
  --light-blue-bg: #f4f8fc;
  --pure-white: #ffffff;
  --text-dark: #1b2a47;
  --text-muted-dark: #4b5d78;
  --border-light: #d8e5f3;
}

/* Strict Times New Roman Typography */
.how-we-help-section,
.how-we-help-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Section Container --- */
.how-we-help-section {
  position: relative;
  background-color: var(--pure-white);
  padding: 105px 0 110px;
  overflow: hidden;
}

.help-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Section Header --- */
.how-we-help-section .section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.how-we-help-section .section-tag {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--light-blue-bg);
  padding: 6px 18px;
  border: 1px solid #c8ddf7;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: bold;
}

.how-we-help-section .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.how-we-help-section .section-title span {
  color: var(--accent-blue);
}

.how-we-help-section .section-desc {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

/* --- 4-Step Grid --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 55px;
  position: relative;
}

/* Individual Step Card */
.step-card {
  position: relative;
  background: var(--light-blue-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.35s ease,
              border-color 0.35s ease;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-8px);
  background: var(--pure-white);
  border-color: var(--accent-blue);
  box-shadow: 0 16px 36px rgba(11, 60, 117, 0.1);
}

/* Top Header in Card */
.step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.step-number {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--primary-blue);
  line-height: 1;
  letter-spacing: 0.5px;
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--pure-white);
  color: var(--accent-blue);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(11, 60, 117, 0.06);
  transition: all 0.3s ease;
}

.step-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.step-card:hover .step-icon-wrap {
  background: var(--accent-blue);
  color: var(--pure-white);
  transform: rotate(6deg) scale(1.05);
}

/* Card Body */
.step-title {
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--dark-navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.step-desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted-dark);
  flex-grow: 1;
  margin-bottom: 18px;
}

/* Bottom Progress Stripe */
.step-line-indicator {
  height: 4px;
  width: 100%;
  background: var(--border-light);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.step-line-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-blue);
  transition: left 0.4s ease;
}

.step-card:hover .step-line-indicator::after {
  left: 0;
}

/* --- Banner Strip --- */
.help-cta-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
  color: var(--pure-white);
  padding: 34px 40px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  box-shadow: 0 10px 25px rgba(11, 60, 117, 0.16);
  border-left: 6px solid var(--sky-blue);
}

.help-cta-text h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.help-cta-text p {
  font-size: 1.05rem;
  color: #c4dcff;
}

.btn-help-action {
  white-space: nowrap;
  background: var(--pure-white);
  color: var(--primary-blue);
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-help-action:hover {
  background: #e8f0fe;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .help-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .btn-help-action {
    width: 100%;
    text-align: center;
  }
}

/* Section 10 Ends  */


/* Section 11 Starts */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #051d3b;
  --accent-blue: #1a73e8;
  --sky-blue: #3b82f6;
  --light-blue-bg: #f4f8fc;
  --pure-white: #ffffff;
  --text-dark: #1b2a47;
  --text-muted-dark: #4b5d78;
  --border-light: #d8e5f3;
}

/* Strict Times New Roman Typography */
.bulk-orders-section,
.bulk-orders-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Section Layout --- */
.bulk-orders-section {
  position: relative;
  background-color: var(--light-blue-bg);
  padding: 100px 0;
  overflow: hidden;
}

.bulk-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Outer Shell --- */
.bulk-card-shell {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 50px 48px;
  box-shadow: 0 16px 40px rgba(11, 60, 117, 0.08);
}

.bulk-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

/* --- Left Column Content --- */
.bulk-badge {
  display: inline-block;
  font-size: 0.92rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--light-blue-bg);
  padding: 6px 18px;
  border: 1px solid #c8ddf7;
  border-radius: 4px;
  margin-bottom: 16px;
  font-weight: bold;
}

.bulk-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.bulk-title span {
  color: var(--accent-blue);
}

.bulk-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
}

/* Welcome Box */
.bulk-welcome-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light-blue-bg);
  border-left: 4px solid var(--accent-blue);
  padding: 18px 20px;
  border-radius: 6px;
  margin-bottom: 30px;
}

.welcome-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: bold;
  flex-shrink: 0;
}

.welcome-text h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 2px;
}

.welcome-text p {
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--text-muted-dark);
}

/* Actions (Buttons) */
.bulk-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-bulk-primary {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--pure-white);
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-bulk-primary:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 115, 232, 0.3);
}

.btn-bulk-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f0f6ff;
  color: var(--primary-blue);
  border: 1.5px solid #bad3f5;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-bulk-call svg {
  width: 20px;
  height: 20px;
}

.btn-bulk-call:hover {
  background: var(--accent-blue);
  color: var(--pure-white);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 115, 232, 0.25);
}

/* --- Right Column Project Tags Card --- */
.project-tags-card {
  background: linear-gradient(145deg, #092a54 0%, #051d3b 100%);
  border-radius: 10px;
  padding: 34px 28px;
  color: var(--pure-white);
  box-shadow: 0 12px 30px rgba(5, 29, 59, 0.15);
}

.tags-title {
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--pure-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.project-tags-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-tag-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tag-bullet {
  color: var(--sky-blue);
  font-size: 0.9rem;
  line-height: 1.6;
}

.tag-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--pure-white);
  margin-bottom: 2px;
}

.tag-info p {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #cfe2f8;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .bulk-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .bulk-card-shell {
    padding: 30px 20px;
  }
  .bulk-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-bulk-primary,
  .btn-bulk-call {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Section 11 Ends  */


/* Section 12 Starst  */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #051d3b;
  --accent-blue: #1a73e8;
  --sky-blue: #3b82f6;
  --light-blue-bg: #f4f8fc;
  --pure-white: #ffffff;
  --text-dark: #1b2a47;
  --text-muted-dark: #4b5d78;
  --border-light: #d8e5f3;
}

/* Strict Times New Roman Typography */
.faq-section,
.faq-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Section Container --- */
.faq-section {
  position: relative;
  background-color: var(--pure-white);
  padding: 105px 0 110px;
}

.faq-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* --- Header --- */
.faq-section .section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}

.faq-section .section-tag {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--light-blue-bg);
  padding: 6px 18px;
  border: 1px solid #c8ddf7;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: bold;
}

.faq-section .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.faq-section .section-title span {
  color: var(--accent-blue);
}

.faq-section .section-desc {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

/* --- Accordion Wrap & Items --- */
.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 50px;
}

.faq-item {
  background: var(--light-blue-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-blue);
}

.faq-item.active {
  background: var(--pure-white);
  border-color: var(--accent-blue);
  box-shadow: 0 8px 24px rgba(11, 60, 117, 0.08);
}

/* Accordion Trigger Button */
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 18px;
}

.faq-q-text {
  font-size: 1.22rem;
  font-weight: bold;
  color: var(--dark-navy);
  transition: color 0.3s ease;
}

.faq-item.active .faq-q-text {
  color: var(--primary-blue);
}

/* Plus/Minus Indicator */
.faq-icon-indicator {
  position: relative;
  width: 18px;
  height: 18px;
  min-width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon-indicator::before,
.faq-icon-indicator::after {
  content: '';
  position: absolute;
  background-color: var(--primary-blue);
  transition: transform 0.35s ease, background-color 0.3s ease;
}

/* Horizontal line */
.faq-icon-indicator::before {
  width: 16px;
  height: 2px;
}

/* Vertical line */
.faq-icon-indicator::after {
  width: 2px;
  height: 16px;
}

/* On Active: Rotate vertical line to make a minus sign */
.faq-item.active .faq-icon-indicator::after {
  transform: rotate(90deg);
  background-color: var(--accent-blue);
}

.faq-item.active .faq-icon-indicator::before {
  background-color: var(--accent-blue);
}

/* Answer Collapsible Area */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted-dark);
}

/* --- Bottom Support Banner --- */
.faq-support-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
  color: var(--pure-white);
  padding: 32px 38px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  box-shadow: 0 10px 25px rgba(11, 60, 117, 0.16);
  border-left: 6px solid var(--sky-blue);
}

.support-text h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.support-text p {
  font-size: 1rem;
  color: #c4dcff;
}

.support-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-faq-quote {
  white-space: nowrap;
  background: var(--pure-white);
  color: var(--primary-blue);
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-faq-quote:hover {
  background: #e8f0fe;
  transform: translateY(-2px);
}

.btn-faq-call {
  white-space: nowrap;
  background: transparent;
  color: var(--pure-white);
  border: 1.5px solid var(--pure-white);
  padding: 11px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-faq-call:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 820px) {
  .faq-support-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .support-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-faq-quote,
  .btn-faq-call {
    width: 100%;
    text-align: center;
  }
}

/* Section 12 Ends  */


/* Section 13 Starst  */

:root {
  --primary-blue: #0b3c75;
  --dark-navy: #04172f;
  --accent-blue: #1a73e8;
  --sky-blue: #5ba2f4;
  --ice-blue: #edf4fc;
  --pure-white: #ffffff;
  --text-dark: #12243d;
  --text-muted: #4e637f;
  --border-light: #d6e4f5;
}

/* Strict Times New Roman Typography */
.final-cta-section,
.final-cta-section * {
  font-family: "Times New Roman", Times, serif !important;
  box-sizing: border-box;
}

/* --- Section Container --- */
.final-cta-section {
  position: relative;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fc 100%);
  padding: 105px 0 110px;
  overflow: hidden;
}

.final-cta-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.final-cta-section .section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 55px;
}

.cta-pill {
  display: inline-block;
  font-size: 0.92rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--pure-white);
  padding: 7px 22px;
  border: 1px solid #cfe0f5;
  border-radius: 50px;
  margin-bottom: 16px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(26, 115, 232, 0.08);
}

.cta-heading {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: bold;
  color: var(--dark-navy);
  line-height: 1.18;
  margin-bottom: 16px;
}

.cta-heading span {
  color: var(--accent-blue);
  display: block;
}

.cta-description {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* --- 3-Column Action Deck Grid --- */
.contact-deck-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 45px;
}

.contact-deck-card {
  position: relative;
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(11, 60, 117, 0.06);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.35s ease;
}

.contact-deck-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-blue);
  box-shadow: 0 18px 45px rgba(11, 60, 117, 0.12);
}

.contact-deck-card.featured-deck {
  border-color: #bad3f5;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fe 100%);
}

/* Icon Box */
.deck-top-icon {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: var(--primary-blue);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(11, 60, 117, 0.22);
  transition: all 0.3s ease;
}

.deck-top-icon svg {
  width: 28px;
  height: 28px;
}

.contact-deck-card:hover .deck-top-icon {
  background: var(--accent-blue);
  transform: scale(1.08);
}

.deck-category {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-blue);
  font-weight: bold;
  margin-bottom: 6px;
}

.deck-title {
  font-size: 1.55rem;
  font-weight: bold;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.deck-desc {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 26px;
}

/* Direct Action Buttons */
.btn-deck-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-radius: 6px;
  font-size: 1.02rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-deck-action.primary {
  background: var(--primary-blue);
  color: var(--pure-white);
  box-shadow: 0 4px 14px rgba(11, 60, 117, 0.25);
}

.btn-deck-action.primary:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
}

.btn-deck-action.secondary {
  background: var(--ice-blue);
  color: var(--primary-blue);
  border: 1px solid var(--border-light);
}

.btn-deck-action.secondary:hover {
  background: var(--pure-white);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.btn-deck-action:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- Assurance Ribbon --- */
.sourcing-strip {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
  color: var(--pure-white);
  border-radius: 10px;
  padding: 24px 34px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(11, 60, 117, 0.15);
  border-left: 6px solid var(--sky-blue);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: #edf5ff;
}

.strip-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .contact-deck-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sourcing-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* Section 13 ENds  */


/* =========================================
   SOUTH INDIA STEEL COMPANY
   HERO SECTION
========================================= */

:root {
  --hero-navy: #092c5a;
  --hero-navy-dark: #061b35;
  --hero-blue: #1a73e8;
  --hero-blue-light: #4da3ff;
  --hero-white: #ffffff;
  --hero-text: #dce9f7;
  --hero-muted: #b8cce0;
  --hero-height: 100svh;
  --hero-duration: 6500ms;
}

/* =========================================
   BASE HERO
========================================= */

.hero-section {
  position: relative;
  width: 100%;
  height: var(--hero-height);
  min-height: 680px;
  overflow: hidden;
  background: var(--hero-navy-dark);
  color: var(--hero-white);
}

/* =========================================
   PROGRESS BAR
========================================= */

.hero-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.12);
}

.hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--hero-blue),
    var(--hero-blue-light)
  );
  box-shadow: 0 0 12px rgba(26, 115, 232, 0.7);
}

/* =========================================
   BACKGROUND SLIDER
========================================= */

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.hero-slide.active .hero-slide-image {
  transform: scale(1);
}

/* =========================================
   BACKGROUND OVERLAY
========================================= */

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 18, 36, 0.97) 0%,
      rgba(5, 25, 48, 0.90) 28%,
      rgba(6, 31, 58, 0.68) 55%,
      rgba(4, 18, 36, 0.60) 100%
    ),
    linear-gradient(
      0deg,
      rgba(4, 18, 36, 0.75) 0%,
      transparent 50%,
      rgba(4, 18, 36, 0.25) 100%
    );
}

/* =========================================
   GRID
========================================= */

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.10;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    );
  background-size: 70px 70px;
  mask-image: linear-gradient(
    90deg,
    black,
    transparent 80%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    black,
    transparent 80%
  );
}

/* =========================================
   GLOW
========================================= */

.hero-glow {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  width: 450px;
  height: 450px;
  top: -220px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(26, 115, 232, 0.25),
    transparent 70%
  );
}

.hero-glow-two {
  width: 500px;
  height: 500px;
  right: -260px;
  bottom: -280px;
  background: radial-gradient(
    circle,
    rgba(26, 115, 232, 0.20),
    transparent 70%
  );
}

/* =========================================
   HERO CONTAINER
========================================= */

.hero-container {
  position: relative;
  z-index: 5;
  width: min(1380px, 120%);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
  width: min(720px, 100%);
  margin-top: 15px;
  animation: heroContentIn 0.9s ease both;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   TOP LINE
========================================= */

.hero-top-line {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
  color: var(--hero-blue-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.4px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-line {
  width: 40px;
  height: 2px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--hero-blue);
  box-shadow: 0 0 10px rgba(26, 115, 232, 0.7);
}

/* =========================================
   BADGE
========================================= */

.hero-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #eaf4ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 8px 25px rgba(0, 0, 0, 0.12);
}

.badge-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--hero-blue-light);
  box-shadow:
    0 0 0 5px rgba(77, 163, 255, 0.10),
    0 0 14px rgba(77, 163, 255, 0.8);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(77, 163, 255, 0.08),
      0 0 10px rgba(77, 163, 255, 0.5);
  }

  50% {
    box-shadow:
      0 0 0 8px rgba(77, 163, 255, 0.03),
      0 0 18px rgba(77, 163, 255, 0.8);
  }
}

/* =========================================
   TITLE
========================================= */

.hero-title {
  max-width: 920px;
  margin: 0;
  color: var(--hero-white);
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -2.3px;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.22);
}

.hero-title span {
  color: var(--hero-blue-light);
  text-shadow: 0 0 30px rgba(26, 115, 232, 0.25);
}

/* =========================================
   SUBTITLE
========================================= */

.hero-subtitle {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--hero-text);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}

/* =========================================
   BUTTONS
========================================= */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
}

.hero-btn {
  min-height: 49px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.hero-btn-primary {
  color: var(--hero-white);
  background: linear-gradient(
    135deg,
    var(--hero-blue),
    #1259b7
  );
  border: 1px solid rgba(77, 163, 255, 0.45);
  box-shadow:
    0 9px 25px rgba(7, 42, 84, 0.40),
    0 0 20px rgba(26, 115, 232, 0.13);
}

.hero-btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 13px 30px rgba(7, 42, 84, 0.50),
    0 0 30px rgba(26, 115, 232, 0.22);
}

.hero-btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-btn-secondary {
  color: var(--hero-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.23);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  color: var(--hero-white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(77, 163, 255, 0.55);
  transform: translateY(-3px);
}

/* =========================================
   STATS
========================================= */

.hero-stats {
  width: fit-content;
  display: flex;
  align-items: center;
  margin-top: 34px;
  padding: 15px 19px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(5, 24, 45, 0.52);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px rgba(255, 255, 255, 0.05);
}

.hero-stat {
  min-width: 112px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat strong {
  color: var(--hero-white);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.hero-stat strong sup {
  color: var(--hero-blue-light);
  font-size: 10px;
  font-weight: 800;
  vertical-align: middle;
}

.hero-stat > span {
  color: #a9bed4;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 34px;
  margin: 0 13px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
}

/* =========================================
   ARROWS
========================================= */

.hero-arrow {
  position: absolute;
  top: 57%;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--hero-white);
  background: rgba(7, 31, 59, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.hero-arrow svg {
  width: 18px;
  height: 18px;
}

.hero-arrow:hover {
  background: var(--hero-blue);
  border-color: var(--hero-blue-light);
  box-shadow: 0 0 20px rgba(26, 115, 232, 0.35);
}

.hero-prev {
  left: 25px;
}

.hero-next {
  right: 25px;
}

/* =========================================
   BOTTOM CONTROLS
========================================= */

.hero-bottom {
  position: absolute;
  left: 85px;
  right: 85px;
  bottom: 22px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-slide-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dcecff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-slide-counter > span:first-child {
  color: var(--hero-blue-light);
  font-size: 13px;
}

.counter-line {
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-dots {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 20px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    width 0.4s ease,
    background 0.4s ease;
}

.hero-dot.active {
  width: 42px;
  background: var(--hero-blue);
  box-shadow: 0 0 10px rgba(26, 115, 232, 0.65);
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a9bed4;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.scroll-icon {
  width: 21px;
  height: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
}

.scroll-icon span {
  width: 3px;
  height: 6px;
  border-radius: 5px;
  background: var(--hero-blue-light);
  animation: scrollDown 1.7s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(11px);
  }
}

/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {
  .hero-container {
    padding-left: 100px;
    padding-right: 100px;
  }

  .hero-title {
    font-size: 70px;
  }

  .hero-content {
    width: 750px;
  }

  .hero-bottom {
    left: 100px;
    right: 100px;
  }
}

/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1199px) and (min-width: 901px) {
  .hero-container {
    padding: 120px 65px 95px;
  }

  .hero-content {
    width: 650px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    max-width: 550px;
    font-size: 14px;
  }

  .hero-stats {
    margin-top: 28px;
  }

  .hero-stat {
    min-width: 95px;
  }

  .hero-stat-divider {
    margin: 0 9px;
  }

  .hero-bottom {
    left: 65px;
    right: 65px;
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .hero-section {
    height: 100svh;
    min-height: 720px;
  }

  .hero-container {
    height: 100%;
    padding: 120px 30px 100px;
    margin-top: 5rem;
    align-items: center;
  }

  .hero-content {
    width: min(650px, 100%);
    margin-top: 10px;
  }

  .hero-title {
    max-width: 650px;
    font-size: clamp(40px, 7vw, 58px);
    line-height: 1.04;
    letter-spacing: -1.8px;
    
  }

  .hero-subtitle {
    max-width: 560px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 23px;
  }

  .hero-stats {
    margin-top: 28px;
  }

  .hero-stat {
    min-width: 90px;
  }

  .hero-stat strong {
    font-size: 19px;
  }

  .hero-stat-divider {
    margin: 0 7px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    top: 57%;
  }

  .hero-prev {
    left: 15px;
  }

  .hero-next {
    right: 15px;
  }

  .hero-bottom {
    left: 30px;
    right: 30px;
    bottom: 19px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .hero-section {
    height: auto;
    min-height: 760px;
  }

  .hero-slide-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 18, 36, 0.96),
        rgba(5, 25, 48, 0.82)
      ),
      linear-gradient(
        0deg,
        rgba(4, 18, 36, 0.90),
        transparent 60%
      );
  }

  .hero-container {
    min-height: 760px;
    height: auto;
    padding: 120px 20px 110px;
    align-items: center;
    padding-top: 0rem;
  }

  .hero-content {
    width: 100%;
    margin-top: 0;
  }

  .hero-top-line {
    gap: 8px;
    margin-bottom: 13px;
    font-size: 7px;
    letter-spacing: 1.7px;
  }

  .hero-line {
    width: 27px;
  }

  .hero-badge {
    margin-bottom: 17px;
    padding: 7px 11px;
    font-size: 8px;
  }

  .badge-dot {
    width: 6px;
    height: 6px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(34px, 10.2vw, 46px);
    line-height: 1.2;
    letter-spacing: -1.4px;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-actions {
    width: 100%;
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .hero-btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-stats {
    width: 100%;
    margin-top: 25px;
    padding: 12px 5px;
    justify-content: space-between;
    border-radius: 11px;
  }

  .hero-stat {
    min-width: 0;
    flex: 1;
    align-items: center;
    text-align: center;
  }

  .hero-stat strong {
    font-size: 15px;
  }

  .hero-stat strong sup {
    font-size: 7px;
  }

  .hero-stat > span {
    font-size: 5.7px;
    letter-spacing: 0.2px;
  }

  .hero-stat-divider {
    height: 27px;
    margin: 0 2px;
  }

  .hero-arrow {
    top: auto;
    bottom: 61px;
    width: 34px;
    height: 34px;
    transform: none;
  }

  .hero-arrow svg {
    width: 15px;
    height: 15px;
  }

  .hero-prev {
    left: 18px;
  }

  .hero-next {
    right: 18px;
  }

  .hero-bottom {
    left: 20px;
    right: 20px;
    bottom: 17px;
    justify-content: center;
  }

  .hero-slide-counter,
  .hero-scroll {
    display: none;
  }

  .hero-dots {
    position: static;
    transform: none;
  }

  .hero-dot {
    width: 17px;
  }

  .hero-dot.active {
    width: 34px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {
  .hero-section {
    min-height: 730px;
  }

  .hero-container {
    min-height: 730px;
    padding: 110px 15px 105px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .hero-stats {
    margin-top: 21px;
  }

  .hero-stat strong {
    font-size: 13px;
  }

  .hero-stat > span {
    font-size: 5px;
  }
}

/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide-image,
  .hero-progress span,
  .badge-dot,
  .scroll-icon span {
    animation: none !important;
    transition: none !important;
  }
}


/* Stock Style  */


/* =========================================
   LIVE STOCK AVAILABILITY
========================================= */

.stock-section {
  position: relative;
  width: 100%;
  padding: 70px 24px;
  background: #ffffff;
  overflow: hidden;
}

.stock-container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.stock-card {
  position: relative;
  min-height: 330px;
  padding: 50px 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(
      120deg,
      #061d3a 0%,
      #092c5a 52%,
      #0d4077 100%
    );
  box-shadow:
    0 20px 50px rgba(9, 44, 90, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.08);
}

.stock-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #4da3ff,
    #1a73e8,
    #4da3ff
  );
  box-shadow: 0 0 20px rgba(26, 115, 232, 0.7);
}

.stock-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.18) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.18) 1px,
      transparent 1px
    );
  background-size: 55px 55px;
  mask-image: linear-gradient(
    90deg,
    black,
    transparent 75%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    black,
    transparent 75%
  );
}

.stock-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(26, 115, 232, 0.24),
    transparent 70%
  );
}

.stock-glow-left {
  top: -220px;
  left: -100px;
}

.stock-glow-right {
  right: -180px;
  bottom: -230px;
}

.stock-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.stock-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(77, 163, 255, 0.25);
  border-radius: 50px;
  color: #bcdcff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.stock-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4da3ff;
  box-shadow:
    0 0 0 4px rgba(77, 163, 255, 0.12),
    0 0 14px rgba(77, 163, 255, 0.8);
  animation: stockLivePulse 1.8s infinite;
}

@keyframes stockLivePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.7);
    opacity: 0.65;
  }
}

.stock-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.7px;
}

.stock-title span {
  color: #4da3ff;
}

.stock-description {
  max-width: 580px;
  margin: 17px 0 0;
  color: #c8d9eb;
  font-size: 14px;
  line-height: 1.7;
}

.stock-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.stock-btn {
  min-height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.stock-btn svg {
  width: 16px;
  height: 16px;
}

.stock-btn-primary {
  color: #ffffff;
  background: #1a73e8;
  border: 1px solid #4da3ff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.stock-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
  background: #247fe8;
  box-shadow: 0 12px 28px rgba(26, 115, 232, 0.3);
}

.stock-btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.stock-btn-secondary:hover {
  color: #ffffff;
  transform: translateY(-3px);
  border-color: #4da3ff;
  background: rgba(255, 255, 255, 0.11);
}

/* =========================================
   STOCK QUANTITY
========================================= */

.stock-quantity {
  position: relative;
  z-index: 2;
  width: 285px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stock-circle {
  width: 205px;
  height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(77, 163, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 0 12px rgba(77, 163, 255, 0.035),
    0 0 0 24px rgba(77, 163, 255, 0.018),
    0 0 50px rgba(26, 115, 232, 0.18);
  animation: stockFloat 4s ease-in-out infinite;
}

@keyframes stockFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.stock-circle-inner {
  width: 165px;
  height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 50% 35%,
      #174b82,
      #082b55 70%
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.18);
}

.stock-small-label {
  color: #9fc7ec;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.stock-circle-inner strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 47px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -2px;
}

.stock-unit {
  margin-top: 5px;
  color: #4da3ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
  padding: 8px 13px;
  border: 1px solid rgba(77, 163, 255, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
}

.status-check {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: #1a73e8;
  font-size: 13px;
  font-weight: 900;
}

.stock-status div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stock-status strong {
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.stock-status small {
  color: #9fb7cf;
  font-size: 8px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .stock-section {
    padding: 55px 20px;
  }

  .stock-card {
    padding: 40px;
    gap: 30px;
  }

  .stock-quantity {
    width: 230px;
  }

  .stock-circle {
    width: 170px;
    height: 170px;
  }

  .stock-circle-inner {
    width: 138px;
    height: 138px;
  }

  .stock-circle-inner strong {
    font-size: 38px;
  }

  .stock-title {
    font-size: 38px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
  .stock-section {
    padding: 45px 15px;
  }

  .stock-card {
    min-height: auto;
    padding: 35px 24px;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    text-align: center;
    border-radius: 19px;
  }

  .stock-card::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: linear-gradient(
      90deg,
      #4da3ff,
      #1a73e8,
      #4da3ff
    );
  }

  .stock-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stock-badge {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .stock-title {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .stock-description {
    font-size: 12px;
    line-height: 1.65;
  }

  .stock-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .stock-btn {
    width: 100%;
  }

  .stock-quantity {
    width: 100%;
  }

  .stock-circle {
    width: 185px;
    height: 185px;
  }

  .stock-circle-inner {
    width: 150px;
    height: 150px;
  }

  .stock-circle-inner strong {
    font-size: 43px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {
  .stock-card {
    padding: 32px 18px;
  }

  .stock-title {
    font-size: 30px;
  }

  .stock-circle {
    width: 170px;
    height: 170px;
  }

  .stock-circle-inner {
    width: 138px;
    height: 138px;
  }

  .stock-circle-inner strong {
    font-size: 38px;
  }
}









