/* ==========================================================================
   ROOBANESH ENTERPRISES — Main Stylesheet
   HTML5 + Bootstrap 5 + CSS3 + Vanilla JS only
   ========================================================================== */

:root {
  --primary: #092B4C;
  --primary-2: #123B63;
  --green: #159447;
  --green-dark: #0F7A3A;
  --orange: #F47B20;
  --orange-dark: #DA6812;
  --yellow: #F7C928;
  --blue: #169BD5;
  --pink: #E94B78;
  --light: #f1f1f1;
  --white: #FFFFFF;
  --text: #1B1F24;
  --muted: #68737D;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(9, 43, 76, .06);
  --shadow: 0 12px 32px rgba(9, 43, 76, .10);
  --shadow-lg: 0 24px 60px rgba(9, 43, 76, .16);

  --section-pad: 100px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

main {
  width: 100%;
  overflow-x: hidden;
}

p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1320px;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

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

@media(max-width:991px) {
  :root {
    --section-pad: 76px;
  }
}

@media(max-width:576px) {
  :root {
    --section-pad: 58px;
  }
}

.bg-light-custom {
  background: var(--light);
}

.bg-navy {
  background: var(--primary);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 700px;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.title-white {
  color: var(--white);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .3px;
  padding: 12px 26px;
  border-radius: 50px;
  transition: .25s ease;
  border: 2px solid transparent;
}

.btn i {
  margin-left: 8px;
}

.btn-primary-custom {
  background: var(--green);
  color: #fff;
}

.btn-primary-custom:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-navy:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

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

.btn-blue {
  background: var(--blue);
  color: #fff;
}

.btn-blue:hover {
  background: #1481ab;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1eb857;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm-full {
  width: 100%;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--primary);
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  padding: 8px 0;
}

.topbar a {
  color: rgba(255, 255, 255, .85);
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar .divider {
  opacity: .35;
  margin: 0 10px;
}

.badge-msme {
  background: var(--yellow);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .72rem;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: .5px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-item i {
  font-size: .85rem;
}

/* ---------- Navbar ---------- */
.main-navbar {
  background: #fff;
  padding: 4px 0;
  transition: .3s ease;
  border-bottom: 1px solid rgba(9, 43, 76, .06);
}

.main-navbar.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 6px 24px rgba(9, 43, 76, .10);
  padding: 4px 0;
  animation: slideDown .3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%)
  }

  to {
    transform: translateY(0)
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img{
  width: 170px;
}

.brand-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  font-size: 1.15rem;
  color: var(--primary);
}

.brand-text span {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  padding: 10px 14px !important;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--green);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-top: 10px !important;
}

.dropdown-item {
  font-size: .88rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 8px;
}

.dropdown-item:hover {
  background: var(--light);
  color: var(--green);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fdf9f3 0%, #f6faf5 55%, #fef6f0 100%);
}

/* Glassmorphism circles floating around the hero */
.glass-circle {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(31, 38, 135, .12);
  pointer-events: none;
  animation: glassFloat 8s ease-in-out infinite;
}

.gc-1 {
  width: 160px;
  height: 160px;
  top: 6%;
  left: -60px;
  background: rgba(255, 145, 77, .22);
  animation-duration: 9s;
}

.gc-2 {
  width: 100px;
  height: 100px;
  top: 14%;
  right: 6%;
  background: rgba(76, 175, 120, .22);
  animation-duration: 7s;
  animation-delay: .8s;
}

.gc-3 {
  width: 70px;
  height: 70px;
  top: 46%;
  left: 4%;
  background: rgba(236, 96, 150, .22);
  animation-duration: 6s;
  animation-delay: 1.4s;
}

.gc-4 {
  width: 220px;
  height: 220px;
  bottom: -90px;
  right: -80px;
  background: rgba(76, 175, 120, .18);
  animation-duration: 10s;
  animation-delay: .4s;
}

.gc-5 {
  width: 54px;
  height: 54px;
  bottom: 12%;
  left: 18%;
  background: rgba(255, 145, 77, .25);
  animation-duration: 5.5s;
  animation-delay: 1s;
}

