/* ===============================
   SERVICE PAGE
================================ */
.enterprise-section {
  background: #ffffff;
}

/* ===============================
   CONTAINER
================================ */
.enterprise-container {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 72px;
}

/* ===============================
   CONTENT
================================ */
.enterprise-content {
  max-width: 640px;
}

.enterprise-heading {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  color: #000;
  margin-bottom: 20px;
}

.enterprise-heading .highlight {
  color: var(--primary);
}

.enterprise-subheading {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.enterprise-description {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  max-width: 520px;
  margin-bottom: 36px;
}

/* ===============================
   BUTTONS
================================ */
.enterprise-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.enterprise-buttons button {
  width: 190px;
  height: 44px;
  padding: 12px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ===============================
   IMAGE
================================ */
.enterprise-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  border-bottom: 4px solid var(--primary-dark);
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .enterprise-section {
    padding: 64px 16px;
  }

  .enterprise-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .enterprise-image {
    order: -1;
  }

  .enterprise-heading {
    font-size: 32px;
    line-height: 1.2;
  }

  .enterprise-subheading {
    font-size: 14px;
  }

  .enterprise-description {
    font-size: 14px;
  }

  .enterprise-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .enterprise-buttons button {
    width: 100%;
  }
}

/* game changer section  */

/* ===============================
   SECTION
================================ */
.ai-bank-section {
  background: var(--bg-page);
}

/* ===============================
   CONTAINER
================================ */
.ai-bank-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ===============================
   HEADER
================================ */
.ai-bank-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--primary-dark);
  border: 1px solid var(--border-soft);
  margin-bottom: 16px;
}

.ai-bank-title {
  font-size: var(--h2);
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.ai-bank-subtitle {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: var(--text);
  line-height: 1.6;
  color: #6b7280;
}

/* ===============================
   FEATURES
================================ */
.ai-bank-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 20px;
  background: #f8fafc;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.feature-icon {
  color: var(--primary);
}

/* ===============================
   VIDEO
================================ */
.ai-bank-video {
  display: flex;
  justify-content: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  max-width: 1020px;
  height: 440px;
  aspect-ratio: 16 / 9;

  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.thumbnail {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.video-wrapper:hover .thumbnail {
  transform: scale(1.02); /* Slight zoom effect on hover */
}
/* The Iframe styling */
iframe {
  width: 100%;

  aspect-ratio: 16 / 9;
  border: none;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .ai-bank-section {
    padding: 64px 16px;
  }

  .ai-bank-title {
    font-size: 28px;
  }

  .ai-bank-subtitle {
    font-size: 14px;
  }

  .ai-bank-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .feature-pill {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .video-wrapper {
    height: 255px;
  }
}

/* certificates */
.certificate-header {
  margin-bottom: 0px !important;
}
.certificates img {
  width: 80%;
  min-width: 320px;
  border-radius: 5px;
  box-shadow: 0px 5px 8px 2px #00000038;
  margin-top: 30px;
}
/* why us section  */

/* ===============================
   SECTION
================================ */
.why-choose-section {
  background: var(--bg-page);
  padding: 81px 16px;
}

/* ===============================
   CONTAINER
================================ */
.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===============================
   HEADER
================================ */
.why-choose-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-choose-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--primary-dark);
  border: 1px solid var(--border-soft);
  margin-bottom: 16px;
}

.why-choose-title {
  font-size: var(--h2);
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.why-choose-subtitle {
  font-size: var(--text);
  color: #6b7280;
}

/* ===============================
   CARDS (DESKTOP)
================================ */
.why-choose-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===============================
   CARD
================================ */
.why-card {
  background: var(--bg-section);
  border-radius: 12px;
  padding: 28px 24px;
  /* box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06); */
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon img {
  width: 20px;
  height: 20px;
}

.why-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.why-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

/* ===============================
   MOBILE — CSS CAROUSEL
================================ */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 64px 16px;
  }

  .why-choose-title {
    font-size: 28px;
  }

  .why-choose-subtitle {
    font-size: 14px;
  }

  .why-choose-cards {
    display: flex;
    gap: 16px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;

    padding-bottom: 12px;
  }

  .why-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  /* Hide scrollbar */
  .why-choose-cards::-webkit-scrollbar {
    display: none;
  }

  .why-choose-cards {
    scrollbar-width: none;
  }
}
/* ===============================
   DOTS (MOBILE ONLY)
================================ */
.why-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.why-dot {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.why-dot.active {
  width: 28px;
  background: rgba(20, 184, 166, 0.2);
}

.why-dot-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--primary);
  border-radius: 999px;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .why-dots {
    display: flex;
  }
}

