/* ============================================================
   ANUPAM INFRATECH — Design System
   Beyond Boundaries
   ============================================================ */

:root {
  /* Brand */
  --primary: #1982c4;
  --primary-dark: #146493;
  --secondary: #027939;
  --secondary-dark: #02602d;
  --dark: #0b1f2a;
  --orange: #f16201;
  --light-blue: #f3f9fd;
  --light-green: #f3faf6;
  --white: #ffffff;

  /* Neutrals derived from --dark for consistent tinting */
  --ink: #0b1f2a;
  --ink-70: rgba(11, 31, 42, 0.75);
  --ink-55: rgba(11, 31, 42, 0.65);
  --ink-35: rgba(11, 31, 42, 0.45);
  --hairline: rgba(11, 31, 42, 0.1);
  --hairline-strong: rgba(11, 31, 42, 0.16);

  --gradient-brand: linear-gradient(135deg, #1982c4, #027939);
  --gradient-brand-soft: linear-gradient(
    135deg,
    rgba(25, 130, 196, 0.1),
    rgba(2, 121, 57, 0.1)
  );

  /* Type */
  --font-display: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11, 31, 42, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 31, 42, 0.1);
  --shadow-lg: 0 24px 60px rgba(11, 31, 42, 0.16);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}

p {
  color: var(--ink-70);
  line-height: 1.6;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: var(--font-body);
}

::selection {
  background: var(--primary);
  color: var(--white);
}

:focus-visible {
  outline: 2.5px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.container-xl {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--secondary);
  display: inline-block;
}

.section-heading {
  font-size: clamp(1.2rem, 2.4vw, 2.9rem);
  line-height: 1.12;
  margin-top: 14px;
}

.section-sub {
  color: var(--ink-55);
  font-size: 1.05rem;
  max-width: 640px;
  margin-top: 14px;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-line {
  display: inline-block;
  width: 4px;
  border-radius: 4px;
  background: var(--secondary);
  align-self: stretch;
}

.text-primary-brand {
  color: var(--primary) !important;
}
.text-secondary-brand {
  color: var(--secondary) !important;
}
.bg-dark-brand {
  background: var(--dark) !important;
}
.bg-light-blue {
  background: var(--light-blue) !important;
}
.bg-light-green {
  background: var(--light-green) !important;
}

section {
  position: relative;
}
.py-section {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (max-width: 991.98px) {
  .py-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border-radius: 12px;
  padding: 13px 25px;
  border: none;
  transition: all 0.35s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-brand-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-brand-primary:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-brand-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-brand-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-brand-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--hairline-strong);
}
.btn-brand-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}

.btn-brand-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-brand-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-brand-white {
  background: #fff;
  color: #000;
}
.btn-brand-white:hover {
  background: var(--orange);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
  padding: 0;
  background: none;
  border: none;
}
.btn-link-arrow i {
  transition: transform 0.3s var(--ease);
}
.btn-link-arrow:hover {
  color: var(--secondary);
}
.btn-link-arrow:hover i {
  transform: translateX(5px);
}

.btn-sm-pill {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 100px;
  padding: 9px 20px;
  border: 1.5px solid var(--hairline-strong);
  background: var(--white);
  color: var(--ink-70);
  transition: all 0.3s var(--ease);
}
.btn-sm-pill.active,
.btn-sm-pill:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-navbar {
  z-index: 1030;
  padding: 10px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.site-navbar.scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline), 0 12px 30px rgba(11, 31, 42, 0.06);
}

.brand-logo {
  width: 80px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  padding: 10px 16px !important;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.site-navbar.scrolled .nav-links .nav-link {
  color: var(--ink-70);
}
.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: var(--primary);
}
.site-navbar.scrolled .nav-links .nav-link:hover,
.site-navbar.scrolled .nav-links .nav-link.active {
  color: var(--primary);
}

