@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
  --blue:#008ac8; --blue-dark:#3d3d3d; --navy:#000000; --red:#dc2626;
  --text:#1f2937; --muted:#6b7280; --bg:#f7f9fc; --white:#fff; --border:#e5e7eb;
  --shadow:0 12px 32px rgba(3,28,67,.08);
  --radius:16px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:'Poppins',sans-serif;color:var(--text);background:var(--white)}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

/* NAV */
.nav{position:fixed;top:0;left:0;right:0;height:64px;background:#fff;box-shadow:0 2px 12px rgba(0,0,0,.06);z-index:100}
.nav__inner{max-width:1200px;margin:0 auto;height:64px;display:flex;align-items:center;justify-content:space-between;padding:0 20px}
.brand{font-weight:600;color:var(--navy);font-size:22px;letter-spacing:.2px}
.brand__accent{color:var(--red)}
.brand--white{color:#fff}
.nav__links{display:flex;gap:18px}
.nav__link{padding:8px 12px;border-radius:10px;color:var(--navy)}
.nav__link--cta{color:var(--navy)}
.nav__mobileBtn{display:none;border:0;background:transparent;font-size:22px;color:var(--navy)}
.nav__drawer{display:none;position:fixed;top:64px;left:0;right:0;background:#fff;border-top:1px solid var(--border)}
.nav__drawer a{display:block;padding:14px 20px;border-bottom:1px solid var(--border);color:var(--navy)}
@media (max-width:900px){.nav__links{display:none}.nav__mobileBtn{display:block}}
.hidden{display:none !important}
.logo-head{width: 100%; height: 30px;}
.nav__drawer a,.nav__drawer.open {
    display: block
}


/* =========================
   HERO SECTION
========================= */
.ml-hero {
  position: relative;
  min-height: 90vh;
  background-image: url("./images/home-banner-com-500.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding-top:70px ;
}

/* Overlay for text readability */
.ml-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 10, 30, 0.75) 0%,
    rgba(0, 10, 30, 0.55) 40%,
    rgba(0, 10, 30, 0.2) 70%,
    rgba(0, 10, 30, 0.05) 100%
  );
  z-index: 1;
}

/* Container */
.ml-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Left content */
.ml-hero-content {
  max-width: 620px;
}

/* Heading */
.ml-hero-content h1 {
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 22px;
  font-weight: 700;
}

.ml-hero-content h1 span {
  color: #6ee7ff;
  font-size: 30px;
}

/* Description */
.ml-hero-desc {
  font-size: 18px;
  line-height: 1.65;
  color: #e5e7eb;
  margin-bottom: 28px;
}

/* Bullet points */
.ml-hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ml-hero-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #f1f5f9;
}

.ml-hero-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-weight: bold;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 768px) {
  .ml-hero {
    min-height: 100vh;
    background-image: url("./images/home-banner-mobile-320.png");
    background-position: center top;
  }

  .ml-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 10, 30, 0.85) 0%,
      rgba(0, 10, 30, 0.7) 50%,
      rgba(0, 10, 30, 0.4) 100%
    );
  }

  .ml-hero-content {
    max-width: 100%;
  }

  .ml-hero-content h1 {
    font-size: 28px;
  }

  .ml-hero-desc {
    font-size: 16px;
  }

  .ml-hero-points li {
    font-size: 15px;
  }
}

/* marketing */

/* =========================
   MARKET UNDERSTANDING
========================= */
.market-section {
  padding: 40px 20px;
  background: #f8fafc;
}

.market-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.market-header {
  /* max-width: 720px; */
  margin-bottom: 60px;
  text-align: center;
}

.market-header h2 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #0f172a;
}

.market-header p {
  font-size: 18px;
  color: #475569;
}

/* Grid */
.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Cards */
.market-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.market-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #0f172a;
}

.market-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.market-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #334155;
}

.market-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #0068a4;
  font-size: 22px;
  line-height: 1;
}

