:root {
  --primary: #0a3f7d;
  --primary-dark: #072f5c;
  --accent: #00a2bb;
  --accent-soft: #dff7fb;
  --logo-bg: #ded9d2;
  --logo-orange: #f5a318;
  --text: #183042;
  --muted: #607487;
  --bg: #f7f8fa;
  --white: #ffffff;
  --border: #d8e8ef;
  --success: #1f8a70;
  --shadow: 0 12px 30px rgba(7, 47, 92, 0.10);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-sm {
  padding: 48px 0;
}

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

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  background: rgba(0, 162, 187, 0.12);
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease both;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  line-height: 1.2;
  color: var(--primary-dark);
}

h1 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  animation: fadeUp 0.9s ease both;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  animation: fadeUp 0.9s ease both;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  animation: fadeUp 1s ease both;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-3px);
}

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

.btn-primary:hover {
  background: var(--primary);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

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

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

.hero-btn {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
}

.topbar {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.topbar .meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

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

.topbar-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--logo-bg);
  border-bottom: 1px solid rgba(10, 63, 125, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--primary-dark);
}

.brand-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.brand-tagline {
  font-size: 12px;
  color: var(--primary-dark);
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s ease, transform 0.25s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--logo-orange);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 26px;
  color: var(--primary-dark);
  cursor: pointer;
}

.header-search-wrap {
  background: var(--logo-bg);
  padding: 0 0 18px;
}

.search-box {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-box input {
  flex: 1;
  height: 50px;
  border: 1px solid rgba(10, 63, 125, 0.12);
  border-radius: 999px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
  background: var(--white);
  transition: 0.3s ease;
}

.search-box input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 162, 187, 0.12);
}

.search-box button {
  height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.search-box button:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  padding: 10px;
  z-index: 1001;
}

.search-results.show {
  display: block;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 14px;
  transition: 0.2s ease;
}

.search-item:hover {
  background: #f6fbfd;
}

.search-item img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.search-item h4 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--primary-dark);
}

.search-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.no-results {
  padding: 14px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  background: linear-gradient(135deg, rgba(7, 47, 92, 0.95), rgba(10, 63, 125, 0.90));
  color: var(--white);
  padding: 92px 0 86px;
}

.hero-home {
  background:
    linear-gradient(135deg, rgba(7, 47, 92, 0.88), rgba(10, 63, 125, 0.78)),
    url("img/Homepage.jpg") center/cover no-repeat;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.hero h1,
.hero h3 {
  color: var(--white);
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.trust-grid,
.card-grid,
.product-grid,
.stats-grid,
.contact-grid,
.footer-grid,
.info-grid {
  display: grid;
  gap: 22px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.trust-grid-images {
  margin-top: 26px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
}

.info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.trust-card,
.stat-card,
.product-card,
.contact-card,
.info-card,
.form-card,
.welcome-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-card,
.stat-card,
.info-card,
.card,
.contact-card,
.form-card,
.welcome-box {
  padding: 24px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
  animation: fadeRight 1s ease both;
}

.hero-panel ul {
  padding-left: 18px;
  margin: 0 0 18px;
}

.hero-panel li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.90);
  animation: fadeUp 1.1s ease both;
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: rgba(0, 162, 187, 0.10);
  color: var(--accent);
}

.section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
}

.card:hover,
.product-card:hover,
.info-card:hover,
.trust-card:hover,
.stat-card:hover,
.choose-image-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

.image-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 22px;
  min-height: 240px;
  cursor: pointer;
  display: block;
}

.image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.image-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.image-card h3 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
}

.image-card p {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.welcome-section {
  background: #ffffff;
}

.welcome-box {
  max-width: 980px;
  margin: 0 auto;
  animation: fadeUp 1s ease both;
}

.welcome-box p:last-child {
  margin-bottom: 0;
}

/* Why choose us section */
.why-choose-us-section {
  background: #ded9d2;
}

.choose-us-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 28px;
}

