@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ---------- Base ---------- */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif !important;
    background: #fff;
    color: var(--text-dark);
}


/* ------------------------
   Banner Layout
------------------------- */
.layout-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-wrapper {
  width: 100%;
  /* padding-bottom: 1.25rem;  */
}

/* ------------------------
   Hero Section
------------------------- */
.hero-section {
  width: 100%;
  background-color: #ffffff;
  padding-bottom: 0rem; /* pb-8 */
}

.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuDyl80F4b5SaN_nFU7FPjgwv-B1qQicz0rFTvNzfjLO1m8wtCjv6UUDhXbhjGFrwIbOj9_sgUM19C0jMFfgOYvpBjlOcuHsZYkgreqJjdFdsOGuMncOSfRpp_oy0KdN2VsE8W6YQOwXaIoKZqc9uhunm0ztnmdi70WJkDNEHsZTeiAYkyc0KtoZZQ4H-6P1rNhOZ45IEM0xGkJzZ89tGnc8eSIceSEYGIGQ4adbhUO1q3tMcZ5E95vxcdenlKrnK_IrmD_NmJYePsss");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Poppins';
}

/* ------------------------
   Hero Content
------------------------- */
.hero-content {
  /* max-width: 1200px; */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-title {
  color: #ffffff;
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700; /* font-black */
  line-height: 1.2;
  letter-spacing: -0.010em;
  font-family: 'Poppins';
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Poppins';
}

/* ------------------------
   Actions / Buttons
------------------------- */
.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn {
  height: 3rem; /* h-12 */
  padding: 0 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: 'Poppins';
}

.btn-secondary {
  background-color: #c2272d;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ------------------------
   Responsive Breakpoints
------------------------- */
@media (min-width: 768px) {
  .hero-banner {
    min-height: 420px;
  }

  .hero-title {
    font-size: 3rem; /* text-5xl */
  }

  .hero-subtitle {
    font-size: 1.125rem; /* text-lg */
  }
}

/* --------------------
   Section Wrapper
--------------------- */
.ecosystem-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1200px;
}

/* --------------------
   Header
--------------------- */
.ecosystem-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  align-items: center;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background-color: #ffe8e9;
  color: #c2272d;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Poppins';
}

.ecosystem-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-family: 'Poppins';
  margin-bottom: 0;
}

.ecosystem-description {
  font-size: 1rem;
  color: #617589;
  max-width: 700px;
  font-family: 'Poppins';
}

/* --------------------
   Content
--------------------- */
.ecosystem-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ecosystem-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Poppins';
  color: #525252;
}

/* --------------------
   Grid
--------------------- */
.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* --------------------
   Cards
--------------------- */
.ecosystem-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #dbe0e6;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.ecosystem-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon {
  margin-top: 0.25rem;
  color: #c2272d;
}

.icon .material-symbols-outlined {
  font-size: 32px;
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Poppins';
  color: #636363;
}

.card-text p {
  font-size: 0.875rem;
  color: #617589;
  font-family: 'Poppins';
}

/* --------------------
   Responsive
--------------------- */
@media (min-width: 768px) {
  .ecosystem-title {
    font-size: 2rem; /* text-4xl */
  }

  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ecosystem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* -------------------------
   Vision Mission Section
-------------------------- */
.vision-section {
  position: relative;
  padding: 5rem 1rem;
  background: linear-gradient(
    to bottom right,
    #ffe8e9,
    rgba(37, 99, 235, 0.2)
  );
  overflow: hidden;
}

.vision-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

/* -------------------------
   Container
-------------------------- */
.vision-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.6rem;
  text-align: center;
}

/* -------------------------
   Header
-------------------------- */
.vision-header {
  max-width: 80rem;
}

.vision-header h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-family: 'Poppins';
}

.vision-header p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #617589;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Poppins';
}

/* -------------------------
   Grid
-------------------------- */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 72rem;
}

/* -------------------------
   Card
-------------------------- */
.vision-card {
  position: relative;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vision-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Poppins';
  color: #525252;
}

.vision-card p {
  color: #617589;
  line-height: 1.7;
  font-size: 0.88rem;
  font-family: 'Poppins';
}

/* -------------------------
   Icon
-------------------------- */
.vision-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #ffe8e9;
  color: #c2272d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.vision-icon span {
  font-size: 2.25rem;
}

/* -------------------------
   Pointer (diamond)
-------------------------- */
.card-pointer {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 1rem;
  height: 1rem;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

/* -------------------------
   Responsive
-------------------------- */
@media (min-width: 768px) {
  .vision-header h2 {
    font-size: 2rem;
  }

  .vision-header p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .vision-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-pointer {
    display: block;
  }
}

@media only screen and (min-width: 320px) and (max-width: 567px) {
  .vision-container {
    padding: 0rem;  
  }
}
/* --------------------
   Grid Layout
--------------------- */
.learning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
}

/* --------------------
   Card
--------------------- */
.learning-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #dbe0e6;
  background-color: #ffffff;
}

/* --------------------
   Image
--------------------- */
.card-image {
  height: 12rem; /* h-48 */
  background-size: cover;
  background-position: center;
}

/* --------------------
   Body
--------------------- */
.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

/* --------------------
   Tag
--------------------- */
.card-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #c2272d;
}

.card-tag span:last-child {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Poppins';
}

/* --------------------
   Typography
--------------------- */
.card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Poppins';
  color: #525252;
}

.card-body p {
  font-size: 0.875rem;
  color: #617589;
  margin-bottom: 1rem;
  font-family: 'Poppins';
}

