/* ==========================================================================
   Several Care Lifescience — stylesheet
   Design tokens live in :root. Sections below follow page order.
   ========================================================================== */

:root {
  /* Brand colors */
  --clr-primary: #0057C8;
  --clr-secondary: #FF9800;
  --clr-dark: #1E2A38;
  --clr-light-bg: #F7FAFD;
  --clr-white: #FFFFFF;

  --grad-primary: linear-gradient(135deg, #0057C8, #0A7BFF);
  --grad-orange: linear-gradient(135deg, #FF9800, #FFB300);

  /* Supporting neutrals derived from the palette */
  --clr-text: #33404D;
  --clr-text-muted: #6B7A8A;
  --clr-border: #E3EBF3;
  --clr-primary-tint: #EAF2FD;

  /* Elevation */
  --shadow-sm: 0 4px 14px rgba(30, 42, 56, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 87, 200, 0.10);
  --shadow-lg: 0 24px 60px rgba(0, 87, 200, 0.16);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.5s;

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  /* Spacing rhythm */
  --section-pad: 50px;
}

@media (max-width: 767.98px) {
  :root {
    --section-pad: 30px;
  }
}

/* ==========================================================================
   Base
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--clr-text);
  background-color: var(--clr-white);
  overflow-x: hidden;
  line-height: 1.8;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
.display-font {
  font-family: 'Poppins', sans-serif;
  color: var(--clr-dark);
  letter-spacing: -0.01em;
}

h1 {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.25;
}

h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.35;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--clr-text);
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 21px;
  }
}

a {
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

::selection {
  background: var(--clr-primary);
  color: #fff;
}

/* Eyebrow / kicker label used above section headings — reads as a lab
   specimen tag rather than decoration: short code + label. */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 0.9rem;
}

.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad-orange);
  display: inline-block;
  border-radius: 2px;
}

.section-pad {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.bg-light-soft {
  background-color: var(--clr-light-bg);
}

.btn {
  font-weight: 600;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-size: 15px;
  transition: all var(--dur-fast) var(--ease-out);
  border: none;
}

.btn-primary-grad {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 87, 200, 0.28);
}

.btn-primary-grad:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 87, 200, 0.36);
  color: #fff;
}

.btn-orange-grad {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 152, 0, 0.30);
}

.btn-orange-grad:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(255, 152, 0, 0.38);
  color: #fff;
}

.btn-outline-line {
  background: transparent;
  color: var(--clr-dark);
  border: 1.5px solid var(--clr-border);
}

.btn-outline-line:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  transform: translateY(-3px);
}

/* Reveal-on-scroll utility, toggled via JS by adding .is-visible */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */


.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: white;
  box-shadow: 0 2px 6px rgba(30, 42, 56, 0.04);
  transition: box-shadow var(--header-transition) ease, height var(--header-transition) ease;
  font-family: 'Poppins', sans-serif;
}

.scl-header.scl-scrolled {
  box-shadow: 0 8px 24px rgba(30, 42, 56, 0.10);
}

.scl-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  transition: height var(--header-transition) ease;
}

.scl-header.scl-scrolled .scl-header-row {
  height: 75px;
}

/* ==========================================================================
   Logo (left)
   ========================================================================== */

.scl-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.scl-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: height var(--header-transition) ease;
}

.scl-header.scl-scrolled .scl-logo-img {
  height: 50px;
}

.scl-logo-text {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  color: var(--dark);
  display: flex;
  flex-direction: column;
}

.scl-logo-text small {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ==========================================================================
   Desktop navigation (center)
   ========================================================================== */

.scl-nav-list {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scl-nav-item {
  position: relative;
  white-space: nowrap;
}

.scl-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color var(--header-transition) ease;
  background: none;
  border: none;
  transition: all .5s;
}

/* Orange underline animation on hover */
.scl-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--header-transition) ease;
}

.scl-nav-link:hover,
.scl-nav-link:focus-visible {
  color: #FF9800;
}

.scl-nav-link:hover::after,
.scl-nav-link:focus-visible::after {
  transform: scaleX(1);
}

.scl-nav-link.active {
  color: var(--primary);
}

.scl-nav-link.active::after {
  transform: scaleX(1);
}

.scl-dropdown-toggle i {
  font-size: 12px;
  transition: transform var(--header-transition) ease;
}

.scl-dropdown:hover .scl-dropdown-toggle i,
.scl-dropdown.scl-open .scl-dropdown-toggle i {
  transform: rotate(180deg);
}

/* ==========================================================================
   Our Products dropdown (desktop, hover, fade animation)
   ========================================================================== */

.scl-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 240px;
  margin: 0;
  padding: 15px;
  list-style: none;
  background: #fff;
  z-index: 99;
  margin-top: -20px;
  border-radius: var(--header-radius);
  box-shadow: 0 18px 40px rgba(30, 42, 56, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--header-transition) ease, transform var(--header-transition) ease, visibility var(--header-transition) ease;
  z-index: 10;
}

.scl-dropdown:hover .scl-dropdown-menu,
.scl-dropdown.scl-open .scl-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.scl-dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: background-color var(--header-transition) ease, color var(--header-transition) ease;
  transition: all .5s;
}

.scl-dropdown-item:hover,
.scl-dropdown-item:focus-visible {
  background-color: var(--light);
  color: #FF9800;
}

/* ==========================================================================
   Right side actions
   ========================================================================== */

.scl-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.scl-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-orange);
  color: var(--white);
  font-weight: 600;

  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.28);
  transition: transform var(--header-transition) ease, box-shadow var(--header-transition) ease, color var(--header-transition) ease;
}

