/* =====================================================
   CSS VARIABLES & RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #071B49;
  --navy-mid:   #0d2460;
  --navy-light: #102a6e;
  --pink:       #FF2F92;
  --pink-hover: #e0247e;
  --white:      #ffffff;
  --bg:         #eef1f8;
  --text:       #1a1a2e;
  --text-muted: #6b7280;
  --border:     #e2e8f0;
  --card-shadow: 0 4px 24px rgba(7,27,73,.09);
  --radius-lg:  24px;
  --radius-md:  14px;
  --radius-sm:  8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* curved-line background pattern */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(255,47,146,.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(7,27,73,.07) 0%, transparent 60%);
  pointer-events: none;
}

img { display: block; width: 100%; }
a  { text-decoration: none; color: inherit; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 2px 20px rgba(7,27,73,.07);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(7,27,73,.15); }

.nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 68px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 1.15rem; color: var(--navy);
  white-space: nowrap;
}
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e40af 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .8rem; font-weight: 800;
}
.logo-text span { color: var(--pink); }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 6px 11px; border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 500; color: #374151;
  transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(7,27,73,.06); color: var(--navy);
}

/* CTA */
.btn-cta {
  display: flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--pink), #c81f78);
  color: #fff; border: none; border-radius: 30px;
  padding: 10px 22px; font-size: .82rem; font-weight: 600;
  cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,47,146,.4); }

/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative; overflow: hidden;
  min-height: 500px;
  display: flex; align-items: center;
}

.hero-img {
  position: absolute; inset: 0;
  background: url('<?php echo get_stylesheet_directory_uri(); ?>/assets/images/banner.png')
              center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  /*background: linear-gradient(105deg,*/
  /*  rgba(7,27,73,.96) 0%,*/
  /*  rgba(7,27,73,.82) 50%,*/
  /*  rgba(7,27,73,.35) 100%);*/
}

/* decorative wave lines at bottom */
.hero-deco {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px; overflow: hidden; pointer-events: none;
}
.hero-deco svg { width: 100%; height: 100%; }

.hero-content {
  position: relative; z-index: 2;
  padding: 64px 56px 100px;
  max-width: 580px;
}