/* Highlight card */
.market-card.highlight {
  background: linear-gradient(135deg, #ca2026, #3d3d3d);
  color: #ffffff;
}

.market-card.highlight h3 {
  color: #ffffff;
}

.market-card.highlight li {
  color: #e5f2ff;
}

.market-card.highlight li::before {
  color: #9ddcff;
}

/* Footer text */
/* .market-footer {
  max-width: 720px;
} */

.market-footer p {
  font-size: 17px;
  line-height: 1.6;
  color: #475569;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .market-section {
    padding: 60px 16px;
  }

  .market-header h2 {
    font-size: 24px;
  }

  .market-header p {
    font-size: 16px;
  }

  .market-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .market-card {
    padding: 28px;
  }

  .market-card h3 {
    font-size: 20px;
  }
}

/* readiness section */

/* =========================
   MARKET READINESS SECTION
========================= */
.readiness-section {
  padding: 40px 20px;
  background: #ffffff;
}

.readiness-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* Image */
.readiness-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  display: block;
}

/* Content */
.readiness-content h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 22px;
  color: #0f172a;
}

.readiness-content p {
  font-size: 17px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 18px;
}

.readiness-content .intro {
  font-weight: 500;
  color: #1e293b;
}

/* List */
.readiness-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 28px;
}

.readiness-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #334155;
}

.readiness-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #0068a4;
  font-weight: 600;
}

/* Closing line */
.readiness-content .closing {
  font-size: 17px;
  font-weight: 500;
  color: #0f172a;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .readiness-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .readiness-image {
    order: -1;
    text-align: center;
  }

  .readiness-image img {
    max-width: 320px;
    margin: auto;
  }

  .readiness-content h2 {
    font-size: 26px;
  }

  .readiness-content p {
    font-size: 15.5px;
  }
}

/* what we do */
/* =========================
   WHAT WE DO – SECTION
========================= */

.whatwedo-section {
  padding: 40px 20px;
  background: #fff8f8;
  overflow: hidden;
}

.whatwedo-section .container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.whatwedo-header {
  /* max-width: 760px; */
  margin-bottom: 60px;
  text-align: center;
}

.whatwedo-header h2 {
  font-size: 30px;
  color: #0f172a;
  margin-bottom: 14px;
}

.whatwedo-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

/* =========================
   DESKTOP GRID
========================= */

.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.whatwedo-card {
  background: #f8fafc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatwedo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* IMAGE */
.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.card-content {
  padding: 28px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0f172a;
}

.card-intro {
  font-size: 15px;
  margin-bottom: 10px;
  color: #0f172a;
}

.card-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 14px;
}

.card-content ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.card-content li {
  font-size: 14px;
  color: #334155;
  margin-bottom: 8px;
}

.card-closure {
  margin-top: 16px;
  font-size: 15px;
  color: #0f172a;
}

/* =========================
   MOBILE → HORIZONTAL SCROLL
========================= */

@media (max-width: 768px) {

  .whatwedo-header h2 {
    font-size: 24px;
  }

  .whatwedo-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;

    /* swipe UX */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .whatwedo-grid::-webkit-scrollbar {
    display: none;
  }

  .whatwedo-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
  .whatwedo-grid {
    padding-bottom: 22px; /* space for scrollbar */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #cbd5e1 transparent;
  }

  /* WebKit Scrollbar */
  .whatwedo-grid::-webkit-scrollbar {
    height: 6px;
  }

  .whatwedo-grid::-webkit-scrollbar-track {
    background: transparent;
    margin: 0 10%;
  }

  .whatwedo-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 20px;
  }

  .whatwedo-grid::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
  }

  /* Ensure cards snap cleanly */
  .whatwedo-card {
    scroll-snap-align: center;
  }
}


/* benifits */
.benefits-section {
  padding: 40px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.benefits-header {
  /* max-width: 720px; */
  margin-bottom: 60px;
  text-align: center;
}

.benefits-header h2 {
  font-size: 34px;
  margin: 10px 0 14px;
  color: #0f172a;
}

.benefits-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.benefit-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.1);
}

.benefit-card h3 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 15px;
  color: #475569;
  margin-bottom: 22px;
}