@keyframes glassFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}
  .hero h1 {
    font-size: 42px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, #fff 0%, #fff 42%, rgb(255 255 255 / 81%) 60%, rgb(255 255 255 / 66%) 78%, #ffffff 100%);
  }
    .hero {
    padding: 50px 0 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-showcase {
    border-radius: 32px 32px 0 0;
  }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 18px;
}

.hero-label::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  display: inline-block;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero h1 .c-orange {
  color: var(--orange);
}

.hero h1 .c-green {
  color: var(--green);
}

.hero h1 .c-pink {
  color: var(--pink);
}

.hero-desc {
  font-size: 18px; 
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 56px;
}

/* Playful showcase image below the hero content */
.hero-showcase {
  position: relative;
  margin: 0 auto;
  max-width: 1140px;
  border-radius: 46px 46px 0 0;
  overflow: visible;
  isolation: isolate;
}

.hero-bg-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 30px 60px -20px rgba(20, 40, 60, .35);
}

.hs-blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .85;
}

.hs-blob-orange {
  width: 90px;
  height: 90px;
  top: -30px;
  left: 6%;
  background: var(--orange);
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  animation: heroFloat 6s ease-in-out infinite;
}

.hs-blob-green {
  width: 60px;
  height: 60px;
  bottom: -22px;
  right: 10%;
  background: var(--green);
  border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
  animation: heroFloat 7s ease-in-out infinite 1s;
}

.hs-blob-pink {
  width: 44px;
  height: 44px;
  top: 30%;
  right: 4%;
  background: var(--pink);
  border-radius: 50%;
  animation: heroFloat 5s ease-in-out infinite .5s;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

.tp-1 {
  background: #e7f6ec;
  color: var(--green);
}

.tp-2 {
  background: #fff3e0;
  color: var(--orange);
}

.tp-3 {
  background: #fef8e0;
  color: #c99a06;
}

.tp-4 {
  background: #e6f5fb;
  color: var(--blue);
}


/* ---------- Category quick nav ---------- */
.category-nav-wrap {
  position: relative;
  z-index: 5;
  margin-top: -58px;
}

.category-nav-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 18px;
}

.cat-quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: .25s ease;
}

.cat-quick-item:hover {
  background: var(--light);
  transform: translateY(-3px);
}
.cat-quick-icon img{
  width: 50px;
}
.cat-quick-icon {
  /* width: 52px;
  height: 52px; */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  padding: 8px;
}

.cat-quick-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .86rem;
  color: var(--primary);
  line-height: 1.25;
}

.cat-quick-arrow {
  margin-left: auto;
  color: var(--muted);
  transition: .25s;
}

.cat-quick-item:hover .cat-quick-arrow {
  transform: translateX(4px);
  color: var(--orange);
}

.qc-green .cat-quick-icon {
  background: #e7f6ec;
  color: var(--green);
}

.qc-blue .cat-quick-icon {
  background: #e6f5fb;
  color: var(--blue);
}

.qc-orange .cat-quick-icon {
  background: #fff3e0;
  color: var(--orange);
}

.qc-pink .cat-quick-icon {
  background: #fdeaef;
  color: var(--pink);
}

.qc-yellow .cat-quick-icon {
  background: #fef8e0;
  color: #c99a06;
}

.qc-navy .cat-quick-icon {
  background: #e9edf3;
  color: var(--primary);
}

/* ---------- Stats ---------- */
.stats-section {
  padding-top: 70px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.stat-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.stat-trust-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 26px 28px;
  color: #fff;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
}

.stat-trust-card i {
  font-size: 1.8rem;
  color: var(--yellow);
}

.stat-trust-card h6 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.stat-trust-card p {
  color: rgba(255, 255, 255, .75);
  font-size: .86rem;
  margin: 0;
}

/* ---------- About ---------- */
.about-visual {
  position: relative;
}

.about-visual .img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-visual .img-float {
  position: absolute;
  width: 44%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  bottom: -30px;
  right: -24px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-weight: 600;
  color: var(--primary);
  font-size: .95rem;
}

.about-list i {
  color: var(--green);
  font-size: 1.1rem;
}

.about-para {
  max-width: 680px;
  margin-bottom: 14px;
}

