/* ============ ROOT VARIABLES ============ */
:root {
  --navy-dark: #0b1c34;
  --navy-darker: #16233d;
  --brand-blue: #1b3f7a;
  --brand-blue-dark: #12294f;
  --text-dark: #1c1c1c;
  --white: #ffffff;
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Merriweather', serif;
}

body {
  font-family: var(--font-body);
  margin: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* ============ GLOBAL DESKTOP RESPONSIVE FIX ============
   Content wrappers were stretching edge-to-edge on large/ultra-wide
   desktop screens (section backgrounds should bleed full-width, but
   the actual content/text/cards should stay readable and centered).
   This caps the inner content width while each section's background
   still spans the full screen. */
.container-fluid {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1400px) {
  .about-text,
  .why-text,
  .growth-panel-text,
  .consult-text {
    max-width: 560px;
  }
}

/* ================================================================
   SCROLL REVEAL ANIMATION (fade + slide up on scroll)
   ================================================================ */
.reveal-fade {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ TOP BAR ============ */
.top-bar {
  background-color: var(--navy-dark);
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-left {
  gap: 28px;
}

.top-bar-item {
  color: #e7ecf5;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  white-space: nowrap;
}

.top-bar-item:hover {
  color: var(--brand-blue);
}

.icon-circle {
  background-color: var(--brand-blue);
  color: var(--white);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.top-bar-right {
  gap: 10px;
}

.social-circle {
  background-color: var(--navy-darker);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.social-circle:hover {
  background-color: var(--brand-blue);
  color: var(--white);
}

/* ============ MAIN NAVBAR ============ */
.main-navbar {
  background-color: var(--white);
  padding: 14px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark) !important;
  padding: 8px 18px !important;
  font-size: 15px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 2px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--navy-dark));
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--brand-blue) !important;
}

/* Disable Bootstrap's default caret (was conflicting with our ::after underline) */
.navbar-nav .dropdown-toggle::after {
  display: none;
}

.dropdown-caret {
  font-size: 11px;
  margin-left: 5px;
  transition: transform 0.25s ease;
  vertical-align: 1px;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  border-radius: 8px;
}

.dropdown-item:hover {
  background-color: var(--brand-blue);
  color: var(--white);
}

/* ============ SIMPLE DROPDOWN (Industry / Pages) ============ */
.simple-menu {
  min-width: 240px;
  padding: 10px 0;
}

.simple-menu-scroll {
  max-height: 380px;
  overflow-y: auto;
}

.simple-menu .dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.simple-menu .dropdown-item i {
  color: var(--brand-blue);
  font-size: 15px;
  min-width: 18px;
  text-align: center;
}

.simple-menu .dropdown-item:hover {
  background-color: #f2f6ff;
  color: var(--brand-blue);
  border-left-color: var(--brand-blue);
  padding-left: 24px;
}

/* ============ SERVICES MEGA MENU ============ */
.main-navbar {
  position: relative;
}

.mega-dropdown {
  position: static;
}

.mega-menu-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  margin: 0;
  padding: 0 0 20px 0;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  max-height: 85vh;
  display: none;
  flex-direction: column;
}

.mega-menu-panel.show {
  display: flex;
}

.mega-menu-accent {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--navy-dark), var(--brand-blue) 60%, var(--navy-dark));
  flex-shrink: 0;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 28px 40px 0 40px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-blue) #f0f2f7;
}

.mega-grid::-webkit-scrollbar {
  width: 6px;
}

.mega-grid::-webkit-scrollbar-thumb {
  background-color: var(--brand-blue);
  border-radius: 10px;
}

.mega-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mega-col-header-sub {
  margin-top: 22px;
}

.mega-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: var(--navy-dark);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 14px rgba(11,28,52,0.25);
}

.mega-col-header h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1.2;
}

.mega-list {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}

.mega-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: #4a5568;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.mega-list li a i {
  font-size: 14px;
  color: var(--brand-blue);
  min-width: 16px;
  text-align: center;
}

.mega-list li a:hover {
  color: var(--brand-blue);
  padding-left: 6px;
}

.book-now-btn {
  background-color: var(--brand-blue);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 30px;
  box-shadow: 0 6px 16px rgba(26,86,255,0.35);
  transition: background-color 0.2s ease;
}

.book-now-btn:hover {
  background-color: var(--brand-blue-dark);
  color: var(--white) !important;
}

/* ============ MOBILE SIDE DRAWER (Offcanvas) ============ */
.mobile-drawer {
  width: 300px;
  background-color: var(--white);
}

.mobile-drawer .offcanvas-header {
  background-color: var(--white);
  padding: 16px 20px;
  border-bottom: 1px solid #eef1f6;
}

.drawer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.mobile-drawer .btn-close {
  opacity: 0.6;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-link {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px solid #f0f0f0;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark) !important;
  font-size: 15px;
}

.drawer-link:hover {
  color: var(--brand-blue) !important;
}

.drawer-toggle-item {
  border-bottom: 1px solid #f0f0f0;
}

.drawer-toggle-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 12px 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}

.drawer-toggle-btn i {
  transition: transform 0.25s ease;
  font-size: 13px;
  color: var(--brand-blue);
}

.drawer-toggle-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.drawer-subcat {
  border-top: 1px solid #f2f2f2;
}

.drawer-subtoggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7f9ff;
  border: none;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy-dark);
}

.drawer-subtoggle i:first-child {
  color: var(--brand-blue);
  font-size: 14px;
}