/* LIST */
.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
}

.benefit-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: #0068a4;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-header h2 {
    font-size: 28px;
  }
}

/* university logos */
 :root {
      --font-family: 'Poppins', sans-serif;
      --glass-bg: rgba(255, 255, 255, 0.15);
      --glass-border: rgba(255, 255, 255, 0.4);
      --shadow: rgba(0, 0, 0, 0.1);
    }
    *, *::before, *::after { box-sizing: border-box; }
   
    .partner-section {
      padding: 40px 20px;
      text-align: center;
      background: linear-gradient(135deg, #ca2026, #3d3d3d);
    
    }

    .journey-header-v2 {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.journey-subtitle-v2 {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0068a4;
    background: #dddddd;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.journey-header-v2 h2 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 12px;
    margin-top: 5px;
}

.journey-header-v2 p {
    color: #dddddd;
    font-size: 16px;
}

    .partner-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 14px;
    }

    .partner-header h2 {
      font-size: 30px;
      font-weight: 600;
      margin: 0;
      line-height: 1.2;
      flex: 1 1 auto;
      text-align: left;
      color: #fff;
      font-family: 'Poppins',sans-serif;
      
    }

    .partner-header .highlight {
      color: #0068a4;
      background: #fff;
      border-radius: 50px;
      padding: 0px 20px;
      line-height: 2
    }

    .partner-header p {
      font-size: 1rem;
      color: #e0e0e0;
      margin: 8px 0 0;
      flex-basis: 100%;
      text-align: left;
    }

    a button.cta-btn-desktop {
      background: #fff;
      color: #0068a4;
      border: none;
      border-radius: 4px;
      padding: 12px 28px;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s ease;
      white-space: nowrap;
      font-family: 'Poppins',sans-serif
    }
   a button.cta-btn {
      background: #fff;
      color: #0068a4;
      border: none;
      border-radius: 4px;
      padding: 12px 28px;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s ease;
      white-space: nowrap;
      font-family: 'Poppins',sans-serif
    }
a button.cta-btn:hover {
      background: #fff;
      color: #0068a4;
      font-weight: 600;

    
}

    a button.cta-btn-desktop:hover {
      background: #fff;
      color: #0068a4;
      font-weight: 600;
    }

    /* Slider wrapper */
    .slider {
      position: relative;
      overflow: hidden;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #ffffff00;
    }

    .slides {
      display: flex;
      animation: slide 9s infinite ease-in-out;
    }

    .slide {
      flex: 1 0 100%;
      padding: 40px 20px;
      background: var(--glass-bg);
     
      /*backdrop-filter: blur(12px);*/
      border-radius: 16px;
      box-shadow: 0 8px 32px var(--shadow);
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: repeat(3, auto);
      gap: 24px;
      justify-items: center;
      align-items: center;
    }

    .logo-grid img {
      max-height: 60px;
       filter: brightness(0) invert(1) drop-shadow(0 10px 4px rgba(0, 0, 0, 0.1));
      transition: transform 0.3s ease;
    }

    .logo-grid img:hover {
      transform: scale(1.1);
    }

    @keyframes slide {
      0%, 33.333%   { transform: translateX(0); }
      33.334%, 66.666% { transform: translateX(-100%); }
      66.667%, 100%  { transform: translateX(-200%); }
    }

    @media (max-width: 768px) {
      .partner-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .partner-header h2,
      .partner-header p {
        text-align: center;
      }

      .cta-btn-desktop {
        margin: 24px 0 0;
      }

      .slider {
        order: 1;
      }
    }

    @media (max-width: 768px) {
      .logo-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 20px;
      }

      .slide {
        padding: 30px 16px;
      }
    }

    @media (max-width: 480px) {
      .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 16px;
      }

      .logo-grid img:nth-child(n+9) {
        display: none;
      }

      .slide {
        padding: 20px 12px;
      }

      .partner-header h2 {
        font-size: 1.5rem;
      }

      .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
       
      }
      .cta-btn-desktop
      {
        display: none;
      }

      .partner-section {
        padding: 60px 15px;
      }
    }
    p.disc {
    font-size: 18px;
    color: #fff;
   }
   a.link {
    font-weight: 600;
    border-bottom: 1px solid;
}
.dot-partner
{
    width: 10px;
    height: 10px;
    margin-top: 8px;
    background: linear-gradient(135deg, #ffffff, #cdcecf);
    border-radius: 50%;
    flex-shrink: 0;
}
    /* === Mobile CTA Button Styles === */
.mobile-cta {
  display: none;
  text-align: center;
  margin-top: 24px;
}

.mobile-only-btn {
  background: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.mobile-only-btn:hover {
  background: #b22b2b;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
  }
}

/* ================= ENGAGEMENT STACK SECTION ================= */

.stack-scroll-section {
  background: #f8fafc;
  padding: 40px 20px 0px;
}

/* Wrapper controls flow — NO fixed height */
.stack-scroll-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 50px; /* space for last sticky card */
}