.decor-callout {
  position: relative;
  background: var(--orange);
  color: #fff;
  border-radius: 34px 34px 6px 34px;
  padding: 26px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.decor-dot {
  position: absolute;
  border-radius: 50%;
}

.dot-1 {
  width: 16px;
  height: 16px;
  background: var(--yellow);
  top: -10px;
  left: 14px;
}

.dot-2 {
  width: 10px;
  height: 10px;
  background: var(--blue);
  bottom: 10px;
  right: -14px;
}

.dot-3 {
  width: 12px;
  height: 12px;
  background: var(--pink);
  bottom: -16px;
  left: 40%;
}

/* ---------- Product Category Cards ---------- */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: .3s ease;
  height: 100%;
  border: 1px solid rgba(9, 43, 76, .07);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--orange), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 2;
}

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

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

.product-card .pc-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 50% 40%, #f4f7fb 0%, #e8edf4 100%);
  object-fit: cover;
}

.product-card .pc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 10px 14px rgba(9, 43, 76, .14));
  transition: transform .5s ease;
}

.product-card:hover .pc-img-wrap img {
  transform: scale(1.08) translateY(-2px);
}

.product-card .pc-body {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card .pc-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  color: var(--primary);
}

.product-card .pc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: .25s;
}

.product-card:hover .pc-arrow {
  background: var(--green);
  color: #fff;
  transform: translateX(3px);
}

/* Featured product cards (with view details / enquire) */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: .3s;
  height: 100%;
}

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

.feature-card .fc-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 50% 40%, #f4f7fb 0%, #e8edf4 100%); 
}

.feature-card .fc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 10px 14px rgba(9, 43, 76, .14));
  transition: transform .5s;
}

.feature-card:hover .fc-img img {
  transform: scale(1.08) translateY(-2px);
}

.feature-card .fc-body {
  padding: 18px;
}

.feature-card .fc-cat {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
  display: block;
}

.feature-card .fc-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.feature-card .fc-btns {
  display: flex;
  gap: 8px;
}

.feature-card .fc-btns .btn {
  padding: 8px 14px;
  font-size: .76rem;
  flex: 1;
  text-align: center;
}

/* ---------- New Arrivals ---------- */
.new-arrivals-section {
  background: linear-gradient(135deg, #fdeef2, #fff7f9);
}

.arrival-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  margin: 0 8px;
}

.arrival-card .badge-new {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pink);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}

.arrival-card .ac-img {
  aspect-ratio: 4/3;
}

.arrival-card .ac-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrival-card .ac-body {
  padding: 16px;
  text-align: center;
}

.arrival-card .ac-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.arrivals-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.arrivals-track::-webkit-scrollbar {
  display: none;
}

.arrivals-track .arrival-card {
  flex: 0 0 260px;
}

.arrival-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.arrival-nav-btn:hover {
  background: var(--pink);
  color: #fff;
}

@media(max-width:576px) {
  .arrivals-track .arrival-card {
    flex: 0 0 82%;
  }
}

/* ---------- Full-width feature sections (Outdoor Gym / Playground) ---------- */
.split-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.split-feature.dark {
  background: linear-gradient(120deg, rgba(9, 43, 76, .94), rgba(18, 59, 99, .86)), var(--img);
}

.split-feature .sf-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.split-feature .sf-content {
  position: relative;
  z-index: 9;
  padding: 56px;
}

.split-feature h2 {
  color: #fff;
}

.split-feature p {
  color: rgba(255, 255, 255, .78);
}

.sf-feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.sf-feature-list li {
  background: rgba(255, 255, 255, .12);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
}

.playground-feature {
  background: var(--light);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  padding: 56px;
}

.playground-feature .curve-shape {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  opacity: .5;
  z-index: 0;
}

.curve-1 {
  background: var(--yellow);
  top: -140px;
  right: -100px;
}

.curve-2 {
  background: var(--blue);
  bottom: -160px;
  left: -120px;
  opacity: .18;
}

.pill-tag {
  display: inline-block;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 9px 18px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  color: var(--primary);
  margin: 5px;
}

/* ---------- Projects ---------- */
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex: 0 0 300px;
  margin-right: 20px;
  height: 340px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

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