.drawer-subtoggle .ms-auto {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.drawer-subtoggle[aria-expanded="true"] .ms-auto {
  transform: rotate(180deg);
}

.drawer-sublist {
  list-style: none;
  margin: 0;
  padding: 4px 0 4px 30px;
  background-color: #fbfcff;
}

.drawer-sublist-flat {
  padding-left: 20px;
  background-color: transparent;
}

.drawer-sublist li a {
  display: block;
  padding: 8px 6px;
  font-size: 13.5px;
  color: #4a5568;
  border-left: 2px solid transparent;
}

.drawer-sublist-icons li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-sublist-icons li a i {
  color: var(--brand-blue);
  font-size: 14px;
  min-width: 16px;
  text-align: center;
}

.drawer-sublist li a:hover {
  color: var(--brand-blue);
  border-left-color: var(--brand-blue);
  padding-left: 12px;
}

.drawer-book-btn {
  display: block;
  text-align: center;
  margin-top: 20px;
  width: 100%;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .mega-grid {
    gap: 6px;
    padding: 24px 20px 0 20px;
  }
  .mega-col-header h6 {
    font-size: 15px;
  }
  .mega-list li a {
    font-size: 13px;
  }
  .mega-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 16px;
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    border: 1px solid #d8dee9;
    padding: 6px 10px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
}

@media (max-width: 767.98px) {
  .top-bar-left {
    gap: 10px;
  }
  .top-bar-item span:not(.icon-circle) {
    display: none;
  }
  .top-bar-item {
    gap: 0;
  }
  .logo-img {
    height: 48px;
  }
}

@media (max-width: 575.98px) {
  .top-bar {
    padding: 8px 0;
  }
  .top-bar .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .top-bar-left {
    gap: 8px;
  }
  .icon-circle {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  .social-circle {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .top-bar-right {
    gap: 6px;
  }
  .main-navbar .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ============ FOOTER ============ */
:root {
  --footer-accent: #5b9dff;
}

.site-footer {
  background-color: var(--navy-dark);
  padding: 60px 0 0 0;
  position: relative;
}

.footer-logo-wrap {
  display: inline-block;
  background-color: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  color: #b7c2d6;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  background-color: rgba(91, 157, 255, 0.12);
  border: 1px solid rgba(91, 157, 255, 0.3);
  border-radius: 30px;
  color: var(--footer-accent);
  font-size: 12.5px;
  font-weight: 600;
}

.footer-badge i {
  font-size: 14px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--footer-accent), transparent);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #c4cede;
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a i {
  font-size: 10px;
  color: var(--footer-accent);
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--footer-accent);
  padding-left: 4px;
}

.footer-links a:hover i {
  transform: translateX(2px);
}

.footer-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social .social-circle {
  background-color: rgba(255,255,255,0.08);
}

.footer-social .social-circle:hover {
  background-color: var(--footer-accent);
}

.footer-contact-label {
  color: var(--footer-accent);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-contact-value {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}

.footer-contact-value i {
  color: var(--footer-accent);
  font-size: 15px;
  margin-top: 2px;
}

.footer-address {
  color: #c4cede;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
}

.footer-top {
  padding-bottom: 45px;
}

.footer-bottom-strip {
  background-color: var(--white);
  margin-top: 40px;
}

.footer-bottom {
  padding: 18px 0;
}

.footer-bottom p {
  color: #5a6577;
  font-size: 13.5px;
}

.footer-bottom-links a {
  color: var(--navy-dark);
  font-size: 13.5px;
  font-weight: 600;
}

.footer-bottom-links a:hover {
  color: var(--brand-blue);
}

.footer-bottom-links .divider-dot {
  color: #c3cad6;
  margin: 0 10px;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  color: var(--white);
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--brand-blue-dark);
}

/* ============ FOOTER MOBILE RESPONSIVE ============ */
@media (max-width: 991.98px) {
  .site-footer {
    padding: 45px 0 0 0;
    text-align: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-tagline {
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-contact-value {
    justify-content: center;
  }
  .footer-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575.98px) {
  .footer-bottom {
    text-align: center;
    justify-content: center !important;
  }
  .footer-services-grid {
    grid-template-columns: 1fr;
  }
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ============ HERO SERVICES CAROUSEL (1920x500) ============ */
.hero-carousel-section {
  width: 100%;
  background-color: var(--navy-dark);
}

.hero-carousel {
  width: 100%;
  aspect-ratio: 1920 / 500;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-slide {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-carousel-indicators {
  bottom: 18px;
}

.hero-carousel-indicators button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.4);
  border: none;
  margin: 0 5px;
  opacity: 1;
  transition: all 0.25s ease;
}

.hero-carousel-indicators button.active {
  background-color: var(--white);
  width: 26px;
  border-radius: 6px;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 60px;
  opacity: 1;
}

.hero-control-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: background-color 0.2s ease;
}

.carousel-control-prev:hover .hero-control-icon,
.carousel-control-next:hover .hero-control-icon {
  background-color: rgba(255,255,255,0.3);
}

/* ============ VERIFIED BY STRIP ============ */
.verified-section {
  background-color: #f5f8ff;
  padding: 40px 0;
}

.verified-label {
  text-align: center;
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.verified-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

/* Desktop only: all 6 badges in a single line */
@media (min-width: 992px) {
  .verified-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1180px;
    gap: 16px;
  }
  .verified-box {
    padding: 20px 8px;
  }
}

.verified-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--white);
  border: 1px solid #e3e9f5;
  border-radius: 12px;
  padding: 20px 12px;
  transition: all 0.25s ease;
}

.verified-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(27,63,122,0.12);
  border-color: var(--brand-blue);
}

.verified-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark), var(--brand-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.verified-box span {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy-dark);
  text-align: center;
}