.navbar-toggler {
  border: none;
  padding: 8px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-custom {
  border: none;
  background: transparent;
  width: 50;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-navbar.scrolled .toggler-icon-custom span {
  background: var(--dark);
}
.toggler-icon-custom span:nth-child(1) {
  top: 0;
}
.toggler-icon-custom span:nth-child(2) {
  top: 9px;
}
.toggler-icon-custom span:nth-child(3) {
  top: 18px;
}

@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse {
    background: var(--white);
    margin-top: 16px;
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }
  .nav-links .nav-link {
    color: var(--ink-70) !important;
    width: 100%;
  }
  .brand-text strong {
    color: var(--dark) !important;
  }
  .nav-cta-wrap {
    margin-top: 10px;
    width: 100%;
  }
  .nav-cta-wrap .btn {
    width: 100%;
    justify-content: center;
  }
}

.nav-item.dropdown {
  position: relative;
}

/* Services + Arrow */
.services-link {
  display: flex;
  align-items: center;
}

.services-link .nav-link {
  display: inline-block;
}

.dropdown-arrow {
  background: transparent;
  border: 0;
  padding: 5px 2px;
  cursor: pointer;
  font-size: 14px;
  color: inherit;
  line-height: 1;
}

/* Dropdown */
.nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;

  min-width: 270px;
  margin: 0;
  padding: 8px 0;

  background: #fff;
  border: 0;
  border-radius: 8px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

  list-style: none;

  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(10px);
  transition: all 0.3s ease;

  z-index: 9999;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #222;
  letter-spacing: -0.4px;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #1982c4;
  color: #fff;
}
.dropdown-toggle::after {
  display: none;
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

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

@media (max-width: 991px) {
  .nav-item.dropdown .dropdown-menu {
    position: static;

    width: 100%;
    min-width: 100%;

    margin: 0;
    padding: 5px 0 5px 15px;

    box-shadow: none;
    border-radius: 0;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: none;

    display: none !important;
  }

  /* Arrow click ke baad */
  .nav-item.dropdown.active > .dropdown-menu {
    display: block !important;
  }

  .nav-item.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
}
/* ============================================================
   HERO
   ============================================================ */
.slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.slide {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
.slide.active {
  opacity: 1;
}

/* Inner-page hero (shorter, used on subpages) */
.page-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  color: var(--white);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(16 58 80),
    rgba(11 62 94) 60%,
    rgba(2, 121, 57, 0.35)
  );
}
.page-hero .container-xl {
  position: relative;
  z-index: 2;
}
.page-hero .eyebrow {
  color: #6fc7f0;
}
.page-hero .eyebrow::before {
  background: #6fc7f0;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 14px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  max-width: 600px;
  margin-top: 16px;
}
.breadcrumb-brand {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 22px;
  font-weight: 600;
}
.breadcrumb-brand a {
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumb-brand a:hover {
  color: var(--white);
}

/* ============================================================
   STAT COUNTERS
   ============================================================ */
.stats-strip {
  position: relative;
  z-index: 5;
  background: #01773a;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.stat-card {
  padding: 0px 10px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
  text-align: center !important;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 3vw, 2.5rem);
  color: #ff9c1d !important;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -2px;
}
.stat-label {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.01em;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.floating-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 767.98px) {
  .floating-badge {
    left: 14px;
    bottom: -18px;
    padding: 14px 18px;
  }
}
.floating-badge .fb-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.floating-badge .fb-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.1;
}
.floating-badge .fb-label {
  font-size: 0.74rem;
  color: var(--ink-55);
  font-weight: 600;
}

.heading-with-rule {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.heading-with-rule .accent-line {
  margin-top: 8px;
  height: auto;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink-70);
  font-size: 0.98rem;
}
.about-list li:last-child {
  border-bottom: none;
}
.about-list li i {
  color: var(--secondary);
  font-size: 1.05rem;
  margin-top: 2px;
}

/* ============================================================
   GLOBAL TRADE / WORLD MAP SECTION
   ============================================================ */
.global-section {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}
section.global-section:after {
  content: "";
  background: radial-gradient(
      circle at 30% 30%,
      rgb(60 162 226 / 28%),
      transparent 60%
    ),
    radial-gradient(circle at 70% 70%, rgba(2, 121, 57, 0.1), transparent 60%);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
}
.global-section p {
  color: rgba(255, 255, 255, 0.8);
}
.global-section .eyebrow {
  color: #6fc7f0;
}
.global-section .eyebrow::before {
  background: #6fc7f0;
}
.global-section h2 {
  color: var(--white);
}