.project-card .pj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 43, 76, .88), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.project-card .pj-name {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.project-card .pj-loc {
  color: rgba(255, 255, 255, .75);
  font-size: .78rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.projects-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.projects-track::-webkit-scrollbar {
  display: none;
}

/* ---------- Logo strip ---------- */
.logo-strip {
  display: flex;
  align-items: center;
  gap: 50px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.logo-strip::-webkit-scrollbar {
  display: none;
}

.logo-strip .logo-item {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--muted);
  filter: grayscale(1);
  opacity: .6;
  transition: .3s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.logo-strip .logo-item:hover {
  filter: grayscale(0);
  opacity: 1;
  color: var(--primary);
}

/* ---------- Why choose / icon boxes ---------- */
.icon-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: .3s;
  height: 100%;
  border: 1px solid rgba(9, 43, 76, .04);
}

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

.icon-box .ib-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.icon-box h5 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.icon-box p {
  font-size: .88rem;
  margin: 0;
}

.ib-green .ib-icon {
  background: #e7f6ec;
  color: var(--green);
}

.ib-orange .ib-icon {
  background: #fff3e0;
  color: var(--orange);
}

.ib-blue .ib-icon {
  background: #e6f5fb;
  color: var(--blue);
}

.ib-yellow .ib-icon {
  background: #fef8e0;
  color: #c99a06;
}

.ib-pink .ib-icon {
  background: #fdeaef;
  color: var(--pink);
}

.ib-navy .ib-icon {
  background: #e9edf3;
  color: var(--primary);
}

/* ---------- Quality section ---------- */
.quality-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(9, 43, 76, .08);
}

.quality-item:last-child {
  border-bottom: none;
}

.quality-item .qi-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
  width: 34px;
}

.quality-item h6 {
  font-size: .96rem;
  margin-bottom: 4px;
}

.quality-item p {
  font-size: .86rem;
  margin: 0;
}

/* ---------- Process timeline ---------- */
.process-track {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 14px;
  position: relative;
}

.process-step .ps-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}

.process-step:nth-child(2n) .ps-num {
  background: var(--green);
}

.process-step:nth-child(3n) .ps-num {
  background: var(--orange);
}

.process-step h6 {
  font-size: .88rem;
  margin-bottom: 0;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(9, 43, 76, .18) 0 10px, transparent 10px 18px);
  z-index: 1;
}

@media(max-width:767px) {
  .process-track {
    flex-direction: column;
    gap: 26px;
  }

  .process-track::before {
    display: none;
  }

  .process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 0;
  }

  .process-step .ps-num {
    margin: 0;
    flex-shrink: 0;
  }
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid rgba(9, 43, 76, .12);
  background: #fff;
  color: var(--primary);
  transition: .25s;
}

.filter-btn:hover {
  border-color: var(--green);
}

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

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .4s;
  width: 100%;
 height: 100%;
    object-fit: cover;
    object-position: center;
}
#gallery .gallery-item {
    width: 100%;
    height: 260px; /* Adjust this fixed height to match your desired layout */
    overflow: hidden;
    position: relative;
    border-radius: 8px; /* Keeps uniform rounded corners */
}

#gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .gi-zoom {
  position: absolute;
  inset: 0;
  background: rgba(9, 43, 76, .35);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  transition: .25s;
}

.gallery-item:hover .gi-zoom {
  opacity: 1;
}

.gallery-grid {
  column-count: 3;
  column-gap: 16px;
}

.gallery-grid .gallery-item {
  break-inside: avoid;
  width: 100%;
    height: 260px; /* Adjust this fixed height to your preference (e.g., 250px, 300px) */
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

@media(max-width:768px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media(max-width:480px) {
  .gallery-grid {
    column-count: 1;
  }
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 20, 33, .94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-modal img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: .2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--orange);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- FAQ ---------- */
.accordion-item {
  border: none;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .96rem;
  color: var(--primary);
  padding: 18px 22px;
}

.accordion-button:not(.collapsed) {
  background: var(--light);
  color: var(--green);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: var(--muted);
  font-size: .9rem;
  padding: 0 22px 20px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 70px 40px;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, rgba(9, 43, 76, .92), rgba(21, 148, 71, .85));
}

.final-cta .fc-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .25;
  z-index: 0;
}

.final-cta>* {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: #fff;
  font-size: 2rem;
}