.choose-image-card {
  background: #ffffff;
  border: 1px solid rgba(10, 63, 125, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 300px;
  transition: 0.3s ease;
}

.choose-image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.choose-image-card-green {
  background: #b5d334;
}

.choose-image-card-green img {
  mix-blend-mode: normal;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  height: 220px;
  width: 100%;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
}

.product-body {
  padding: 20px;
}

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  background: rgba(0, 162, 187, 0.12);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 12px;
}

.cta-band {
  background: var(--accent);
  color: var(--white);
  border-radius: 28px;
  padding: 42px;
  animation: fadeUp 1s ease both;
}

.cta-band h2,
.cta-band .section-head,
.cta-band .section-head p {
  color: var(--white);
}

footer {
  background: #00a2bb;
  color: rgba(255, 255, 255, 0.92);
  padding: 52px 0 18px;
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.88);
}

footer h3 {
  color: #ffffff;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  width: 110px;
  background: #ded9d2;
  padding: 10px;
  border-radius: 16px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

  .choose-us-image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .footer-grid,
  .info-grid,
  .card-grid,
  .product-grid,
  .stats-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .choose-us-image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .navbar {
    min-height: 88px;
  }

  .brand-logo {
    height: 58px;
  }

  .brand-text {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--logo-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 16px;
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .image-card img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .hero-grid,
  .contact-grid,
  .footer-grid,
  .info-grid,
  .card-grid,
  .product-grid,
  .stats-grid,
  .trust-grid,
  .choose-us-image-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 28px;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar .meta {
    justify-content: center;
  }

  .search-box {
    flex-direction: column;
  }

  .search-box input,
  .search-box button {
    width: 100%;
  }

  .hero {
    padding: 70px 0 60px;
  }

  .product-card img,
  .image-card img,
  .choose-image-card img {
    height: 200px;
  }
}
/* ============================= */
/* WELCOME SPLIT SECTION */
/* ============================= */

.welcome-split-section {
  background: linear-gradient(135deg, #00a2bb, #0a3f7d);
  padding: 80px 0;
}

.welcome-split {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 36px;
  align-items: center;
}

/* IMAGE SIDE */
.welcome-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 20px 50px rgba(7, 47, 92, 0.25);
  background: #ded9d2;
}

.welcome-side-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.welcome-image-wrap:hover .welcome-side-image {
  transform: scale(1.05);
}

/* BADGE ON IMAGE */
.welcome-image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* CONTENT SIDE */
.welcome-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TEXT COLORS FIXED TO WHITE */
.welcome-content-wrap .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 13px;
}

.welcome-content-wrap h2 {
  color: #ffffff;
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 32px;
  line-height: 1.3;
}

/* TEXT BOX */
.welcome-box {
  max-width: 100%;
  margin: 0;
  padding: 26px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}

/* PARAGRAPH TEXT WHITE */
.welcome-box p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 14px;
}

.welcome-box p:last-child {
  margin-bottom: 0;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 980px) {
  .welcome-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .welcome-image-wrap,
  .welcome-side-image {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .welcome-image-wrap,
  .welcome-side-image {
    min-height: 260px;
  }

  .welcome-box {
    padding: 20px;
  }

  .welcome-content-wrap h2 {
    font-size: 24px;
  }

  .welcome-image-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
    border-radius: 14px;
  }
}
/* ============================= */
/* PRODUCT HIGHLIGHTS SECTION */
/* ============================= */

.product-section-enhanced {
  padding: 80px 0;
  background: #f8fbfd;
}

.product-section-enhanced .section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.product-section-enhanced .section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
  color: #0a3f7d;
}

.product-section-enhanced .section-head p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5f7488;
  max-width: 760px;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Card */
.product-card {
  background: #ffffff;
  border: 1px solid rgba(10, 63, 125, 0.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 47, 92, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 44px rgba(7, 47, 92, 0.16);
}

/* Image wrap feel */
.product-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
  padding: 18px;
  transition: transform 0.45s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Body */
.product-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Tag */
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(0, 162, 187, 0.12);
  color: #0a3f7d;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  letter-spacing: 0.2px;
}