.scl-btn-download:hover,
.scl-btn-download:focus-visible {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(255, 152, 0, 0.36);
}

.scl-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 87, 200, 0.30);
  transition: transform var(--header-transition) ease, box-shadow var(--header-transition) ease, color var(--header-transition) ease;
  flex-shrink: 0;
}

.scl-btn-call:hover,
.scl-btn-call:focus-visible {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 87, 200, 0.38);
}

.scl-hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--header-radius);
  border: 1px solid #E3EBF3;
  background: var(--white);
  color: var(--dark);
  font-size: 22px;
  transition: background-color var(--header-transition) ease, color var(--header-transition) ease;
}

.scl-hamburger:hover,
.scl-hamburger:focus-visible {
  background-color: var(--light);
  color: var(--primary);
}

/* ==========================================================================
   Offcanvas mobile / tablet navigation
   ========================================================================== */

.scl-offcanvas {
  width: 320px;
  background-color: #fff !important;
}



.scl-offcanvas .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--white);
  border-bottom: 1px solid #E3EBF3;
}

.scl-offcanvas .scl-logo-img {
  height: 42px;
}

.scl-offcanvas .scl-logo-text {
  font-size: 16px;
}

.scl-offcanvas-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #E3EBF3;
  background: var(--white);
  color: var(--dark);
  font-size: 15px;
  transition: background-color var(--header-transition) ease, color var(--header-transition) ease;
}

.scl-offcanvas-close:hover {
  background-color: var(--light);
  color: var(--primary);
}

.scl-offcanvas .offcanvas-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.scl-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.scl-mobile-nav-link {
  display: block;
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid #F0F4F8;
  transition: color var(--header-transition) ease, padding-left var(--header-transition) ease;
  transition: all 0.5s;
}

.scl-mobile-nav-link:hover {
  color: #FF9800 !important;
}

.scl-mobile-nav-link:hover {
  color: #FF9800 !important;
}



.scl-mobile-submenu li a:hover {
  color: #FF9800 !important;
}

.scl-mobile-nav-link:hover,
.scl-mobile-nav-link.active {
  color: var(--primary);
  padding-left: 8px;
}

/* Mobile "Our Products" accordion */
.scl-mobile-accordion-item {
  border-bottom: 1px solid #F0F4F8;
}

.scl-mobile-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--header-transition) ease;
}

.scl-mobile-accordion-btn:hover {
  color: var(--primary);
}

.scl-mobile-accordion-btn i {
  font-size: 13px;
  transition: transform var(--header-transition) ease;
}

.scl-mobile-accordion-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.scl-mobile-accordion-btn[aria-expanded="true"] {
  color: var(--primary);
}

.scl-mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 4px 0 14px 14px;
}

.scl-mobile-submenu li a {
  display: block;
  padding: 9px 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  transition: background-color var(--header-transition) ease, color var(--header-transition) ease;
}

.scl-mobile-submenu li a:hover {
  background-color: var(--light);
  color: var(--primary);
}

.scl-offcanvas-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #E3EBF3;
}

.scl-btn-call-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 22px;
  border-radius: var(--header-btn-radius);
  background: var(--grad-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 87, 200, 0.28);
  transition: transform var(--header-transition) ease, box-shadow var(--header-transition) ease, color var(--header-transition) ease;
}

.scl-btn-call-full:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 87, 200, 0.36);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991.98px) {
  .scl-header-row {
    height: 75px;
  }

  .scl-header.scl-scrolled .scl-header-row {
    height: 70px;
  }

  .scl-logo-img {
    height: 46px;
  }

  .scl-header.scl-scrolled .scl-logo-img {
    height: 42px;
  }
}

@media (max-width: 575.98px) {
  .scl-offcanvas {
    width: 88vw;
    max-width: 320px;
  }

  .scl-logo-text {
    font-size: 17px;
  }
}


/* ==========================================================================
   Hero
   ========================================================================== */

.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 640px;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100vh;
  min-height: 640px;
}

.hero-slide {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 22, 38, 0.92) 0%, rgba(0, 87, 200, 0.72) 48%, rgba(11, 22, 38, 0.55) 100%);
}