.worldmap-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(
      circle at 30% 30%,
      rgba(25, 130, 196, 0.1),
      transparent 60%
    ),
    radial-gradient(circle at 70% 70%, rgba(2, 121, 57, 0.1), transparent 60%);
}
.worldmap-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}
.map-dot {
  fill: rgba(255, 255, 255, 0.16);
}
.map-node {
  fill: #6fc7f0;
}
.map-node-pulse {
  fill: none;
  stroke: #6fc7f0;
  stroke-width: 1.4;
  opacity: 0;
  animation: mapPulse 3s ease-out infinite;
}
@keyframes mapPulse {
  0% {
    opacity: 0.9;
    r: 4;
  }
  100% {
    opacity: 0;
    r: 16;
  }
}
.map-route {
  fill: none;
  stroke-width: 1.6;
  stroke-dasharray: 6 6;
  opacity: 0.75;
  animation: dashMove 3s linear infinite;
}
@keyframes dashMove {
  to {
    stroke-dashoffset: -24;
  }
}

.region-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.region-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}
.region-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.region-chip .dot.blue {
  background: var(--primary);
}
.region-chip .dot.green {
  background: var(--secondary);
}

.banner-section {
  border-bottom: 1px solid #f3cca9;
}
.final-cta {
  background: var(--secondary);
  position: relative;
  padding: 70px;
}
.absolutebg {
  background-image: radial-gradient(
    circle at 1px 1px,
    white 1px,
    transparent 0px
  );
  background-size: 24px 24px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.15;
}
section.final-cta.global-section:after {
  display: none;
}
.final-cta h2.section-heading {
  font-size: 40px;
  margin-bottom: 10px;
}
section.final-cta.global-section .eyebrow {
  color: #ffffff;
}
section.final-cta.global-section .eyebrow::before {
  background: #fff;
}
/* ============================================================
   SERVICE CARDS
   ============================================================ */
section#services-preview {
  background: #f6f9f7;
  border-top: 1px solid #eee;
}
section#services-preview p.section-sub {
  margin: 10px auto 0;
  max-width: 750px;
}
.service-card {
  background: #eefafe;
  border: 1.5px solid rgb(210 239 255);
  border-radius: var(--radius-lg);
  padding: 30px 30px 30px 130px;
  height: 100%;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 75px;
  height: 75px;
  padding: 15px;
  border-radius: 18px;
  background: linear-gradient(90deg, #00a4fe, #014c85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.4s var(--ease);
  position: absolute;
  left: 30px;
}
.service-card.reveal-delay-1 .service-icon {
  background: linear-gradient(90deg, #fe7104, #b44e00);
  color: #fff;
}
.service-card.reveal-delay-1 {
  background: #fffaf5;
  border-color: #fde3cf;
}
.service-card.reveal-delay-2 .service-icon {
  background: linear-gradient(90deg, #08ae32, #00793a);
  color: #fff;
}
.service-card.reveal-delay-2 {
  background: #f1fcf5;
  border-color: #bcf1ca;
}
.service-card.reveal-delay-3 .service-icon {
  background: linear-gradient(90deg, #5a02e6, #a039ff);
  color: #fff;
}
.service-card.reveal-delay-3 {
  background: #f9f6fa;
  border-color: #f7e0ff;
}
.service-card:hover .service-icon {
  background: var(--gradient-brand);
  color: var(--white);
  transform: scale(1.06) rotate(-4deg);
}
.service-card h3 {
  font-size: 1.3rem;
  text-transform: capitalize;
}
.service-card p {
  margin-top: 12px;
  font-size: 0.95rem;
}
.service-card .btn-link-arrow {
  margin-top: 22px;
}

.service-card-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 340px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}
.service-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
  z-index: 0;
}
.service-card-img:hover::before {
  transform: scale(1.08);
}
.service-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 42, 0.15),
    rgba(11, 31, 42, 0.92)
  );
  z-index: 0;
}
.service-card-img > * {
  position: relative;
  z-index: 1;
}
.service-card-img .service-number {
  color: rgba(255, 255, 255, 0.6);
}
.service-card-img h3 {
  color: var(--white);
  margin-top: 12px;
  font-size: 1.35rem;
}
.service-card-img p {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 10px;
  font-size: 0.93rem;
}
.service-card-img .card-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.service-card-img .btn-link-arrow {
  color: #6fc7f0;
}
.service-card-img .btn-link-arrow:hover {
  color: var(--white);
}