/* Title */
.product-body h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #0a3f7d;
  min-height: 52px;
}

/* Description */
.product-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #607487;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Button */
.product-body .btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.product-body .btn-secondary {
  border: 1.5px solid #0a3f7d;
  color: #0a3f7d;
  background: transparent;
}

.product-body .btn-secondary:hover {
  background: #0a3f7d;
  color: #ffffff;
  transform: translateY(-2px);
}

/* reveal animation base */
.reveal-product {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* stagger delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.reveal-delay-7 { transition-delay: 0.56s; }
.reveal-delay-8 { transition-delay: 0.64s; }

/* responsive */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .product-card img {
    height: 220px;
  }
}

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

  .product-card img {
    height: 210px;
  }

  .product-body {
    padding: 18px 16px 20px;
  }

  .product-body h3 {
    min-height: auto;
  }
}
/* Featured products slider */
.featured-slider-section {
  background: #f8fbfd;
}

.featured-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.featured-slider-window {
  overflow: hidden;
  width: 100%;
  border-radius: 24px;
}

.featured-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.featured-slide {
  min-width: calc(100% / 4);
  padding: 14px;
  text-align: center;
}

.featured-slide img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(10, 63, 125, 0.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(7, 47, 92, 0.08);
  transition: transform 0.35s ease;
}

.featured-slide:hover img {
  transform: translateY(-6px);
}

.featured-slide h3 {
  margin: 14px 0 6px;
  font-size: 1rem;
  color: #0a3f7d;
}

.featured-slide p {
  margin: 0;
  font-size: 0.92rem;
  color: #607487;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #0a3f7d;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s ease;
  box-shadow: 0 8px 18px rgba(7, 47, 92, 0.16);
}

.slider-btn:hover {
  background: #f5a318;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .featured-slide {
    min-width: calc(100% / 3);
  }
}

@media (max-width: 800px) {
  .featured-slide {
    min-width: calc(100% / 2);
  }
}

@media (max-width: 560px) {
  .featured-slider {
    gap: 10px;
  }

  .featured-slide {
    min-width: 100%;
  }

  .featured-slide img {
    height: 200px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}
/* Reduce Featured Products section height */
.featured-slider-section {
  padding: 50px 0; /* was too big before */
}

/* Reduce heading spacing */
.featured-slider-section .section-head {
  margin-bottom: 20px;
}

/* Smaller eyebrow */
.featured-slider-section .eyebrow {
  font-size: 12px;
  padding: 5px 12px;
  margin-bottom: 10px;
}

/* Reduce big title */
.featured-slider-section .section-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 10px;
}

/* Reduce paragraph */
.featured-slider-section .section-head p {
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Reduce space between heading and slider */
.featured-slider {
  margin-top: 20px;
}
/* About page redesign */
.about-breadcrumb {
  background:
    linear-gradient(135deg, rgba(7, 47, 92, 0.94), rgba(10, 63, 125, 0.88)),
    url("img/aboutus_1.jpg") center/cover no-repeat;
}

.about-hero-section {
  background: #ffffff;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.about-hero-content h2 {
  margin-bottom: 18px;
}

.about-hero-content p {
  font-size: 1rem;
  line-height: 1.85;
}

.about-mini-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.about-mini-card {
  background: #f8fbfd;
  border: 1px solid rgba(10, 63, 125, 0.08);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(7, 47, 92, 0.06);
}

.about-mini-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.about-mini-card p {
  margin: 0;
  font-size: 0.95rem;
}

.about-hero-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 20px 50px rgba(7, 47, 92, 0.16);
  background: #ded9d2;
}

.about-hero-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.about-hero-image-wrap:hover .about-hero-image {
  transform: scale(1.04);
}

.about-image-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(10, 63, 125, 0.94);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.about-highlight-section {
  background: #ded9d2;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.about-pillar {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(10, 63, 125, 0.10);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(7, 47, 92, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(7, 47, 92, 0.14);
}

.about-pillar p {
  margin-bottom: 0;
}

.about-facts-section {
  background: #ffffff;
}

/* Reveal animations */
.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

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