/* Subtle molecular-lattice motif — nods to formulation science without
   turning into a stock "DNA helix" cliché. */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(circle at 20% 30%, #fff 1.5px, transparent 1.5px),
    radial-gradient(circle at 60% 15%, #fff 1.5px, transparent 1.5px),
    radial-gradient(circle at 80% 60%, #fff 1.5px, transparent 1.5px),
    radial-gradient(circle at 35% 75%, #fff 1.5px, transparent 1.5px),
    radial-gradient(circle at 90% 85%, #fff 1.5px, transparent 1.5px);
  background-size: 340px 340px;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 70px;
}

.hero-content .section-eyebrow {
  color: #FFD08A;
}

.hero-content .section-eyebrow::before {
  background: #fff;
}

.hero-content h1 {
  color: #fff;
  max-width: 760px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero-content p.lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  font-size: 17px;
}

.hero-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
}

.hero-stats .stat b {
  font-size: 26px;
  font-weight: 800;
  display: block;
  color: #fff;
}

.hero-stats .stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-carousel .carousel-indicators {
  bottom: 32px;
  z-index: 3;
}

.hero-carousel .carousel-indicators button {
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border: none;
}

.hero-carousel .carousel-indicators button.active {
  background-color: var(--clr-secondary);
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  right: 5%;
  z-index: 3;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.6);
  animation: scrollCue 2s var(--ease-out) infinite;
}

@keyframes scrollCue {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.01% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (max-width: 767.98px) {

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    height: 92vh;
    min-height: 560px;
  }

  .hero-stats {
    gap: 1.4rem;
  }

  .scroll-cue {
    display: none;
  }
}

/* ==========================================================================
   About
   ========================================================================== */

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-media .badge-float {
  position: absolute;
  bottom: -28px;
  left: -28px;
  border: 2px solid #33404D;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}

.about-media .badge-float img {
  width: 80px;
  height: 80px;
}

.about-media .badge-float .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 20px;
}

.about-media .badge-float b {
  font-size: 20px;
  color: var(--clr-dark);
  display: block;
}

.about-media .badge-float span {
  font-size: 12.5px;
  line-height: 20px !important;
  color: var(--clr-text-muted);
}

@media (max-width: 991.98px) {
  .about-media {
    margin-bottom: 3.5rem;
  }

  .about-media img {
    height: 360px;
  }
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin: 2rem 0;
}

.mvv-card {
  background: var(--clr-light-bg);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.2rem;
  border-left: 3px solid var(--clr-primary);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mvv-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--clr-primary);
}

.mvv-card p {
  font-size: 14px;
  margin: 0;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

@media (max-width: 575.98px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */

.wcu-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.2rem 1.6rem;
  text-align: center;
  height: 100%;
  border: 1px solid var(--clr-border);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.wcu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}

.wcu-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.wcu-card:hover::before {
  transform: scaleX(1);
}

.wcu-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: var(--clr-primary-tint);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 1.2rem;
  transition: all var(--dur-med) var(--ease-out);
}

.wcu-card:hover .wcu-icon {
  background: var(--grad-primary);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.wcu-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.wcu-card p {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin: 0;
}

/* ==========================================================================
   Product Slider
   ========================================================================== */

.product-slider-track {
  display: flex;
  gap: 1.6rem;
  transition: transform 0.6s var(--ease-out);
}

.product-slide-item {
  flex: 0 0 25%;
  max-width: 25%;
}

@media (max-width: 991.98px) {
  .product-slide-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575.98px) {
  .product-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
  height: 380px;
  width: 100%;
  object-fit: cover;
}
.product-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card .pc-media {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-card .pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .pc-media img {
  transform: scale(1.08);
}

.product-card .pc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--grad-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.product-card .pc-body {
  padding: 1.4rem 1.3rem;
}

.product-card .pc-body h4 {
  font-size: 17px;
  margin-bottom: 0.4rem;
}

.product-card .pc-body p {
  font-size: 13.5px;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.product-card .pc-explore {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-card .pc-explore i {
  transition: transform var(--dur-fast) var(--ease-out);
}

.product-card .pc-explore:hover i {
  transform: translateX(4px);
}

.slider-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  background: #fff;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
}

.slider-nav-btn:hover {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
}

/* ==========================================================================
   Product Categories
   ========================================================================== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem;
}

@media (max-width: 991.98px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575.98px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

.category-item {
  text-align: center;
}

.category-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
  outline: 1px solid var(--clr-border);
}

.category-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.category-item:hover .category-circle img {
  transform: scale(1.18) rotate(2deg);
}

.category-item:hover .category-circle {
  box-shadow: var(--shadow-lg);
}

.category-item a {
  color: var(--clr-dark);
}

.category-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.category-item:hover h4 {
  color: var(--clr-primary);
}

/* ==========================================================================
   Split feature sections (Franchise / Third-Party Manufacturing)
   ========================================================================== */

.split-section .media-wrap {
  position: relative;
}

.split-section .media-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.split-section .media-wrap .ribbon-tag {
  position: absolute;
  top: 24px;
  right: -18px;
  background: var(--grad-primary);
  color: #fff;
  padding: 0.7rem 1.3rem;
  border-radius: 50px 4px 4px 50px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-md);
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.2rem;
}

@media (max-width: 575.98px) {
  .benefit-list {
    grid-template-columns: 1fr;
  }
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--clr-text);
}

.benefit-list li .check-ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--clr-primary-tint);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.split-section.alt-bg {
  background: var(--clr-dark);
  color: #fff;
}

.split-section.alt-bg h2,
.split-section.alt-bg .section-eyebrow {
  color: #fff !important;
}
.section-eyebrow{
  color: #fff;
}
.split-section.alt-bg p {
  color: rgba(255, 255, 255, 0.72);
}

.split-section.alt-bg .benefit-list li {
  color: rgba(255, 255, 255, 0.9);
}

.split-section.alt-bg .benefit-list li .check-ico {
  background: rgba(255, 152, 0, 0.18);
  color: var(--clr-secondary);
}

/* ==========================================================================
   Quality Assurance timeline (vertical)
   ========================================================================== */

.qa-timeline {
  position: relative;
  max-width: 780px;
  margin: 3rem auto 0;
}

.qa-timeline::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--clr-primary), var(--clr-secondary));
}

@media (max-width: 575.98px) {
  .qa-timeline::before {
    left: 23px;
  }
}

.qa-step {
  position: relative;
  padding-left: 84px;
  margin-bottom: 2.6rem;
}

@media (max-width: 575.98px) {
  .qa-step {
    padding-left: 64px;
  }
}

.qa-step:last-child {
  margin-bottom: 0;
}

.qa-step .qa-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 575.98px) {
  .qa-step .qa-num {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }
}

.qa-step h4 {
  font-size: 18px;
  margin-bottom: 0.35rem;
}

.qa-step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--clr-text-muted);
}

/* ==========================================================================
   Our Process (horizontal)
   ========================================================================== */

.process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  position: relative;
  margin-top: 2.5rem;
}

@media (max-width: 991.98px) {
  .process-row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.4rem;
  }
}

