:root{
      --blue: #2f54a3;
      --white: #ffffff;
      --border: #e6e6e6;
      --container-w: 1200px;
    }

    *{box-sizing:border-box}
    body{margin:0;font-family:"Inter",system-ui;color:#111827;background:#fff}

    a{text-decoration:none;color:inherit}

    /* Use Bootstrap container width by default, but keep your .container for non-bootstrap consumers */
    .container{
      width:90%;max-width:var(--container-w);
      margin:0 auto;display:flex;align-items:center;justify-content:space-between;
    }


/* -----------------------------
   HEADER WRAPPER
----------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

/* -----------------------------
   TOP STRIP
----------------------------- */
/* -----------------------------
   TOP STRIP (YOUR EXISTING CSS)
----------------------------- */
.top-strip {
    background: var(--blue);
    color: #fff;
    padding: 6px 0;
    font-size: 14px;
}

.top-strip .item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-pill {
    background: #fff;
    color: var(--blue);
    padding: 6px 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
}




@media (max-width: 768px) {

    /* Make container a single horizontal row */
    .top-strip .container {
        display: flex;
        flex-wrap: nowrap !important;     /* NO WRAP */
        overflow-x: auto;                 /* If too long, scroll*/
        white-space: nowrap;
        gap: 18px;                        /* Space between sections */
        padding: 4px 8px;
    }

    /* Left (phone + email) stays horizontal */
    .top-strip .left {
        display: flex;
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 14px;
    }

    /* Right (Join us + WhatsApp) also stays horizontal */
    .top-strip .right {
        display: flex;
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 8px;
    }

    .top-strip small,
    .wa-pill {
        white-space: nowrap;
    }

    /* Slightly reduce WhatsApp pill padding on mobile */
    .wa-pill {
        padding: 4px 10px;
        font-size: 12px;
    }
}



/* -----------------------------
   MAIN NAVBAR
----------------------------- */
.main-nav {
    background: #fff;
    padding: 14px 0;
}

.logo {
    height: 50px;
    object-fit: contain;
}

/* --- NAV MENU --- */
nav.primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    white-space: nowrap;
}


nav.primary a {
    font-size: 16px;
    font-weight: 600;
    color: #0b1a33;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 6px;
    transition: 0.2s;
}

nav.primary a:hover {
    color: var(--blue);
    background: rgba(47, 84, 163, 0.07);
}

/* --- ACTION BUTTONS --- */
.actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.enroll {
    background: var(--blue);
    color: #fff;
    padding: 10px 22px;
    font-weight: 700;
    border-radius: 12px;
}

.hamburger {
    display: none;
    background: none;
    font-size: 22px;
    border: none;
    cursor: pointer;
}

/* -----------------------------
   MOBILE MENU
----------------------------- */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 14px 6%;
    border-top: 1px solid var(--border);
}

.mobile-menu a {
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
}

.enroll-full {
    background: var(--blue);
    color: #fff;
    padding: 12px;
    margin-top: 10px;
    border-radius: 10px;
    text-align: center;
}

/* -----------------------------
   RESPONSIVE RULES
----------------------------- */
@media (max-width: 992px) {
    nav.primary { display: none; }
    .hamburger { display: block; }

    .logo { height: 50px; }
}

@media (max-width: 768px) {
    .top-strip { font-size: 12px; padding: 5px 0; }
    .logo { height: 45px; }
    .enroll { padding: 8px 14px; font-size: 14px; }
}

@media (max-width: 576px) {
    .logo { height: 40px; }
    .top-strip small { font-size: 11px; }
    .wa-pill { padding: 4px 8px; font-size: 10px; }
}


    /* ⭐ updated slider width */
    .slider-wrapper{
      width: 100%;                /* full responsive width */
         max-width: 1250px;          /* EXACT SAME AS NAVBAR CONTAINER */
       margin: 0 auto 25px auto;   /* ⬇ reduced bottom space */
      padding-top: 15px;          /* ⬇ reduced top space */
      padding-left: 20px;
      padding-right: 20px;
    }

    .slider-card{
      position:relative;
      width:100%;
      height:380px;
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 8px 26px rgba(0,0,0,0.12);
    }

    .slide{
      position:absolute;
      inset:0;
      opacity:0;
      transition:opacity .7s ease;
    }
    .slide.active{opacity:1}

    /*.slide-bg{*/
    /*  position:absolute; inset:0;*/
    /*  background-size:cover;*/
    /*  background-position:center;*/
    /*}*/

    .slide-overlay{
      position:absolute; inset:0;
      background:linear-gradient(to right,
        rgba(47,84,163,0.90),
        rgba(47,84,163,0.65),
        rgba(47,84,163,0.40)
      );
    }

    .slide-content{
      position:relative;
      height:100%;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:20px;
      color:#fff;
    }

    .slide-content h2{
      font-size:36px;
      margin-bottom:10px;
      font-weight:700;
    }

    .slide-content p{
      font-size:20px;
      opacity:0.9;
    }

    @media(max-width:768px){
      .slider-card{
        height:300px;
      }
      .slide-content h2{
        font-size:28px;
        margin-bottom:8px;
      }
      .slide-content p{
        font-size:16px;
      }
    }

    @media(max-width:576px){
      .slider-wrapper{
        margin:20px auto 30px auto;
      }
      .slider-card{
        height:220px;
        border-radius:12px;
      }
      .slide-content h2{
        font-size:20px;
        margin-bottom:6px;
      }
      .slide-content p{
        font-size:13px;
      }
    }

    /* ⭐ Perfect Round Slider Arrows */
    .arrow{
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      width:54px;
      height:54px;
      background:rgba(255,255,255,0.40);
      border-radius:50%;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:28px;
      font-weight:700;
      color:#fff;
      backdrop-filter:blur(4px);
      transition:0.25s ease;
      border: none;
      z-index: 40;
    }

    .arrow:hover{
      background:rgba(255,255,255,0.65);
      transform:translateY(-50%) scale(1.08);
    }

    .arrow.left{ left:16px; }
    .arrow.right{ right:16px; }

    @media(max-width:768px){
      .arrow{
        width:44px;
        height:44px;
        font-size:22px;
      }
      .arrow.left{ left:10px; }
      .arrow.right{ right:10px; }
    }

    @media(max-width:576px){
      .arrow{
        width:36px;
        height:36px;
        font-size:18px;
      }
      .arrow.left{ left:8px; }
      .arrow.right{ right:8px; }
    }

    .dots{
      position:absolute;
      bottom:15px;
      left:50%;
      transform:translateX(-50%);
      display:flex;
      gap:8px;
      z-index: 50;
    }
    .dot{
      width:10px;height:10px;
      background:rgba(255,255,255,0.55);
      border-radius:20px;
      transition:all .3s;
    }
    .dot.active{
      width:26px;
      background:#fff;
    }

    @media(max-width:576px){
      .dots{
        bottom:10px;
        gap:6px;
      }
      .dot{
        width:8px;
        height:8px;
      }
      .dot.active{
        width:20px;
      }
    }