/* Sticky cards */
.stack-scroll-card {
  position: sticky;
  top: 120px;
  margin-bottom: 120px;
}

/* ================= CARD INNER ================= */

.stack-inner {
  background: #fff3f3;
  border-radius: 20px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.stack-inner-v {
  background: #ffececfd;
  border-radius: 20px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

/* ================= CONTENT ================= */

.stack-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.stack-text span {
  font-size: 14px;
  color: #64748b;
  display: block;
  margin-bottom: 16px;
}

.stack-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 16px;
}

.stack-text ul {
  padding-left: 18px;
  margin-bottom: 16px;
}

.stack-text ul li {
  font-size: 15px;
  margin-bottom: 8px;
}

.label {
  font-weight: 600;
}

.note {
  font-size: 14px;
  color: #475569;
}

.highlight {
  font-weight: 600;
}

/* ================= IMAGE ================= */

.stack-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;

  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.14),
    0 6px 14px rgba(15, 23, 42, 0.10);
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

  .stack-scroll-wrapper {
    padding-bottom: 0;
  }

  .stack-scroll-card {
    position: relative;
    top: auto;
    margin-bottom: 40px;
  }

  .stack-inner,
  .stack-inner-v {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .stack-image {
    order: -1;
    text-align: center;
  }

  .stack-image img {
    max-width: 280px;
  }
}

/* tabs */
.governance-tabs-section {
  padding: 40px 20px;
  background: #f8fafc;
}

.governance-tabs-section .container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.tabs-header {
  /* max-width: 720px; */
  margin-bottom: 60px;
  text-align: center;
}

.tabs-header h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.tabs-header p {
  color: #475569;
  font-size: 17px;
}

/* WRAPPER */
.tabs-wrapper {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* NAV */
.tabs-nav {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  background: #f1f5f9;
}

.tab-btn {
  flex: 1;
  padding: 18px 20px;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #334155;
  transition: background 0.3s ease, color 0.3s ease;
}

.tab-btn:hover {
  background: #e2e8f0;
}

.tab-btn.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: inset 0 -3px 0 #0068a4;
}

/* CONTENT */
.tabs-content {
  padding: 40px 50px;
}

.tab-panel {
  display: none;
  animation: fadeUp 0.4s ease;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.tab-panel p {
  color: #475569;
  margin-bottom: 18px;
  line-height: 1.7;
}

.tab-panel ul {
  margin: 20px 0;
  padding-left: 20px;
}

.tab-panel li {
  margin-bottom: 10px;
  color: #334155;
}

.emphasis {
  font-size: 18px;
  color: #0f172a;
}

.note {
  margin-top: 24px;
  font-style: italic;
  color: #475569;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .tabs-nav {
    flex-direction: column;
  }

  .tab-btn {
    text-align: left;
  }

  .tabs-content {
    padding: 30px 24px;
  }

  .tabs-header h2 {
    font-size: 24px;
  }
}

/* contact us */
/* ==============================
   MASCOT LEAGUE CONTACT SECTION
============================== */

.ml-contact-section {
  padding: 100px 20px;
  background: #f8fafc;
}