@media (max-width: 575.98px) {
  .process-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step .ps-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 26px;
  color: var(--clr-primary);
  position: relative;
  z-index: 2;
  transition: all var(--dur-fast) var(--ease-out);
}

.process-step:hover .ps-circle {
  background: var(--grad-primary);
  color: #fff;
  transform: scale(1.08);
}

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.process-step span.step-index {
  font-size: 12px;
  color: var(--clr-secondary);
  font-weight: 700;
}

.process-row::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--clr-border) 0 8px, transparent 8px 14px);
  z-index: 1;
}

@media (max-width: 991.98px) {
  .process-row::before {
    display: none;
  }
}

/* ==========================================================================
   Counter
   ========================================================================== */

.counter-section {
  background: var(--clr-dark);
  background-image: radial-gradient(circle at 15% 20%, rgba(0, 87, 200, 0.35), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255, 152, 0, 0.18), transparent 45%);
  position: relative;
}

.counter-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.counter-item .count-num {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.counter-item .count-num .suffix {
  color: var(--clr-secondary);
  font-size: 32px;
}

.counter-item span.count-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  height: 100%;
  margin: 0.5rem;
}

.testimonial-card .stars {
  color: var(--clr-secondary);
  font-size: 14px;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.testimonial-card p.quote {
  font-size: 15px;
  color: var(--clr-text);
  font-style: italic;
  margin-bottom: 1.6rem;
}

.testimonial-card .t-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .t-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-card .t-person b {
  font-size: 15px;
  display: block;
}

.testimonial-card .t-person span {
  font-size: 12.5px;
  color: var(--clr-text-muted);
}

#testimonialCarousel .carousel-indicators button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--clr-border);
  opacity: 1;
  border: none;
}

#testimonialCarousel .carousel-indicators button.active {
  background-color: var(--clr-primary);
}


/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--clr-dark);
  padding: 1.3rem 1.6rem;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--clr-primary-tint);
  color: var(--clr-primary);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-button::after {
  flex-shrink: 0;
}

.faq-accordion .accordion-body {
  font-size: 14.5px;
  color: var(--clr-text-muted);
  padding: 0.4rem 1.6rem 1.5rem;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-section {
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, 0.06);
  top: -220px;
  right: -140px;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.06);
  bottom: -180px;
  left: -100px;
}

.cta-section h2 {
  color: #fff;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
}

.cta-section .btn-white {
  background: #fff;
  color: var(--clr-primary);
  font-weight: 700;
}

.cta-section .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--clr-primary);
}

.cta-section .btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}

.cta-section .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-3px);
}



/* ==========================================================================
   Several Care Lifescience — About Us page
   about-page.css

   IMPORTANT: This file does NOT redefine anything already provided by the
   global style.css — no :root variables, no typography, no .btn-*,
   no .section-pad / .bg-light-soft / .section-eyebrow / .reveal, no
   header/footer/floating-button styles. Only NEW components unique to
   the About Us page are styled here, all prefixed with "ab-" so nothing
   collides with existing global class names.

   Assumes the following are already available globally:
     --clr-primary, --clr-secondary, --clr-dark, --clr-light-bg, --clr-white
     --grad-primary, --grad-orange
     --shadow-sm, --shadow-md, --shadow-lg
     --radius-sm, --radius-md, --radius-lg
     --ease-out, --dur-fast, --dur-med
     Poppins font, Bootstrap 5 grid, .container/.row/.col-*
     .section-pad, .bg-light-soft, .section-eyebrow, .reveal
     .btn, .btn-primary-grad, .btn-orange-grad, .btn-outline-line
   ========================================================================== */

/* ==========================================================================
   SECTION 1 — About Hero + wave divider
   ========================================================================== */

.ab-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(115deg, rgba(11, 22, 38, 0.93) 0%, rgba(0, 87, 200, 0.74) 50%, rgba(11, 22, 38, 0.6) 100%),
    url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?auto=format&fit=crop&w=1740&q=80');
  background-size: cover;
  background-position: center;
  padding-top: 2rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.ab-hero-breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}

.ab-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
}

.ab-hero-breadcrumb a:hover {
  color: var(--clr-secondary);
}

.ab-hero-breadcrumb .ab-sep {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
}

.ab-hero-breadcrumb .ab-current {
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
}

.ab-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.ab-hero-content h1 {
  color: #fff;
  max-width: 760px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.ab-hero-content p.ab-lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  font-size: 17px;
}


/* Wave divider at the base of the hero, in the site's light background tone */
.ab-wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.ab-wave-divider svg {
  display: block;
  width: 100%;
  height: 70px;
}

.ab-wave-divider path {
  fill: var(--clr-light-bg);
}

@media (max-width: 767.98px) {
  .ab-hero {
    min-height: 58vh;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .ab-wave-divider svg {
    height: 44px;
  }
}

/* ==========================================================================
   SECTION 2 — Who We Are / Company Story intro
   ========================================================================== */

.ab-company-story-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform var(--dur-med) var(--ease-out);
}

.ab-company-story-media:hover img {
  transform: scale(1.03);
}

@media (max-width: 991.98px) {
  .ab-company-story-media {
    margin-bottom: 2.6rem;
  }

  .ab-company-story-media img {
    height: 340px;
  }
}

.ab-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 767.98px) {
  .ab-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ab-feature-card {
  background: var(--clr-light-bg);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.1rem;
  text-align: center;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}

.ab-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--clr-white);
}

.ab-feature-card i {
  font-size: 24px;
  color: var(--clr-primary);
  margin-bottom: 0.6rem;
  display: block;
}

.ab-feature-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-dark);
}

