/* =============================================================
   AQUAWINDS — COLOR THEME OVERRIDE
   Load after main.css. Only overrides colors + adds trust strip.
   ============================================================= */

/* ─── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --aw-navy: #0A2342;
  --aw-teal: #007B8A;
  --aw-teal-light: #009aac;
  --aw-teal-pale: #e6f6f8;
  --aw-border: rgba(10, 35, 66, 0.10);
  --aw-shadow-md: 0 4px 16px rgba(10, 35, 66, 0.10), 0 1px 4px rgba(10, 35, 66, 0.06);
  --aw-shadow-lg: 0 12px 36px rgba(10, 35, 66, 0.12), 0 4px 12px rgba(10, 35, 66, 0.07);
  --aw-shadow-teal: 0 8px 24px rgba(0, 123, 138, 0.28);
  --aw-radius-pill: 9999px;
  --aw-radius-xl: 1rem;
  --aw-radius-2xl: 1.5rem;
  --aw-transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.msc-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 0px 0 0px;
}

.msc-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 35, 66, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 66, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.msc-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.msc-hero__glow--1 {
  width: 520px;
  height: 520px;
  top: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(0, 123, 138, 0.09) 0%, transparent 70%);
}

.msc-hero__glow--2 {
  width: 380px;
  height: 380px;
  bottom: -40px;
  left: -60px;
  background: radial-gradient(circle, rgba(10, 35, 66, 0.06) 0%, transparent 70%);
}

.msc-hero__row {
  min-height: 70vh;
  position: relative;
  z-index: 2;
}

.msc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aw-teal-faint);
  border: 1px solid rgba(0, 123, 138, 0.18);
  color: var(--aw-teal);
  padding: 6px 14px;
  border-radius: var(--aw-radius-pill);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.msc-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aw-teal);
  animation: mscPulse 2s ease-in-out infinite;
}

@keyframes mscPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

.msc-hero__heading {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--aw-navy);
  margin-bottom: 1.25rem;
}

.msc-hero__heading-accent {
  color: var(--aw-teal);
  position: relative;
  display: inline-block;
}

.msc-hero__heading-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, var(--aw-teal), transparent);
  border-radius: 2px;
}

.msc-hero__desc {
  color: #4a6080;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 2rem;
}

.msc-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.msc-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 9999px;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--aw-transition);
}

.msc-hero__btn--primary {
  background: var(--aw-navy);
  color: #fff;
  border: 2px solid var(--aw-navy);
}

.msc-hero__btn--primary:hover {
  background: var(--aw-teal);
  border-color: var(--aw-teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--aw-shadow-teal);
}

.msc-hero__btn--outline {
  background: #fff;
  color: var(--aw-navy);
  border: 2px solid var(--aw-border);
}

.msc-hero__btn--outline:hover {
  background: var(--aw-teal-faint);
  border-color: var(--aw-teal);
  color: var(--aw-teal);
  transform: translateY(-1px);
}

.msc-hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.msc-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.msc-hero__stat-number {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--aw-navy);
}

.msc-hero__stat-number span {
  color: var(--aw-teal);
}

.msc-hero__stat-label {
  font-size: .72rem;
  color: #8fa3bb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.msc-hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--aw-border);
}

.msc-hero__visual {
  position: relative;
}

.msc-hero__img-wrap {
  border-radius: var(--aw-radius-2xl);
  overflow: hidden;
  box-shadow: var(--aw-shadow-lg);
  border: 1px solid var(--aw-border);
  background: var(--aw-navy-faint);
  aspect-ratio: 4/3;
}

.msc-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.msc-hero__chip {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--aw-border);
  box-shadow: var(--aw-shadow-md);
  border-radius: 1rem;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--aw-navy);
}

.msc-hero__chip-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--aw-teal-faint);
  color: var(--aw-teal);
  flex-shrink: 0;
}

.msc-hero__chip-icon--success {
  background: #ECFDF5;
  color: #10B981;
}

.msc-hero__chip--1 {
  top: -18px;
  left: -20px;
  animation: mscFloat 4s ease-in-out infinite;
}

.msc-hero__chip--2 {
  bottom: 30px;
  right: -20px;
  animation: mscFloat 4s ease-in-out infinite 1.5s;
}

.msc-hero__chip--3 {
  top: 45%;
  right: -24px;
  transform: translateY(-50%);
  animation: mscFloatCenter 4s ease-in-out infinite 3s;
}

@keyframes mscFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes mscFloatCenter {

  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }

  50% {
    transform: translateY(-50%) translateY(-8px);
  }
}

@media (max-width:991px) {
  .msc-hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .msc-hero__desc {
    margin-inline: auto;
  }

  .msc-hero__actions,
  .msc-hero__stats {
    justify-content: center;
  }

  .msc-hero__chip--3 {
    display: none;
  }

  .msc-hero__chip--1 {
    left: 0;
  }

  .msc-hero__chip--2 {
    right: 0;
  }
}

@media (max-width:576px) {
  .msc-hero {
    padding: 90px 0 50px;
  }

  .msc-hero__heading {
    font-size: 2rem;
  }

  .msc-hero__chip--1,
  .msc-hero__chip--2 {
    display: none;
  }
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.ed-primary-btn {
  background: var(--aw-navy) !important;
  border-color: var(--aw-navy) !important;
  color: #fff !important;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s !important;
}

.ed-primary-btn:hover {
  background: var(--aw-teal) !important;
  border-color: var(--aw-teal) !important;
  box-shadow: 0 6px 18px rgba(0, 123, 138, 0.28) !important;
}

/* Header "Get Quote" stands out in teal */
.msc-get-quote-btn.ed-primary-btn {
  background: var(--aw-teal) !important;
  border-color: var(--aw-teal) !important;
}