.ml-contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT INFO */
.ml-contact-info {
  padding-right: 40px;
}

.ml-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: #0f4c81;
  margin-bottom: 14px;
}

.ml-contact-info h2 {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #0f172a;
}

.ml-intro {
  font-size: 16px;
  color: #475569;
  margin-bottom: 26px;
  line-height: 1.7;
}

.ml-points {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}

.ml-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #334155;
}

.ml-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #0f4c81;
  font-weight: 600;
}

.ml-note {
  font-size: 14px;
  color: #475569;
  margin-bottom: 28px;
}

.ml-direct p {
  font-size: 14px;
  color: #334155;
  margin-bottom: 6px;
}

/* RIGHT FORM */
.ml-contact-form {
  background: #ffffff;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.ml-contact-form h3 {
  font-size: 22px;
  margin-bottom: 26px;
  color: #0f172a;
}

.ml-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ml-form-grid textarea {
  grid-column: span 2;
  min-height: 120px;
  resize: vertical;
}

.ml-form-grid input,
.ml-form-grid select,
.ml-form-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.ml-form-grid input:focus,
.ml-form-grid select:focus,
.ml-form-grid textarea:focus {
  border-color: #0f4c81;
}

.ml-submit-btn {
  margin-top: 28px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0f4c81, #082f4e);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ml-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15,76,129,0.3);
}

.ml-form-footnote {
  margin-top: 14px;
  font-size: 12px;
  color: #64748b;
  text-align: center;
}

/* ==============================
   MOBILE
============================== */

@media (max-width: 900px) {
  .ml-contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ml-contact-info {
    padding-right: 0;
  }

  .ml-contact-info h2 {
    font-size: 28px;
  }

  .ml-contact-form {
    padding: 36px 24px;
  }

  .ml-form-grid {
    grid-template-columns: 1fr;
  }

  .ml-form-grid textarea {
    grid-column: span 1;
  }
}

/* footer */
/* ================= FOOTER BASE ================= */
.tr-footer {
  background: radial-gradient(circle at top, #0f1b3a, #060b1f);
  padding: 80px 20px 30px;
  color: #cbd5e1;
}

.tr-footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= FOOTER CARDS ================= */
.tr-footer-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 28px;
  backdrop-filter: blur(6px);
}

.tr-footer-card h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  position: relative;
}

.tr-footer-card h4::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #38bdf8;
  display: block;
  margin-top: 8px;
}

/* ================= BRAND ================= */
.tr-brand img {
  max-width: 250px;
  margin-bottom: 16px;
}

.tr-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 20px;
}

.tr-socials {
  display: flex;
  gap: 14px;
}

.tr-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #0f172a;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tr-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.tr-socials a:hover {
  background: #ca20268e;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Mobile touch-friendly */
@media (max-width: 768px) {
  .tr-socials a {
    width: 42px;
    height: 42px;
  }

  .tr-socials svg {
    width: 20px;
    height: 20px;
  }
}

/* ================= CONTACT ================= */
.tr-contact {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.tr-contact li {
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ================= LINKS ================= */
.tr-links ul {
  list-style: none;
  padding: 0;
}

.tr-links ul li {
  margin-bottom: 10px;
}

.tr-links a {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tr-links a:hover {
  color: #ffffff;
}

/* ================= BOTTOM ================= */
.tr-footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #94a3b8;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .tr-footer-wrapper {
    grid-template-columns: 1fr;
  }

  .tr-footer {
    padding: 60px 20px 20px;
  }
}

/* cta */
/* =========================
   CTA SECTION
========================= */
.cta-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #ca202c, #3d3d3d);
  color: #ffffff;
  width: 80%;
  margin: 50px auto;
  border-radius: 30px;
}

.cta-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: #dbe5f0;
  max-width: 720px;
  margin: 0 auto 36px;
}

/* CTA Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary */
.cta-btn.primary {
  background: #ffffff;
  color: #0b1c33;
}

.cta-btn.primary:hover {
  background: #e6eef8;
  transform: translateY(-2px);
}