/* ==========================================================================
   SECTION 3 — Our Story (vertical timeline)
   ========================================================================== */

.ab-timeline-wrapper {
  position: relative;
  padding-top: 1.5rem;
}

.ab-timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, var(--clr-primary), var(--clr-secondary));
  transform: translateX(-50%);
}

@media (max-width: 767.98px) {
  .ab-timeline-wrapper::before {
    left: 27px;
  }
}

.ab-timeline-item {
  position: relative;
  margin-bottom: 2.6rem;
  width: 50%;
}

.ab-timeline-item:last-child {
  margin-bottom: 0;
}

.ab-timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
  text-align: right;
}

.ab-timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
  text-align: left;
}

.ab-timeline-dot {
  position: absolute;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 3px solid var(--clr-primary);
  box-shadow: 0 0 0 5px rgba(0, 87, 200, 0.08);
}

.ab-timeline-item:nth-child(odd) .ab-timeline-dot {
  right: -8px;
}

.ab-timeline-item:nth-child(even) .ab-timeline-dot {
  left: -8px;
}

.ab-timeline-card {
  background: var(--clr-white);
  border: 1px solid #E3EBF3;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: inline-block;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.ab-timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.ab-timeline-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--clr-dark);
}

.ab-timeline-card p {
  font-size: 14px;
  color: #6B7A8A;
  margin: 0;
}

@media (max-width: 767.98px) {

  .ab-timeline-item,
  .ab-timeline-item:nth-child(odd),
  .ab-timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 58px;
    padding-right: 0;
  }

  .ab-timeline-item:nth-child(odd) .ab-timeline-dot,
  .ab-timeline-item:nth-child(even) .ab-timeline-dot {
    left: 19px;
    right: auto;
  }
}

/* ==========================================================================
   SECTION 4 — Mission & Vision
   ========================================================================== */

.ab-mv-card {
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.1rem;
  height: 100%;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.ab-mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ab-mv-card.ab-mission {
  background: var(--grad-primary);
}

.ab-mv-card.ab-vision {
  background: var(--clr-dark);
  background-image: linear-gradient(135deg, #1E2A38, #2C4054);
}

.ab-mv-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 1.2rem;
  transition: transform var(--dur-med) var(--ease-out);
}

.ab-mv-card:hover .ab-mv-icon {
  transform: rotate(-8deg) scale(1.06);
}

.ab-mv-card h3 {
  color: #fff;
  margin-bottom: 0.8rem;
}

.ab-mv-card p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

/* ==========================================================================
   SECTION 5 — Core Values
   ========================================================================== */

.ab-value-card {
  background: var(--clr-white);
  border: 1px solid #E3EBF3;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}

.ab-value-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.ab-value-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 1rem;
  transition: transform var(--dur-med) var(--ease-out);
}

.ab-value-card:nth-child(even) .ab-value-icon {
  background: var(--grad-orange);
}

.ab-value-card:hover .ab-value-icon {
  transform: rotate(8deg) scale(1.08);
}

.ab-value-card h4 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--clr-dark);
}

.ab-value-card p {
  font-size: 13.5px;
  color: #6B7A8A;
  margin: 0;
}

/* ==========================================================================
   SECTION 6 — Why Choose Us
   ========================================================================== */

.ab-wcu-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid #E3EBF3;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.ab-wcu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}

.ab-wcu-card:nth-child(even)::before {
  background: var(--grad-orange);
}

.ab-wcu-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.ab-wcu-card:hover::before {
  transform: scaleX(1);
}

.ab-wcu-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #EAF2FD;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 1rem;
  transition: all var(--dur-med) var(--ease-out);
}

.ab-wcu-card:hover .ab-wcu-icon {
  background: var(--grad-primary);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.ab-wcu-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--clr-dark);
}

.ab-wcu-card p {
  font-size: 13px;
  color: #6B7A8A;
  margin: 0;
}


/* ==========================================================================
   SECTION 8 — Quality Commitment
   ========================================================================== */

.ab-quality-card img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 991.98px) {
  .ab-quality-card {
    margin-bottom: 2.6rem;
  }

  .ab-quality-card img {
    height: 340px;
  }
}

.ab-quality-checklist {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

.ab-quality-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--clr-dark);
}

.ab-quality-checklist li .ab-check-ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #EAF2FD;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}



/* ==========================================================================
   SECTION 11 — Certificates
   ========================================================================== */

.ab-cert-card {
  background: var(--clr-white);
  border: 1px solid #E3EBF3;
  border-radius: var(--radius-md);
  padding: 2rem 1.4rem;
  text-align: center;
  height: 100%;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.ab-cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.ab-cert-ribbon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--grad-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-md);
  border: 3px dashed rgba(255, 255, 255, 0.6);
}

.ab-cert-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--clr-dark);
}

.ab-cert-card p {
  font-size: 12.5px;
  color: #6B7A8A;
  margin: 0;
}

/* ==========================================================================
   SECTION 12 — Leadership Team
   ========================================================================== */

.ab-team-card {
  background: var(--clr-white);
  border: 1px solid #E3EBF3;
  border-radius: var(--radius-md);
  padding: 2.2rem 1.6rem;
  text-align: center;
  height: 100%;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.ab-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ab-team-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #EAF2FD;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 1.1rem;
  transition: all var(--dur-med) var(--ease-out);
}

.ab-team-card:hover .ab-team-icon {
  background: var(--grad-primary);
  color: #fff;
}

.ab-team-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--clr-dark);
}

.ab-team-card p {
  font-size: 13.5px;
  color: #6B7A8A;
  margin: 0;
}

/* ==========================================================================
   SECTION 15 — CTA Banner
   ========================================================================== */