/* ============ ABOUT US SECTION ============ */
.about-section {
  padding: 80px 0;
  background-color: var(--white);
}

.about-badge {
  display: inline-block;
  background-color: #e8f0ff;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.about-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-heading-accent {
  color: var(--brand-blue);
}

.about-text {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: #5a6577;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 32px;
}

.about-btn {
  background-color: var(--brand-blue);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(26,86,255,0.3);
  transition: all 0.25s ease;
}

.about-btn:hover {
  background-color: var(--brand-blue-dark);
  color: var(--white) !important;
  gap: 12px;
}

.about-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(11,28,52,0.15);
}

.about-video-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .about-section { padding: 60px 0; text-align: center; }
  .about-heading { font-size: 28px; }
  .about-text { max-width: 100%; margin-left: auto; margin-right: auto; }
}

@media (max-width: 575.98px) {
  .about-section { padding: 45px 0; }
  .about-heading { font-size: 23px; }
  .about-badge { font-size: 12px; padding: 6px 18px; }
}

/* ============ HERO CAROUSEL & VERIFIED RESPONSIVE ============ */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-carousel {
    max-height: none;
  }
}

@media (max-width: 767.98px) {
  .hero-carousel {
    max-height: none;
  }
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 40px;
  }
  .hero-control-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .verified-grid {
    gap: 10px;
  }
  .verified-box {
    padding: 12px 6px;
  }
  .verified-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .verified-box span {
    font-size: 12px;
  }
}
/* ================================================================
   GROWTH FEATURES SECTION (10-tab interactive feature showcase)
   ================================================================ */
:root {
  --growth-bg: #f5f8ff;
  --growth-green: #17a35a;
  --growth-green-dark: #128a49;
  --growth-border: #e3e9f5;
}

.growth-section {
  background-color: var(--growth-bg);
  padding: 80px 0 90px;
}

.growth-section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.growth-main-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 34px;
  line-height: 1.35;
  color: var(--text-dark);
}

.growth-heading-accent {
  color: var(--brand-blue);
}

/* ---------- TABS ---------- */
.growth-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.growth-tab {
  display: flex;
  align-items: center;
  gap: 9px;
  background-color: var(--white);
  border: 1px solid var(--growth-border);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  flex: 0 0 auto;
}

.growth-tab i {
  font-size: 16px;
  color: var(--brand-blue);
  transition: color 0.25s ease;
}

.growth-tab:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.growth-tab.active {
  background-color: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(27,63,122,0.28);
}

.growth-tab.active i {
  color: var(--white);
}

/* ---------- PANELS ---------- */
.growth-panels {
  position: relative;
}

.growth-panel {
  display: none;
  background-color: var(--white);
  border: 1px solid var(--growth-border);
  border-radius: 20px;
  padding: 44px;
  animation: growthFadeIn 0.35s ease;
}

.growth-panel.active {
  display: block;
}

@keyframes growthFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.growth-panel-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}

.growth-panel-badge {
  display: inline-block;
  background-color: #e8f0ff;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 20px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.growth-panel-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 27px;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.growth-panel-text {
  font-size: 15px;
  color: #5a6577;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 480px;
}

.growth-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.growth-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #3d4757;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.6;
}

.growth-panel-list li i {
  color: var(--brand-blue);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---------- MOCKUP PANEL ---------- */
.growth-mockup {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy-darker));
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 45px rgba(11,28,52,0.22);
}

.growth-mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 16px;
}

.growth-mockup-header span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.25);
}

.growth-mockup-title {
  margin-left: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}

.growth-mockup-body {
  background-color: var(--white);
  border-radius: 12px;
  padding: 20px;
}

.growth-mockup-widgets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.gm-widget {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f5f8ff;
  border: 1px solid var(--growth-border);
  border-radius: 10px;
  padding: 10px;
}

.gm-widget i {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  background-color: var(--brand-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.gm-widget strong {
  display: block;
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.2;
}

.gm-widget span {
  display: block;
  font-size: 10.5px;
  color: #8891a0;
  font-weight: 500;
}

.growth-mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  background-color: #f5f8ff;
  border: 1px solid var(--growth-border);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 14px;
}

.gm-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--brand-blue), var(--navy-dark));
  border-radius: 5px 5px 0 0;
}

.growth-mockup-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gm-donut {
  --p: 70%;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--brand-blue) var(--p), #e8edf7 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gm-donut::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
}

.gm-donut span {
  position: relative;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy-dark);
}

.gm-donut-label {
  font-size: 12.5px;
  color: #8891a0;
  font-weight: 500;
  line-height: 1.5;
}

.gm-donut-label strong {
  display: block;
  color: var(--text-dark);
  font-size: 14px;
}

/* ---------- STATS GRID ---------- */
.growth-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.growth-stat-box {
  border: 1px solid var(--growth-border);
  border-radius: 14px;
  padding: 20px;
  background-color: #fbfcff;
  transition: all 0.25s ease;
}

.growth-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(27,63,122,0.1);
  border-color: var(--brand-blue);
}

.growth-stat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.growth-stat-value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: var(--brand-blue);
  margin: 0;
}

.growth-stat-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background-color: var(--navy-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.growth-stat-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.growth-stat-delta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--growth-green);
}