/* Secondary */
.cta-btn.secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
}

.cta-btn.secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 14px;
  }

  .cta-btn {
    justify-content: center;
    width: 100%;
  }
}

/* about us page */
.about-clean {
  background: #ffffff;
  padding: 60px 20px;
}

.about-clean-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* TEXT */
.about-clean-text h2 {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 28px;
}

.about-clean-text p {
  font-size: 18px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 20px;
  max-width: 620px;
}

/* POINTS */
.about-clean-points {
  margin-top: 28px;
  padding-left: 18px;
}

.about-clean-points li {
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 10px;
}

/* IMAGE */
.about-clean-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-clean {
    padding: 70px 18px;
  }

  .about-clean-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* 👇 THIS IS THE KEY FIX */
  .about-clean-image {
    order: -1; /* moves image to top */
  }

  .about-clean-text h2 {
    font-size: 24px;
  }

  .about-clean-text p {
    font-size: 16px;
  }
}

/* vision, mission & Root */
.identity-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f5dcdc 100%);
  padding: 40px 20px;
}

.identity-container {
  max-width: 1200px;
  margin: 0 auto;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.identity-card {
  background: #ffffff;
  padding: 44px 36px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.identity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}

/* FEATURED (VISION) */
.identity-card.featured {
  background: linear-gradient(135deg, #ca2026, #3d3d3d);
  color: #ffffff;
}

.identity-card.featured p {
  color: #e2e8f0;
}

/* LABEL */
.identity-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ca2026;
  margin-bottom: 14px;
}

.identity-card.nav__inner{
  color: #ffffff;
}


.identity-card.featured .identity-label {
  color: #ffffff;
}

/* HEADINGS */
.identity-card h3 {
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 18px;
  color: #0f172a;
  margin-top: 0px;
}

.identity-card.featured h3 {
  color: #ffffff;
}

/* TEXT */
.identity-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 14px;
  margin-top: 0px;
}

/* MOBILE */
@media (max-width: 900px) {
  .identity-section {
    padding: 70px 18px;
  }

  .identity-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .identity-card {
    padding: 34px 26px;
  }

  .identity-card h3 {
    font-size: 20px;
  }
}

/* cards */
.principles-section {
  background: #e9f1fa;
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.section-header.center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-size: 30px;
  margin-bottom: 12px;
  color: #0f172a;
}

.section-header p {
  font-size: 16px;
  color: #475569;
}

/* PRINCIPLES GRID */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.principle-card {
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;

}

.principle-card:hover {
  transform: translateY(-6px);
}

.principle-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.principle-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* DIVIDER */
.section-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 80px 0;
}

/* PARTNERS */
.partners-section {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  align-items: flex-start;
}

.partners-left h2 {
  font-size: 30px;
  margin-bottom: 12px;
  color: #0f172a;
}

.partners-left p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.partners-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.partner-item {
  background: #ffffff;
  padding: 26px 28px;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.partner-item h4 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #0f172a;
}

.partner-item p {
  font-size: 15px;
  color: #475569;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .principles-section {
    padding: 70px 18px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }
  .principle-card
  {
    padding: 15px 20px;
    text-align: center;
  }
}

/* who we work with */
.who-we-work {
  background: #ffffff;
  padding: 40px 20px;
}

.who-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.who-header h2 {
  font-size: 30px;
  color: #0f172a;
  margin-bottom: 12px;
}

.who-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 48px;
}

.who-card {
  padding: 5px 32px;
  margin-bottom: 24px;
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.who-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 8px;
  margin-top: 5px;
}

.who-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.who-card:hover {
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* RIGHT IMAGE */
.who-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 900px) {
  .who-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .who-image {
    order: -1;
  }

  .who-header h2 {
    font-size: 24px;
  }
}

/* linkdin */

/* =========================
   TEAM SECTION
========================= */

.team-section {
  background: #f8efeff3;
  padding: 40px 20px;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.team-intro {
  /* max-width: 720px; */
  margin-bottom: 25px;
  text-align: center;
}

.team-intro h2 {
  font-size: 30px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 18px;
}

.team-intro p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* CARD */
.team-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
}

