* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #2979ff;
  --blue-light: #448aff;
  --blue-dark: #155fa0;
  --green: #4caf50;
  --bg: #f5f5f5;
  --text: #1a1a2e;
  --text-dark: #2c2c2c;
  --text-mid: #5a5a5a;
  --text-light: #757575;
  --white: #ffffff;
  --blue-mid: #1976d2;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --accent: #030404;
  --warn-bg: #fdf0ee;
  --warn-border: #f5c4bb;
  --warn-icon: #e05a3a;
  --muted: #6b7280;
  --border: #d1d9e6;
  --input-focus: #1a6fbf;
  --radius: 14px;
  --card-shadow:
    0 8px 40px rgba(26, 111, 191, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

body {
  font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  background: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

/* ============ HEADER ============ */
/* ====== Top Bar ====== */
.header-bar {
  background: #e8f4fb;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ── TOP BAR ── */
.top-bar {
  width: 100%;
  background: #1f7dc0;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 720px) {
  .top-bar {
    display: none;
  }
}

.contact-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  width: 1200px;
  justify-content: space-between;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  /* border-right: 1px solid rgba(255,255,255,0.2); */
  white-space: nowrap;
}

.contact-item:last-child {
  border-right: none;
}

.contact-item svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.contact-item a,
.contact-item span {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #ffffff;
}
.egosms-menu {
  background-color: #ffffff;
  width: 100%;
  box-shadow: 0 2px 10px rgba(117, 116, 116, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  flex: 0 0 auto;
  padding: 12px 0;
}

.logo-icon {
  width: 100%;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.logo-icon img {
  width: 60%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #00354f;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-content {
  flex: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.right-section {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-item {
  position: relative;
}

.menu-link, .menu-link-dropdown {
  display: block;
  padding: 24px 0;
  color: #00354f;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.menu-link:hover, .menu-link-dropdown:hover {
  color: #6dbe46;
}

.menu-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  color: currentColor;
}

.dropdown-trigger.active .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-trigger:hover .dropdown-icon {
  color: currentColor;
}

/* Triangle pointer for dropdown */
.dropdown-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: white;
  min-width: 600px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 25px;
}

.dropdown-content.expanded {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-header {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border-radius: 10px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: #eaf3f8;
}

.dropdown-img-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;

}

.feature-items{
  background: #1f7dc0;
  border-radius: 50%;
  padding: 25px;
}

.dropdown-img-icon img {
  width: 35px;
  height: 35px;
}

.country-flag img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.service-info {
  flex: 1;
}

.dropdown-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 4px;
}

.dropdown-description {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  margin: 4px 10px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: #1a202c;
}

.country-item:hover {
  background-color: #f7fafc;
}

.country-flag {
  width: 32px;
  height: 24px;
  border-radius: 4px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 5px;
}

.country-name {
  font-size: 14px;
  font-weight: 600;
}

.menu-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  align-items: bottom;   /* vertical alignment */
  justify-content: center;
  padding: 8px 8px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #1f7dc0 0%, #1e5a8c 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 127, 184, 0.4);
}

.btn-secondary {
  background-color: white;
  color: #1f7dc0;
  border: 2px solid #1f7dc0;
}

.btn-secondary:hover {
  background-color: #f0f9ff;
}

.btn-dark {
  background-color: #1a202c;
  color: white;
  display: none;
}

.btn-dark:hover {
  background-color: #2d3748;
}

.mobile-only {
  display: none;
}

/* Close Button for Mobile */
.close-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.close-menu svg {
  width: 30px;
  height: 30px;
  stroke: #00354f;
}

.hero-subtext {
  color: #fff !important;
  text-align: left;
  text-align: center;
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

/* Mobile Styles */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .egosms-menu {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  body {
    background-color: #fff;
    padding: 0;
    margin: 0;
  }

  .menu-container {
    padding: 0 20px;
  }

  .logo-section {
    padding: 15px 0;
  }

  .menu-content {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    padding: 80px 0 120px 0;
    display: block;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .menu-content.active {
    left: 0;
  }

  .close-menu {
    display: block;
  }

  .right-section {
    display: none;
  }

  .menu-item {
    margin-bottom: 0;
  }

  .menu-link, .menu-link-dropdown {
    padding: 16px 20px;
    font-size: 18px;
    border-radius: 0;
    display: block;
  }

  .menu-link:hover, .menu-link-dropdown:hover {
    background-color: #f7fafc;
    color: #1a202c;
  }

  .menu-dropdown {
    margin-bottom: 0;
  }

  .dropdown-trigger {
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 18px;
    width: 100%;
    border-radius: 0;
  }

  .dropdown-trigger:hover {
    background-color: #f7fafc;
    color: #1a202c;
  }

  .dropdown-trigger:hover .dropdown-icon {
    color: currentColor;
  }

  .dropdown-icon {
    width: 20px;
    height: 20px;
  }

  .dropdown-content {
    position: static;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0;
  }

  .dropdown-content::before {
    display: none;
  }

  .dropdown-content.expanded {
    max-height: 1000px;
    transform: none;
    padding: 15px 0;
  }

  .dropdown-header {
    padding: 0 20px;
    margin-bottom: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .dropdown-item {
    padding: 16px 20px;
    margin: 0;
  }

  .dropdown-img-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .dropdown-title {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .dropdown-description {
    font-size: 13px;
  }

  .country-item {
    padding: 16px 20px;
    margin: 8px 0;
  }

  .menu-buttons {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    display: none;
  }

  .mobile-only.menu-buttons {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 85%;
    max-width: 400px;
    background: white;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-only.menu-buttons.active {
    transform: translateX(0);
  }

  .btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .btn-dark {
    display: block;
  }

  .mobile-only {
    display: block;
  }

  .right-section .menu-buttons {
    display: none;
  }

  /* Mobile overlay */
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .mobile-overlay.active {
    display: block;
  }

  .container {
    max-width: 100%;
    margin: 0;
    padding: 10px;
    /* padding: 0 20px; */
  }

  .hero-text {
    max-width: 90%;
    text-align: center !important;
    margin: 0;
    padding: 10px;
  }

  .hero-globe {
    width: 70%;
    justify-items: center;
    text-align: center !important;
    margin-top: -30px;
    display: none;
  }

  .globe-image {
    width: 70% !important;
    margin-top: -30px !important;
    margin-bottom: 20px !important;
  }

  .hero-text p {
    font-size: 17px !important;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.5;
    text-align: center !important;
  }

  .hero {
    border-radius: 0 !important;
    display: grid !important;
    place-items: center !important;
    padding: 10px 10px 30px 10px !important; /* top right bottom left */
    max-width: 100% !important;
    margin: 0 !important;
    margin-bottom: -50px !important;
  }
}
/* ============ HERO SECTION ============ */
/* .hero {
  background-image: url("../../img_v2/hero-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 35px 0 40px;
  position: relative;
  bottom: -90px;
  border-radius: 0 0 100% 100% / 0 0 450px 450px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
} */



.hero {
  position: relative;
  overflow: hidden;
  color: white;
  z-index: 1;
  min-height: 600px;
  padding-top: 30px;
}

.hero-content{
  position: relative;
  z-index: 10;
}

.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%; 
  height: 100%; 
  
  background-image: url("../../img_v2/hero-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 0 50% 50%; 
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 24px;
  line-height: 1.15;
  font-weight: 700;
}

.kenya-hero-text h1 {
  font-size: 35px;
  margin-bottom: 24px;
  line-height: 1.25;
  font-weight: 700;
}

.hero-text h1 .highlight {
  color: #6dbe46;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.5;
  text-align: left;
  font-weight: 400;
}

.hero-globe {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  animation: floatGlobe 6s ease-in-out infinite;
}

@keyframes floatGlobe {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}


@media (max-width: 720px) {
  .hero-text h1 {
  font-size: 22px;
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 700;
}
  .hero {
    position: relative;
    overflow: hidden;
    color: white;
    z-index: 1;
    min-height: 600px;
    padding-top: 20px;
  }

.hero:after {
  content: "";
  position: absolute;
  top: 0;
  width: 120%; 
  height: 100%; 
  
  background-image: url("../../img_v2/hero-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0; 
  z-index: -1;
}
}

/* ============ COMMUNICATION FEATURES ============ */
.communication-section {
  margin: 60px 0 0;
  background: white !important;
  color: white;
  padding: 48px 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background-image: url("../../img_v2/what-card-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #000;
}

.communication-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.communication-card {
  background: #1f7dc0;
  border-radius: 16px;
  padding: 40px 25px 40px 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.22s ease;
  box-shadow: 0 4px 18px rgba(42, 125, 225, 0.25);
}

.communication-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  border-radius: inherit;
  pointer-events: none;
}

.communication-card:hover {
  padding: 28px 22px 28px 22px;
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 12px 32px rgba(42, 125, 225, 0.38);
}

/* Hover overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1f7dc0 0%, #1e5a8c 70%);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.34, 1.3, 0.64, 1);
  pointer-events: none;
}

.communication-card:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.card-overlay p {
  color: rgba(255, 255, 255, 0.93);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

.card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 48px;
  height: 48px;
  fill: rgba(255, 255, 255, 0.92);
}

.card-label {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.1px;
}

/* Staggered entrance animation */
.communication-card {
  opacity: 0;
  animation: fadeUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.communication-card:nth-child(1) {
  animation-delay: 0.05s;
}
.communication-card:nth-child(2) {
  animation-delay: 0.12s;
}
.communication-card:nth-child(3) {
  animation-delay: 0.19s;
}
.communication-card:nth-child(4) {
  animation-delay: 0.26s;
}
.communication-card:nth-child(5) {
  animation-delay: 0.33s;
}
.communication-card:nth-child(6) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .communication-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 32px 20px 36px;
  }
}
@media (max-width: 400px) {
  .communication-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== HAPPY CLIENTS SECTION ==================== */
.partner-section {
  width: 100%;
  padding: 40px 0;
  background: #e8f4f8;
  overflow: hidden;
  margin-top: 40px;
}

/* Marquee wrapper */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
}
.marquee-wrapper::after {
  right: 0;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 0;
}

/* Row 1: slides LEFT */
.row-left .marquee-track {
  animation: scrollLeft 28s linear infinite;
}
.row-left:hover .marquee-track {
  animation-play-state: paused;
}

/* Row 2: slides RIGHT */
.row-right .marquee-track {
  animation: scrollRight 28s linear infinite;
}
.row-right:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Individual logo card */
.logo-card {
  flex-shrink: 0;
  width: 160px;
  height: 90px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
  overflow: hidden;
}

.logo-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 400;
  color: #666;
  display: block;
  text-align: center;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.logo-sub.white {
  color: rgba(255, 255, 255, 0.8);
}

.logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  width: 100%;
  padding: 0px;
}

.logo-inner img {
  border-radius: 3px;
  margin: 0px;
  width: 100%;
}

/* ============ NETWORKS SECTION ============ */
.networks {
  padding: 60px 0;
  background: white;
}

.networks h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

.network-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.network-logo {
  font-size: 40px;
  font-weight: 700;
  opacity: 0.75;
  transition:
    opacity 0.3s,
    transform 0.3s;
  cursor: pointer;
}

.network-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.network-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.network-logo img {
  height: 45px;
  display: block;
}

/* ============ WHY EGOSMS SECTION ============ */
.why-section {
  position: relative;
  overflow: hidden;
  color: white;
  z-index: 1;
  min-height: 550px;
  padding-top: 40px;
  padding-bottom: 20px;
}

.why-section-content{
  position: relative;
  z-index: 10;
}

.why-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%; 
  height: 100%; 
  background-image: url("../../img_v2/hero-background1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 0 50% 50%; 
  z-index: -1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.why-content h3 {
  font-size: 23px;
  margin-bottom: 12px;
  font-weight: 500;
  margin-top: -10px;
}

.why-content p {
  font-size: 22px;
  opacity: 0.92;
  line-height: 1.5;
  margin-top: -10px;
}

.why-item {
  display: flex;
  align-items: flex-start; /* NOT stretch */
  gap: 12px;
}
.why-icon {
  flex: 24px;
  width: 25px;
  height: 22px;
  border-radius: 50%;
  background: #e6f4ea;
  position: relative;
  justify-content: center;
  align-items: center;
}

.why-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #1e8e3e;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

@media (max-width: 720px) {
  .why-section:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%; 
    background-image: url("../../img_v2/hero-background1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0; 
    z-index: -1;
  }

  .why-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
    margin-top: -10px;
  }

  .why-content p {
    font-size: 17px;
    opacity: 0.92;
    line-height: 1.5;
    margin-top: -10px;
  }

  .why-icon {
    flex: 24px;
    width: 27px;
    height: 20px;
    border-radius: 50%;
    background: #e6f4ea;
    position: relative;
    justify-content: center;
    align-items: center;
  }

}



/* ============ FEATURES SECTION ============ */
.features-section {
  padding: 80px 0 50px;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.feature-box {
  background: #fafafa;
  padding: 42px 38px;
  border-radius: 12px;
  border: 1px solid #1976d2;
}

.feature-box h3 {
  font-size: 22px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  font-weight: 600;
}

.feature-icon-title {
  font-size: 35px;
}

.feature-box ul {
  list-style: none;
}

.feature-box li {
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 20px;
  color: #444;
  margin-bottom: 5px;
}

.feature-box li::before {
  content: "✓";
  color: #4caf50;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .feature-box h3 {
    font-size: 20px !important;
    margin-bottom: 18px !important;
  }

  .feature-icon-title {
    font-size: 35px;
  }

  .feature-box li {
    font-size: 18px !important;
    margin-bottom: 2px !important;
  }

  .feature-box li::before {
    font-size: 14px !important;
  }
}
/* ============ USE CASES SECTION ============ */
.use-cases {
  padding: 40px 0;
  background: #f0f4f8;
}

.use-cases-layout {
  display: grid;
  grid-template-columns: 520px 1fr;
  margin-top: 60px;
  align-items: start;
}

.use-cases-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.use-case-img {
  width: 100%;
  /* height: 220px; */
  border-radius: 12px;
  overflow: hidden;
}

.use-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.use-case-img:hover img {
  transform: scale(1.05);
}

.use-cases-content {
  background: white;
  padding: 48px 42px;
  border-radius: 12px;
}

.use-case {
  padding: 24px 0;
  margin-bottom: -10px;
}

.use-case:last-child {
  border-bottom: none;
}

.use-case h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 600;
}

.use-case p {
  color: #666;
  font-size: 18px;
  line-height: 1.7;
}

/* ============ PRICING SECTION ============ */
.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
}

/* Country Selector */
.country-selector-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.country-selector {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.country-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1f7dc0;
  color: white;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 0;
}

.country-label svg {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

.country-select-wrap {
  position: relative;
  padding: 0 20px;
}

.country-select-wrap select {
  appearance: none;
  background: transparent;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0d1f2d;
  cursor: pointer;
  padding: 12px 28px 12px 4px;
  outline: none;
}

.country-select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #1f7dc0;
  pointer-events: none;
}

/* Pricing Table */
.table-wrapper {
  background: white;
  border-radius: 5px;
  overflow-x: auto; 
  overflow-y: hidden;
  box-shadow: 0 4px 24px rgba(0, 53, 79, 0.08);
  margin-bottom: 24px;
  
  /* Smooth scrolling for mobile devices */
  -webkit-overflow-scrolling: touch; 
}

.table-wrapper table {
  width: 100%;
  min-width: 600px; 
  border-collapse: collapse;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

/* Table Header */
.table-wrapper thead tr {
  background: #1f7dc0;
}

.table-wrapperthead th {
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 15px 18px;
  text-align: center;
  letter-spacing: 0.3px;
}

.table-wrapper thead th:first-child {
  text-align: left;
  padding-left: 30px;
}

/* Table Rows */
.table-wrapper tbody tr {
  border-bottom: 1px solid #eef3f8;
  transition: background-color 0.2s ease;
}

.table-wrapper tbody tr:last-child {
  border-bottom: none;
}

.table-wrapper tbody tr:hover {
  background-color: #f7fbff;
}

/* Highlighted row */
/* .table-wrapper tbody tr.highlighted {
  background-color: #f0f9f0;
} */

/* .table-wrapper tbody tr.highlighted td {
  color: #1f7dc0;
  font-weight: 600;
} */

/* .table-wrapper tbody tr.highlighted:hover {
  background-color: #e8f5e8;
} */

.table-wrapper tbody td {
  padding: 20px 20px;
  text-align: center;
  font-size: 14px;
  color: #374151;
}

.table-wrapper tbody td:first-child {
  text-align: left;
  padding-left: 30px;
  font-weight: 500;
  color: #0d1f2d;
}

/* .table-wrapper tbody tr.highlighted td:first-child {
  color: #1f7dc0;
} */

/* Features Row */
.features-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #374151;
}

.feature-check {
  color: #1f7dc0;
  font-weight: 700;
  font-size: 14px;
}

/* Info Banner */
.info-banner {
  background-color: #dbeafe;
  border: 1px solid #93c5fd;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  margin-top: 1px;
}

.info-text {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

.info-text strong {
  color: #000;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 700px) {
  .section-title {
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }

  thead th,
  tbody td {
    padding: 14px 10px;
    font-size: 12px;
  }

  thead th:first-child,
  tbody td:first-child {
    padding-left: 14px;
  }

  .features-row {
    gap: 14px;
  }

  .feature-item {
    font-size: 12px;
  }
}

/* ============ API SECTION ============ */
.api-container {
  background-image: url("../../img_v2/api-integrations-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: white;
  width: 100%;
  margin-top: 50px;
}

.api-container-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* inner spacing */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  box-sizing: border-box;
}

.content-side {
  flex: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  margin-top: 10px;
  margin-bottom: 35px;
}

.api-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.api-feature-item::before {
  content: "✓";
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 20px;
  width: 55%;
}

.cta-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.cta-button::after {
  content: "»";
  font-size: 18px;
  font-weight: bold;
}

.visual-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.api-info-text {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .api-container-section {
    flex-direction: column;
    padding: 0 !important;
    gap: 5px !important;
    margin-top: -30px !important;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .api-info-text {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .cta-button {
    width: 100%;
  }
}

/* ============ HOW IT WORKS SECTION ============ */
.how-it-works-section {
  background-color: #fff;
  padding: 60px 20px; /* reduce side padding */
  width: 100%;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px; /* centers it */
}

.steps-container-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto; /* already correct */
}

.step-card {
  background: linear-gradient(135deg, #e8f4f8 0%, #d5e8f0 100%);
  border-radius: 16px;
  padding: 30px 25px;
  padding-top: 50px;
  text-align: center;
  position: relative;
  margin-top: 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.step-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 35px;
  background: #f0f4f8;
  border-radius: 0 0 50% 50%;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #1f7dc0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(30, 90, 140, 0.3);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e5a8c;
  margin-bottom: 12px;
  line-height: 1.4;
}

.step-description {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .how-it-works-section {
    padding: 40px 20px;
  }

  .steps-container,
  .steps-container-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    padding: 25px 20px;
  }

  .step-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e5a8c;
    margin-bottom: 12px;
    line-height: 1.4;
    margin-top: 10px;
  }
}

/* ============ CTA SECTION ============ */
.cta-section {
  max-width: 100%;
  background-color: #f0f4f8;
  padding: 10px 20px;
}

.cta-container {
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: 60px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: stretch;
}

.image-side {
  flex: 0 0 40%;
  position: relative;
  min-height: 300px;
}

.image-side::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to right, rgba(196, 181, 160, 0.3), transparent);
}

.cta-content-side {
  flex: 1;
  background: #1f7dc0;
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
}

.cta-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.button-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: white;
  color: #1e5a8c;
  border-color: white;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
  }

  .image-side {
    flex: 0 0 200px;
    min-height: 200px;
    display: none;
  }

  .content-side {
    padding: 35px 30px;
  }

  .cta-title {
    font-size: 24px;
  }

  .button-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ============ USE CASES PAGE ============ */
.hero-banner-section {
  background:
    linear-gradient(0deg, rgba(31, 125, 192, 0.6)),
    url("../../img_v2/hero-banner-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  height: 180px;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-hr {
  width: 10%;
  height: 2px;
  background-color: #1f7dc0;
  border: none;
  margin-left: 0;
  margin-top: -15px;
}

.left-title {
  color: white;
  margin-bottom: 20px;
  text-align: left;
}

.right-title {
  font-size: 30px;
  color: #1f7dc0;
  text-align: right;
}

.left {
  width: 50%;
}

.right {
  width: 50%;
}

.use-case-container {
  display: flex;
}

.right-btn {
  float: right;
  text-align: center;
  width: 100px;
}

.left-btn {
  float: left;
  text-align: center;
  width: 100px;
}

.sub-text {
  font-size: 25px;
  text-align: left;
  margin-bottom: -10px;
  color: #fff;
  font-weight: 500;
}

.sub-text-left {
  font-size: 17px;
  text-align: left;
  margin-bottom: -10px;
  color: #fff;
}

.sub-text-right {
  color: #1f7dc0;
  font-size: 17px;
  text-align: right;
  margin-bottom: -10px;
}

img {
  width: 95%;
  height: auto;
}
.use-case-btn {
  background: #6dbe46;
  color: #fff;
  margin-top: 10px;
  max-width: 30%;
  border-radius: 30px;
  /* padding:10px 30px; */
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 15px;
  padding-right: 15px;
}

.started-btn {
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  margin-top: 20px;
  text-decoration: none;
}

.left-btn {
  float: left;
  text-align: center;
}

.right-content {
  width: 70%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .right-content {
    width: 80%;
    height: auto;
    margin-top: 0px;
    border-radius: 10px;
  }

  .hero-section {
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 2rem;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .left-container,
  .right-container {
    width: 100%;
    padding: 10px;
  }

  .left-title {
    font-size: 30px;
    margin-top: 8px;
    text-align: center;
  }

  .right-title {
    font-size: 30px;
    color: #1f7dc0;
    text-align: center;
  }

  .left {
    width: 100%;
  }

  .right {
    width: 100%;
    margin-bottom: -20px;
  }

  .sub-text-left {
    font-size: 16px;
    text-align: center;
  }

  .sub-text-right {
    text-align: center;
    color: #1f7dc0;
  }

  img {
    width: 100%;
    height: auto;
  }

  .use-case-btn {
    background: #6dbe46;
    color: #fff;
    margin-top: 10px;
    max-width: 100%;
    border-radius: 30px;
  }

  .use-case-container {
    flex-direction: column-reverse;
    display: flex;
  }
}

/* ============ GENERIC STYLING ============ */
.about-cards {
  margin: 0 auto;
  padding: 0.85rem 2rem;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-card-left {
  width: 50%;
}
.about-card-image {
  width: 45%;
}
.about-card-right {
  width: 50%;
  padding-left: 50px;
  padding-right: 20px;
}
.about-image {
  border-radius: 20px;
  width: 99.2%;
  margin-bottom: -5px !important;
  border-top: #6dbe46 solid 3px;
  border-left: #6dbe46 solid 3px;
}
.about-image-container {
  border-radius: 20px;
  border-right: #1f7dc0 solid 3px;
  border-bottom: #1f7dc0 solid 3px;
}

.partners-logo {
  width: 30%;
  float: center;
}

.airtel {
  float: right;
}

.mtn {
  float: left;
}

.about-sms {
  text-align: left;
  font-size: 18px;
  line-height: 1.9rem;
  color: #00354f;
}

.contact-btn {
  width: 100%;
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  background: #6dbe46;
  color: #fff;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .about-card-image {
    width: 100%;
  }
  .section-heading {
    font-weight: 500;
    margin-top: -10px;
    font-size: 22px;
    text-align: center;
  }
  .about-section {
    margin-top: 0px;
    width: 90%;
  }
  .about-cards {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0.5rem 0.5rem;
    align-items: center;
  }

  .partners-logo {
    width: 60%;
    float: center;
    margin-bottom: -10px;
  }

  .about-image-container {
    width: 100%;
    margin-top: -30px;
    border-radius: 20px;
    border-right: #1f7dc0 solid 3px;
    border-bottom: #1f7dc0 solid 3px;
  }

  .about-image {
    border-radius: 20px;
    width: 100% !important;
    margin-bottom: -5px;
    border-top: #6dbe46 solid 3px;
    border-left: #6dbe46 solid 3px;
  }

  .about-card-left {
    width: 100%;
    justify-content: center;
  }
  .about-card-right {
    width: 100%;
    padding: 10px;
  }
  .regular-text {
    text-align: left;
    font-size: 17px;
    line-height: 1.6rem;
  }
}

.contact-icon {
  font-size: 17px;
}

.contact-img {
  vertical-align: middle;
  width: 17px;
  margin-right: 5px;
}

td {
  padding: 5px 0px;
}

.contact-container {
  background: #1f7dc0;
  color: #fff;
  padding: 50px;
  border-radius: 20px;
}

.left-cont {
  width: 60%;
}

.right {
  width: 40%;
}

.show-mobile {
  display: none;
}
.hide-mobile {
  display: block;
}

.hide-mobile td {
  font-size: 16px;
  color: #fff !important;
}

/* .hide-mobile tr{
    font-size: 16px;
    color: #fff;
  } */

@media (max-width: 768px) {
  .get-intouch {
    font-size: 28px;
  }

  .hide-mobile table {
    margin-bottom: 10px;
  }

  .contact-icon {
    font-size: 16px;
  }

  .contact-img {
    vertical-align: middle;
    width: 12px;
    margin-right: 5px;
  }

  .hide-mobile td {
    padding: 2px 0px;
    font-size: 16px;
    color: #fff;
  }
  .contact-container {
    background: #1f7dc0;
    color: #fff;
    padding: 40px 20px 40px 20px;
    border-radius: 10px;
  }

  .left-cont {
    width: 100%;
  }

  .right {
    width: 100%;
  }

  .show-mobile {
    display: block;
  }
  .hide-mobile {
    display: none;
  }


}

/* Contact Page Banner Starts here */
.sub-text-contact {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.form-input-contact {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.contact-icon {
  color: #fff;
  margin-bottom: 0px;
}

/* ====Contact Us Page Ends Here ===*/

/* ============ Uganda Page ============ */
/* ============ COMMUNICATION SECTION ============ */
.comm-section {
  margin: 0 auto;
  padding: 64px 32px 72px;
  overflow: hidden;
}

/* Decorative background shape */
.comm-section::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(100, 180, 255, 0.13) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Faint watermark circles */
.bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(80, 160, 240, 0.12);
  pointer-events: none;
}
.bg-circle-1 {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 50%;
  transform: translateY(-50%);
}
.bg-circle-2 {
  width: 180px;
  height: 180px;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}
.bg-circle-3 {
  width: 100px;
  height: 100px;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.header h2 {
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: #1a2e44;
  margin-bottom: 14px;
}

.title-underline {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.title-underline span {
  display: block;
  height: 3px;
  border-radius: 2px;
}
.title-underline .bar-long {
  width: 36px;
  background: #3a9fd6;
}
.title-underline .bar-short {
  width: 10px;
  background: #a0d4f0;
}

.header p {
  font-size: clamp(0.82rem, 1.6vw, 0.97rem);
  color: #4a5f75;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 400;
}

/* Cards grid */
.ug-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .ug-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .ug-cards {
    grid-template-columns: 1fr;
  }
}

/* Card */
.ug-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(30, 90, 160, 0.07);
  border: 1px solid rgba(180, 220, 245, 0.5);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  cursor: default;
}

.ug-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(30, 90, 160, 0.13);
}

/* Icon circle */
.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2a85c0;
  border: 1.5px solid rgba(58, 159, 214, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.28s ease;
}

.icon-wrap svg {
  width: 22px;
  height: 22px;
}

/* Card title */
.ug-card-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e5a8c;
  line-height: 1.4;
  margin-bottom: 14px;
}

/* Card body */
.ug-card-body {
  font-size: 0.9rem;
  color: #5a6e82;
  line-height: 1.55;
  font-weight: 400;
}

/* ======= CTA SECTION ======= */
.cta-section-ug {
  background: #f2fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  margin-bottom: 60px;
}
.ug-cta-outer {
  position: relative;
  max-width: 120%;
  background: #1f7dc0;
  padding: 56px 140px 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(20, 80, 170, 0.25);
}

/* Top-left diagonal light slabs */
.deco-tl-1 {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 160px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  transform: rotate(28deg);
  pointer-events: none;
}
.deco-tl-2 {
  position: absolute;
  top: -10px;
  left: 10px;
  width: 130px;
  height: 90px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  transform: rotate(18deg);
  pointer-events: none;
}

/* Bottom-right diagonal light slabs */
.deco-br-1 {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 160px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  transform: rotate(28deg);
  pointer-events: none;
}
.deco-br-2 {
  position: absolute;
  bottom: -10px;
  right: 20px;
  width: 130px;
  height: 80px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  transform: rotate(15deg);
  pointer-events: none;
}

/* ── Floating Check Bubble ── */
.check-bubble {
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ── Semi Transparent Inner Card ── */
.ug-cta-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 52px 44px 44px;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.ug-cta-title {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.48;
  margin-bottom: 22px;
}

.ug-cta-body {
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  margin-bottom: 34px;
  font-weight: 400;
}

.ug-cta-btn {
  display: inline-block;
  padding: 13px 36px;
  border-radius: 50px;
  background: transparent;
  border: 1.8px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
}
.ug-cta-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 700px) {
  .cta-section-ug {
    display: flex;
    justify-content: center;
    padding-top: 0px;
    margin-bottom: 20px;
  }
  .ug-cta-outer {
    position: relative;
    max-width: 120%;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .ug-cta-card {
    position: relative;
    max-width: 500px;
    border-radius: 20px;
    padding: 20px;

  }
}

/* ============ LOGIN PAGE ============ */
/* ── Notice Banner ── */
.login-page {
  padding-top: 10px;
  background: #f0f4f9;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justi
  color: var(--text);
}
.notice {
  width: 100%;
  max-width: 940px;
  background: var(--warn-bg);
  border: 1.5px solid var(--warn-border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
  animation: slideDown 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.notice-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--warn-icon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-top: 1px;
}
.notice-body {
  flex: 1;
}
.notice-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4a2318;
}
.notice-body p strong {
  font-weight: 600;
}
.btn-outline-warn {
  margin-top: 12px;
  display: inline-block;
  padding: 7px 18px;
  border: 1.5px solid #c0714f;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: #7a3020;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s;
}
.btn-outline-warn:hover {
  background: #f5c4bb;
}

/* ── Main Card ── */
.notice-card {
  width: 100%;
  max-width: 940px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  animation: fadeUp 0.6s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Left Panel ── */
.panel-left {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.panel-left-bg {
  position: absolute;
  inset: 0;
  background: url("../../img_v2/friends-with-smartphone.jpg") center/cover
    no-repeat;
}
.panel-left-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-card {
  background: rgba(15, 59, 130, 0.452);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 26px 24px;
  color: #fff;
}
.info-card p {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 12px;
}
.info-card p:last-of-type {
  margin-bottom: 20px;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}
.countdown-unit {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 8px 4px 6px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.countdown-num {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1;
}
.countdown-label {
  display: block;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* Benefits */
.benefits-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}
.benefits-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.btn-migrate {
  width: 100%;
  padding: 11px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-migrate:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ── Right Panel ── */
.panel-right {
  padding: 56px 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-title {
  font-size: 35px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 36px;
  letter-spacing: -0.5px;
  text-align: center;
}

.field {
  margin-bottom: 15px;
}
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field input::placeholder {
  color: #b0bac8;
}
.field input:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(26, 111, 191, 0.12);
}

.forgot {
  display: block;
  text-align: right;
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
  margin-top: -8px;
  margin-bottom: 24px;
  font-weight: 500;
}
.forgot:hover {
  text-decoration: underline;
}

.btn-signin {
  width: 100%;
  padding: 14px;
  /* background: var(--blue); */
  background: linear-gradient(135deg, #1f7dc0 0%, #1e5a8c 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition:
    background 0.2s,
    transform 0.1s,
    box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(26, 111, 191, 0.32);
}
.btn-signin:hover {
  box-shadow: 0 6px 22px rgba(26, 111, 191, 0.42);
}
.btn-signin:active {
  transform: scale(0.98);
}

.contacts {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
}
.contacts a {
  color: var(--blue);
  text-decoration: none;
}
.contacts a:hover {
  text-decoration: underline;
}

/* ── Animations ── */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .notice-card {
    grid-template-columns: 1fr;
  }
  .panel-left {
    min-height: 340px;
  }
  .panel-right {
    padding: 36px 28px;
  }
  .login-title {
    font-size: 32px;
  }
}

/* ============ PASSWORD RECOVER PAGE ============ */
.about-flower {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.main-container-hero-recover {
  max-width: 100%;
  background-repeat: no-repeat;
  opacity: 0.9;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
  justify-content: space-between;
  align-items: center;
  background-color: #1f7dc0;
  background:
    linear-gradient(0deg, rgba(31, 125, 192, 0.6)),
    url("../../img_v2/background.jpg");
  background-size: cover;
  background-position: center;
}
.recovery-container {
  display: flex;
  background: #f4f4f4;
  width: 93%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Left section (image) */
.left-section {
  background: #f3f8ff;
  justify-content: bottom;
  align-items: bottom;
  padding-bottom: 0px;
}

.left-section img {
  width: 100%;
  height: auto;
  max-width: 360px;
}

/* Right section (form) */
.right-section-recover {
  flex: 1;
  padding: 50px 40px;
  position: relative;
}

.top-links {
  text-align: right;
  margin-bottom: 10px;
}

.back-link {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.back-link span {
  color: #007bff;
  font-weight: 500;
}

.right-section h2 {
  color: #022247;
  font-size: 22px;
  margin-bottom: 25px;
}

.recovery-form {
  display: flex;
  flex-direction: column;
}

.recovery-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.recovery-form input[type="email"] {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  outline: none;
}

.radio-group {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  font-size: 14px;
}

.radio-group input[type="radio"] {
  accent-color: #007bff;
  margin-right: 6px;
}

.flower-img {
  width: 17%;
  float: right;
  margin-top: -320px;
}

/* Responsive */
@media (max-width: 768px) {
  .recovery-container {
    flex-direction: column;
  }

  .left-section {
    display: none;
  }

  .right-section {
    padding: 30px;
  }
}
.recovery-form {
  margin: 40px;
  width: 65%;
  justify-content: center;
}

.go-back {
  text-align: right;
  margin-top: -10px;
  margin-bottom: -10px;
}

.sub-text-recover {
  font-weight: 500;
  margin-top: -10px;
  font-size: 17px;
  color: #000;
}

.go-back-btn {
  width: 30%;
}

@media (max-width: 768px) {
  .right-section-recover {
    width: 100%;
    margin-top: 30px;
  }
  .go-back {
    text-align: center;
    margin-top: -10px;
    margin-bottom: -10px;
  }
  .recovery-form {
    margin: 0px;
    width: 80%;
    justify-content: center;
    align-items: center;
  }

  input[type="email"] {
    width: 90%;
  }

  .flower-section {
    display: none;
  }

  .recovery-container {
    width: 93%;
    padding: 0px;
    margin: 10px;
    height: auto;
    font-size: 16px;
  }

  .sub-text-recover {
    font-weight: 500;
    margin-top: -10px;
    font-size: 16px;
    color: #000;
  }

  .radio-group {
    margin-bottom: 0px;
  }

  .go-back-btn {
    width: 70%;
  }
}

/* ============ FOOTER ============ */
footer {
  background: #1f7dc0;
  padding: 50px 0 0 0;
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.3fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-contact p {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

/* .footer-contact .phone {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 6px;
  text-decoration: none;
  
} */



.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  color: white;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.social-icons svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1200px;
}

.footer-bottom .line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 20px 30px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    padding: 20px;
  }

  .footer-bottom p {
    font-size: 12px;
    padding: 0 12px;
  }
}

/* ============ MOBILE MENU ============ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content,
  .features-grid,
  .api-content,
  .cta-content,
  .use-cases-layout {
    grid-template-columns: 1fr;
    /* max-width: 90% !important; */
    align-items: center !important;
    width: 100% !important;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .what-cards {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .pricing-tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 9px 16px;
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* Table Header */
thead tr {
  background: linear-gradient(135deg, #1f7dc0 0%, #1356a0 100%);
}

thead th {
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 18px 20px;
  text-align: center;
  letter-spacing: 0.3px;
}

thead th:first-child {
  text-align: left;
  padding-left: 30px;
}

/* Table Rows */
tbody tr {
  border-bottom: 1px solid #d6d6d630;
  transition: background-color 0.2s ease;
}

tbody tr:last-child {
  border-bottom: none;
}

/* tbody tr:hover {
  background-color: #f7fbff;
} */

/* Highlighted row */
/* tbody tr.highlighted {
  background-color: #f0f9f0;
} */

/* tbody tr.highlighted td {
  color: #1f7dc0;
  font-weight: 600;
} */

/* tbody tr.highlighted:hover {
  background-color: #e8f5e8;
  color: #1f7dc0;
  font-weight: 600;
} */

tbody td {
  padding: 10px 0px;
  text-align: center;
  font-size: 14px;
  color: #374151;
}

tbody td:first-child {
  text-align: left;
  padding-left: 0px;
  font-weight: 500;
  color: #0d1f2d;
}

/* tbody tr.highlighted td:first-child {
  color: #1f7dc0;
} */

/* =================== Kenyan Page ==================== */
/* ── Hero Section ──────────────────────────────────────────── */

.hero-cty {
  position: relative;
  background:
    linear-gradient(0deg, rgba(31, 125, 192, 0.6)),
    url("../../img_v2/hero-banner-background.jpg");
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 4vw, 2.5rem);
  background-size: cover;
  background-position: center;
}

/* Animated wave background */
.hero-cty::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* width: 200%; height: 100%; */
  background:
    radial-gradient(
      ellipse 800px 600px at 20% 40%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 600px 500px at 80% 70%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 50%
    );
  animation: wave 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes wave {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-8%) translateY(-3%);
  }
}

/* Floating message bubbles */
.bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation:
    float 3s ease-in-out infinite,
    fadeIn 1s ease forwards;
}

.bubble-white {
  background: var(--white);
  padding: 10px 14px;
  border-radius: 20px 20px 20px 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.bubble-green {
  background: var(--green);
  padding: 10px 14px;
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.bubble-1 {
  top: 15%;
  right: 18%;
  animation-delay: 0.3s;
  animation-duration: 3.2s;
}
.bubble-2 {
  top: 35%;
  right: 12%;
  animation-delay: 0.7s;
  animation-duration: 3.5s;
}
.bubble-3 {
  top: 52%;
  right: 22%;
  animation-delay: 1.1s;
  animation-duration: 3.8s;
}
.bubble-4 {
  top: 68%;
  right: 15%;
  animation-delay: 1.5s;
  animation-duration: 3.3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ── Container ──────────────────────────────────────────────── */
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Content (Left) ────────────────────────────────────────── */
.hero-content-cty {
  color: var(--white);
  animation: slideInLeft 0.8s ease forwards;
  opacity: 0;
  z-index: 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Buttons ────────────────────────────────────────────────── */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.btn-cty {
  padding: 0.5rem 1.5rem;
  border-radius: 7px;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.btn-primary-cty {
  background: var(--white);
  color: var(--blue-dark);
}
.btn-primary-cty:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.3);
}

.btn-secondary-cty {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary-cty:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-cty svg {
  width: 20px;
  height: 20px;
}

/* ── Features List ──────────────────────────────────────────── */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.8rem);
}

.feature-item-cty {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: clamp(0.5rem, 1.2vw, 0.7rem);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: -30px !important;
}

.feature-item-cty svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Image (Right) ──────────────────────────────────────────── */


@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.hero-image {
  background-image: url("../../img_v2/hero-image.png");
  animation: slideInRight 0.8s ease 0.2s forwards;
  align-items: left !important;
  justify-content: left !important;
  opacity: 0;
  margin-bottom: -80px;
  width: 150% !important;
  padding-right: 180px;
  z-index: 20 !important;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.25));
  z-index: 3 !important;
}

/* ── Responsive Adjustments ────────────────────────────────── */
@media (max-width: 899px) {
  .hero-cty {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .bubble {
    display: none;
  }

  .hero-container {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-cty {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    opacity: 0;
    margin-bottom: -40px;

  }

  .hero-text h1{
    font-size: 25px;
  }
}

/* ── About Section ──────────────────────────────────────────── */
.about-section {
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 2vw, 1.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ─────────────────────────────────────────────────── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-underline {
  width: 100px;
  height: 5px;
  background: #1f7dc0;
  border-radius: 5px;
  margin: 0 auto 1.2rem;
  position: relative;
}

.header-underline::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f7dc0;
}

/* ── Content Grid ───────────────────────────────────────────── */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .about-content {
    grid-template-columns: 45% 55%;
  }
}

/* ── Image Box with Gradient Border ────────────────────────── */
.about-image-cty {
  position: relative;
  opacity: 0;
  animation: slideInLeft 0.8s ease 0.2s forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(135deg, #6dbe46 0%, #1f7dc0);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}


.image-inner {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
}

.image-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ── Text Content ───────────────────────────────────────────── */
.about-text {
  opacity: 0;
  animation: slideInRight 0.8s ease 0.3s forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-text p {
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Highlight first sentence */
.about-text p:first-of-type::first-line {
  font-weight: 600;
  color: var(--text-dark);
}

/* ── Responsive Layout ──────────────────────────────────────── */
@media (max-width: 899px) {
  .about-content {
    text-align: center;
  }

  .about-image-cty {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .image-wrapper {
    border-radius: 20px;
    padding: 6px;
  }

  .image-inner {
    border-radius: 20px;
  }

  .image-inner img {
    border-radius: 20px;
  }
}

/* ── Needs Section ────────────────────────────────────────────────── */
/* .container-needs { max-width: 820px; width: 100%; } */

.title-wrap {
  text-align: center;
  margin-bottom: 52px;
}

/* ── Items ── */
.items {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 20px;
}

.item {
  display: flex;
  opacity: 0;
  transform: translateY(20px);
  animation: up 0.5s ease forwards;
  margin-top: -20px;
}
.item:nth-child(1) {
  animation-delay: 0.05s;
}
.item:nth-child(2) {
  animation-delay: 0.18s;
}
.item:nth-child(3) {
  animation-delay: 0.31s;
}
.item:nth-child(4) {
  animation-delay: 0.44s;
}

@keyframes up {
  to {
    opacity: 1;
    transform: none;
  }
}

.item.odd {
  justify-content: flex-start;
}
.item.even {
  justify-content: flex-end;
}

.row {
  display: flex;
  flex-direction: column;
  width: 82%;
}

/* Big ghost number */
.num {
  font-family: Arial, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  margin-bottom: -18px;
  z-index: 0;
}

.item.odd .num {
  color: #c6d2ea;
  align-self: flex-start;
  padding-left: 10px;
  color: #1f7dc038;
  z-index: 1;
}
.item.even .num {
  color: #c6e8c6;
  align-self: flex-end;
  padding-right: 10px;
  color: #6cbe4650;
  z-index: 1;
}

.card {
  z-index: 0;
  margin-top: -20px;
}

/* ── Mobile ── */
@media (max-width: 400px) {
  /* body { padding: 36px 16px; } */

  .title-wrap {
    margin-bottom: 32px;
  }

  /* Remove zigzag offset on small screens — center everything */
  .item.odd,
  .item.even {
    justify-content: center;
  }

  .row {
    width: 100%;
  }

  .num {
    font-size: 4.2rem;
    margin-bottom: -14px;
  }
  .item.odd .num {
    padding-left: 8px;
  }
  .item.even .num {
    padding-right: 8px;
  }

  /* Stack illustration above text inside card */
  .card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    gap: 12px;
  }

  .illus {
    width: 50%;
    height: 70px;
  }
  .illus img {
    width: 80%;
    height: auto;
  }

  .needs-odd {
    width: 100%;
  }
  .needs-odd h2 {
    font-size: 18px !important;
    text-align: center;
    font-weight: 600 !important;
  }
  .needs-odd p,
  .about-egosms {
    font-size: 0.80rem;
  }

  .needs-hr {
    width: 10% !important;
    margin: auto !important;
    margin-bottom: 10px !important;
  }
}

/* Card */
.card {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  padding: 26px 26px 26px 22px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  gap: 20px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.11);
}

.illus {
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  border-radius: 12px;
  background: #f5f7fc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.needs-odd {
  flex: 1;
}

.needs-odd h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.item:nth-child(odd) .needs-odd h2 {
  color: #1f7dc0;
}
.item:nth-child(even) .needs-odd h2 {
  color: #6dbe46;
}

.needs-odd p,
.about-egosms {
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.5;
  color: var(--text-mid);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.needs-hr {
  width: 10%;
  height: 3px;
  background-color: #1f7dc0;
  border: none;
  margin-left: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* ── Features Section ───────────────────────────────────────── */
.features-section-cty {
  position: relative;
  /* This is now your base layer */
  background-color: #1f7dc0; 
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 4vw, 2.5rem);
  overflow: hidden;
  z-index: 1;
}

/* New Image Layer sitting ABOVE the blue background */
.features-section-cty::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background-image: url('../../img_v2/background-section-image.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  
  /* Adjust this to make it "slightly visible" */
  opacity: 0.2; 
  
  /* Ensures it stays behind the text but above the blue base */
  z-index: -1; 
}

.container-cty {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Header ─────────────────────────────────────────────────── */
.section-header-features {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-underline-features {
  width: 100px;
  height: 5px;
  background: var(--white);
  border-radius: 5px;
  margin: 0 auto;
  position: relative;
}

.header-underline-features::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
}

/* ── Features Grid ──────────────────────────────────────────── */
.features-grid-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Feature Card ───────────────────────────────────────────── */
.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(1.8rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  animation: cardFadeIn 0.6s ease forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.05s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.15s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.25s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.35s;
}
.feature-card:nth-child(5) {
  animation-delay: 0.45s;
}
.feature-card:nth-child(6) {
  animation-delay: 0.55s;
}
.feature-card:nth-child(7) {
  animation-delay: 0.65s;
}
.feature-card:nth-child(8) {
  animation-delay: 0.75s;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

/* ── Icon ───────────────────────────────────────────────────── */
.feature-icon-why {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(33, 150, 243, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* ── Text ───────────────────────────────────────────────────── */
.feature-card h3 {
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 500;
  color: #1e5a8c;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

/* ── Responsive Adjustments ────────────────────────────────── */
@media (min-width: 640px) and (max-width: 899px) {
  .features-grid-why {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features-grid-why {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 639px) {
  .features-grid-why {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .feature-card h3 {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
    color: #1f7dc0;
    line-height: 1.4;
    letter-spacing: -0.2px;
  }
}

/* ── Strategic Partners Section ────────────────────────────── */
.partners-section {
  background: var(--bg-light);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 4vw, 2.5rem);
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ─────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Partner Logos Grid ─────────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-logo {
  opacity: 0;
  animation: logoFadeIn 0.6s ease forwards;
  transition: transform 0.3s ease;
}

.partner-logo:nth-child(1) {
  animation-delay: 0.1s;
}
.partner-logo:nth-child(2) {
  animation-delay: 0.2s;
}
.partner-logo:nth-child(3) {
  animation-delay: 0.3s;
}
.partner-logo:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.partner-logo:hover {
  transform: scale(1.08);
}

.partner-logo img {
  max-width: 180px;
  height: auto;
  display: block;
}

/* ── Responsive Adjustments ────────────────────────────────── */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }

  .partner-logo img {
    max-width: 140px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .partners-grid {
    gap: 2rem 1.5rem;
  }

  .partner-logo img {
    max-width: 120px;
  }
}

/* ── Testimonials Section ───────────────────────────────────── */
.testimonials-section {
  padding: clamp(3rem, 6vw, 2rem) clamp(1.2rem, 4vw, 2.5rem);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Testimonials Grid ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

/* ── Testimonial Card ───────────────────────────────────────── */
.testimonial-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  height: 100%;
}

/* Speech bubble card */
.testimonial-card {
  position: relative;
  background: #1f7dc0;
  color: var(--white);
  border-radius: 20px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: 0 8px 30px rgba(74, 154, 218, 0.25);
  opacity: 0;
  animation: cardSlideUp 0.6s ease forwards;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  width: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.15s;
}
.testimonial-wrapper:nth-child(2) .testimonial-card {
  animation-delay: 0.3s;
}
.testimonial-wrapper:nth-child(3) .testimonial-card {
  animation-delay: 0.45s;
}

@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(74, 154, 218, 0.35);
}

/* Speech bubble tail */
.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid #1f7dc0;
}

/* ── Star Icon ──────────────────────────────────────────────── */
.testimonial-star {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* ── Quote Text ─────────────────────────────────────────────── */
.testimonial-quote {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 0;
}

/* ── Company Info (Below Card) ──────────────────────────────── */
.company-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 0.5rem;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.testimonial-wrapper:nth-child(1) .company-info {
  animation-delay: 0.35s;
}
.testimonial-wrapper:nth-child(2) .company-info {
  animation-delay: 0.5s;
}
.testimonial-wrapper:nth-child(3) .company-info {
  animation-delay: 0.65s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.company-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.company-logo img {
  max-width: 100%;
  height: auto;
}

.company-name {
  font-size: clamp(0.9rem, 1.7vw, 1rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ── Responsive Adjustments ────────────────────────────────── */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Start Terms and Conditions Page ====*/
.term-container {
  border-width: 1px;
  border-style: solid;
  border-color: #6dbe46;
  border-radius: 5px;
  padding: 20px;
  margin: 20px;
}
.term-header {
  color: #1f7dc0;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}
.term-content {
  font-size: 15px;
  color: #022247;
  line-height: 1.5;
}
/* ===== End Terms and Conditions Page ====*/

/* ===== Priicng Page =========*/
.payment-container {
    position: relative;
}

.payment-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    padding-left: 10px;
}

.payment-step-number {
    background-color: #e7f0ff;
    color: #0066ff;
    font-weight: bold;
    font-size: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
    position: relative;
}

.payment-step-number::after {
    content: "";
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 15px);
    background-color: #d0d8e5;
    z-index: 0;
}

.payment-step:last-child .payment-step-number::after {
    display: none;
}

.payment-step-content {
    z-index: 1;
}

.payment-step-content h3 {
    font-size: 18px;
    color: #0a0a0a;
    margin: 0 0 6px 0;
}

.payment-step-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.desktop-hide{
    display: block;
}

.mobile-hide{
    display: none;
}

.contact-icon{
    font-size: 16px;
    margin-bottom: 10px;
}

.pricing-mobile{
    display: block;
}

.pricing-mobile-only{
    display: none;
}

@media (max-width: 768px) {
    .payment-container {
        padding: 25px;
    }

    .payment-step-content h3 {
        font-size: 16px;
    }

    .payment-step-content p {
        font-size: 14px;
    }

    .container {
        flex-direction: column;
    }

    /* .left, .right {
        width: 100%;
        justify-content: center;
        align-items: center;
    } */

    .pricing-img {
        width: 100%;
        height: auto;
        margin-bottom: 20px !important;
    }

    .payment-container{
        padding: 0px;
    }

    .second-payment-img{
        display:none
    }

    .desktop-hide{
        display: none;
    }

    .mobile-hide{
        display: block;
    }

    .pricing-mobile{
        display: none;
    }

    .pricing-mobile-only{
        display: block;
        gap: 2px;
    }
}