/* ---------- CTA ROW ---------- */
.growth-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.growth-cta-row .btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.growth-cta-primary {
  background-color: var(--brand-blue);
  color: var(--white) !important;
  box-shadow: 0 6px 16px rgba(26,86,255,0.3);
}

.growth-cta-primary:hover {
  background-color: var(--brand-blue-dark);
  gap: 12px;
}

.growth-cta-call {
  background-color: var(--growth-green);
  color: var(--white) !important;
}

.growth-cta-call:hover {
  background-color: var(--growth-green-dark);
}

.growth-cta-dark {
  background-color: var(--navy-dark);
  color: var(--white) !important;
}

.growth-cta-dark:hover {
  background-color: var(--navy-darker);
  gap: 12px;
}

/* ================================================================
   GROWTH SECTION — RESPONSIVE
   ================================================================ */

/* Desktop only: tabs in a strict 5-5 grid sequence, CTA row centered */
@media (min-width: 992px) {
  .growth-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
  .growth-tab {
    justify-content: center;
    width: 100%;
  }
  .growth-cta-row {
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .growth-section { padding: 60px 0 70px; }
  .growth-main-heading { font-size: 27px; }
  .growth-panel { padding: 30px; }
  .growth-panel-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .growth-panel-text { max-width: 100%; }
  .growth-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
  .growth-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin: 0 -4px 30px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .growth-tabs::-webkit-scrollbar { display: none; }
  .growth-tab { font-size: 13px; padding: 10px 16px; }
  .growth-panel { padding: 24px 18px; border-radius: 16px; }
  .growth-panel-heading { font-size: 22px; }
  .growth-mockup-widgets { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .growth-main-heading { font-size: 22px; }
  .growth-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .growth-stat-box { padding: 14px; }
  .growth-stat-value { font-size: 19px; }
  .growth-cta-row { flex-direction: column; }
  .growth-cta-row .btn { width: 100%; justify-content: center; }
}

/* ================================================================
   SCHEDULE CONSULTATION CTA SECTION
   ================================================================ */
.consult-section {
  background-color: var(--navy-dark);
  padding: 70px 0;
}

.consult-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.consult-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 14px;
}

.consult-accent {
  color: var(--footer-accent);
}

.consult-text {
  color: #c4cede;
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 32px;
}

.consult-form {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.consult-input {
  flex: 1;
  min-width: 0;
  background-color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-dark);
}

.consult-input::placeholder {
  color: #8891a0;
}

.consult-input:focus {
  outline: 2px solid var(--footer-accent);
  outline-offset: 1px;
}

.consult-submit {
  flex: 0 0 auto;
  background-color: var(--brand-blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  padding: 14px 34px;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.consult-submit:hover {
  background-color: var(--brand-blue-dark);
}

.consult-success {
  display: none;
  color: var(--growth-green);
  font-weight: 600;
  font-size: 14.5px;
  margin: -8px 0 22px;
}

.consult-success.show {
  display: block;
}

.consult-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.consult-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.consult-trust-item i {
  color: var(--footer-accent);
  font-size: 15px;
}

.consult-trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .consult-section { padding: 55px 0; }
  .consult-heading { font-size: 26px; }
  .consult-form { flex-wrap: wrap; }
  .consult-input {
    flex: 1 1 calc(50% - 6px);
  }
  .consult-submit {
    flex: 1 1 100%;
  }
}

@media (max-width: 575.98px) {
  .consult-heading { font-size: 21px; }
  .consult-text { font-size: 14px; margin-bottom: 26px; }
  .consult-form { gap: 10px; }
  .consult-input {
    flex: 1 1 100%;
  }
  .consult-trust {
    flex-direction: column;
    gap: 10px;
  }
  .consult-trust-divider { display: none; }
}

/* ================================================================
   WHY CHOOSE US SECTION
   ================================================================ */
.why-section {
  padding: 80px 0;
  background-color: var(--white);
  overflow: hidden;
}

.why-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 34px;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.why-heading-accent {
  color: var(--brand-blue);
}

.why-text {
  font-size: 15.5px;
  color: #5a6577;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 28px;
}

.why-checklist {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
}

.why-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.why-check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.why-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.why-btn-row .btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.why-btn-call {
  background-color: var(--growth-green);
  color: var(--white) !important;
  box-shadow: 0 6px 16px rgba(23,163,90,0.3);
}

.why-btn-call:hover {
  background-color: var(--growth-green-dark);
}

.why-btn-journey {
  background-color: var(--navy-dark);
  color: var(--white) !important;
}

.why-btn-journey:hover {
  background-color: var(--navy-darker);
  gap: 12px;
}

/* ---------- Right: image + floating chips ---------- */
.why-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 30px 20px 10px;
}

.why-blob {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, var(--brand-blue), var(--navy-dark));
  opacity: 0.12;
  border-radius: 58% 42% 65% 35% / 45% 55% 45% 55%;
  z-index: 0;
}

.why-sparkle {
  position: absolute;
  top: 0;
  left: 14%;
  font-size: 26px;
  color: var(--brand-blue);
  animation: whySparkle 2.4s ease-in-out infinite;
  z-index: 2;
}

@keyframes whySparkle {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.why-image-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--growth-bg);
  box-shadow: 0 20px 50px rgba(11,28,52,0.16);
}

.why-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 10px 26px rgba(11,28,52,0.16);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  white-space: nowrap;
}