@media (max-width: 980px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-mini-points {
    grid-template-columns: 1fr;
  }

  .about-hero-image-wrap,
  .about-hero-image {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-image-wrap,
  .about-hero-image {
    min-height: 260px;
  }

  .about-image-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
    border-radius: 16px;
  }
}
/* ===================================== */
/* ABOUT PAGE HERO + CTA FIXES */
/* ===================================== */

/* Large professional hero banner */
.about-breadcrumb {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: url("img/warehouse_1.jpg") center/cover no-repeat;
  overflow: hidden;
}

.about-breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 47, 92, 0.88) 0%,
    rgba(7, 47, 92, 0.68) 42%,
    rgba(7, 47, 92, 0.28) 100%
  );
}

.about-breadcrumb .container {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-breadcrumb .eyebrow {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(6px);
}

.about-breadcrumb h1 {
  color: #ffffff !important;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 760px;
}

.about-breadcrumb p {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 760px;
  margin-bottom: 0;
}

/* Optional spacing under hero if needed */
.about-hero-section {
  padding-top: 72px;
}

/* CTA section fix */
.cta-band {
  background: linear-gradient(135deg, #0a3f7d 0%, #00a2bb 100%) !important;
  color: #ffffff !important;
  padding: 54px 42px !important;
  border-radius: 34px !important;
  box-shadow: 0 18px 42px rgba(7, 47, 92, 0.18);
}

.cta-band .section-head {
  margin-bottom: 22px;
}

.cta-band h2,
.cta-band p,
.cta-band span,
.cta-band .eyebrow {
  color: #ffffff !important;
}

.cta-band .eyebrow {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-band p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 760px;
  opacity: 0.96;
}

/* CTA buttons */
.cta-band .btn-group {
  margin-top: 10px;
}

.cta-btn,
.cta-band .btn-primary {
  background: #ffffff !important;
  color: #0a3f7d !important;
  border: 1px solid #ffffff !important;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

.cta-btn:hover,
.cta-band .btn-primary:hover {
  background: #f3f7fa !important;
  color: #0a3f7d !important;
  transform: translateY(-2px);
}

.cta-outline,
.cta-band .btn-outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.88) !important;
}

.cta-outline:hover,
.cta-band .btn-outline:hover {
  background: #ffffff !important;
  color: #0a3f7d !important;
  transform: translateY(-2px);
}

/* Smooth motion */
.about-breadcrumb .eyebrow,
.about-breadcrumb h1,
.about-breadcrumb p,
.cta-band {
  animation: fadeUpSoft 0.9s ease both;
}

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

/* Mobile */
@media (max-width: 980px) {
  .about-breadcrumb {
    min-height: 430px;
    background-position: center;
  }

  .cta-band {
    padding: 40px 28px !important;
  }
}

@media (max-width: 640px) {
  .about-breadcrumb {
    min-height: 340px;
  }

  .about-breadcrumb .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .about-breadcrumb h1 {
    font-size: 2.2rem;
  }

  .about-breadcrumb p {
    font-size: 0.98rem;
  }

  .cta-band {
    padding: 32px 20px !important;
    border-radius: 24px !important;
  }
}
/* ===================================== */
/* PRODUCT DETAIL PAGE */
/* ===================================== */

.product-hero-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a3f7d, #00a2bb);
}

.product-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--product-hero-image);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.28;
  transform: scale(1.08);
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 63, 125, 0.74), rgba(0, 162, 187, 0.45));
  z-index: 1;
}

.product-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.product-hero-content .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.product-hero-content h1 {
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  margin-bottom: 12px;
}

.product-hero-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
}

.product-detail-section {
  background: #f7f8fa;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 38px;
  align-items: start;
}

.product-detail-image-card {
  background: #ffffff;
  border: 1px solid rgba(10, 63, 125, 0.14);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(7, 47, 92, 0.10);
}

.product-detail-image {
  width: 100%;
  height: 560px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff, #f5faff);
  border-radius: 22px;
  padding: 18px;
}