.final-cta p {
  color: rgba(255, 255, 255, .85);
  max-width: 600px;
  margin: 14px auto 30px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-info-item .ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #e7f6ec;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-size: .92rem;
  margin-bottom: 4px;
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1.5px solid rgba(9, 43, 76, .14);
  padding: 12px 14px;
  font-size: .9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(21, 148, 71, .12);
}

.form-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .84rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: none;
  width: 100%;
  height: 320px;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px 26px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(9, 43, 76, .06);
  position: relative;
  transition: .3s ease;
}

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

.testimonial-quote-icon {
  font-size: 2rem;
  color: var(--green);
  opacity: .25;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.testimonial-rating {
  color: var(--yellow, #f0c419);
  font-size: .82rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: .92rem;
  color: var(--body-color, #4c5a6b);
  line-height: 1.7;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ta-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  color: var(--primary);
}

.ta-role {
  font-size: .78rem;
  color: #8a97a6;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, .72);
  padding-top: 70px;
}

.site-footer h6 {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.site-footer .footer-links li {
  margin-bottom: 11px;
}

.site-footer .footer-links a {
  font-size: .88rem;
  transition: .2s;
}

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

.footer-brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.footer-desc {
  font-size: .88rem;
  max-width: 280px;
  margin: 14px 0 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
  font-size: 1rem;
}

.social-icons a.si-facebook:hover { background: #1877F2; box-shadow: 0 6px 16px rgba(24,119,242,.4); transform: translateY(-3px); }
.social-icons a.si-instagram:hover { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); box-shadow: 0 6px 16px rgba(214,36,159,.4); transform: translateY(-3px); }
.social-icons a.si-youtube:hover { background: #FF0000; box-shadow: 0 6px 16px rgba(255,0,0,.4); transform: translateY(-3px); }
.social-icons a.si-whatsapp:hover { background: #25D366; box-shadow: 0 6px 16px rgba(37,211,102,.4); transform: translateY(-3px); }

.footer-iso {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--yellow, #f0c419);
  font-weight: 600;
  font-size: .8rem;
  margin-top: 4px;
}

.visitor-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}

.visitor-counter i {
  color: var(--green);
  font-size: 1rem;
}

.visitor-counter strong {
  color: #fff;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 50px;
  padding: 22px 0;
  font-size: .82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  margin-left: 18px;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

/* ---------- Floating buttons ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1040;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-lg);
  animation: pulseWA 2.4s infinite;
}

.floating-call {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1040;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: var(--shadow-lg);
}

@keyframes pulseWA {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

.scroll-top-btn {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 1039;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: var(--shadow);
  font-size: 1rem;
}

.scroll-top-btn.show {
  display: flex;
}

@media(max-width:576px) {
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    bottom: 16px;
    right: 16px;
  }

  .floating-call {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    bottom: 16px;
    left: 16px;
  }

  .scroll-top-btn {
    bottom: 78px;
    right: 16px;
  }
}

/* ---------- Breadcrumb / inner page hero ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.page-hero .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, .7);
  font-size: .86rem;
  font-weight: 600;
}

.page-hero .breadcrumb-item.active {
  color: var(--yellow);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .4);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

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

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

  .hero-visual img {
    transform: none;
  }
}

/* ---------- Floating decorative shapes ---------- */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .5;
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-16px)
  }
}

/* ---------- Blog ---------- */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: .3s;
  height: 100%;
}

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

.blog-card .bc-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card .bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

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

.blog-card .bc-body {
  padding: 20px;
}

.blog-card .bc-meta {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 10px;
}

.blog-card h5 {
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.blog-card .bc-read {
  color: var(--green);
  font-weight: 700;
  font-size: .84rem;
}

/* ---------- Product details page ---------- */
.pd-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}

.pd-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pd-thumbs img {
  width: 70px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}

.pd-thumbs img.active {
  border-color: var(--green);
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(9, 43, 76, .12);
  font-size: .9rem;
}

.spec-list li span:first-child {
  color: var(--muted);
}

.spec-list li span:last-child {
  font-weight: 700;
  color: var(--primary);
  text-align: end;
}

/* ---------- Utility ---------- */
.text-green {
  color: var(--green) !important;
}

.text-orange {
  color: var(--orange) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.text-pink {
  color: var(--pink) !important;
}

.rounded-custom {
  border-radius: var(--radius) !important;
}

.h-100vh-offset {
  scroll-margin-top: 110px;
}

section[id] {
  scroll-margin-top: 100px;
}

/* ---------- Responsive ---------- */
@media(max-width:1199px) {
  .hero h1 {
    font-size: 48px;
  }
}

@media(max-width:991px) {
  .hero {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, #fff 0%, #fff 42%, rgb(255 255 255 / 81%) 60%, rgb(255 255 255 / 66%) 78%, #ffffff 100%);
  }

  .about-visual .img-float {
    width: 38%;
  }

  .split-feature .sf-content,
  .playground-feature {
    padding: 36px 24px;
  }
}

@media(max-width:767px) {
  .cat-quick-item{
        padding: 9px;
        gap: 6px;
  }
  .cat-quick-title{
    font-size: .7rem;
  }
  .hero h1 {
    font-size: 38px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-btns .btn {
    flex: 1;
  }

  .category-nav-wrap {
    margin-top: 20px;
  }

  .stat-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .process-track {
    margin-top: 10px;
  }
}

@media(max-width:576px) {
  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-btns .btn {
    width: 100%;
  }

  .final-cta {
    padding: 44px 20px;
  }
}

.split-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
    pointer-events: none;
}

.sf-content {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   ENQUIRY MODAL
   ========================================================================== */
.enquiry-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 20, 33, .6);
  backdrop-filter: blur(2px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.enquiry-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.enquiry-modal {
  background: #fff;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 34px 30px 30px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.enquiry-modal-overlay.active .enquiry-modal {
  transform: translateY(0) scale(1);
}

.enquiry-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: .2s;
}

.enquiry-modal-close:hover {
  background: var(--orange);
  color: #fff;
  transform: rotate(90deg);
}

.enquiry-modal-head h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.enquiry-modal-head p {
  font-size: .88rem;
  margin-bottom: 18px;
}

.enquiry-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.enquiry-badge {
  background: #ecebfb;
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .74rem;
  padding: 8px 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enquiry-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(9, 43, 76, .14);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--light);
}

.enquiry-field i {
  color: var(--primary);
  font-size: .95rem;
  flex-shrink: 0;
}

.enquiry-field input,
.enquiry-field select,
.enquiry-field textarea {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
}

.enquiry-field-textarea {
  align-items: flex-start;
}

.enquiry-field-textarea i {
  margin-top: 3px;
}

.enquiry-check-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  color: var(--primary);
  margin-top: 4px;
}

.enquiry-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.enquiry-check {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(9, 43, 76, .14);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: .8rem;
  color: var(--text);
  cursor: pointer;
}

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

.enquiry-submit-btn {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-top: 6px;
  padding: 14px 26px;
}

@media(max-width:480px) {
  .enquiry-checks {
    grid-template-columns: 1fr;
  }
  .btn{
    font-size: .8rem;
    padding: 8px 8px;
  }

  .enquiry-modal {
    padding: 28px 20px 24px;
  }
}

/* ---------- Header catalog button ---------- */
.btn-catalog {
  padding: 10px 20px;
  font-size: .84rem;
}

/* ==========================================================================
   WHY CHOOSE US — redesign
   ========================================================================== */
.why-choose-section {
  position: relative;
  overflow: hidden;
}

.why-choose-bg-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: .5;
}