.why-chip-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--navy-dark), var(--brand-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.why-chip-ads {
  top: 12%;
  left: 0;
}

.why-chip-brands {
  top: 4%;
  right: 2%;
}

.why-chip-growth {
  bottom: 4%;
  left: 2%;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .why-section { padding: 60px 0; text-align: center; }
  .why-heading { font-size: 27px; }
  .why-text { max-width: 100%; margin-left: auto; margin-right: auto; }
  .why-checklist li { justify-content: center; }
  .why-btn-row { justify-content: center; }
  .why-blob { width: 260px; height: 260px; }
  .why-chip, .why-sparkle { display: none; }
}

@media (max-width: 575.98px) {
  .why-heading { font-size: 22px; }
  .why-image-wrap { padding: 10px; }
  .why-blob { display: none; }
}

/* ================================================================
   ADVANTAGES OF DIGITAL MARKETING SECTION (accordion + photo tags)
   ================================================================ */
.advantages-section {
  background-color: var(--navy-dark);
  padding: 90px 0;
  overflow: hidden;
}

/* ---------- Left: photo + floating tags ---------- */
.advantages-visual {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  padding: 40px 20px;
}

.advantages-photo-wrap {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  border-radius: 50%;
  border: 6px solid var(--white);
  overflow: hidden;
  background-color: var(--growth-bg);
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

.advantages-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advantages-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #dbe6ff;
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
  padding: 12px 16px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
  white-space: nowrap;
}

.advantages-tag-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 9px;
  background-color: var(--navy-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.advantages-tag-1 {
  top: 4%;
  left: -2%;
  background-color: #dbe6ff;
  transform: rotate(-7deg);
}

.advantages-tag-2 {
  top: -6%;
  left: 38%;
  background-color: #e7ecff;
  transform: rotate(4deg);
}

.advantages-tag-3 {
  top: 8%;
  right: -6%;
  background-color: #cfe0ff;
  transform: rotate(-4deg);
}

.advantages-tag-4 {
  top: 40%;
  right: -12%;
  background-color: rgba(91,157,255,0.22);
  transform: rotate(6deg);
}

.advantages-tag-5 {
  bottom: 6%;
  left: -8%;
  background-color: #e3e9f5;
  transform: rotate(-5deg);
}

/* ---------- Right: heading + accordion ---------- */
.advantages-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 18px;
}

.advantages-accent {
  color: var(--footer-accent);
}

.advantages-text {
  color: #c4cede;
  font-size: 15px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 30px;
}

.advantages-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advantages-item {
  background-color: var(--white);
  border-radius: 30px;
  overflow: hidden;
  transition: border-radius 0.2s ease;
}

.advantages-item.active {
  border-radius: 16px;
}

.advantages-item-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  padding: 18px 26px;
  cursor: pointer;
}

.advantages-item-btn i {
  color: var(--text-dark);
  font-size: 15px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.advantages-item.active .advantages-item-btn i {
  transform: rotate(180deg);
  color: var(--brand-blue);
}

.advantages-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.advantages-item.active .advantages-item-body {
  max-height: 220px;
  padding: 0 26px 22px;
}

.advantages-item-body p {
  margin: 0;
  font-size: 13.5px;
  color: #5a6577;
  line-height: 1.75;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .advantages-section { padding: 60px 0; text-align: center; }
  .advantages-heading { font-size: 26px; text-align: center; }
  .advantages-text { margin-left: auto; margin-right: auto; text-align: center; }
  .advantages-visual { max-width: 380px; padding: 20px 10px; }
  .advantages-photo-wrap { width: 220px; height: 220px; }
  .advantages-tag { display: none; }
}

@media (max-width: 575.98px) {
  .advantages-heading { font-size: 21px; }
  .advantages-visual { max-width: 280px; padding: 10px 0 20px; }
  .advantages-photo-wrap { width: 180px; height: 180px; border-width: 4px; }
  .advantages-item-btn { font-size: 14px; padding: 16px 20px; }
  .advantages-item.active .advantages-item-body { padding: 0 20px 18px; }
}

/* ================================================================
   WHY CHOOSE US (VISUAL) SECTION — photo collage + checklist
   ================================================================ */
.choose-section {
  background-color: var(--white);
  padding: 90px 0;
  overflow: hidden;
}

.choose-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.choose-accent {
  color: var(--brand-blue);
}

.choose-text {
  font-size: 15px;
  color: #5a6577;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 26px;
}

.choose-text strong {
  color: var(--brand-blue);
  font-weight: 600;
}

.choose-checklist {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}

.choose-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.choose-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.choose-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.choose-btn-row .btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.choose-btn-call {
  background-color: var(--growth-green);
  color: var(--white) !important;
  box-shadow: 0 6px 16px rgba(23,163,90,0.3);
}

.choose-btn-call:hover {
  background-color: var(--growth-green-dark);
}

.choose-btn-boost {
  background-color: var(--navy-dark);
  color: var(--white) !important;
}

.choose-btn-boost:hover {
  background-color: var(--navy-darker);
  gap: 12px;
}

/* ---------- Right: photo collage ---------- */
.choose-visual {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 30px 40px 60px 0;
}

.choose-frame {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11,28,52,0.18);
}

.choose-main-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.choose-float {
  position: absolute;
  z-index: 2;
  width: 180px;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 14px 30px rgba(11,28,52,0.25);
}

.choose-float-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.choose-float-top {
  top: -6%;
  left: -8%;
  transform: rotate(-4deg);
}