.product-detail-info {
  background: #ffffff;
  border: 1px solid rgba(10, 63, 125, 0.12);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(7, 47, 92, 0.10);
}

.product-detail-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 14px;
  color: #0a3f7d;
}

.product-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0a3f7d, #00a2bb, #f5a318);
  border-radius: 999px;
  margin-bottom: 24px;
}

.product-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.product-tab {
  border: none;
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #0a3f7d, #00a2bb);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 10px 24px rgba(7, 47, 92, 0.14);
}

.product-tab:nth-child(2) {
  background: linear-gradient(135deg, #00a2bb, #0a3f7d);
}

.product-tab:nth-child(3) {
  background: linear-gradient(135deg, #0a3f7d, #f5a318);
}

.product-tab:hover {
  transform: translateY(-2px);
}

.product-tab.active {
  box-shadow: 0 14px 28px rgba(7, 47, 92, 0.20);
  opacity: 1;
}

.product-tab:not(.active) {
  opacity: 0.88;
}

.product-tab-content {
  min-height: 240px;
  padding: 10px 0 0;
}

.tab-panel {
  display: none;
  animation: fadePanel 0.35s ease;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  margin-bottom: 12px;
  color: #0a3f7d;
  font-size: 1.2rem;
}

.tab-panel p,
.tab-panel li {
  color: #4c6174;
  font-size: 1rem;
  line-height: 1.85;
}

.tab-panel ul {
  margin: 0;
  padding-left: 20px;
}

.adr-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(245, 163, 24, 0.10);
  border: 1px solid rgba(245, 163, 24, 0.22);
}

.adr-note h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #0a3f7d;
}

.adr-note p {
  margin-bottom: 0;
  color: #4c6174;
}

.adr-note a {
  color: #0a3f7d;
  font-weight: 700;
}

.product-detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.product-outline-btn {
  border: 2px solid #0a3f7d;
  color: #0a3f7d;
  background: transparent;
}

.product-outline-btn:hover {
  background: #0a3f7d;
  color: #ffffff;
}

/* Reveal */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.12s; }

/* Fade */
@keyframes fadePanel {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-image {
    height: 380px;
  }

  .product-hero-banner {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .product-detail-info {
    padding: 22px 18px;
  }

  .product-detail-image {
    height: 260px;
  }

  .product-tab {
    font-size: 0.95rem;
    padding: 16px;
  }

  .product-detail-actions {
    flex-direction: column;
  }
}
/* ===================================== */
/* SINGLE PRODUCT PAGE */
/* ===================================== */

.single-product-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a3f7d 0%, #00a2bb 100%);
}

.zentokid-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/Zentokid.png") center center / contain no-repeat;
  opacity: 0.18;
  transform: scale(1.08);
  z-index: 0;
}

.single-product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 63, 125, 0.78), rgba(0, 162, 187, 0.42));
  z-index: 1;
}

.single-product-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.single-product-hero-content .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.single-product-hero-content h1 {
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  margin-bottom: 10px;
}

.single-product-hero-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.single-product-section {
  background: #f6f8fb;
}

.single-product-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.single-product-image-card {
  background: #ffffff;
  border: 1px solid rgba(10, 63, 125, 0.12);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 18px 38px rgba(7, 47, 92, 0.10);
}

.single-product-image {
  width: 100%;
  height: 560px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #eff6fb 100%);
  border-radius: 22px;
  padding: 18px;
  display: block;
}

.single-product-info-card {
  background: #ffffff;
  border: 1px solid rgba(10, 63, 125, 0.12);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 38px rgba(7, 47, 92, 0.10);
}

.single-product-info-card h2 {
  color: #0a3f7d;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 14px;
}

.single-product-divider {
  height: 2px;
  width: 100%;
  border-radius: 999px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #0a3f7d, #00a2bb, #f5a318);
}