.msc-get-quote-btn.ed-primary-btn:hover {
  background: var(--aw-navy) !important;
  border-color: var(--aw-navy) !important;
}

/* CTA outline variant */
.cta-btn-2.ed-primary-btn {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}

.cta-btn-2.ed-primary-btn:hover {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: #fff !important;
}

/* ─── TOP BAR ──────────────────────────────────────────────── */
.top-bar {
  background: var(--aw-navy) !important;
}

.top-bar-list li i {
  color: var(--aw-teal-light) !important;
}

/* ─── PRIMARY HEADER ───────────────────────────────────────── */
.primary-header {
  border-bottom: 3px solid var(--aw-teal-pale) !important;
}

.header-logo span {
  color: var(--aw-navy) !important;
}

/* Active nav item */
.sub-menu.mobile-menu-items>li.active>a,
.sub-menu.mobile-menu-items>li>a:hover {
  color: var(--aw-teal) !important;
}

/* Dropdown top accent */
.products-dropdown .dropdown-menu {
  border-top: 3px solid var(--aw-teal) !important;
}

/* ─── SUB-HEADING ACCENT ───────────────────────────────────── */
.sub-heading {
  color: var(--aw-teal) !important;
}

.heading-icon {
  background: var(--aw-teal) !important;
  color: #fff !important;
}

/* ─── PROMO / PRODUCT CARDS ────────────────────────────────── */
.promo-item-2 {
  border-bottom: 3px solid transparent !important;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s !important;
}

.promo-item-2:hover {
  border-bottom-color: var(--aw-teal) !important;
  box-shadow: 0 8px 30px rgba(10, 35, 66, 0.12) !important;
  transform: translateY(-4px) !important;
}

/* ─── FEATURES SECTION (dark bg) ──────────────────────────── */
.features-section {
  background: #ffffff !important;
}

.features-section .section-title {
  color: #007b8a !important;
}

.features-section .sub-heading {
  color: var(--aw-teal-light) !important;
}

.feature-card i {
  color: var(--aw-teal-light) !important;
}

.feature-card:hover {
  background: rgba(0, 154, 172, 0.10) !important;
  border-color: rgba(0, 154, 172, 0.35) !important;
}