.choose-float-bottom {
  bottom: 0;
  right: 0;
  width: 220px;
  transform: rotate(3deg);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .choose-section { padding: 60px 0; text-align: center; }
  .choose-heading { font-size: 27px; }
  .choose-text { max-width: 100%; margin-left: auto; margin-right: auto; }
  .choose-checklist li { justify-content: center; }
  .choose-btn-row { justify-content: center; }
  .choose-visual { max-width: 420px; padding: 60px 20px 60px; }
}

@media (max-width: 575.98px) {
  .choose-heading { font-size: 22px; }
  .choose-float { width: 130px; }
  .choose-float-bottom { width: 160px; }
  .choose-visual { padding: 50px 14px 50px; }
}

/* ================================================================
   CLIENT REVIEW — auto-scrolling video card carousel (10+ cards)
   ================================================================ */
.review-section {
  background-color: var(--growth-bg);
  padding: 90px 0 100px;
  overflow: hidden;
}

.review-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 44px;
}

.review-accent {
  color: var(--brand-blue);
}

/* ---------- Google My Business CTA row ---------- */
.review-google-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin: -22px 0 44px;
}

.review-google-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-google-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(11,28,52,0.12);
}

.review-google-stars {
  color: #ffc247;
  font-size: 13px;
  margin-bottom: 2px;
}

.review-google-stars i {
  margin-right: 1px;
}

.review-google-text {
  margin: 0;
  font-size: 13px;
  color: #5a6577;
  font-weight: 500;
}

.review-google-btn {
  background-color: var(--white);
  color: var(--brand-blue) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 20px rgba(11,28,52,0.14);
  border: 1px solid var(--growth-border);
  transition: all 0.25s ease;
}

.review-google-btn:hover {
  background-color: var(--brand-blue);
  color: var(--white) !important;
  border-color: var(--brand-blue);
}

.review-track-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.review-track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding: 6px 14px 20px;
  animation: reviewScroll 55s linear infinite;
}

.review-track-wrap:hover .review-track {
  animation-play-state: paused;
}

@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 auto;
  width: min(20vw, 320px);
  min-width: 240px;
}

.review-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--navy-dark);
  box-shadow: 0 12px 28px rgba(11,28,52,0.16);
}

.review-card-google-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.review-card-watermark {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  white-space: nowrap;
  pointer-events: none;
}

.review-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background-color: #ff3b3b;
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(255,59,59,0.45);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.review-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.review-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78) 65%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.review-card-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card-stars {
  font-size: 10px;
  color: #ffc247;
  white-space: nowrap;
  flex-shrink: 0;
}

.review-card-stars i {
  margin-right: 1px;
}

.review-card-caption {
  margin: 10px 2px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.4;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
  .review-section { padding: 60px 0 70px; }
  .review-heading { font-size: 25px; margin-bottom: 24px; }
  .review-google-row { margin: 0 0 32px; flex-direction: column; text-align: center; }
  .review-card { width: 62vw; min-width: 190px; }
  .review-track { gap: 16px; animation-duration: 36s; padding: 6px 10px 20px; }
  .review-play-btn { width: 44px; height: 44px; font-size: 17px; }
}

/* ---------- Review card: local uploaded video ----------
   preload="metadata" की वजह से video चलने से पहले उसकी पहली frame
   अपने-आप thumbnail की तरह दिखती है — कोई अलग photo अपलोड करने की
   ज़रूरत नहीं। */
.review-card-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #000;
}

.review-card.is-playing .review-card-vid {
  object-fit: contain;
}

/* जब video चल रही हो: play बटन, watermark, badge, name/stars छुपा दें
   ताकि सिर्फ video player साफ़ दिखे */
.review-card.is-playing .review-play-btn,
.review-card.is-playing .review-card-watermark,
.review-card.is-playing .review-card-google-badge,
.review-card.is-playing .review-card-info {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.review-card:not(.is-playing) .review-play-btn,
.review-card:not(.is-playing) .review-card-watermark,
.review-card:not(.is-playing) .review-card-google-badge,
.review-card:not(.is-playing) .review-card-info {
  transition: opacity 0.2s ease;
}


/* ================================================================
   PROVEN DIGITAL MARKETING STRATEGIES SECTION (6-card grid)
   ================================================================ */
.strategies-section {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy-darker));
  padding: 90px 0;
}

.strategies-heading {
  color: var(--white);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 50px;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.strategy-card {
  background: linear-gradient(160deg, rgba(27,63,122,0.55), rgba(11,28,52,0.9));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 34px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.strategy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91,157,255,0.5);
}

.strategy-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  box-shadow: 0 10px 22px rgba(27,63,122,0.45);
}

.strategy-card h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 14px;
}

.strategy-card p {
  color: #c4cede;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 991.98px) {
  .strategies-section { padding: 60px 0; }
  .strategies-heading { font-size: 26px; margin-bottom: 36px; }
  .strategies-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .strategies-heading { font-size: 21px; }
  .strategies-grid { grid-template-columns: 1fr; }
  .strategy-card { padding: 26px 22px; }
}

/* ================================================================
   TECHNOLOGIES / EXPERTISE SECTION (tech grid + center logo)
   ================================================================ */
.expertise-section {
  background-color: #fdf8f3;
  padding: 90px 0;
}

.expertise-head {
  text-align: center;
  margin-bottom: 50px;
}

.expertise-label {
  display: inline-block;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.expertise-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.expertise-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.expertise-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  opacity: 0.5;
}

.expertise-divider i {
  display: inline-block;
  width: 46px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--brand-blue);
}