.ab-cta-card {
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.ab-cta-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 55px solid rgba(255, 255, 255, 0.06);
  top: -200px;
  right: -120px;
}

.ab-cta-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 36px solid rgba(255, 255, 255, 0.06);
  bottom: -160px;
  left: -90px;
}

.ab-cta-card h2 {
  color: #fff;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ab-cta-card p {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

.ab-cta-card .ab-cta-actions {
  position: relative;
  z-index: 1;
}

/* ==============================================
=================================================
=================================================
=================================================
================PCD Pharma Franchise============
=================================================
===================================================
================================================== */

.pcd-hero.ab-hero {
  background-image:
    linear-gradient(115deg, rgba(11, 22, 38, 0.93) 0%, rgba(0, 87, 200, 0.74) 50%, rgba(11, 22, 38, 0.6) 100%),
    url('https://images.unsplash.com/photo-1584017911766-d451b3d0e843?auto=format&fit=crop&w=1740&q=80');
}

/* ==========================================================================
   SECTION 2 — Intro / Expand Your Pharmaceutical Business
   ========================================================================== */

.pcd-intro-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform var(--dur-med) var(--ease-out);
}

.pcd-intro-media:hover img {
  transform: scale(1.03);
}

@media (max-width: 991.98px) {
  .pcd-intro-media {
    margin-bottom: 2.6rem;
  }

  .pcd-intro-media img {
    height: 340px;
  }
}

/* ==========================================================================
   SECTION 5 — Franchise Benefits (icon grid cards)
   ========================================================================== */

.pcd-benefit-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.pcd-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}

.pcd-benefit-card:nth-child(even)::before {
  background: var(--grad-primary);
}

.pcd-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pcd-benefit-card:hover::before {
  transform: scaleX(1);
}

.pcd-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--clr-primary-tint);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 1.1rem;
  transition: all var(--dur-med) var(--ease-out);
}

.pcd-benefit-card:hover .pcd-benefit-icon {
  background: var(--grad-orange);
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
}

.pcd-benefit-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--clr-dark);
}

.pcd-benefit-card p {
  font-size: 13.5px;
  color: var(--clr-text-muted);
  margin: 0;
}

/* ==========================================================================
   SECTION 8 — Business Advantages (compact list-style cards)
   ========================================================================== */

.pcd-advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem;
  height: 100%;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.pcd-advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pcd-advantage-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--clr-primary-tint);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.pcd-advantage-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--clr-dark);
}

.pcd-advantage-card p {
  font-size: 13.5px;
  color: var(--clr-text-muted);
  margin: 0;
}

/* ==========================================================================
   SECTION 9 — Our Presence Across India
   ========================================================================== */

.pcd-presence-section {
  background: var(--clr-dark);
  background-image: radial-gradient(circle at 15% 20%, rgba(0, 87, 200, 0.35), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255, 152, 0, 0.18), transparent 45%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.pcd-presence-section h2,
.pcd-presence-section .section-eyebrow {
  color: #fff;
}

.pcd-presence-section p {
  color: rgba(255, 255, 255, 0.75);
}

.pcd-map-wrap {
  position: relative;
  text-align: center;
}

.pcd-map-wrap img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
  opacity: 0.92;
}

.pcd-presence-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}

@media (max-width: 575.98px) {
  .pcd-presence-stats {
    grid-template-columns: 1fr;
  }
}

.pcd-presence-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.2rem;
  text-align: center;
}

.pcd-presence-stat b {
  font-size: 28px;
  font-weight: 800;
  display: block;
  color: var(--clr-secondary);
}

.pcd-presence-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 991.98px) {
  .pcd-map-wrap {
    margin-bottom: 2.4rem;
  }
}

/* =====================================================
======================================================== 
======================================================== 
============== Third Party Manufacturing ===============
========================================================
========================================================
======================================================== */

/* ==========================================================================
   Hero — same .ab-hero structure as About Us, only background image swapped
   ========================================================================== */

.tpm-hero.ab-hero {
  background-image:
    linear-gradient(115deg, rgba(11, 22, 38, 0.93) 0%, rgba(0, 87, 200, 0.74) 50%, rgba(11, 22, 38, 0.6) 100%),
    url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?auto=format&fit=crop&w=1740&q=80');
}

/* ==========================================================================
   SECTION 2 — Reliable Third Party Manufacturing Services (intro)
   ========================================================================== */

.tpm-intro-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform var(--dur-med) var(--ease-out);
}

.tpm-intro-media:hover img {
  transform: scale(1.03);
}

@media (max-width: 991.98px) {
  .tpm-intro-media {
    margin-bottom: 2.6rem;
  }

  .tpm-intro-media img {
    height: 340px;
  }
}

/* ==========================================================================
   SECTION 5 — Manufacturing Process (7-step horizontal timeline)
   Reuses .process-step / .ps-circle / .step-index from style.css,
   only the grid container differs from the global 6-column .process-row.
   ========================================================================== */

.tpm-process-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.1rem;
  position: relative;
  margin-top: 2.5rem;
}

.tpm-process-row::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--clr-border) 0 8px, transparent 8px 14px);
  z-index: 1;
}

@media (max-width: 991.98px) {
  .tpm-process-row {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 2.4rem;
  }

  .tpm-process-row::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .tpm-process-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   SECTION 7 — Packaging & Private Label Solutions
   ========================================================================== */

.tpm-package-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  height: 100%;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.tpm-package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.tpm-package-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--clr-primary-tint);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin: 0 auto 1rem;
  transition: all var(--dur-fast) var(--ease-out);
}