/* ─── CTA SECTION ──────────────────────────────────────────── */
.cta-section-3 .overlay {
  background: linear-gradient(135deg,
      rgba(10, 35, 66, 0.85) 0%,
      rgba(0, 123, 138, 0.50) 100%) !important;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer-section.footer {
  background-color: var(--aw-navy) !important;
}

.footer-widget h3.widget-header {
  border-bottom: 2px solid var(--aw-teal) !important;
  display: inline-block;
  padding-bottom: 8px !important;
}

.footer-widget a:hover {
  color: var(--aw-teal-light) !important;
}

.footer-social li a:hover {
  background: var(--aw-teal) !important;
  border-color: var(--aw-teal) !important;
}

/* ─── FAB BUTTONS ──────────────────────────────────────────── */
.fab-main {
  background: var(--aw-navy) !important;
}

.fab-main:hover {
  background: var(--aw-teal) !important;
}

.fab-call {
  background: var(--aw-teal) !important;
}

.fab-scroll {
  background: var(--aw-navy) !important;
}

/* ─── "WHY CHOOSE US" BOTTOM CARDS ─────────────────────────── */
.feature-section h4[style] {
  color: var(--aw-teal) !important;
}

.feature-section a[style*="background-color"] {
  background-color: var(--aw-navy) !important;
  transition: background 0.25s !important;
}

.feature-section a[style*="background-color"]:hover {
  background-color: var(--aw-teal) !important;
}

.feature-section i.fas.fa-globe-asia,
.feature-section i.fas.fa-ship {
  color: var(--aw-teal) !important;
}

/* ─── ASSOCIATION CARDS ────────────────────────────────────── */
.association-card:hover {
  border-color: var(--aw-teal-pale) !important;
}

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testi-review li i {
  color: #f0a500 !important;
}

.testi-thumb img {
  border: 2px solid var(--aw-teal-pale) !important;
}

/* ─── MODAL ────────────────────────────────────────────────── */
.modal-header {
  background: var(--aw-navy) !important;
}

.modal-title {
  color: #fff !important;
}

.modal-header .btn-close {
  filter: invert(1) opacity(0.7) !important;
}

/* =============================================================
   NEW: TRUST STRIP  (client requirement — not in current site)
   Add this HTML just below #msc-banner-home-section:

   <div class="aw-trust-strip">
     <ul>
       <li>Factory Direct Pricing</li>
       <li>Private Label &amp; Custom Branding</li>
       <li>Export Documentation Ready</li>
       <li>Low MOQ</li>
       <li>Worldwide Shipping</li>
     </ul>
   </div>
   ============================================================= */
.aw-trust-strip {
  background: var(--aw-navy);
  padding: 12px 0;
}

.aw-trust-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.aw-trust-strip li {
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}

.aw-trust-strip li::before {
  content: '✓';
  color: var(--aw-teal-light);
  font-weight: 900;
}

.aw-certifications {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px;
  background: var(--aw-teal-pale);
  border-top: 2px solid rgba(0, 123, 138, 0.15);
  border-bottom: 2px solid rgba(0, 123, 138, 0.15);
}

.aw-certifications span {
  background: #fff;
  border: 1.5px solid var(--aw-teal);
  color: var(--aw-navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.aw-certifications span::before {
  content: '🏅';
  font-size: 0.75rem;
}



.aw-trust-section {
  background: #ffffff;
  padding: 0;
}

.aw-trust-grid {
  display: flex;
  align-items: stretch;
}

.aw-trust-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 36px 28px;
  transition: background var(--aw-transition);
}

.aw-trust-item:hover {
  background: rgba(255, 255, 255, .04);
}

.aw-trust-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(0, 154, 172, .15);
  border: 1px solid rgba(0, 154, 172, .25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aw-teal-light);
  font-size: 18px;
  transition: background var(--aw-transition), border-color var(--aw-transition);
}

.aw-trust-item:hover .aw-trust-item__icon {
  background: rgba(0, 154, 172, .28);
  border-color: var(--aw-teal-light);
}

.aw-trust-item__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aw-trust-item__title {
  font-size: 14px;
  font-weight: 700;
  color: #0a2342;
  margin: 0;
  line-height: 1.3;
}

.aw-trust-item__desc {
  font-size: 12px;
  color: rgb(6 6 6);
  margin: 0;
  line-height: 1.5;
}

.aw-trust-divider {
  width: 1px;
  background: rgb(147 202 206);
  align-self: stretch;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .aw-trust-grid {
    flex-wrap: wrap;
  }

  .aw-trust-item {
    flex: 1 1 calc(50% - 1px);
    min-width: 200px;
    padding: 28px 22px;
  }

  .aw-trust-divider:nth-child(4) {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .08);
  }

  .aw-trust-divider {
    display: none;
  }

  .aw-trust-grid {
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 0;
  }

  .aw-trust-item {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .aw-trust-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .aw-trust-item {
    flex: 1 1 100%;
  }
}


/* new card css */

.modern-products-section {
  /* background:
    radial-gradient(circle at top left, rgba(0, 150, 136, .08), transparent 28%),
    #f7fafc; */
  position: relative;
  overflow: hidden;
}

.py-100 {
  padding: 100px 0;
}

/* ========================= */
/* HEADING */
/* ========================= */

.modern-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 55px;
  gap: 20px;
  flex-wrap: wrap;
}