.expertise-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  flex-wrap: wrap;
}

.expertise-cluster {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.tech-box {
  width: 92px;
  background-color: var(--white);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(11,28,52,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 6px;
  gap: 9px;
  transition: transform 0.2s ease;
}

.tech-box:hover {
  transform: translateY(-4px);
}

.tech-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 17px;
  background-color: var(--tc, var(--brand-blue));
}

.tech-box p {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  white-space: nowrap;
}

.expertise-logo-wrap {
  width: 230px;
  height: 230px;
  min-width: 230px;
  border-radius: 50%;
  background-color: var(--white);
  border: 6px solid var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 45px rgba(11,28,52,0.18);
  overflow: hidden;
}

.expertise-logo-img {
  max-width: 76%;
  max-height: 76%;
  object-fit: contain;
}

@media (max-width: 1199.98px) {
  .expertise-cluster { grid-template-columns: repeat(5, 1fr); }
  .tech-box { width: 80px; }
}

@media (max-width: 991.98px) {
  .expertise-section { padding: 60px 0; }
  .expertise-heading { font-size: 24px; }
  .expertise-body { gap: 28px; }
  .expertise-logo-wrap { width: 180px; height: 180px; min-width: 180px; order: -1; }
  .expertise-cluster { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .tech-box { width: 74px; padding: 12px 4px; }
}

@media (max-width: 575.98px) {
  .expertise-heading { font-size: 20px; }
  .expertise-cluster { grid-template-columns: repeat(3, 1fr); }
  .tech-box { width: 88px; }
  .expertise-logo-wrap { width: 140px; height: 140px; min-width: 140px; }
}

/* ================================================================
   TRUSTED PARTNERSHIPS — left/right scrolling logo rows
   ================================================================ */
.partners-section {
  background-color: var(--navy-dark);
  padding: 80px 0 90px;
  overflow: hidden;
}

.partners-heading {
  color: var(--white);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 27px;
  margin-bottom: 44px;
}

.partners-accent {
  color: var(--footer-accent);
}

.partners-row {
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.partners-row:last-child {
  margin-bottom: 0;
}

.partners-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 4px 10px;
}

.partners-row-left .partners-track {
  animation: partnersScrollLeft 34s linear infinite;
}

.partners-row-right .partners-track {
  animation: partnersScrollRight 34s linear infinite;
}

.partners-row:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partnersScrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes partnersScrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.partner-logo-box {
  flex: 0 0 auto;
  width: 160px;
  height: 80px;
  background-color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo-box:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 16px 30px rgba(0,0,0,0.28);
}

.partner-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 575.98px) {
  .partners-section { padding: 60px 0 70px; }
  .partners-heading { font-size: 20px; margin-bottom: 32px; }
  .partner-logo-box { width: 120px; height: 62px; padding: 10px 14px; }
  .partners-row { margin-bottom: 14px; }
  .partners-track { gap: 14px; }
}

/* ================================================================
   TESTIMONIALS — Google reviews scrolling carousel (4-5 visible)
   ================================================================ */
.testimonial-section {
  background-color: var(--white);
  padding: 90px 0 100px;
  overflow: hidden;
}

.testimonial-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 27px;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.testimonial-accent {
  color: var(--brand-blue);
}

.testimonial-track-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding: 6px 14px 20px;
  animation: testimonialScroll 50s linear infinite;
}

.testimonial-track-wrap:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 auto;
  width: min(21vw, 320px);
  min-width: 260px;
  background-color: var(--growth-bg);
  border: 1px solid var(--growth-border);
  border-radius: 16px;
  padding: 28px 26px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(11,28,52,0.14);
  border-color: var(--brand-blue);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testimonial-stars {
  color: #ffc247;
  font-size: 14px;
}

.testimonial-stars i {
  margin-right: 2px;
}

.testimonial-google-badge {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-size: 13.5px;
  color: #5a6577;
  line-height: 1.75;
  margin-bottom: 26px;
  min-height: 120px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--growth-border);
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  display: block;
}

.testimonial-location {
  font-size: 12px;
  color: #8a93a3;
}

.testimonial-quote-icon {
  position: absolute;
  right: 22px;
  bottom: 22px;
  font-size: 30px;
  color: #dbe6ff;
}

@media (max-width: 767.98px) {
  .testimonial-section { padding: 60px 0 70px; }
  .testimonial-heading { font-size: 21px; margin-bottom: 34px; }
  .testimonial-card { width: 78vw; min-width: 220px; }
  .testimonial-track { gap: 16px; animation-duration: 34s; }
  .testimonial-text { min-height: 100px; }
}


/* ================================================================
   FAQ SECTION — 2-column SEO-friendly accordion
   ================================================================ */
.faq-section {
  background-color: #fdf8f3;
  padding: 90px 0;
}

.faq-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.faq-accent {
  color: var(--brand-blue);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--growth-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.active {
  border-color: var(--brand-blue);
  box-shadow: 0 10px 24px rgba(11,28,52,0.08);
}

.faq-item-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
}

.faq-item-q {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.5;
}

.faq-num {
  color: var(--brand-blue);
  font-weight: 700;
  margin-right: 4px;
}