.shape-a {
  width: 380px;
  height: 380px;
  background: #e7f6ec;
  top: -160px;
  right: -140px;
}

.shape-b {
  width: 300px;
  height: 300px;
  background: #e6f5fb;
  bottom: -140px;
  left: -120px;
  opacity: .6;
}

.why-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: .35s cubic-bezier(.22, 1, .36, 1);
  height: 100%;
  border: 1px solid rgba(9, 43, 76, .05);
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 5px;
  background: var(--accent, var(--green));
  transition: height .3s ease;
}

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

.why-card:hover::before {
  height: 100%;
  opacity: .06;
}

.why-card .wc-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(9, 43, 76, .06);
  line-height: 1;
}

.why-card .wc-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
  background: var(--accent, var(--green));
  box-shadow: 0 10px 22px -8px var(--accent, var(--green));
}

.why-card h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  position: relative;
}

.why-card p {
  font-size: .88rem;
  margin: 0;
  position: relative;
}

.wc-green { --accent: var(--green); }
.wc-orange { --accent: var(--orange); }
.wc-blue { --accent: var(--blue); }
.wc-yellow { --accent: #c99a06; }
.wc-pink { --accent: var(--pink); }
.wc-navy { --accent: var(--primary); }

/* ==========================================================================
   PROCESS — redesign
   ========================================================================== */
.process-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .5;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.process-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 26px 16px 22px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: .3s ease;
  position: relative;
}