.modern-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e7edf3;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .6px;
  color: #0f766e;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
}

.modern-badge span {
  width: 9px;
  height: 9px;
  background: #14b8a6;
  border-radius: 50%;
}

.modern-title {
  /* font-size: clamp(2.3rem, 4vw, 4rem); */
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
  max-width: 750px;
  margin: 0;
}

.modern-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: .35s ease;
}

.modern-view-all:hover {
  background: #0f766e;
  color: #fff;
  transform: translateY(-3px);
}

/* ========================= */
/* CARD */
/* ========================= */

.modern-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: .4s ease;
  border: 1px solid rgba(226, 232, 240, .9);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, .04);
}

.modern-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 60px rgba(15, 23, 42, .12);
}

/* ========================= */
/* IMAGE */
/* ========================= */

.modern-card__image {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #eef2f7;
}

.modern-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.modern-card:hover .modern-card__image img {
  transform: scale(1.08);
}

.modern-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(15, 23, 42, .55),
      transparent 45%);
}

/* ========================= */
/* TOP BADGES */
/* ========================= */

.modern-card__top {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.modern-export {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  color: #0f766e;
  font-size: .72rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  letter-spacing: .4px;
}

.modern-number {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

/* ========================= */
/* CONTENT */
/* ========================= */

.modern-card__content {
  padding: 28px;
}

.modern-card__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.modern-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: #64748b;
  background: #f8fafc;
  border-radius: 999px;
  padding: 8px 14px;
}

.modern-card__title {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #0f172a;
}

.modern-card__desc {
  font-size: .96rem;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 26px;
}

/* ========================= */
/* BUTTON */
/* ========================= */

.modern-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  border-top: 1px solid #edf2f7;
  padding-top: 20px;
  transition: .35s ease;
}

.modern-btn span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .35s ease;
}

.modern-btn:hover {
  color: #0f766e;
}

.modern-btn:hover span {
  background: #0f766e;
  color: #fff;
  transform: translateX(5px);
}

/* ========================= */
/* EMPTY */
/* ========================= */

.empty-products {
  text-align: center;
  background: #fff;
  padding: 80px 30px;
  border-radius: 30px;
  border: 1px solid #edf2f7;
}

.empty-products__icon {
  width: 110px;
  height: 110px;
  margin: auto;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #94a3b8;
  margin-bottom: 25px;
}

.empty-products h3 {
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
}

.empty-products p {
  color: #64748b;
  margin-bottom: 28px;
}

.empty-products__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: .35s ease;
}

.empty-products__btn:hover {
  background: #0f766e;
  color: #fff;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px) {

  .modern-title {
    font-size: 2.4rem;
  }

  .modern-heading {
    align-items: start;
  }

}