.single-product-tabs {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.single-tab-btn {
  border: none;
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #0a3f7d, #00a2bb);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 8px 18px rgba(7, 47, 92, 0.14);
}

.single-tab-btn:nth-child(2) {
  background: linear-gradient(135deg, #00a2bb, #2d5f96);
}

.single-tab-btn:nth-child(3) {
  background: linear-gradient(135deg, #2d5f96, #f5a318);
}

.single-tab-btn:nth-child(4) {
  background: linear-gradient(135deg, #0a3f7d, #f5a318);
}

.single-tab-btn:hover {
  transform: translateY(-2px);
}

.single-tab-btn.active {
  opacity: 1;
  box-shadow: 0 12px 24px rgba(7, 47, 92, 0.18);
}

.single-tab-btn:not(.active) {
  opacity: 0.88;
}

.single-product-content {
  min-height: 160px;
  padding-top: 8px;
}

.single-tab-panel {
  display: none;
  animation: productFade 0.35s ease;
}

.single-tab-panel.active {
  display: block;
}

.single-tab-placeholder {
  display: block;
  min-height: 80px;
  padding-top: 12px;
}

.single-tab-placeholder.hidden {
  display: none;
}

.single-tab-placeholder p {
  color: #607487;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.single-tab-panel h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #0a3f7d;
}

.single-tab-panel p {
  font-size: 1rem;
  line-height: 1.85;
  color: #4c6174;
  margin-bottom: 0;
}

.single-tab-panel a {
  color: #0a3f7d;
  font-weight: 700;
}

.single-product-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.single-outline-btn {
  border: 2px solid #0a3f7d;
  background: transparent;
  color: #0a3f7d;
}

.single-outline-btn:hover {
  background: #0a3f7d;
  color: #ffffff;
}

/* animation */
@keyframes productFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* reveal */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

/* responsive */
@media (max-width: 980px) {
  .single-product-grid {
    grid-template-columns: 1fr;
  }

  .single-product-image {
    height: 360px;
  }

  .single-product-hero {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .single-product-info-card {
    padding: 22px 18px;
  }

  .single-product-image {
    height: 250px;
  }

  .single-tab-btn {
    font-size: 0.88rem;
    padding: 14px;
  }

  .single-product-actions {
    flex-direction: column;
  }
}
.inflagic-oral-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/inflagic_oral solution.png") center center / contain no-repeat;
  opacity: 0.18;
  transform: scale(1.08);
  z-index: 0;
}
.hantacid-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/Hantacid.png") center center / contain no-repeat;
  opacity: 0.18;
  transform: scale(1.08);
  z-index: 0;
}
.nebusal-spray-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/Nebusal spray.jpg") center center / contain no-repeat;
  opacity: 0.18;
  transform: scale(1.08);
  z-index: 0;
}
.nebusal-coleus-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/NEBUSALCOLEUS .png") center center / contain no-repeat;
  opacity: 0.18;
  transform: scale(1.08);
  z-index: 0;
}
.progermila-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/Progermila.png") center center / contain no-repeat;
  opacity: 0.18;
  transform: scale(1.08);
  z-index: 0;
}
.vonocid-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/venocid.jpeg") center center / contain no-repeat;
  opacity: 0.18;
  transform: scale(1.08);
  z-index: 0;
}
.inflagic-tablets-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/inflagic Tablets.jpg") center center / contain no-repeat;
  opacity: 0.18;
  transform: scale(1.08);
  z-index: 0;
}
@media (max-width: 640px) {
  .products-page-hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.18;
  }

  .products-page-hero-content p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .product-card-body h3 {
    font-size: 1.35rem;
  }

  .product-label {
    font-size: 0.84rem;
    padding: 8px 14px;
  }

  .product-view-link {
    font-size: 0.92rem;
  }
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsappFloat 2.4s ease-in-out infinite;
  overflow: hidden;
  border: 4px solid #ffffff;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes whatsappFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 640px) {
  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }
}
.form-response-box {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 600;
  line-height: 1.6;
  border: 1px solid transparent;
}

.form-response-box.success {
  display: block;
  background: #ecfdf3;
  color: #0f7a38;
  border-color: #b7ebc6;
}

.form-response-box.error {
  display: block;
  background: #fff1f0;
  color: #b42318;
  border-color: #f5c2c0;
}