.services .about-img-wrap img {
  aspect-ratio: 4 / 4.5;
}
div#Ceramic .bg-section,
div#Solar .bg-section {
  background: #fcfbf9;
  margin-top: 60px;
  border-radius: 25px;
  padding: 50px;
  border: 1px solid #f2ede7;
}
div#Agricultural .bg-section,
div#Solar .bg-section {
  background: #f3faf8;
  margin-top: 60px;
  border-radius: 25px;
  padding: 50px;
  border: 1px solid #e3f2e3;
}
div#Ceramic img {
  aspect-ratio: 4 / 3.5;
}
section.py-section.service-page {
  padding-top: 20px;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.global-product .position {
  position: relative;
  z-index: 1;
}
.filter-row.reveal.is-visible {
  position: relative;
  z-index: 1;
  margin-top: 25px;
  justify-content: center;
}
.filter-row .btn-sm-pill {
  font-weight: 500;
  padding: 7px 25px;
  background: #ffbe6626;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #ffdbb2;
}
button.btn-sm-pill.active {
  background: #1982c4;
  border-color: #1982c4;
  color: #ffffff;
}
section.py-section.global-product.global-section .container-xl {
  position: relative;
  z-index: 1;
}

.global-product.global-section p {
  color: rgba(255, 255, 255, 0.9);
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--hairline-strong);
}
.product-card-img {
  position: relative;
  padding: 20px;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-img img {
  transform: scale(1.08);
}
.product-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11, 31, 42, 0.75);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
}
.product-card-body {
  padding: 24px;
  text-align: center;
}
.product-card-body h3 {
  font-size: 1.1rem;
}
.product-card-body p {
  font-size: 0.9rem;
  margin-top: 8px;
}
.product-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.product-card-actions .btn {
  padding: 12px 18px;
  font-size: 0.8rem;
  background: var(--secondary);
  flex: 1;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  justify-content: center;
}
.product-card-actions .btn-brand-outline-dark {
  flex: 1;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-grid-item {
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.product-grid-item.hide-item {
  opacity: 0;
  transform: scale(0.92);
  position: absolute;
  pointer-events: none;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
/* ============================================================
   CHOOSE US
   ============================================================ */
.why-section .about-img-wrap img {
  aspect-ratio: 4 / 5;
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0 25px;
}
.why-card {
  display: flex;
  gap: 14px;
}
.why-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 25px;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
}
.why-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.why-card p {
  color: var(--ink-55);
  font-size: 14px;
  line-height: 22px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   MISSION / VISION
   ============================================================ */
section.global-section.vission-messing .col-lg-6 {
  z-index: 9;
}
.mv-panel {
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  height: 100%;
}
.mv-panel.mv-mission {
  background: var(--light-blue);
  border: 1.5px solid rgba(25, 130, 196, 0.16);
}
.mv-panel.mv-vision {
  background: var(--light-green);
  border: 1.5px solid rgba(2, 121, 57, 0.18);
}
.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
}
.mv-mission .mv-icon {
  background: var(--primary);
}
.mv-vision .mv-icon {
  background: var(--secondary);
}
.mv-panel h2 {
  margin-top: 20px;
  font-size: 1.6rem;
}
.mv-panel p.lead-mv {
  margin-top: 14px;
}
.mv-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.mv-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 2px 0;
  font-size: 0.94rem;
  color: var(--ink-70);
}
.mv-list li i {
  margin-top: 3px;
  font-size: 1rem;
}
.mv-mission .mv-list li i {
  color: var(--primary);
}
.mv-vision .mv-list li i {
  color: var(--secondary);
}

/* ============================================================
   WHY ANUPAM — feature strip
   ============================================================ */
.why-strip {
  display: flex;
  flex-wrap: wrap;
}
.why-item {
  flex: 1 1 200px;
  padding: 34px 26px;
  border-right: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
  transition: background 0.3s var(--ease);
}
.why-item:hover {
  background: var(--light-blue);
}
.why-item:last-child {
  border-right: none;
}
.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient-brand-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.why-item h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-top: 18px;
  text-transform: uppercase;
}
.why-item p {
  margin-top: 8px;
  font-size: 0.88rem;
}
@media (max-width: 767.98px) {
  .why-item {
    flex: 1 1 100%;
    border-right: none;
  }
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  margin-top: 25px;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--hairline-strong);
}
.timeline-item {
  position: relative;
  padding-bottom: 52px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -40px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
}
.timeline-item:nth-child(even) .timeline-dot {
  border-color: var(--secondary);
}
.timeline-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
}
.timeline-item p {
  margin-top: 8px;
  max-width: 560px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-step {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--hairline);
  height: 100%;
}
.process-step .step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--hairline-strong);
}
.process-step h4 {
  font-size: 1.05rem;
  margin-top: 10px;
}
.process-step p {
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-control-brand,
.form-select-brand {
  border: 1.5px solid var(--hairline-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.94rem;
  background: var(--white);
  transition: all 0.25s var(--ease);
}
.form-control-brand:focus,
.form-select-brand:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(25, 130, 196, 0.12);
  outline: none;
}
.form-label-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--dark);
  margin-bottom: 7px;
  display: block;
}
.form-label-brand .req {
  color: var(--secondary);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-card {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}
.contact-info-card:last-child {
  border-bottom: none;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-blue);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.96rem;
}
.contact-info-card p {
  font-size: 0.9rem;
  margin-top: 4px;
}