@media(max-width:767px) {

  .py-100 {
    padding: 70px 0;
  }

  .modern-card__image {
    height: 230px;
  }

  .modern-card__content {
    padding: 22px;
  }

  .modern-title {
    font-size: 2rem;
  }

}


.modern-card__desc {
  font-size: .96rem;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 26px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.certification-section {
  padding: 90px 0;
  background: #ffffff;
  position: relative;
}

/* ================================= */
/* HEADING */
/* ================================= */

.certification-heading {
  text-align: center;
  margin-bottom: 55px;
}

.certification-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  color: #0f766e;
  margin-bottom: 20px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .04);
}

.certification-title {
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin: 0;
}

/* ================================= */
/* CARD */
/* ================================= */

.certificate-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: .35s ease;
  border: 1px solid #e8eef5;
  height: 100%;
  box-shadow:
    0 8px 25px rgba(15, 23, 42, .04);
}

.certificate-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(15, 23, 42, .10);
}

/* ================================= */
/* LINK */
/* ================================= */

.certificate-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ================================= */
/* IMAGE */
/* ================================= */

.certificate-card__image {
  aspect-ratio: 1 / 1;
  background: #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.certificate-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center,
      rgba(20, 184, 166, .06),
      transparent 65%);
}

.certificate-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform .4s ease;
}

.certificate-card:hover .certificate-card__image img {
  transform: scale(1.06);
}

/* ================================= */
/* CONTENT */
/* ================================= */

.certificate-card__content {
  padding: 18px 16px 22px;
  text-align: center;
  border-top: 1px solid #f1f5f9;
}

.certificate-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

/* ================================= */
/* EMPTY */
/* ================================= */

.certificate-empty {
  background: #fff;
  border-radius: 24px;
  padding: 60px 20px;
  text-align: center;
  border: 1px solid #e8eef5;
}

.certificate-empty i {
  font-size: 3rem;
  color: #cbd5e1;
  margin-bottom: 18px;
}

.certificate-empty p {
  margin: 0;
  font-size: 1rem;
  color: #64748b;
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media(max-width:767px) {

  .certification-section {
    padding: 70px 0;
  }

  .certificate-card__image {
    padding: 18px;
  }

  .certificate-card__title {
    font-size: .92rem;
  }

}


/* new card css */



/* new features */

.features-hd {
  margin-bottom: 40px;
}

.features-ey {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.features-ey__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a9e8f;
}

.features-ey span:last-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a9e8f;
}

.features-title {
  font-size: 32px;
  font-weight: 800;
  color: #0d1f3c;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feat-card {
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}

.feat-card:hover {
  border-color: #1a9e8f;
  transform: translateY(-3px);
}

.feat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #e6f7f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-card__icon i {
  font-size: 20px;
  color: #1a9e8f;
}

.feat-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0d1f3c;
  margin: 0;
}

.feat-card p {
  font-size: 13px;
  color: #7c8490;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.why-hd {
  margin-bottom: 32px;
}

.why-ey {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.why-ey__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a9e8f;
}

.why-ey span:last-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a9e8f;
}

.why-title {
  font-size: 28px;
  font-weight: 800;
  color: #0d1f3c;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 0.2s;
}

.why-card:hover {
  border-color: #1a9e8f;
}

.why-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a9e8f;
  margin-bottom: 8px;
}

.why-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #0d1f3c;
  line-height: 1.3;
  margin: 0 0 20px;
}

.why-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d1f3c;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
}

.why-card__btn:hover {
  background: #1a2e4a;
  color: #fff;
}

.why-card__btn i {
  color: #1a9e8f;
}

.why-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #e6f7f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card__icon i {
  font-size: 28px;
  color: #1a9e8f;
}

@media (max-width: 767px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* new features */




/* testimonial and trust section */


/* ====================================================== */
/* SECTION */
/* ====================================================== */

#trust-and-testimonial-section {
  padding: 0px 0;
}