.hero-content h1 {
  /*font-size: clamp(1.9rem, 3.5vw, 2.7rem);*/
  font-weight: 800; 
  /*color: #fff; */
  line-height: 1.18;
  margin-bottom: 18px;
  animation: fadeUp .7s ease both;
}
.hero-content h1.banner1-h1-txt{color: #fff;}
.hero-content h1.banner2-h1-txt{color: #000;}
.hero-content h1.banner3-h1-txt{color: #fff;}
.hero-content h1.banner4-h1-txt{color: #fff;}


.hero-content h1.banner1-h1-txt span{color: #E61A72;}
.hero-content h1.banner2-h1-txt span{color: #0E75F2;}
.hero-content h1.banner3-h1-txt span{color: #E61A72;}
.hero-content h1.banner4-h1-txt span{color: #E61A72;}


.hero-content p {
  font-size: .93rem; color: rgba(255,255,255,.78);
  line-height: 1.75; margin-bottom: 34px;
  animation: fadeUp .7s .15s ease both;
}

.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: #fff; border-radius: var(--radius-sm);
  padding: 14px 30px; font-weight: 600; font-size: .9rem;
  border: none; cursor: pointer; font-family: 'Poppins',sans-serif;
  transition: background .2s, transform .2s, box-shadow .2s;
  animation: fadeUp .7s .28s ease both;
}
.btn-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,47,146,.45);
}

/* =====================================================
   STATS CARD (overlapping)
   ===================================================== */
.stats-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 40px rgba(7,27,73,.13);
  display: flex;
  margin: -38px 200px 0;
  position: relative; z-index: 10;
  overflow: hidden;
  animation: fadeUp .6s .4s ease both;
}

.stat-col {
  flex: 1; display: flex; align-items: center; gap: 14px;
  padding: 26px 32px;
  border-right: 1px solid var(--border);
}
.stat-col:last-child { border-right: none; }

.stat-icon { font-size: 1.7rem; color: #E61A72; flex-shrink: 0; }

.stat-value {
  font-size: 24px; font-weight: 800; color: #E61A72;
  line-height: 1; white-space: nowrap; 
}
.stat-label { font-size: 16px; color: #0944B8; margin-top: 4px; font-weight: 600;opacity: .75 }

/* =====================================================
   SECTION COMMON
   ===================================================== */
.section-wrap {
  max-width: 1320px; margin: 0 auto;
  padding: 72px 32px;
}

.section-title {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 800; color: var(--navy);
  text-align: center; margin-bottom: 48px;
}

/* =====================================================
   CAPABILITIES CARDS
   ===================================================== */
.caps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.cap-card {
  background: #fff; border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .28s ease, box-shadow .28s ease;
  cursor: pointer;
}
.cap-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 50px rgba(7,27,73,.15);
}
.cap-card:hover .cap-arrow { background: var(--pink); color: #fff; }

.cap-img-wrap { overflow: hidden; height: 320px; }
.cap-img-wrap img {
  /* height: 100%;  */
  object-fit: cover;
  transition: transform .5s ease;
}
.cap-card:hover .cap-img-wrap img { transform: scale(1.06); }

.cap-body { padding: 22px 22px 26px; }

.cap-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 10px;
  margin-bottom: 10px;
}
.cap-header h3 {
  font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3;
}
.cap-arrow {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: #f1f5fb;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--navy);
  transition: background .2s, color .2s;
}

.cap-body p { font-size: .82rem; color: var(--text-muted); line-height: 1.68; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-section {
  /*background: var(--navy);*/
  padding: 64px 32px;
  margin: 0; /* full-width */
  /*background: #001f3f;*/
  /*background: color-mix(in srgb, var(--navy) 80%, white);*/
  /*background: #4C81C2;*/
  background: linear-gradient(145deg, #4C81C2, #2E517A);
}
.why-inner {
  max-width: 1320px; margin: 0 auto;
}
.why-section .section-title { color: #fff; }

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.why-col {
  /*padding: 16px 48px 16px;*/
  border-right: 1px solid rgba(255,255,255,.13);
  text-align: center;
}
.why-col:last-child { border-right: none; }

.why-icon-wrap {
  width: 110px; height: 110px; border-radius: 50%;
  border: 1.5px solid rgba(255,47,146,.55);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--pink); font-size: 1.5rem;
}

.why-col h4 {
  font-size: 22px; font-weight: 700; color: #fff;
  margin-bottom: 12px;
}
.why-col p {
    font-size: 15px;
    color: #fff;
    line-height: 1.7;
    width: 50%;
    margin: 0 auto;   /* ðŸ”¥ THIS CENTERS THE BLOCK */
    text-align: center;
}

/* =====================================================
   BRAND LOGOS SLIDER
   ===================================================== */
.brands-section {
  background: #fff;
  padding: 44px 0 50px;
}
.brands-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
}
.brands-subtitle {
  text-align: center; font-size: .88rem; color: var(--text-muted);
  font-weight: 500; margin-bottom: 28px; letter-spacing: .2px;
}

.brands-slider-wrap {
  position: relative; display: flex; align-items: center; gap: 12px;
}
.slider-btn {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: #f1f5fb; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--navy); cursor: pointer;
  transition: background .2s;
}
.slider-btn:hover { background: var(--pink); color: #fff; border-color: var(--pink); }

.brands-viewport { flex: 1; overflow: hidden; position: relative; }
.brands-viewport::before,
.brands-viewport::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2;
  pointer-events: none;
}
.brands-viewport::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.brands-viewport::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }

.brands-track {
  display: flex; align-items: center; gap: 40px;
  animation: brandScroll 20s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }

.brand-item {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 10px 18px; border-radius: var(--radius-sm);
  min-width: 110px; text-align: center;
  transition: border-color .2s, box-shadow .2s;
  filter: grayscale(1); opacity: .6;
  transition: filter .2s, opacity .2s;
}
/*.brand-item:hover { filter: grayscale(0); opacity: 1; box-shadow: 0 4px 16px rgba(7,27,73,.08); }*/
.brand-item { filter: grayscale(0); opacity: 1; }

.brand-item .brand-icon { font-size: 1.6rem; }
.brand-icon  img{
      width: 20%;
}
.brand-item .brand-name { font-size: .72rem; font-weight: 700; color: var(--navy); letter-spacing: .5px; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--navy-mid);
  border-radius: 28px 28px 0 0;
  padding: 56px 32px 28px;
  margin-top: 4px;
}

.footer-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px; margin-bottom: 40px;
}

.footer-logo {
  display: flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 1.15rem; color: #fff;
  margin-bottom: 20px;
}
.footer-logo .logo-text-blue { color: #6cb4ff; }
.footer-logo .logo-text-pink { color: var(--pink); }

.footer-contact { font-size: .8rem; line-height: 2.1; color: rgba(255,255,255,.6); }
.footer-contact i { margin-right: 8px; color: var(--pink); font-size: .75rem; }
.footer-contact a { color: inherit; transition: color .2s; }
.footer-contact a:hover { color: #fff; }

.footer-col h5 {
  font-size: .72rem; font-weight: 700; color: #fff;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .82rem; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }

.newsletter-desc {
  font-size: .8rem; color: rgba(255,255,255,.55);
  margin-bottom: 14px; line-height: 1.6;
}
.newsletter-form {
  display: flex; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
}
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,.08); border: none;
  padding: 11px 14px; color: #fff; font-size: .8rem; outline: none;
  font-family: 'Poppins', sans-serif;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form button {
  background: var(--pink); border: none; padding: 0 16px;
  color: #fff; cursor: pointer; font-size: .9rem;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--pink-hover); }

.socials { display: flex; gap: 9px; margin-top: 20px; }
.social-icon {
  width: 33px; height: 33px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: .85rem;
  transition: background .2s, color .2s;
}
.social-icon:hover { background: var(--pink); color: #fff; }

.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px; text-align: center;
  font-size: .75rem; color: rgba(255,255,255,.3);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in  { opacity: 1; transform: translateY(0); }
.reveal.d1  { transition-delay: .1s; }
.reveal.d2  { transition-delay: .2s; }
.reveal.d3  { transition-delay: .3s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .caps-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.13); padding: 28px 24px; }
  .why-col:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .hero-content { padding: 48px 32px 90px; }
  .stats-card { flex-direction: column; margin: -20px 20px 0; }
  .stat-col { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-col:last-child { border-bottom: none; }
  .caps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-wrap { padding: 56px 20px; }
  .hero-wrap { padding: 16px 16px 0; }
}

@media (max-width: 500px) {
  .nav-inner { padding: 0 16px; }
  .hero-content { padding: 36px 20px 80px; }
  .stats-card { margin: -16px 12px 0; }
  .stat-col { padding: 18px 20px; }
}

/* PARENT */
.menu-item-has-children {
  position: relative;
}

/* SUBMENU */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: none;
  padding: 10px 0;
  z-index: 999;
}

/* SUBMENU ITEMS */
.sub-menu li {
  list-style: none;
}

.sub-menu li a {
  display: block;
  padding: 10px 18px;
  color: #1A1D26;
  font-size: 12px;
  transition: 0.3s;
}

.sub-menu li a:hover {
  background: #f5f7fb;
  color: #0C1E3C;
}

/* SHOW ON HOVER */
.menu-item-has-children:hover .sub-menu {
  display: block;
}
.menu-item-has-children > a::after {
  content: "â–¼";
  font-size: 10px;
  margin-left: 6px;
}
.logo img {
  height: 60px;   /* adjust if needed */
  width: auto;
  display: block;
}
.asti-sub-menu a{
        font-size: 12px !important;
}

.section-title-h2{
    font-size: 28px;
    margin-bottom: 15px;
    color: #95508F;
}