/* About section  */

/* ===============================
   SECTION
================================ */
.about-octacore-section {
  padding: 81px 16px;
  background: #ffffff;
}

.about-octacore-container {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

/* ===============================
   LEFT CONTENT
================================ */
.about-octacore-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}

.about-octacore-title {
  font-size: var(--h2);
  margin-bottom: 24px;
}

.about-octacore-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.about-octacore-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 14px;
}

.about-octacore-list strong {
  color: #0f172a;
}

/* ===============================
   MOBILE — STACKED IMAGES
================================ */
@media (max-width: 768px) {
  .about-octacore-section {
    padding: 64px 16px;
  }

  .about-octacore-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .image-card {
    position: absolute;
    inset: 0;
  }

  /* Only top image visible */
  .img-1 {
    z-index: 4;
  }

  .img-2,
  .img-3,
  .img-4 {
    display: none;
  }

  .about-octacore-title {
    font-size: 28px;
  }

  .about-octacore-list li {
    font-size: 14px;
  }
}
/* ===============================
   DESKTOP STAGGERED GRID
================================ */
.staggered-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Columns */
.grid-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 👇 This creates the stagger */
.grid-col-right {
  margin-top: 48px; /* key offset */
}

/* Image cards */
.image-card {
  border-radius: 16px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ===============================
   MOBILE — STACKED, SINGLE IMAGE
================================ */
@media (max-width: 768px) {
  .staggered-image-grid {
    position: relative;
    display: block;
    height: 220px;
  }
  .about-octacore-images {
    order: -1;
    display: block;
    position: relative;
    height: 220px;
  }
  .grid-col {
    position: absolute;
    inset: 0;
  }

  .grid-col-right {
    margin-top: 0;
  }

  /* Hide all images except first */
  .image-card {
    position: absolute;
    inset: 0;
  }

  .grid-col-left .image-card:first-child {
    z-index: 2;
  }

  .grid-col-left .image-card:not(:first-child),
  .grid-col-right {
    display: none;
  }
}

/* ===============================
   STATS SECTION
================================ */
.about-stats-section {
  margin-top: 64px;
}

/* ===============================
   DESKTOP GRID
================================ */
.about-stats-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===============================
   CARD
================================ */
.about-stat-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;

  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.about-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-stat-text {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* ===============================
   MOBILE — CAROUSEL
================================ */
@media (max-width: 768px) {
  .about-stats-track {
    display: flex;
    gap: 16px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .about-stat-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  /* Hide scrollbar */
  .about-stats-track::-webkit-scrollbar {
    display: none;
  }

  .about-stats-track {
    scrollbar-width: none;
  }
}

/* ===============================
   Testimonials SECTION
================================ */
.testimonials-section {
  background: var(--bg-page);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===============================
   HEADER
================================ */
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--primary-dark);
  border: 1px solid var(--border-soft);
  margin-bottom: 16px;
}

.testimonials-title {
  font-size: var(--h2);
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.testimonials-subtitle {
  font-size: var(--text);
  color: #6b7280;
  max-width: 720px;
  margin: 0 auto;
}

/* ===============================
   DESKTOP GRID
================================ */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===============================
   CARD
================================ */
.testimonial-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars img {
  width: 18px;
  height: 18px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 32px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user strong {
  font-size: 14px;
  color: #0f172a;
}

.testimonial-user p {
  font-size: 13px;
  line-height: -12px;
  color: #64748b;
}

/* ===============================
   MOBILE — CAROUSEL
================================ */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 64px 16px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-subtitle {
    font-size: 14px;
  }

  .testimonials-track {
    display: flex;
    gap: 16px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .testimonials-track::-webkit-scrollbar {
    display: none;
  }

  .testimonials-track {
    scrollbar-width: none;
  }
}