.tpm-package-card:hover .tpm-package-icon {
  background: var(--grad-orange);
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
}

.tpm-package-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--clr-dark);
}

/* ==========================================================================
   SECTION 9 — Industries We Serve
   ========================================================================== */

.tpm-industry-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--clr-light-bg);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  height: 100%;
  border-left: 3px solid var(--clr-primary);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.tpm-industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--clr-white);
}

.tpm-industry-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.tpm-industry-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0;
  color: var(--clr-dark);
}

/* ==========================================================================
   SECTION 10 — Certificates & Compliance
   ========================================================================== */

.tpm-cert-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.3rem;
  text-align: center;
  height: 100%;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.tpm-cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tpm-cert-badge {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--grad-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-md);
  border: 3px dashed rgba(255, 255, 255, 0.6);
}

.tpm-cert-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--clr-dark);
}


/* ==============================================
===============================================
================ Contact us ======================
===============================================
=============================================== */

/* ==========================================================================
   SECTION 2 — Contact Information cards
   ========================================================================== */

.cn-info-card {
  background: var(--clr-white);
  border: 1px solid #E3EBF3;
  border-radius: var(--radius-md);
  padding: 2.1rem 1.6rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.cn-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}

.cn-info-card:nth-child(even)::before {
  background: var(--grad-orange);
}

.cn-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.cn-info-card:hover::before {
  transform: scaleX(1);
}

.cn-info-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #EAF2FD;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 1.1rem;
  transition: all var(--dur-med) var(--ease-out);
}

.cn-info-card:hover .cn-info-icon {
  background: var(--grad-primary);
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
}

.cn-info-card h4 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--clr-dark);
}

.cn-info-card p {
  font-size: 14px;
  color: #6B7A8A;
  margin-bottom: 1.2rem;
}

.cn-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--clr-primary);
  border: 1.5px solid #EAF2FD;
  background: #EAF2FD;
  border-radius: 50px;
  padding: 0.55rem 1.3rem;
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease-out);
}

.cn-info-btn:hover {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION 3 — "We're Here To Help" + Contact Form
   ========================================================================== */

.cn-help-media {
  position: relative;
}

.cn-help-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--dur-med) var(--ease-out);
}

.cn-help-media:hover img {
  transform: scale(1.03);
}

.cn-help-media .cn-badge-float {
  position: absolute;
  bottom: -26px;
  right: -20px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.3rem 1.6rem;
  color: #fff;
  text-align: center;
  min-width: 130px;
}

.cn-help-media .cn-badge-float b {
  font-size: 28px;
  font-weight: 800;
  display: block;
}

.cn-help-media .cn-badge-float span {
  font-size: 11.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

@media (max-width: 991.98px) {
  .cn-help-media {
    margin-bottom: 2.8rem;
  }

  .cn-help-media img {
    height: 320px;
  }
}

.cn-help-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

.cn-help-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-dark);
  margin-bottom: 1rem;
}

.cn-help-list li .cn-check-ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #EAF2FD;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cn-form-card {
  background: var(--clr-white);
  border: 1px solid #E3EBF3;
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-md);
}

@media (max-width: 575.98px) {
  .cn-form-card {
    padding: 1.6rem;
  }
}

.cn-form-card .form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 0.45rem;
}

.cn-form-card .form-control,
.cn-form-card .form-select {
  border: 1.5px solid #E3EBF3;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 14.5px;
  color: var(--clr-dark);
  background-color: var(--clr-light-bg);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}

.cn-form-card .form-control:focus,
.cn-form-card .form-select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(0, 87, 200, 0.12);
  background-color: var(--clr-white);
}

.cn-form-card textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.cn-form-card .form-check-label {
  font-size: 13.5px;
  color: #6B7A8A;
}

.cn-form-card .form-check-input:checked {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.cn-form-card .form-check-input:focus {
  box-shadow: 0 0 0 4px rgba(0, 87, 200, 0.12);
}

.cn-form-submit {
  width: 100%;
  justify-content: center;
  font-size: 15.5px;
  padding: 0.95rem 2rem;
}

/* Simple inline success state after submit (JS toggles this) */
.cn-form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #EAF2FD;
  color: var(--clr-primary);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 14px;
  font-weight: 600;
  margin-top: 1.2rem;
}

.cn-form-success.cn-visible {
  display: flex;
}

.cn-form-success i {
  font-size: 20px;
}

/* Basic invalid-state styling (vanilla JS driven, no Bootstrap validation JS) */
.cn-form-card .form-control.cn-invalid,
.cn-form-card .form-select.cn-invalid {
  border-color: #E4572E;
  background-color: #FEF3F0;
}

.cn-field-error {
  display: none;
  font-size: 12.5px;
  color: #E4572E;
  margin-top: 0.35rem;
}

.cn-field-error.cn-visible {
  display: block;
}

/* ==========================================================================
   SECTION 4 — Locate Our Office (map)
   ========================================================================== */

.cn-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #E3EBF3;
}

.cn-map-wrapper iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}

@media (max-width: 575.98px) {
  .cn-map-wrapper iframe {
    height: 320px;
  }
}

.cn-map-info-card {
  background: var(--clr-white);
  border: 1px solid #E3EBF3;
  border-radius: var(--radius-md);
  padding: 1.6rem 1.3rem;
  text-align: center;
  height: 100%;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.cn-map-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.cn-map-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin: 0 auto 0.9rem;
  transition: transform var(--dur-med) var(--ease-out);
}

.cn-map-info-card:hover .cn-map-info-icon {
  transform: rotate(8deg) scale(1.08);
}

.cn-map-info-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--clr-dark);
}