.faq-item-btn i {
  color: var(--brand-blue);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-item-btn i {
  transform: rotate(45deg);
}

.faq-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-item-body {
  max-height: 200px;
  padding: 0 22px 20px;
}

.faq-item-body p {
  margin: 0;
  font-size: 13.5px;
  color: #5a6577;
  line-height: 1.75;
}

@media (max-width: 767.98px) {
  .faq-section { padding: 60px 0; }
  .faq-heading { font-size: 24px; margin-bottom: 32px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item-q { font-size: 13.5px; }
}

/* ================================================================
   OUR BLOGS SECTION — featured + list layout
   ================================================================ */
.blogs-section {
  background-color: var(--white);
  padding: 90px 0;
}

.blogs-head {
  text-align: center;
  margin-bottom: 46px;
}

.blogs-label {
  display: inline-block;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blogs-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 30px;
  color: var(--text-dark);
}

.blogs-accent {
  color: var(--brand-blue);
}

.blogs-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* ---------- Featured blog (left) ---------- */
.blog-featured {
  display: block;
  background-color: var(--growth-bg);
  border: 1px solid var(--growth-border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11,28,52,0.12);
}

.blog-featured-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--brand-blue);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.blog-featured-body {
  padding: 26px 28px 30px;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #8a93a3;
  font-weight: 500;
  margin-bottom: 12px;
}

.blog-featured-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-featured-body p {
  font-size: 13.5px;
  color: #5a6577;
  line-height: 1.75;
  margin-bottom: 18px;
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 13.5px;
  transition: gap 0.2s ease;
}

.blog-featured:hover .blog-readmore {
  gap: 12px;
}

/* ---------- Side list (right) ---------- */
.blogs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-list-item {
  display: flex;
  gap: 16px;
  background-color: var(--growth-bg);
  border: 1px solid var(--growth-border);
  border-radius: 14px;
  padding: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-list-item:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 24px rgba(11,28,52,0.08);
}

.blog-list-img-wrap {
  width: 92px;
  height: 92px;
  min-width: 92px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-list-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-list-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.blog-tag-sm {
  position: static;
  top: auto;
  left: auto;
  display: inline-block;
  background-color: transparent;
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
}

.blog-list-body h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0;
}

.blog-list-body .blog-date {
  margin-bottom: 0;
  font-size: 11.5px;
}

.view-all-blogs-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--navy-dark);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 15px 20px;
  border-radius: 30px;
  margin-top: 4px;
  transition: all 0.25s ease;
}

.view-all-blogs-btn:hover {
  background-color: var(--navy-darker);
  gap: 14px;
}

@media (max-width: 991.98px) {
  .blogs-section { padding: 60px 0; }
  .blogs-heading { font-size: 25px; }
  .blogs-layout { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .blog-list-item { flex-direction: row; }
  .blog-list-img-wrap { width: 74px; height: 74px; min-width: 74px; }
  .blog-list-body h4 { font-size: 13px; }
}

/* ================================================================
   CONTACT US SECTION
   ================================================================ */
.contact-section {
  background: linear-gradient(135deg, #eaf3fb 0%, #fdf3ec 100%);
  padding: 90px 0;
}

.contact-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 46px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

/* ---------- Info cards (2x2) ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info-card {
  background-color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  backdrop-filter: blur(2px);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 18px rgba(11,28,52,0.1);
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-info-card p {
  margin: 0;
  font-size: 13px;
  color: #5a6577;
  line-height: 1.6;
}

/* ---------- Form card ---------- */
.contact-form-card {
  background-color: var(--white);
  border-radius: 18px;
  padding: 36px 34px;
  box-shadow: 0 18px 45px rgba(11,28,52,0.1);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-form-note {
  font-size: 11.5px;
  color: #9aa4b5;
  line-height: 1.5;
  margin: 0 0 22px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-input {
  width: 100%;
  border: 1px solid var(--growth-border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-dark);
  background-color: var(--growth-bg);
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-input::placeholder {
  color: #9aa4b5;
}

.contact-input:focus {
  border-color: var(--brand-blue);
  background-color: var(--white);
}

.contact-country {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%235a6577' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}

.contact-textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-submit {
  background-color: var(--growth-green);
  color: var(--white);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-submit:hover {
  background-color: var(--growth-green-dark);
}

.contact-success {
  display: none;
  margin: 14px 0 0;
  padding: 12px 16px;
  background-color: #e7f7ee;
  color: var(--growth-green-dark);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.contact-success.show {
  display: block;
}

@media (max-width: 991.98px) {
  .contact-section { padding: 60px 0; }
  .contact-heading { font-size: 26px; margin-bottom: 34px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .contact-info-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .contact-info-card { padding: 22px 14px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }
}
/* ================================================================
   MOBILE BOTTOM APP-STYLE NAV BAR (mobile only, fixed bottom)
   ================================================================ */
.mobile-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: flex;
  background-color: var(--white);
  box-shadow: 0 -6px 20px rgba(11,28,52,0.14);
  border-top: 1px solid #eef1f6;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 4px 8px;
  color: #5a6577;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.15s ease;
}

.mobile-bottom-nav-item:hover,
.mobile-bottom-nav-item:active {
  color: var(--brand-blue);
  transform: translateY(-2px);
}

.mobile-bottom-nav-icon {
  font-size: 19px;
  line-height: 1;
}

.mobile-bottom-nav-whatsapp .mobile-bottom-nav-icon {
  color: #25d366;
}

.mobile-bottom-nav-whatsapp:hover,
.mobile-bottom-nav-whatsapp:active {
  color: #25d366;
}

.mobile-bottom-nav-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Room for the fixed bottom nav so page content & back-to-top aren't hidden behind it */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 62px;
  }
  .back-to-top {
    bottom: 74px;
  }
}