.team-card:hover {
  transform: translateY(-6px) scale(1.03);
}

/* IMAGE */
.team-photo {
  width: 180px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.team-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.team-info a {
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.team-info a:hover {
  color: #0068a4;
  border-color: #0068a4;
}

.team-info p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-top: 10px;
}

i.ceo-icon {
    color: #ffffff;
    background-color: #ca202659;
    padding: 15px;
    border-radius: 100px;
    font-size: 24px;
}

i.ceo-icon:hover {
    background-color: #f2f2f2;
    color: #008ac8;
}
.social-link a {
    border-bottom: none;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .team-intro h2 {
    font-size: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-card {
    gap: 20px;
  }

  .team-photo {
    width: 140px;
    height: 190px;
  }
  .team-info {
    text-align: center;
}
}

@media (max-width: 600px) {

  .team-card {
    flex-direction: column;
  }

  .team-photo {
    width: 100%;
    height: 330px;
  }

  .team-info h3 {
    font-size: 18px;
  }

  .team-info p {
    font-size: 14.5px;
  }
  .team-info {
    text-align: center;
}
}

/* about cta */
/* =========================
   ABOUT CTA
========================= */

.about-cta {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* CTA Container */
.cta-block-container {
  max-width: 1200px;
  width: 100%;
  background: linear-gradient(135deg, #ca2026 0%, #3d3d3d 100%);
  border-radius: 18px;

  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;

  padding: 50px 60px;
  color: #ffffff;
  gap: 40px;
}

/* LEFT CONTENT */
.cta-block-left h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 18px;
}

.cta-block-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: #f1f5f9;
}

/* BUTTON */
.cta-btn-wrap {
  display: inline-block;
}

.cta-block-button {
  background-color: #ffffff;
  color: #ca2026;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-block-button:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RIGHT IMAGE */
.cta-block-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-block-right img {
  max-width: 100%;
  width: 340px;
  height: auto;
  opacity: 0.95;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .cta-block-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .cta-block-left h2 {
    font-size: 26px;
  }

  .cta-block-right {
    margin-top: 20px;
  }

  .cta-block-right img {
    width: 260px;
  }
}

/* service page */
/* ================================
   MODERN ICR SECTION
================================ */
.icr-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 90px 20px;
}

.icr-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================
   HEADER
================================ */
.icr-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.icr-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}

.icr-header h2 span {
  color: #ca2026;
}

.icr-header p {
  font-size: 18px;
  line-height: 1.75;
  color: #475569;
}

/* ================================
   GRID
================================ */
.icr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ================================
   CARD
================================ */
.icr-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 15px 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.35s ease;
  text-align: center;
  justify-items: center;
  align-content: center;
}

/* gradient hover border */
.icr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #ca2026, #f97316);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.icr-card:hover::before {
  opacity: 1;
}

.icr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

/* ================================
   ICON
================================ */
.icr-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(202, 32, 38, 0.08);
  color: #ca2026;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.icr-card:hover .icr-icon {
  background: #ca2026;
  color: #ffffff;
  transform: scale(1.12);
}

/* ================================
   TEXT
================================ */
.icr-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
}

.icr-card p {
  font-size: 15.8px;
  line-height: 1.75;
  color: #475569;
}

/* ================================
   FEATURE CARD (LAST)
================================ */
.icr-card-wide {
  grid-column: span 3;
}

/* ================================
   TABLET
================================ */
@media (max-width: 992px) {
  .icr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .icr-card-wide {
    grid-column: span 2;
  }
}

/* ================================
   MOBILE
================================ */
@media (max-width: 600px) {
  .icr-section {
    padding: 65px 16px;
  }

  .icr-header h2 {
    font-size: 26px;
  }

  .icr-header p {
    font-size: 16px;
  }

  .icr-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .icr-card {
    padding: 28px 24px;
  }

  .icr-card-wide {
    grid-column: span 1;
  }
}