/* ====================================================== */
/* COMMON BOX */
/* ====================================================== */

.trust-certifications,
.testimonial-wrapper {
  background: #fff;
  border-radius: 32px;
  padding: 35px;
  height: 100%;
  /* border: 1px solid #edf2f7; */
  /* box-shadow: */
  /* 0 10px 35px rgba(15, 23, 42, .05); */
}

/* ====================================================== */
/* HEADINGS */
/* ====================================================== */

.trust-heading,
.testimonial-heading {
  margin-bottom: 30px;
}

.trust-badge,
.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdfa;
  color: #0f766e;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.trust-title,
.testimonial-title {
  font-size: 2rem;

  line-height: 1.2;
  color: #0f172a;
  margin: 0;
}

/* ====================================================== */
/* CERTIFICATIONS GRID */
/* ====================================================== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* ====================================================== */
/* CERTIFICATION CARD */
/* ====================================================== */

.trust-card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  transition: .35s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 35px rgba(15, 23, 42, .08);
}

.trust-card__image {
  aspect-ratio: 1/1;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center,
      rgba(20, 184, 166, .06),
      transparent 70%);
}

.trust-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}

.trust-card:hover .trust-card__image img {
  transform: scale(1.05);
}

.trust-card__content {
  padding: 16px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}

.trust-card__content h4 {
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

/* ====================================================== */
/* EMPTY */
/* ====================================================== */

.trust-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 50px 20px;
}

.trust-empty i {
  font-size: 2.8rem;
  color: #cbd5e1;
  margin-bottom: 15px;
}

.trust-empty p {
  margin: 0;
  color: #64748b;
}

/* ====================================================== */
/* TESTIMONIAL CARD */
/* ====================================================== */

.modern-testi-card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 28px;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.modern-testi-quote {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f0fdfa;
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.modern-testi-message p {
  font-size: 1rem;
  line-height: 2;
  color: #475569;
  margin-bottom: 28px;
}

.view-more-btn {
  color: #0f766e;
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}

/* ====================================================== */
/* TESTIMONIAL BOTTOM */
/* ====================================================== */

.modern-testi-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.modern-testi-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modern-testi-user__image {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.modern-testi-user__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modern-testi-user__info h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #0f172a;
}

.modern-testi-user__info span {
  font-size: .9rem;
  color: #64748b;
}

.modern-testi-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modern-testi-rating li {
  color: #f59e0b;
  font-size: .95rem;
}

/* ====================================================== */
/* MOBILE */
/* ====================================================== */

@media(max-width:991px) {

  #trust-and-testimonial-section {
    padding: 80px 0;
  }

}

@media(max-width:767px) {

  .trust-certifications,
  .testimonial-wrapper {
    padding: 24px;
    border-radius: 24px;
  }

  .trust-grid {
    gap: 14px;
  }

  .trust-title,
  .testimonial-title {
    font-size: 1.6rem;
  }

  .modern-testi-card {
    padding: 24px;
  }

  .modern-testi-message p {
    font-size: .95rem;
    line-height: 1.9;
  }

}


.
/* ===================================== */
/* TRUST SLIDER */
/* ===================================== */

.trust-slider {
  overflow: hidden;
  padding-bottom: 5px;
}

.trust-slider .swiper-slide {
  height: auto;
}

/* ===================================== */
/* CARD */
/* ===================================== */

.trust-card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  transition: .35s ease;
  display: block;
  height: 100%;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 35px rgba(15, 23, 42, .08);
}

/* ===================================== */
/* IMAGE */
/* ===================================== */

.trust-card__image {
  aspect-ratio: 1/1;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center,
      rgba(20, 184, 166, .06),
      transparent 70%);
}

.trust-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}

.trust-card:hover .trust-card__image img {
  transform: scale(1.05);
}

/* ===================================== */
/* CONTENT */
/* ===================================== */

.trust-card__content {
  padding: 16px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}

.trust-card__content h4 {
  margin: 0;
  font-size: .92rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

/* testimonial and trust section */