/* =========================================================
   WhatsApp float + Back to top
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.55;
  animation: pulseWA 2.2s infinite;
}
@keyframes pulseWA {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 80px;
}
.site-footer h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #24bd4a;
  margin-bottom: 20px;
}
.footer-links,
ul.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
ul.footer-contact li {
  margin-bottom: 12px;
}
.footer-links a,
ul.footer-contact li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  transition: 0.25s var(--ease);
  font-weight: 300;
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}
ul.footer-contact li {
  display: flex;
  gap: 12px;
}
.footer-brand-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin-top: 10px;
}
ul.footer-contact li i {
  font-size: 18px;
}
.footer-cta-box {
  background: linear-gradient(
    135deg,
    rgba(25, 130, 196, 0.14),
    rgba(2, 121, 57, 0.14)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-cta-box h3 {
  color: var(--white);
  font-size: 1.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.social-row a:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.site-footer a:hover {
  color: #fff;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   MISC
   ============================================================ */
.divider-hairline {
  height: 1px;
  background: var(--hairline);
  border: none;
}
.badge-brand {
  display: inline-block;
  background: var(--light-green);
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.ratio-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.thumb-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.thumb-row img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.25s var(--ease);
}
.thumb-row img:hover,
.thumb-row img.active-thumb {
  border-color: var(--primary);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.spec-table tr {
  border-bottom: 1px solid var(--hairline);
}
.spec-table td {
  padding: 12px 0;
  font-size: 0.92rem;
}
.spec-table td:first-child {
  color: var(--ink-55);
  font-weight: 600;
  width: 44%;
}
.spec-table td:last-child {
  color: var(--dark);
  font-weight: 600;
}

.map-page-visual {
  margin-top: 50px;
}
.presence-counter {
  text-align: center;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  color: var(--white);
}
.presence-counter .stat-number {
  background: none;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
  font-size: 3rem;
}
.presence-counter .stat-label {
  color: rgba(255, 255, 255, 0.85);
}

.alert-brand-success {
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(2, 121, 57, 0.25);
  background: var(--light-green);
  color: var(--secondary-dark);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.92rem;
}
.alert-brand-success i {
  font-size: 1.3rem;
  margin-top: 1px;
}

.was-validated-brand .form-control-brand:invalid,
.form-control-brand.is-invalid {
  border-color: #c0392b;
}
.invalid-feedback-brand {
  display: none;
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 5px;
}
.was-validated-brand .form-control-brand:invalid ~ .invalid-feedback-brand,
.form-control-brand.is-invalid ~ .invalid-feedback-brand {
  display: block;
}

@media (max-width: 767.98px) {
  .brand-logo {
    width: 50px;
  }
  .container-xl {
    padding: 0 15px;
  }
  .stat-card {
    padding: 10px 0;
  }
  .stats-strip {
    padding: 10px 0;
  }
  .stat-label {
    font-size: 0.85rem;
    margin-top: 0;
  }
  .service-card {
    padding: 30px !important;
  }
  .service-page .bg-section {
    padding: 20px !important;
    margin-top: 30px !important;
  }
  .service-page .about-img-wrap img {
    margin-bottom: 20px;
    aspect-ratio: 4 / 3 !important;
  }
  div#Ceramic .col-lg-7.ps-lg-4 {
    order: 2;
  }
  .service-icon {
    position: unset;
    margin-bottom: 15px;
  }
  .about-img-wrap img {
    aspect-ratio: 4 / 4 !important;
  }
  .why-cards {
    grid-template-columns: 1fr;
  }
  .final-cta {
    padding: 50px 0;
  }
  .final-cta h2.section-heading {
    font-size: 25px;
  }
  .final-cta .col-lg-4.text-end {
    text-align: left !important;
    margin-top: 20px !important;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-bottom,
  .site-footer .row > * {
    margin-top: 20px !important;
  }
  footer.site-footer .col-lg-2 {
    margin-top: 40px !important;
  }
  .page-hero {
    padding: 40px 0;
  }
}