/* SECTION */
.categories-section {
  padding: 60px 0;
  background: #f0f2f5;
}

.cat-container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HEADER */
.cat-header {
  text-align: center;
  margin-bottom: 40px;
}

.cat-header h2 {
  font-size: 34px;
  font-weight: 800;
}

.cat-header p {
  font-size: 17px;
  color: #666;
}
/*=======================================================================================================*/
/* CATEGORY ROW */
.cat-row {
  display: flex;
  justify-content: center;
  gap: 28px;       /* reduced spacing */
  flex-wrap: nowrap;
}

/* CARD */
.cat-box {
  width: 165px;         /* ✔ smaller card */
  height: 150px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  padding-top: 26px;
  text-align: center;
  transition: 0.25s ease;
  cursor: pointer;
}

.cat-box:hover {
  transform: translateY(-6px);
  border-color: #2f54a3;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ICON BOX (SQUARE COLOR BOX) */
.cat-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
}

/* ICON BOX */
.cat-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
}

/* FORCE LUCIDE ICON WHITE */
.cat-icon-box svg {
  width: 34px;
  height: 34px;
}

.cat-icon-box svg path {
  stroke: #fff !important;
  stroke-width: 2.4;
}
/* FORCE ALL LUCIDE ICON STROKES TO WHITE */
.cat-icon-box svg,
.cat-icon-box svg * {
  stroke: #fff !important;      /* make everything white */
  stroke-width: 2.4 !important; /* same thickness everywhere */
  fill: none !important;        /* prevent black fill */
}

/* LABEL */
.cat-name {
  font-size: 16px;
  font-weight: 700;
}