/* --------------------
   Button Link
--------------------- */
.card-link {
  margin-top: auto;
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  color: #c2272d;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins';
}

.card-link:hover {
  text-decoration: underline;
}

/* --------------------
   Responsive
--------------------- */
@media (min-width: 768px) {
  .learning-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* -------- Root Variables -------- */
:root {
    --primary: #c2272d;
    --text-dark: #111418;
    --text-muted: #617589;
    --bg-light: #f9fafb;
    --border-light: #e5e7eb;
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1),
                 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.226);
}

/* -------- Section -------- */
.solutions-section {
    background: #ffffff;
    padding: 4rem 0;
}

/* -------- Container -------- */
.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* -------- Header -------- */
.solutions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Poppins';
}

.solutions-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 48rem;
    margin: 0 auto;
    font-family: 'Poppins';
}

/* -------- Grid -------- */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* -------- Cards -------- */
.solution-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
    border: 1.9px solid var(--primary);
}

.solution-card:hover .solution-heading {
    color: #c2272d !important;
}
/* -------- Icon -------- */
.solution-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background: #ffe8e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.solution-icon span {
    font-size: 2.25rem;
}

/* -------- Content -------- */
.solution-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.solution-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #525252;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Poppins';
}

.solution-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-family: 'Poppins';
}

/* -------- List -------- */
.solution-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    font-family: 'Poppins';
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.check-icon {
    color: var(--primary);
    font-size: 1.25rem;
}

/* -------- Responsive -------- */
@media (min-width: 768px) {
    .solutions-container {
        padding: 0 6.5rem;
    }

    .solutions-title {
        font-size: 2rem;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* -------- Dark Mode Hook -------- */
/* .dark .solutions-section {
    background: #0f172a;
}

.dark .solution-card {
    background: #1a2632;
    border-color: #374151;
}

.dark .solutions-title,
.dark .solution-heading {
    color: #ffffff;
}

.dark .solutions-subtitle,
.dark .solution-text,
.dark .solution-list li {
    color: #9ca3af;
} */

/* ---------------- Root Variables ---------------- */
:root {
    --brand-primary: #c2272d;
    --light-gray: #f1f5f9;
    --border-light: #e5e7eb;
    --border-dark: #334155;
    --text-dark: #0f172a;
    --text-light: #ffffff;
    --medium-gray: #475569;
}

/* ---------------- Section ---------------- */
.tablet-section {
    width: 100%;
    padding: 4rem 1rem;
    /* background: var(--light-gray); */
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

/* ---------------- Container ---------------- */
.tablet-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

/* ---------------- Image Column ---------------- */
.tablet-image-wrapper {
    position: relative;
    order: 2;
}

.tablet-image-wrapper:hover .tablet-glow {
    opacity: 0.75;
}

.tablet-glow {
    position: absolute;
    inset: -1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    filter: blur(64px);
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.tablet-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    overflow: hidden;
    border: 4px solid #ffffff;
    /* box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); */
    /* background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuAp3wWhfyXbbp0uUboOTHkvYgGzUlk9XT9AZQrhjB6E2ODF7o0bnx2u9cIIgVI8bGLt58jjS61vMRTiT_D-hR9IlNrecKV9LeFQqr5OE6INCdHD4k9p2BF9HQcDuIKMnemYRz9CTslGXEP6ee973sYi-e9y6hosBCbtIayoJdsq0itORazBsT7aA8KCyd142HJd3mfwbYszcODmDTlRngYB9sTA93pRtRLjA1CklewcxeRH6Ve_VX7vusOGL_FtcEsN_Mjad7czDIiN"); */
    background-image: url("../img/black-tab.jpeg");
    background-size: cover;
    background-position: center;
}

/* ---------------- Content ---------------- */
.tablet-content {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Badge */
.tablet-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: #ffe8e9;
    color: var(--brand-primary);
    width: fit-content;
}

.badge-icon {
    font-size: 0.875rem;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-family: 'Poppins';
}

/* Title & Text */
.tablet-title {
    font-size: 1.875rem;
    font-weight: 700;
    font-family: 'Poppins';
    color: var(--text-dark);
}

.tablet-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* ---------------- Features ---------------- */
.tablet-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.feature {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    min-width: 1.5rem;
    margin-top: 0.25rem;
    color: var(--brand-primary);
}

.feature h4 {
    color: #525252;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Poppins';
}

.feature p {
    font-size: 0.875rem;
    font-family: 'Poppins';
    color: var(--medium-gray);
}

/* ---------------- CTA ---------------- */
.tablet-cta {
    padding-top: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--brand-primary);
    font-weight: 600;
    cursor: pointer;
    transition: gap 0.3s ease;
}

.cta-button:hover {
    gap: 0.75rem;
}

/* ---------------- Responsive ---------------- */
@media (min-width: 768px) {
    .tablet-section {
        padding: 5rem 1rem;
    }

    .tablet-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .tablet-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .tablet-image-wrapper {
        order: 1;
    }

    .tablet-content {
        order: 2;
    }
}

/* ---------------- Dark Mode ---------------- */
/* .dark .tablet-section {
    background: #1A2A40;
    border-color: var(--border-dark);
}

.dark .tablet-image {
    border-color: var(--border-dark);
}

.dark .tablet-title,
.dark .feature h4 {
    color: var(--text-light);
}

.dark .tablet-description,
.dark .feature p {
    color: #d1d5db;
} */