/* tab-service */
/* SECTION */
.promo-tabs-section {
  padding: 40px 20px;
  background: #f8fafc;
}

.promo-tabs-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.promo-tabs-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.promo-tabs-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.promo-tabs-header p {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
}

/* TABS */
.promo-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.promo-tab {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.promo-tab i {
  color: #ca2026;
}

.promo-tab.active {
  background: #ca2026;
  color: #ffffff;
  border-color: #ca2026;
}

.promo-tab.active i {
  color: #ffffff;
}

/* TAB CONTENT */
.promo-tab-content {
  display: none;
}

.promo-tab-content.active {
  display: block;
}

/* GRID */
.promo-tab-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* INFO */
.promo-tab-info h3 {
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 16px;
}

.promo-tab-info p {
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 22px;
}

.promo-tab-info ul {
  list-style: none;
  padding: 0;
}

.promo-tab-info li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-tab-info li i {
  color: #22c55e;
}

/* VECTOR IMAGE */
.promo-tab-image img {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .promo-tab-grid {
    grid-template-columns: 1fr;
  }

  .promo-tab-image {
    order: -1;
    text-align: center;
  }

  .promo-tab-image img {
    margin: 0 auto 20px;
  }
}

@media (max-width: 600px) {
  .promo-tabs-header h2 {
    font-size: 26px;
  }

  .promo-tab-info h3 {
    font-size: 22px;
  }
}


/* form */
/* ================================
   CONSULTATION FORM – FULL CSS
================================ */

/* SECTION */
.consult-section {
  padding: 80px 20px;
  background: #f8fafc;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.consult-wrapper {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT INFO BLOCK */
.consult-info {
  background: linear-gradient(135deg, #ca2026, #3d3d3d);
  color: #ffffff;
  border-radius: 18px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.consult-info h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.consult-info p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
}

.consult-info-box {
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 24px;
  margin-top: 15px;
}

.consult-info-box h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.consult-info-box span {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

/* SOCIALS */
.consult-socials {
  margin-top: 30px;
  display: flex;
  gap: 14px;
}

.consult-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.consult-socials a:hover {
  background: #ffffff;
  color: #0b5ed7;
}

/* RIGHT FORM CARD */
.consult-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* FORM TITLE */
.consult-form h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0f172a;
}

/* FIELD WRAPPER */
.field {
  margin-bottom: 18px;
  position: relative;
}

/* INPUTS */
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  font-size: 15px;
  transition: all 0.25s ease;
  background: #ffffff;
}

.field textarea {
  resize: none;
  min-height: 110px;
}

/* FOCUS */
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

/* ERROR STATE */
.field.error input,
.field.error textarea,
.field.error select {
  border-color: #dc2626;
  background: #fff5f5;
}

.field .error {
  font-size: 13px;
  color: #dc2626;
  margin-top: 6px;
  display: none;
}

.field.error .error {
  display: block;
}

/* SUCCESS STATE */
.field.success input,
.field.success textarea,
.field.success select {
  border-color: #16a34a;
  background: #f0fdf4;
}

/* SHAKE ANIMATION */
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-4px); }
  100% { transform: translateX(0); }
}

.field.shake {
  animation: shake 0.3s;
}

/* BUTTON */
.consult-form button {
  width: 100%;
  background: linear-gradient(135deg, #0b5ed7, #084298);
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.consult-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11,94,215,0.35);
}

/* BUTTON DISABLED */
.consult-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* PRIVACY NOTE */
.form-note {
  text-align: center;
  font-size: 13px;
  color: #64748b;
  margin-top: 14px;
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 900px) {
  .consult-wrapper {
    grid-template-columns: 1fr;
  }

  .consult-info {
    padding: 40px 30px;
  }

  .consult-form {
    padding: 40px 30px;
  }

  .consult-info h2 {
    font-size: 26px;
  }
}

@media (max-width: 520px) {
  .consult-info,
  .consult-form {
    padding: 30px 22px;
  }

  .consult-form h3 {
    font-size: 22px;
  }

  .consult-info h2 {
    font-size: 22px;
  }
}