/* COLORS */
.blue   { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.green  { background: linear-gradient(135deg, #22c55e, #15803d); }
.orange { background: linear-gradient(135deg, #fb923c, #f97316); }
.purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.pink   { background: linear-gradient(135deg, #ec4899, #db2777); }
.indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.cyan   { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.cat-icon-box.gray {
    background: #e0e0e0;
}

/* ------------------------------------
   🔵 RESPONSIVE — CATEGORY ROW
------------------------------------ */

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {

    .cat-row {
        flex-wrap: wrap !important;
        gap: 22px;               /* smaller spacing */
        justify-content: center;
    }

    .cat-box {
        width: 150px;            /* slightly smaller */
        height: 150px;
        border-radius: 20px;
        padding-top: 22px;
    }

    .cat-icon-box {
        width: 62px;
        height: 62px;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .cat-icon-box svg {
        width: 30px;
        height: 30px;
    }

    .cat-name {
        font-size: 15px;
    }
}


/* Mobile Large (480px and below) */
@media (max-width: 480px) {

    .cat-row {
        gap: 18px;
    }

    .cat-box {
        width: 135px;
        height: 135px;
        padding-top: 20px;
    }

    .cat-icon-box {
        width: 58px;
        height: 58px;
    }

    .cat-icon-box svg {
        width: 28px;
        height: 28px;
    }

    .cat-name {
        font-size: 14px;
    }
}


/* Small Mobile (375px and below — iPhone SE) */
@media (max-width: 375px) {

    .cat-row {
        gap: 16px;
    }

    .cat-box {
        width: 120px;
        height: 148px;
    }

    .cat-icon-box {
        width: 54px;
        height: 54px;
        border-radius: 12px;
    }

    .cat-icon-box svg {
        width: 26px;
        height: 26px;
    }

    .cat-name {
        font-size: 13px;
    }
}


/* Extra Small Devices (320px phones) */
@media (max-width: 320px) {

    .cat-row {
        gap: 14px;
    }

    .cat-box {
        width: 110px;
        height: 140px;
    }

    .cat-icon-box {
        width: 50px;
        height: 50px;
    }

    .cat-icon-box svg {
        width: 24px;
        height: 24px;
    }

    .cat-name {
        font-size: 12px;
    }
}
/*================================================Action Cards*/

    /* -----------------------------------------
   🔵 BASE STYLES (unchanged)
----------------------------------------- */
.actions-section {
  padding: 70px 0;
  background: white;
}

.actions-container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .actions-container {
    flex-direction: row;
    align-items: center;
  }
}

.actions-left {
  flex: 0.6;
}

.actions-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.actions-left h2 span {
  color: #2f54a3;
}

.actions-left p {
  font-size: 18px;
  color: #555;
}

.actions-grid {
  flex: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.action-card {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.6s forwards ease-out;
}

.action-card:hover {
  border-color: #2f54a3;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.icon-wrap {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(47, 84, 163, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 28px;
  height: 28px;
  stroke: #2f54a3;
}

.action-card h3 {
  margin: 8px 0 4px;
  font-size: 18px;
  font-weight: 700;
}

.action-card p {
  font-size: 14px;
  color: #666;
}


/* -----------------------------------------
   🔵 TABLET VIEW (768px and below)
----------------------------------------- */
@media (max-width: 768px) {

  .actions-section {
    padding: 55px 0;
  }

  .actions-container {
    gap: 32px;
  }

  .actions-left h2 {
    font-size: 30px;
  }

  .actions-left p {
    font-size: 16px;
  }

  /* Switch to 2 columns on tablet */
  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .action-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .icon-wrap {
    width: 55px;
    height: 55px;
  }

  .icon {
    width: 26px;
    height: 26px;
  }
}


/* -----------------------------------------
   🔵 MOBILE VIEW (576px and below)
----------------------------------------- */
@media (max-width: 576px) {

  .actions-section {
    padding: 45px 0;
  }

  .actions-container {
    width: 95%;
  }

  .actions-left h2 {
    font-size: 24px;
  }

  .actions-left p {
    font-size: 14px;
  }

  /* Mobile: 1 card per row */
  .actions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .action-card {
    padding: 20px 14px;
    border-radius: 16px;
  }

  .icon-wrap {
    width: 48px;
    height: 48px;
  }

  .icon {
    width: 22px;
    height: 22px;
  }

  .action-card h3 {
    font-size: 15px;
  }

  .action-card p {
    font-size: 13px;
  }
}


/* -----------------------------------------
   🔵 SMALL MOBILE (420px and below)
----------------------------------------- */
@media (max-width: 420px) {

  .actions-left h2 {
    font-size: 22px;
  }

  .actions-left p {
    font-size: 13px;
  }

  .action-card {
    padding: 18px 12px;
  }

  .icon-wrap {
    width: 44px;
    height: 44px;
  }

  .icon {
    width: 20px;
    height: 20px;
  }
}


/* -----------------------------------------
   🔵 VERY SMALL MOBILE (360px and below)
----------------------------------------- */
@media (max-width: 360px) {

  .actions-left h2 {
    font-size: 20px;
  }

  .actions-left p {
    font-size: 12px;
  }

  .action-card {
    padding: 16px 10px;
  }

  .icon-wrap {
    width: 40px;
    height: 40px;
  }

  .icon {
    width: 18px;
    height: 18px;
  }

  .action-card h3 {
    font-size: 14px;
  }

  .action-card p {
    font-size: 12px;
  }
}


/* Fade In Animation (unchanged) */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {

  .actions-left {
    text-align: center !important;
  }

  .actions-left h2 {
    text-align: center !important;
  }

  .actions-left p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}



    /* ============ FOOTER WRAPPER ============ */

    .footer {
      padding: 40px 60px;
      border-top: 1px solid #e5e7eb;
      font-family: Arial, sans-serif;
      background: #fff;
      color: #1f1f1f;
    }

    .footer-wrapper {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 35px;
    }

    .logo {
      width: 200px;
      margin-bottom: 15px;
    }

    .brand p {
      color: #555;
      margin-bottom: 20px;
    }

    .socials {
      display: flex;
      gap: 12px;
    }

    .socials .icon {
      width: 42px;
      height: 42px;
      background: #eef3ff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: .3s;
      cursor: pointer;
    }

    .socials .icon:hover {
      background: #3b82f6;
      color: white;
    }

    .socials svg {
      width: 20px;
      height: 20px;
      stroke: #3b82f6;
    }

    .socials .icon:hover svg {
      stroke: white;
    }

    .footer-col h3 {
      font-weight: bold;
      margin-bottom: 15px;
    }

    .footer-col a {
      display: block;
      color: #555;
      text-decoration: none;
      margin-bottom: 10px;
      transition: 0.2s;
    }

    .footer-col a:hover {
      color: #3b82f6;
    }

    .contact-line {
      display: flex;
      gap: 10px;
      margin-bottom: 12px;
      color: #555;
      max-width: 250px;
    }

    .contact-line svg {
      width: 20px;
      height: 20px;
      stroke: #3b82f6;
      flex-shrink: 0;
    }

    .footer-bottom {
      padding-top: 20px;
      border-top: 1px solid #e5e7eb;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #777;
      font-size: 14px;
    }

    .bottom-links a {
      margin-left: 25px;
      color: #555;
      text-decoration: none;
    }

    .bottom-links a:hover {
      color: #3b82f6;
    }

    @media (max-width: 992px) {
      .footer {
        padding: 30px 40px;
      }
      .footer-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }
      .logo {
        width: 180px;
      }
      .socials .icon {
        width: 38px;
        height: 38px;
      }
      .footer-col h3 {
        font-size: 16px;
        margin-bottom: 12px;
      }
      .footer-col a {
        font-size: 14px;
        margin-bottom: 8px;
      }
      .contact-line {
        font-size: 14px;
        margin-bottom: 10px;
      }
    }

    @media (max-width: 768px) {
      .footer {
        padding: 25px 20px;
      }
      .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
      }
      .logo {
        width: 160px;
      }
      .brand p {
        font-size: 14px;
        margin-bottom: 15px;
      }
      .socials {
        gap: 10px;
      }
      .socials .icon {
        width: 36px;
        height: 36px;
      }
      .socials svg {
        width: 18px;
        height: 18px;
      }
      .footer-col h3 {
        font-size: 15px;
      }
      .footer-col a {
        font-size: 13px;
      }
      .contact-line {
        font-size: 13px;
      }
      .contact-line svg {
        width: 18px;
        height: 18px;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 12px;
      }
      .bottom-links {
        display: flex;
        justify-content: center;
        gap: 15px;
      }
      .bottom-links a {
        margin-left: 0;
        font-size: 12px;
      }
    }

    @media (max-width: 576px) {
      .footer {
        padding: 20px 16px;
      }
      .footer-wrapper {
        gap: 20px;
      }
      .logo {
        width: 140px;
        margin-bottom: 12px;
      }
      .brand p {
        font-size: 13px;
        margin-bottom: 12px;
      }
      .socials {
        gap: 8px;
      }
      .socials .icon {
        width: 32px;
        height: 32px;
      }
      .socials svg {
        width: 16px;
        height: 16px;
      }
      .footer-col h3 {
        font-size: 14px;
        margin-bottom: 10px;
      }
      .footer-col a {
        font-size: 12px;
        margin-bottom: 7px;
      }
      .contact-line {
        font-size: 12px;
        margin-bottom: 8px;
        gap: 8px;
      }
      .contact-line svg {
        width: 16px;
        height: 16px;
      }
      .footer-bottom {
        padding-top: 15px;
        font-size: 11px;
        gap: 8px;
      }
      .bottom-links {
        flex-wrap: wrap;
        gap: 12px;
      }
      .bottom-links a {
        font-size: 11px;
      }
    }

    /* ============ TESTIMONIALS SECTION ============ */
    .testimonials-section {
      background: #e9f0ff;
      padding: 80px 0;
    }

    .layout-wrapper {
      display: grid;
      grid-template-columns: 35% 65%;
      align-items: start;
      gap: 40px;
      width: 90%;
      max-width: 1150px;
      margin: 0 auto;
    }

    .left-side {
      padding-left: 40px;
    }

    .success-badge-left {
      background: #2f54a3;
      color: white;
      padding: 12px 32px;
      border-radius: 40px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .left-heading {
      font-size: 48px;
      font-weight: 800;
      color: #2f54a3;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .left-subtext {
      max-width: 350px;
      font-size: 17px;
      color: #555;
      line-height: 1.5;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      position: relative;
    }

    .cards-wrapper {
      position: relative;
    }

    .arrow-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      background: white;
      border: 2px solid #2f54a3;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2f54a3;
      font-size: 20px;
      font-weight: bold;
      transition: 0.3s ease;
      z-index: 10;
    }

    .arrow-nav:hover {
      background: #2f54a3;
      color: white;
    }

    .arrow-nav.left-arrow {
      left: -60px;
    }

    .arrow-nav.right-arrow {
      right: -60px;
    }

    .t-card {
      background: white;
      border-radius: 20px;
      border: 1px solid #d7dbec;
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
    }

    .rank-badge {
      background: #2f54a3;
      color: #fff;
      padding: 16px;
      font-size: 20px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .card-content {
      padding: 25px 22px;
    }

    .photo-box {
      width: 130px;
      height: 130px;
      margin: 0 auto;
      position: relative;
    }

    .photo-box img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 5px solid white;
      object-fit: cover;
    }

    .percent-badge {
      background: #22c55e;
      color: white;
      font-size: 13px;
      padding: 6px 16px;
      border-radius: 20px;
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .student-name {
      font-size: 22px;
      font-weight: 800;
      margin-top: 28px;
      color: #111;
    }

    .student-exam {
      color: #2f54a3;
      font-weight: 700;
      margin-top: 4px;
      font-size: 16px;
    }

    .student-college {
      color: #666;
      font-size: 14px;
      margin-bottom: 14px;
    }

    .quote {
      font-style: italic;
      color: #555;
      font-size: 15px;
      padding: 0 10px;
      line-height: 1.5;
    }

    .stars {
      color: #2f54a3;
      font-size: 18px;
      margin: 12px 0;
      letter-spacing: 2px;
    }

    .connect-btn {
      background: #2f54a3;
      color: white;
      padding: 12px 0;
      display: block;
      width: 100%;
      border-radius: 10px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: 0.3s ease;
      font-size: 15px;
    }

    .connect-btn:hover {
      background: #1e3c6f;
    }

    @media(max-width:1200px){
      .layout-wrapper {
        gap: 30px;
      }
      .cards-grid {
        gap: 20px;
      }
      .arrow-nav.left-arrow {
        left: -50px;
      }
      .arrow-nav.right-arrow {
        right: -50px;
      }
    }

    @media(max-width:992px){
      .testimonials-section {
        padding: 60px 0;
      }
      .layout-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
      }
     
      .cards-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .arrow-nav.left-arrow {
        left: -40px;
      }
      .arrow-nav.right-arrow {
        right: -40px;
      }
    }

    @media(max-width:768px){
      .testimonials-section {
        padding: 50px 0;
      }
      .layout-wrapper {
        width: 95%;
        gap: 30px;
      }
      .left-heading {
        font-size: 28px;
        margin-bottom: 15px;
      }
      .left-subtext {
        font-size: 15px;
      }
      .success-badge-left {
        padding: 10px 24px;
        font-size: 13px;
        margin-bottom: 20px;
      }
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }
      .t-card {
        padding-bottom: 16px;
      }
      .card-content {
        padding: 20px 16px;
      }
      .photo-box {
        width: 110px;
        height: 110px;
      }
      .student-name {
        font-size: 18px;
        margin-top: 22px;
      }
      .student-exam {
        font-size: 14px;
      }
      .quote {
        font-size: 13px;
        padding: 0 8px;
      }
      .connect-btn {
        padding: 10px 0;
        font-size: 14px;
      }
      .arrow-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }
      .arrow-nav.left-arrow {
        left: -35px;
      }
      .arrow-nav.right-arrow {
        right: -35px;
      }
    }

    @media(max-width:576px){
      .testimonials-section {
        padding: 40px 0;
      }
      .layout-wrapper {
        width: 95%;
        gap: 25px;
      }
      .left-side {
        text-align: center;
      }
      .success-badge-left {
        padding: 8px 20px;
        font-size: 12px;
        margin-bottom: 15px;
        justify-content: center;
      }
      .left-heading {
        font-size: 22px;
        margin-bottom: 12px;
        line-height: 1.3;
      }
      .left-subtext {
        font-size: 13px;
        line-height: 1.4;
      }
      .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .card-content {
        padding: 18px 14px;
      }
      .photo-box {
        width: 100px;
        height: 100px;
      }
      .rank-badge {
        padding: 12px;
        font-size: 16px;
      }
      .student-name {
        font-size: 16px;
        margin-top: 18px;
      }
      .student-exam {
        font-size: 13px;
      }
      .student-college {
        font-size: 12px;
      }
      .quote {
        font-size: 12px;
        padding: 0 6px;
      }
      .stars {
        font-size: 16px;
        margin: 10px 0;
      }
      .connect-btn {
        padding: 10px 0;
        font-size: 13px;
      }
      .arrow-nav {
        display: none;
      }
    }
	/* -------------------- HERO -------------------- */
.mca-hero-section {
    position: relative;
    padding: 90px 0;
    background: #f5f8ff;
    overflow: hidden;
}

.mca-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #2f54a310, #ffffff);
    z-index: 1;
}

.mca-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2f54a320;
    border: 1px solid #2f54a340;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    color: #2f54a3;
}

.mca-heading {
    margin-top: 20px;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(to right, #1c2e59, #476dc1);
    -webkit-background-clip: text;
    color: transparent;
}

.mca-subtext {
    max-width: 650px;
    margin: 15px auto 0 auto;
    font-size: 18px;
    color: #555;
}

/* ----------------------------------------
    GRID WRAPPER
---------------------------------------- */
.mca-grid-section {
    padding: 90px 0; /* MORE TOP & BOTTOM SPACE */
}

/* Increase space between cards (Bootstrap gutter override) */
.mca-grid-section .row > div {
    margin-bottom: 40px; /* adds margin between rows */
}

/* ----------------------------------------
    CARD
---------------------------------------- */
.mca-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 32px;                  /* BIGGER CARD WIDTH LOOK */
    border-radius: 22px;
    border: 2px solid transparent;
    transition: 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);

    height: 380px;                  /* TALLER CARD */
    overflow: hidden;
}

.mca-card:hover {
    border-color: #2f54a3;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

/* ----------------------------------------
    HEADER
---------------------------------------- */
.mca-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mca-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(to bottom right, #2f54a3, #6b8de1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ----------------------------------------
    TITLE
---------------------------------------- */
.mca-card-title {
    margin-top: 20px;
    color: #2f54a3;
    font-size: 26px;
    font-weight: 700;
}

/* ----------------------------------------
    DESCRIPTION
---------------------------------------- */
.mca-card-desc {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    height: 50px;
    overflow: hidden;
}

.mca-text {
    font-size: 15px;
    color: #555;
    line-height: 1.45;
    height: 70px;
    overflow: hidden;
}

/* ----------------------------------------
    DIFFICULTY
---------------------------------------- */
.mca-difficulty {
    margin-top: auto;
    font-size: 16px;
    font-weight: 600;
}

.diff-medium { color: #f59e0b; }
.diff-high { color: #e63946; }
.diff-low { color: #22c55e; }

/* ----------------------------------------
    RESPONSIVE
---------------------------------------- */
@media (max-width: 992px) {
    .mca-card {
        height: 400px;
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .mca-card {
        height: auto;
        padding: 24px;
    }
    .mca-card-desc,
    .mca-text {
        height: auto;
    }
}

@media (max-width: 480px) {
    .mca-card {
        padding: 20px;
    }
    .mca-card-title {
        font-size: 22px;
    }
}


/* -------- FIX HERO LAYOUT TO MATCH SECOND PIC -------- */
.mca-hero-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex !important;
  text-align: center;
}

.mca-hero-section {
  position: relative;
  padding: 90px 0;
  background: #f2f6ff; /* same soft gradient feel */
}

/* Center badge */
.mca-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #e8edff;
  border: 1px solid #d1d9ff;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  color: #2f54a3;
  margin-bottom: 20px;
}

/* Big heading center aligned */
.mca-heading {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(to right, #304c89, #688ee8);
  -webkit-background-clip: text;
  color: transparent;
}

/* Subtext center */
.mca-subtext {
  max-width: 750px;
  margin: 0 auto;
  font-size: 20px;
  color: #516173;
  line-height: 1.6;
}

/* Responsive */
@media (max-width:768px){
  .mca-heading { font-size: 38px; }
  .mca-subtext { font-size: 16px; }
}

@media (max-width:576px){
  .mca-heading { font-size: 30px; }
  .mca-subtext { font-size: 14px; }
}



.hero-section {
    width: 100%;
    height: 75vh;
   background:
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.18) 5%, rgba(32,72,150,0) 45%),
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.18) 5%, rgba(32,72,150,0) 40%),
        #204896;
    color: white;
    text-align: center;
    padding-top: 110px;
}



/* Tag remains same */
.tag {
    display: inline-block;
    padding: 9px 24px;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(5px);
    margin-bottom: 35px;
}

/* Hero title smaller */
.hero-title {
    font-size: 50px; /* reduced */
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}

/* Subtitle slightly smaller */
.hero-subtitle {
    font-size: 19px;
    opacity: 0.95;
    margin-top: 25px;
}

.btn-area {
    display: flex;
    justify-content: center;
    gap: 20px; /* smaller gap */
    margin-top: 35px;
}

/* ----------------------------------
   LEFT BUTTON - WHITE SMALLER VERSION
---------------------------------- */
.btn-filled {
    display: flex;
    align-items: center;
    gap: 8px; /* smaller gap */
    background: #ffffff;
    color: #1b4f9b;
    padding: 10px 28px; /* reduced size */
    font-size: 15px; /* smaller text */
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid rgba(28, 75, 160, 0.30);
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.btn-filled i {
    font-size: 16px; /* smaller icon */
}

.btn-filled:hover {
    background: #ffffff;
    border-color: rgba(28, 75, 160, 0.55);
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.25);
}


/* ----------------------------------
   RIGHT BUTTON - OUTLINE (SMALLER)
---------------------------------- */
.btn-outline-white {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.85);
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-outline-white i {
    font-size: 16px;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #1b4f9b;
    border-color: rgba(28, 75, 160, 0.55);
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.25);
}

.btn-outline-white:hover i {
    color: #1b4f9b;
}

.section-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); /* small clean shadow */
}