.process-card:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-6px);
}

.process-card .pc-step-num {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .75rem;
  color: var(--yellow);
  opacity: .8;
}

.process-card .pc-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.process-card:nth-child(3n+2) .pc-step-icon {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.process-card:nth-child(3n) .pc-step-icon {
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.process-card h6 {
  color: #fff;
  font-size: .86rem;
  margin: 0;
  line-height: 1.35;
}

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

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

/* ==========================================================================
   BLOG CARD — icon badge
   ========================================================================== */
.blog-card .bc-img {
  position: relative;
}

.blog-card .bc-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  box-shadow: var(--shadow-sm);
  transition: .3s ease;
}

.blog-card:hover .bc-icon {
  background: var(--green);
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
}

/* optional per-card accent colors, add class e.g. bc-icon-orange on the icon */
.bc-icon-orange { color: var(--orange); }
.blog-card:hover .bc-icon-orange { background: var(--orange); color: #fff; }

.bc-icon-blue { color: var(--blue); }
.blog-card:hover .bc-icon-blue { background: var(--blue); color: #fff; }

.bc-icon-pink { color: var(--pink); }
.blog-card:hover .bc-icon-pink { background: var(--pink); color: #fff; }


/* ==========================================================================
   BLOG DETAILS PAGE
   ========================================================================== */
.blog-post-meta {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(9, 43, 76, .08);
}

.bpm-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}

.bpm-item i {
  color: var(--green);
}

.lead-para {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 26px;
}

article h3 {
  font-size: 1.28rem;
  margin-top: 34px;
  margin-bottom: 12px;
}

article p {
  margin-bottom: 16px;
  font-size: .96rem;
}

.blog-callout {
  background: var(--light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px 26px;
  position: relative;
}

.blog-callout i {
  color: var(--green);
  font-size: 1.4rem;
  opacity: .5;
  display: block;
  margin-bottom: 8px;
}

.blog-callout p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  font-style: italic;
}

.blog-tags {
  border-top: 1px solid rgba(9, 43, 76, .08);
}

/* ---- Sidebar ---- */
.blog-sidebar .sidebar-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(9, 43, 76, .06);
}

.sidebar-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light);
}

.sp-thumb {
  width: 72px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.sp-title {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .84rem;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 4px;
  transition: .2s;
}

.sp-title:hover {
  color: var(--green);
}

.sp-meta {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .3px;
  font-weight: 600;
}

.sidebar-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-cat-list li {
  border-bottom: 1px dashed rgba(9, 43, 76, .12);
}

.sidebar-cat-list li:last-child {
  border-bottom: none;
}

.sidebar-cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 2px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  transition: .2s;
}

.sidebar-cat-list a:hover {
  color: var(--green);
  padding-left: 6px;
}

.sidebar-cat-list a i {
  font-size: .78rem;
  color: var(--muted);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
  color: #fff;
  padding: 30px 24px;
}

.sidebar-cta i {
  font-size: 1.8rem;
  color: var(--yellow);
  margin-bottom: 10px;
  display: inline-block;
}

.sidebar-cta h6 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, .75);
  font-size: .84rem;
  margin-bottom: 18px;
}

.floating-call {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1040;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: var(--shadow-lg);
  animation: pulseCall 2.4s infinite;
}

@keyframes pulseCall {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, .5)
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 140, 0, 0)
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0)
  }
}
.blog-post-cover {
    width: 100%;
    height: 520px; /* Adjust this fixed height to your preference (e.g., 380px, 450px) */
    overflow: hidden;
    border-radius: var(--radius); /* Keeps your custom rounded corners */
}

.blog-post-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}