/* ======================================
==========================================
========================================
============== Products images ===============
================================ ================
============================================== */

/* ==========================================================================
   Image grid — 4 cols desktop / 2 cols tablet / 1 col mobile
   ========================================================================== */

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

@media (max-width: 991.98px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .gal-grid {
    grid-template-columns: 1fr;
  }
}

.gal-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  position: relative;
  transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}

.gal-item:hover,
.gal-item:focus-visible {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.gal-item:hover img,
.gal-item:focus-visible img {
  transform: scale(1.12);
}

.gal-item::after {
  content: "\f52a";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  background: rgba(11, 22, 38, 0.0);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.gal-item:hover::after,
.gal-item:focus-visible::after {
  opacity: 1;
  background: rgba(11, 22, 38, 0.28);
}

/* ==========================================================================
   Fullscreen lightbox modal
   ========================================================================== */

.gal-modal .modal-dialog {
  max-width: 100vw;
  width: 100vw;
  height: 80vh;
  margin: 0;
  margin-top: 80px !important;
}

.gal-modal .modal-content {
  width: 100vw;
  height: 100vh;
  background: rgba(6, 12, 20, 0.96);
  border: none;
  border-radius: 0;
}

.gal-modal .modal-body {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gal-stage {
  max-width: 90vw;
  max-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gal-stage img {
  max-width: 90vw;
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.gal-stage img.gal-visible {
  opacity: 1;
  transform: scale(1);
}

/* Close button — top right */
.gal-close-btn {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.gal-close-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
  color: #fff;
}

/* Prev / Next — circular buttons */
.gal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.gal-nav-btn:hover {
  background: var(--grad-primary);
  color: #fff;
}

.gal-prev-btn {
  left: 24px;
}

.gal-prev-btn:hover {
  transform: translateY(-50%) translateX(-4px);
}

.gal-next-btn {
  right: 24px;
}

.gal-next-btn:hover {
  transform: translateY(-50%) translateX(4px);
}

@media (max-width: 767.98px) {
  .gal-nav-btn {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .gal-prev-btn {
    left: 10px;
  }

  .gal-next-btn {
    right: 10px;
  }

  .gal-close-btn {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

/* Counter — bottom center */
.gal-counter {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  z-index: 5;
}

@media (max-width: 767.98px) {
  .gal-counter {
    bottom: 16px;
    font-size: 12.5px;
    padding: 0.4rem 1rem;
  }
}

/* Prevent background scroll while lightbox is open (Bootstrap adds
   .modal-open to <body> already; this just tidies up on this page) */
body.gal-lock {
  overflow: hidden;
}



/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 5rem;
}

.site-footer h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.site-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}

.site-footer .footer-logo b {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
}

.footer-logo img {
  width: 80px;
  border-radius: 10px;
}

.site-footer p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: all var(--dur-fast) var(--ease-out);
}

.footer-links a:hover {
  color: var(--clr-secondary);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 1.1rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact i {
  color: var(--clr-secondary);
  margin-top: 3px;
}

.newsletter-form {
  display: flex;
  margin-top: 0.5rem;
}

.newsletter-form input {
  border: none;
  border-radius: 50px 0 0 50px;
  padding: 0.75rem 1.1rem;
  font-size: 13.5px;
  flex: 1;
  outline: none;
}

.newsletter-form button {
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 0 1.3rem;
  background: var(--grad-orange);
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 1.3rem;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--dur-fast) var(--ease-out);
}

.social-icons a:hover {
  background: var(--grad-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Floating buttons
   ========================================================================== */

.float-actions-desktop {
  position: fixed;
  right: 26px;
  bottom: 28px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-actions-desktop a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.float-actions-desktop .fab-whatsapp {
  background: #25D366;
}

.float-actions-desktop .fab-call {
  background: var(--grad-primary);
}

.float-actions-desktop a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.5;
  animation: fabPulse 2.2s var(--ease-out) infinite;
}

.float-actions-desktop .fab-whatsapp::before {
  color: #25D366;
}

.float-actions-desktop .fab-call::before {
  color: #0057C8;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.float-catalog-btn {
  position: fixed;
  top: 120px;
  left: 0;
  z-index: 1100;
  background: #fff;
  color: var(--clr-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.1rem 0.7rem 0.8rem;
  border-radius: 0 50px 50px 0;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--clr-border);
  transition: all var(--dur-fast) var(--ease-out);
}

.float-catalog-btn img {
  width: 22px;
  height: 22px;
}

.float-catalog-btn:hover {
  color: var(--clr-primary);
  padding-left: 1.2rem;
}

.mobile-fixed-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
}

.mobile-fixed-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.95rem 0;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
}

.mobile-fixed-bar .mfb-call {
  background: var(--grad-primary);
}

.mobile-fixed-bar .mfb-whatsapp {
  background: #25D366;
}

@media (max-width: 767.98px) {
  .float-actions-desktop {
    display: none;
  }

  .mobile-fixed-bar {
    display: flex;
  }

  .float-catalog-btn {
    top: auto;
    bottom: 74px;
    font-size: 12px;
    padding: 0.55rem 0.9rem 0.55rem 0.7rem;
  }

  body {
    padding-bottom: 60px;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 96px;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1150;
}

/* Mobile offcanvas nav polish */
@media (max-width: 991.98px) {
  .main-nav.offcanvas {
    background: var(--clr-dark);
    width: 300px;
  }

  .main-nav .nav-link,
  .main-nav .dropdown-item {
    color: #fff !important;
  }

  .main-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }

  .main-nav .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-secondary) !important;
  }

  .offcanvas-header .btn-close {
    filter: invert(1);
  }
}