/* Icon box */
.icon-box {
    width: 78px;
    height: 78px;
    border-radius: 14px;
    background: linear-gradient(180deg, #2f54a3, #6b8de1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

/* Centered container */
.container-why {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Title */
.why-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f1724;
    margin-bottom: 40px;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Cards */
.why-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #dbe4ff;
    padding: 30px 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: .25s ease;
    height: 100%;
    text-align: left; /* important */
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Icon + Heading row */
.why-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

/* Bigger icon */
.why-top i {
    font-size: 42px;
    color: #2f54a3;
}

/* Title beside icon */
.why-top h3 {
    margin: 0;
    font-size: 22px;
 ;
    color: #0f1724;
}

/* Description */
.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* 🔥 Hover Effect – Blue Glow Outline */
.why-card:hover {
    border: 2px solid #3b59d9;
   cursor:pointer;
    
}

/* Responsive */
@media(max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-card {
        text-align: center;
    }
    .why-top {
        justify-content: center;
    }
}


/* Fix ONLY for the Why Take CMAT section */
.why-section .container {
    display: block !important;
    text-align: center !important;
}


/* FIX eligibility section layout */
.eligibility-wrapper .container {
    display: block !important;
}
/* Wrapper */
.eligibility-wrapper {
    padding: 50px 0;
    background: #fafafa;
}

/* Heading Center */
.eligibility-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 22px;
}

/* TAB BACKGROUND FULL WIDTH */
/* WRAPPER */
.eligibility-tabs-wrapper {
    width: 100%;
    max-width: 79%;
    margin: 0 auto 20px auto;
}

/* BACKGROUND BAR */
.eligibility-tabs-wrapper .nav-tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0;
    background: #eef4ff;
    border: 1px solid #dbe3f5;
    border-radius: 12px;
    padding: 4px;
}

/* TAB BUTTONS */
.eligibility-tabs-wrapper .nav-link {
    padding: 12px 40px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #555;
    transition: 0.25s ease;
}

/* ACTIVE TAB (WHITE PILL) */
.eligibility-tabs-wrapper .nav-link.active {
    background: #fff;
    color: #2f54a3;
	width:100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

/* MAIN CARD BELOW TABS */
.eligibility-content-box {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto 0 auto;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}

/* Card Title */
.eligibility-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

/* Subtitle */
.eligibility-card .sub-title {
    color: #666;
    margin-bottom: 20px;
}

/* List items */
.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 15px;
    color: #444;
}

.tick {
    width: 22px;
    height: 22px;
    background: #22c55e;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 12px;
}

.tick::after {
    content: "✓";
}

/* --- Important dates blue boxes --- */
.date-box {
    background: #eaf0ff;
    padding: 16px 22px;
    border-radius: 10px;
    border: 1px solid #d7e3ff;
    margin-bottom: 12px;

    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #2f54a3;
}

.date-note {
    margin-top: 16px;
    font-size: 14px;
    color: #666;
}
/* Section Card */
.section-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
   
}

* Heading */
.section-title {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat-box small {
    font-size: 13px;
    color: #6b7280 !important;
}

.stat-box .fw-bold {
    font-size: 17px;
    color: #111827;
}

/* Accordion Clean UI */
.accordion-item {
    border: none;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
    border: 1px solid rgba(47,84,163,0.12);
}

.accordion-button {
    background: #f4f7ff !important;
    border: none;
    font-weight: 600;
    padding: 16px 20px;
    font-size: 16px;
}

.accordion-button:not(.collapsed) {
    background: #e9efff !important;
    color: #2f54a3;
    box-shadow: none !important;
}

.accordion-body {
    padding: 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

/* Bottom Scoring Note */
.scoring-box {
    background: #f7f9ff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(47,84,163,0.10);
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}
/* === Overview Small Boxes === */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 25px;
}

.info-box {
    background: #f2f6ff;
    border: 1px solid rgba(47,84,163,0.15);
    padding: 18px 20px;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: 0.2s ease;
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #2f54a3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Text inside box */
.info-text small {
    display: block;
    font-size: 13px;
    color: #667085;
    margin-bottom: 3px;
}

.info-text .value {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}

/* Responsive */
@media (max-width:768px) {
    .overview-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:576px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}
.step-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #2f54a3; /* theme blue */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

/* Lucide icon fix */
.step-icon-box i {
    width: 22px;
    height: 22px;
}

/* Keep card clean */
.step-card {
    padding: 18px 20px;
    border-radius: 14px;
    background: #fff;
   
    margin-bottom: 20px;
}
.process-wrapper .container {
    display: block !important;
}
.process-wrapper{
	background: #f0f5ff;      /* Soft blue that matches your theme */
    padding: 40px 10px;
  
   
	width:100%;
}
section.last-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Section */
        .testimonials-section {
            padding: 60px 20px;
            text-align: center;
            max-width: 100%;
            margin: 0 auto;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: #2f54a3;
            color: white;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .section-badge::before {
            content: '🏆';
            font-size: 16px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: #1b2d59;
            margin-bottom: 10px;
        }

        .section-subtitle {
            color: #6c7a99;
            font-size: 16px;
            margin-bottom: 50px;
        }

        /* Main Container */
        .swiper-main-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            width: 100%;
            padding: 0 30px;
            overflow: hidden;
        }

        .nav-button-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            flex-shrink: 0;
        }

        .swiper {
            width: 100%;
            overflow: hidden;
        }

        .swiper-slide {
            width: calc((100% - 30px) / 3);
            display: flex;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Card */
        .t-card {
            width: 90%;
            height: 480px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid #e6e6e6;
            margin: 0 auto;
            transition: 0.3s ease;
        }

        .t-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        /* Rank Bar */
        .t-rank {
            margin: 12px 14px 8px 14px;
            background: #2f54a3;
            color: white;
            padding: 8px 0;
            font-weight: 600;
            font-size: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .t-rank::before {
            content: "🥇";
            font-size: 18px;
        }

        /* Card Content */
        .card-content {
            padding: 22px 18px;
            text-align: center;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Image */
        .t-img-box {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #e8edff 0%, #d0deff 100%);
            border-radius: 50%;
            border: 4px solid #e8edff;
        }

        .t-img-box .icon {
            font-size: 55px;
        }

        .t-percent {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: #27c86a;
            color: white;
            padding: 5px 14px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
        }

        /* Text */
        .t-name {
            font-size: 18px;
            font-weight: 600;
            color: #1b2d59;
            margin: 10px 0 4px;
        }

        .t-exam {
            color: #2f54a3;
            font-weight: 600;
            font-size: 15px;
        }

        .t-college {
            color: #999;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .t-text {
            font-size: 14px;
            color: #4b4b4b;
            margin-bottom: 10px;
            line-height: 1.4;
            font-style: italic;
        }

        .t-stars {
            font-size: 18px;
            color: #2f54a3;
            margin-bottom: 10px;
        }

        /* Connect Button */
        .t-btn-full {
            width: 100%;
            background: #2f54a3;
            color: white;
            padding: 10px 16px;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
            margin-top: 6px;
            transition: 0.25s ease;
        }

        .t-btn-full .chat-icon {
            font-size: 16px;
        }

        .t-btn-full:hover {
            background: #1e3f7f;
        }

        /* Arrows */
        .custom-nav-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #ffffff;
            border: 2px solid #2f54a3;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
            transition: 0.25s ease-in-out;
			 margin-top: 50px; 
        }

        .swiper-button-prev::after {
            content: "←";
            font-size: 18px;
            color: #1b2d59;
        }

        .swiper-button-next::after {
            content: "→";
            font-size: 18px;
            color: #1b2d59;
        }

        .custom-nav-btn:hover {
            background: #2f54a3;
        }

        .custom-nav-btn:hover::after {
            color: white;
        }

        .swiper-button-disabled {
            opacity: 0.4 !important;
            cursor: not-allowed !important;
            pointer-events: none !important;
        }


/*========================================================NETWORK Sections*/
/* =====================================================
   🔵 TABLET (MAX WIDTH 1024px)
===================================================== */
@media (max-width: 1024px) {
    .network-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }

    .network-text h2 {
        font-size: 32px;
    }

    .network-text .desc {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .network-cards {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* =====================================================
   🔵 TABLET & LARGE MOBILE (MAX WIDTH 768px)
===================================================== */
@media (max-width: 768px) {

    /* Cards vertical */
    .network-cards {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        align-items: center;
    }

    /* Resize card for tablet/mobile */
    .network-card {
        width: 260px;
        padding: 26px 20px;
    }

    /* Text center alignment */
    .network-text h2 {
        font-size: 28px;
        text-align: center;
    }

    .network-text .desc {
        font-size: 15px;
        text-align: center;
        max-width: 95%;
    }
}

/* =====================================================
   🔵 MOBILE (MAX WIDTH 576px)
===================================================== */
@media (max-width: 576px) {

    .network-section {
        padding: 40px 0;
    }

    .network-card {
        width: 240px;
        padding: 22px 18px;
    }

    .network-card h3 {
        font-size: 18px;
    }

    .network-text h2 {
        font-size: 24px;
    }

    .network-text .desc {
        font-size: 14px;
    }
}

/* =====================================================
   🔵 SMALL MOBILE (MAX WIDTH 420px)
===================================================== */
@media (max-width: 420px) {

    .network-card {
        width: 220px;
        padding: 20px 16px;
        border-radius: 18px;
    }

    .network-icon {
        width: 60px;
        height: 60px;
    }

    .network-icon i {
        font-size: 24px;
    }

    .network-text h2 {
        font-size: 22px;
    }
}

/* =====================================================
   🔵 SUPER SMALL (MAX WIDTH 360px)
===================================================== */
@media (max-width: 360px) {

    .network-card {
        width: 200px;
        padding: 18px 14px;
        border-radius: 16px;
    }

    .network-text h2 {
        font-size: 20px;
    }

    .network-text .desc {
        font-size: 13px;
    }
}

/* GLOBAL PAGE MARGINS (same as reference site) */
.container {
    max-width: 1250px;      /* Perfect width */
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* TOP STRIP */
.top-strip {
    background: #2f54a3;
    color: white;
    padding: 6px 0;
    font-size: 13px;
}

/* STICKY NAVBAR */
.main-nav {
    background: #ffffff;
    padding: 14px 0;
    border-bottom: 1px solid #e9e9e9;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* LOGO SIZE FIX */
.logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* NAV MENU */
.primary a {
    margin: 0 16px;
    font-weight: 500;
    font-size: 15px;
    color: #333;
    text-decoration: none;
}

.primary a:hover {
    color: #2f54a3;
}

/* ENROLL BUTTON */
.enroll {
    background: #2f54a3;
    padding: 8px 18px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

/* HAMBURGER (mobile) */
.hamburger {
    background: none;
    border: none;
    font-size: 22px;
    margin-left: 10px;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-top: 1px solid #ececec;
}

.mobile-menu a {
    padding: 10px 0;
    color: #333;
}

/* SHOW MOBILE MENU */
.mobile-menu.open {
    display: flex;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .primary {
        display: none;
    }
}
/* ---------------------------------------
   JOIN OUR GROWING NETWORK SECTION
---------------------------------------- */
.network-section {
    padding: 50px 0;
    background: #f5f7fc;
}

.network-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 40px;
}

/* ---------------------------------------
   LEFT SIDE CARDS
---------------------------------------- */
.network-cards {
    display: flex;
    align-items: center;
    gap: 35px;
}

.network-card {
    width: 200px;
    height: 212px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    padding: 28px 20px;
    text-align: center;
    transition: 0.3s ease;
}

.network-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ICON BOX */
.network-icon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px auto;
    color: #fff;
    font-size: 32px;
}

.blue   { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.green  { background: linear-gradient(135deg, #22c55e, #15803d); }

.network-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.network-card p {
    font-size: 15px;
    color: #666;
}

/* ---------------------------------------
   RIGHT SIDE TEXT — UPDATED SMALLER
---------------------------------------- */
.network-text {
    max-width: 520px;    /* tightened width */
}

.network-text h2 {
    font-size: 32px;     /* smaller heading */
    font-weight: 800;
    color: #1b2d59;
    line-height: 1.25;
    margin-bottom: 12px;
}

.network-text .desc {
    font-size: 15px;     /* smaller paragraph text */
    color: #555;
    line-height: 1.55;
    margin-bottom: 10px;
}

/* ---------------------------------------
   RESPONSIVE
---------------------------------------- */
@media (max-width: 992px) {
    .network-container {
        flex-direction: column;
        text-align: center;
    }

    .network-cards {
        justify-content: center;
        flex-wrap: wrap;
    }

    .network-card {
        width: 230px;
        height: 220px;
    }

    .network-text {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .network-card {
        width: 90%;
        height: auto;
        padding: 25px;
    }

    .network-cards {
        gap: 25px;
    }

    .network-text h2 {
        font-size: 26px;
    }

    .network-text .desc {
        font-size: 14px;
    }
}
/* ----- Card ----- */
.exam-card {
    width: 100%;
    max-width: 370px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s ease;
    margin: auto;
}

.exam-card:hover {
    transform: translateY(-4px);
}

/

/* ------------------------------
   ABOUT HERO SECTION
------------------------------ */
.about-hero {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(180deg, #3C60A0 0%, #264D8E 100%);
  text-align: center;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 20px;
  color: #E0E7FF;
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
}

/* Responsive - About Section */
@media(max-width: 768px) {
  .about-hero {
    padding: 60px 20px;
  }
  .about-hero h1 {
    font-size: 32px;
  }
  .about-hero p {
    font-size: 16px;
  }
}

/* ------------------------------
   WHO WE ARE SECTION
------------------------------ */
.who-section {
  padding: 60px 20px;
  background: #fff;
}

.who-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.who-title {
  font-size: 32px;
  font-weight: 700;
  color: #2b4b9b;
  margin-bottom: 15px;
}

.who-desc {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
}

/* Grid */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* Card */
.who-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  transition: 0.3s ease;
}

.who-card:hover {
  border-color: #2b4b9b;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

/* Icon Box */
.who-icon {
  width: 60px;
  height: 60px;
  background: #2b4b9b;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.who-icon i {
  font-size: 32px;
  color: white;
}

/* Text */
.who-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.4;
}

/* Responsive - Who Section */
@media(max-width: 900px) {
  .who-grid {
    grid-template-columns: 1fr;   /* stack only on tablet/mobile */
  }
}

/* ------------------------------
   BRANCH SECTION
------------------------------ */
.branch-section {
  padding: 40px 20px 80px 20px;
  background: #fff;
}

.branch-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.branch-title {
  font-size: 32px;
  font-weight: 700;
  color: #2b4b9b;
  margin-bottom: 10px;
}

.branch-subtitle {
  font-size: 18px;
  color: #475569;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.branch-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: left;
  transition: 0.3s ease;
}

.branch-card:hover {
  transform: translateY(-6px);
  border-color: #2b4b9b;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

/* Icon */
.branch-icon {
  width: 60px;
  height: 60px;
  background: #2b4b9b;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.branch-icon i {
  font-size: 32px;
  color: #fff;
}

/* Branch Text */
.branch-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.branch-card p {
  font-size: 15px;
  color: #475569;
  margin: 5px 0;
}

.branch-card .address {
  margin-bottom: 10px;
}

/* Responsive – Branch Section */
@media(max-width: 1000px) {
  .branch-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 700px) {
  .branch-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
  .branch-card {
    padding: 25px;
  }
}
/* ------------------------------------
   MAP SECTION
------------------------------------ */
.map-section {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ====== PAGE TOP SPACING ====== */
.mca-hero-section {
    padding-top: 40px !important;
    padding-bottom: 20px;
}

/* ====== PAGE CONTAINER ====== */
.page-container {
    width: 100%;
    max-width: 1320px;    /* SAME AS YOUR IMAGE */
    margin: 0 auto;
    padding: 0 20px;      /* left/right spacing */
}

/* ====== GRID ====== */
.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px; /* PERFECT spacing like screenshot */
    margin-top: 20px;
}


/* ===== MAIN PAGE WRAPPER (matches screenshot) ===== */
.exam-page-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.exam-grid-wrapper {
    width: 100%;
    max-width: 1320px;  /* EXACT WIDTH used in screenshot */
    padding: 0 30px;    /* left/right margin inside container */
}


/* ====== GRID (PERFECT 3 CARD LAYOUT) ====== */
.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;  /* Perfect spacing */
}


/* ====== CARD DESIGN (100% MATCH) ====== */
.exam-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px;
    border: 1.8px solid rgba(46, 71, 125, 0.15);
    min-height: 260px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.25s ease;
}

.exam-card:hover {
    border-color: #2F54A3;
}


/* ===== ICON BOX ===== */
.mca-icon-box {
    width: 60px;
    height: 60px;
    background: #2F54A3;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mca-icon-box svg {
    stroke: #fff;
    width: 30px;
    height: 30px;
}





/* ===== TEXT ===== */
.exam-title {
    font-size: 24px;
    font-weight: 700;
    margin: 25px 0 10px 0;
    color: #2F54A3;
}

.exam-desc {
    font-size: 15px;
    color: #707c94;
    margin-bottom: 10px;
}

.difficulty {
    font-size: 15px;
}

.diff-high { color: red; }
.diff-medium { color: #f7b500; }
.diff-low { color: #2ca02c; }


/* ====== RESPONSIVE FIXES ====== */
@media(max-width: 1100px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 700px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
}
.exam-grid-section {
    padding: 60px 20px;   /* top and bottom spacing */
}

.cards-container {
    margin-top: 20px;  /* small space above grid */
}
/* Section top & bottom spacing */
.exam-grid-section {
    padding: 80px 0;              /* Perfect gap from top & bottom */
    background: #f9fbff;          /* Light background (optional) */
}

/* Centers the whole block */
.exam-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cards grid layout */
.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;                     /* Space between cards */
}

.exam-card {
    position: relative;
    border: 1px solid #d7e1f2;
    border-radius: 16px;
    padding: 35px 35px 30px 35px;
    background: #fff;
    width: 420px;
    transition: 0.3s ease;
}

/* Arrow (exact position like screenshot) */
.card-arrow {
    position: absolute;
    top: 30px;
    right: 35px;
    width: 22px;
    height: 22px;
    stroke-width: 2.3;
    color: #7284a8;
    transition: 0.3s ease;
}

.exam-card:hover .card-arrow {
    transform: translateX(5px);
    color: #2f54a3;
}

/* Icon box (same as screenshot) */
.mca-icon-box {
    width: 60px;
    height: 60px;
    background: #3b63c6;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mca-icon-box i {
    width: 28px;
    height: 28px;
    color: #fff;
}

/* Title */
.exam-title {
    font-size: 26px;
    font-weight: 700;
    color: #071933;
    margin-bottom: 8px;
}

/* Subtitle */
.exam-sub {
    font-size: 15px;
    font-weight: 600;
    color: #3a4458;
    margin-bottom: 20px;
}

/* Description */
.exam-desc {
    font-size: 15px;
    color: #536273;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Difficulty */
.difficulty {
    font-size: 15px;
    color: #333;
}

.medium { color: #ff8b2c; }
.high { color: #ff3544; }
.low { color: #24b24a; }





    /* Accessibility improvements */
    .arrow:focus, .hamburger:focus, .enroll:focus, .enroll-full:focus {
      outline: 3px solid rgba(47,84,163,0.18);
      outline-offset: 3px;
}


/* Compact navigation spacing */
.primary-compact a {
    margin: 0 8px !important; /* Reduced from 15px to 8px */
    padding: 0 !important;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.primary-compact a:first-child {
    margin-left: 0 !important;
}

.primary-compact a:last-child {
    margin-right: 0 !important;
}

.primary-compact a:hover {
    color: #2563eb;
}

/* Ensure main nav is sticky */
.main-nav.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.login-pill {
    margin-left: 6px;
}

/* 🔵 Top Strip – Larger Version */
.top-strip {
    padding: auto 0;              /* increase height */
    font-size: 14px;              /* larger text */
}

.top-strip small {
    font-size: 14px;
    font-weight: 500;
}

.top-strip .item {
    gap: 8px;                     /* space between icon & text */
}

/* Icons bigger */
.top-strip svg {
    width: 20px;
    height: 20px;
}

/* Better vertical alignment */
.top-strip .container {
    min-height: 48px;
}

/* Mobile friendly */
@media (max-width: 768px) {
    .top-strip {
        padding: 12px 0;
    }
    .top-strip small {
        font-size: 13px;
    }
}

.slide-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
}

/* Mobile Fix */
@media (max-width:768px){

  .slider-card{
      height:260px;
  }

  .slide-bg{
      background-size:contain;   /* prevent cropping */
      background-repeat:no-repeat;
      background-position:center;
      background-color:#2f54a3; /* fill empty space */
  }

}



