:root {
  --royal-blue: #123A8C;
  --royal-blue-hover: #0d2c6e;
  --yellow: #F4C430;
  --yellow-hover: #e0b42c;
  --white: #FFFFFF;
  --bg-light: #F7F9FC;
  --bg-alt: #EEF3FA;
  --text-dark: #1A1A1A;
  --text-muted: #5B6472;
  --border-color: #E2E8F0;
  
  --font-main: 'Inter', sans-serif;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 25px 30px -5px rgba(0, 0, 0, 0.15);
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--royal-blue);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-royal { color: var(--royal-blue); }
.text-yellow { color: var(--yellow); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

.bg-royal { background-color: var(--royal-blue); }
.bg-yellow { background-color: var(--yellow); }
.bg-light { background-color: var(--bg-light); }
.bg-alt { background-color: var(--bg-alt); }
.bg-white { background-color: var(--white); }

.section {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--royal-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--royal-blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--royal-blue);
}

.btn-yellow:hover {
  background-color: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--royal-blue);
  border: 2px solid var(--royal-blue);
}

.btn-outline:hover {
  background-color: var(--royal-blue);
  color: var(--white);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--royal-blue);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--royal-blue);
}

.logo img {
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--royal-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--yellow);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--royal-blue);
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: var(--royal-blue);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-title {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--yellow);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--yellow);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--yellow);
  color: var(--royal-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(18, 58, 140, 0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--bg-alt);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background-color: var(--royal-blue);
  color: var(--white);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-text {
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(18, 58, 140, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Page Headers */
.page-header {
  background-color: var(--royal-blue);
  color: var(--white);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,196,48,0.15) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.page-title {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav { display: none; }
  .hamburger { display: block; }
  
  .header-actions .btn {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Mobile Nav */
  .mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .mobile-nav .btn {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .page-title {
    font-size: 2.2rem;
  }
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   WHY MBA® SECTION
   ROYAL BLUE + YELLOW + WHITE
========================================= */

.why-mba-section {
    position: relative;
    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f9fc 100%
        );

    overflow: hidden;
}


/* Decorative Background */

.why-mba-section::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    background: rgba(18, 58, 140, 0.05);

    border-radius: 50%;

    pointer-events: none;
}


.why-mba-section::after {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -180px;
    left: -150px;

    background: rgba(244, 196, 48, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


/* Container */

.why-mba-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 0 24px;

    position: relative;
    z-index: 2;
}


/* =========================================
   HEADER
========================================= */

.why-mba-header {
    max-width: 760px;

    margin: 0 auto 60px;

    text-align: center;
}


.why-mba-label {
    display: inline-block;

    margin-bottom: 18px;

    padding: 7px 16px;

    border-radius: 30px;

    background: rgba(244, 196, 48, 0.14);

    color: #123A8C;

    border: 1px solid rgba(244, 196, 48, 0.45);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.why-mba-header h2 {
    margin: 0 0 20px;

    font-family: var(--font-main);

    font-size: clamp(2.2rem, 4vw, 3.6rem);

    line-height: 1.15;

    color: #123A8C;

    font-weight: 700;
}


.why-mba-header h2 span {
    display: block;

    color: #F4C430;
}


.why-mba-header p {
    max-width: 700px;

    margin: 0 auto;

    color: #5B6472;

    font-family: 'Inter', sans-serif;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================
   FEATURE GRID
========================================= */

.why-mba-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


/* Card */

.why-mba-card {
    position: relative;

    padding: 34px 30px;

    min-height: 280px;

    background: #ffffff;

    border: 1px solid rgba(18, 58, 140, 0.10);

    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(18, 58, 140, 0.06);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.why-mba-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #F4C430;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}


.why-mba-card:hover {
    transform: translateY(-8px);

    border-color: rgba(18, 58, 140, 0.25);

    box-shadow:
        0 18px 45px rgba(18, 58, 140, 0.12);
}


.why-mba-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   ICON
========================================= */

.why-mba-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 14px;

    background: #123A8C;

    color: #F4C430;

    font-size: 22px;

    box-shadow:
        0 8px 20px rgba(18, 58, 140, 0.20);

    transition: all 0.35s ease;
}


.why-mba-card:hover .why-mba-icon {
    background: #F4C430;

    color: #123A8C;

    transform: scale(1.05);
}


/* Number */

.why-mba-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: rgba(18, 58, 140, 0.08);

    font-family: var(--font-main);

    font-size: 42px;

    font-weight: 700;
}


/* Heading */

.why-mba-card h3 {
    margin: 0 0 12px;

    color: #123A8C;

    font-family: var(--font-main);

    font-size: 20px;

    line-height: 1.35;
}


/* Description */

.why-mba-card p {
    margin: 0;

    color: #5B6472;

    font-family: 'Inter', sans-serif;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   HIGHLIGHT CARD
========================================= */

.why-mba-highlight {
    background: #123A8C;

    border-color: #123A8C;
}


.why-mba-highlight::before {
    background: #F4C430;

    transform: scaleX(1);
}


.why-mba-highlight .why-mba-icon {
    background: #F4C430;

    color: #123A8C;
}


.why-mba-highlight h3 {
    color: #ffffff;
}


.why-mba-highlight p {
    color: rgba(255,255,255,0.78);
}


.why-mba-highlight .why-mba-number {
    color: rgba(255,255,255,0.08);
}


/* =========================================
   CTA
========================================= */

.why-mba-cta {
    margin-top: 55px;

    padding: 30px 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    background: #123A8C;

    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(18, 58, 140, 0.16);
}


.why-mba-cta h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-family: var(--font-main);

    font-size: 24px;
}


.why-mba-cta p {
    margin: 0;

    color: rgba(255,255,255,0.75);

    font-size: 15px;
}


/* CTA Button */

.why-mba-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 25px;

    background: #F4C430;

    color: #123A8C;

    border-radius: 30px;

    font-family: 'Inter', sans-serif;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.3s ease;
}


.why-mba-btn:hover {
    background: #ffffff;

    color: #123A8C;

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(244, 196, 48, 0.25);
}


.why-mba-btn i {
    transition: transform 0.3s ease;
}


.why-mba-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .why-mba-section {
        padding: 85px 0;
    }

    .why-mba-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


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

@media (max-width: 650px) {

    .why-mba-section {
        padding: 70px 0;
    }

    .why-mba-container {
        padding: 0 18px;
    }

    .why-mba-header {
        margin-bottom: 40px;
    }

    .why-mba-header h2 {
        font-size: 2rem;
    }

    .why-mba-header p {
        font-size: 15px;
    }

    .why-mba-grid {
        grid-template-columns: 1fr;
    }

    .why-mba-card {
        min-height: auto;

        padding: 30px 25px;
    }

    .why-mba-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 28px 25px;
    }

    .why-mba-btn {
        width: 100%;
    }

}

/* =========================================
   MBA® WHY CHOOSE US
   ROYAL BLUE + YELLOW + WHITE
========================================= */

.mba-why-section {
    position: relative;

    padding: 110px 0;

    background: #ffffff;

    overflow: hidden;
}


/* Decorative background */

.mba-why-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -200px;

    background: rgba(244, 196, 48, 0.06);

    border-radius: 50%;

    pointer-events: none;
}


.mba-why-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -180px;
    left: -150px;

    background: rgba(18, 58, 140, 0.05);

    border-radius: 50%;

    pointer-events: none;
}


/* Container */

.mba-why-container {

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

    padding: 0 25px;

    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    gap: 80px;

    align-items: center;

    position: relative;

    z-index: 2;
}


/* =========================================
   LEFT VISUAL
========================================= */

.mba-why-visual {

    position: relative;

    min-height: 650px;

    border-radius: 35px;

    background: #123A8C;

    overflow: hidden;

    box-shadow:
        0 25px 70px rgba(18, 58, 140, 0.20);
}


/* Decorative circles */

.mba-visual-bg {

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.12);

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

}


.mba-visual-bg::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    border: 1px solid rgba(244,196,48,0.22);

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);
}


.mba-visual-bg::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        rgba(244,196,48,0.08);

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);
}


/* Main Visual Content */

.mba-visual-content {

    position: absolute;

    left: 50px;
    bottom: 50px;

    max-width: 330px;

    z-index: 4;
}


.mba-small-label {

    display: inline-block;

    margin-bottom: 18px;

    padding: 7px 15px;

    border-radius: 30px;

    background: #F4C430;

    color: #123A8C;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.mba-visual-content h2 {

    margin: 0 0 18px;

    color: #ffffff;

    font-family: var(--font-main);

    font-size: 38px;

    line-height: 1.15;
}


.mba-visual-content h2 span {

    display: block;

    color: #F4C430;
}


.mba-visual-content p {

    margin: 0 0 25px;

    color: rgba(255,255,255,0.75);

    font-size: 15px;

    line-height: 1.7;
}


/* Yellow CTA */

.mba-yellow-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 22px;

    background: #F4C430;

    color: #123A8C;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.mba-yellow-btn:hover {

    background: #ffffff;

    color: #123A8C;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(244,196,48,0.25);
}


/* =========================================
   STAT CARDS
========================================= */

.mba-stat-card {

    position: absolute;

    z-index: 5;

    width: 155px;

    min-height: 125px;

    padding: 22px;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.15);

    display: flex;

    flex-direction: column;

    justify-content: center;

    transition: all 0.35s ease;
}


.mba-stat-card:hover {

    transform: translateY(-7px) scale(1.02);

}


.mba-stat-card strong {

    display: block;

    color: #123A8C;

    font-family: var(--font-main);

    font-size: 30px;

    line-height: 1;

    margin-bottom: 8px;

}


.mba-stat-card span {

    color: #667085;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


/* Icon */

.mba-stat-icon {

    width: 40px;
    height: 40px;

    margin-bottom: 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #123A8C;

    color: #F4C430;

    font-size: 17px;
}


/* Card Positions */

.mba-stat-1 {

    top: 45px;

    left: 35px;
}


.mba-stat-2 {

    top: 100px;

    right: 30px;

    background: #F4C430;
}


.mba-stat-2 strong,
.mba-stat-2 span {

    color: #123A8C;
}


.mba-stat-2 .mba-stat-icon {

    background: #123A8C;

    color: #F4C430;
}


.mba-stat-3 {

    top: 300px;

    left: 25px;
}


.mba-stat-4 {

    top: 330px;

    right: 35px;

    background: #123A8C;
}


.mba-stat-4 strong,
.mba-stat-4 span {

    color: #ffffff;
}


.mba-stat-4 .mba-stat-icon {

    background: #F4C430;

    color: #123A8C;
}


.mba-stat-5 {

    bottom: 45px;

    right: 30px;
}


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

.mba-why-content {

    position: relative;
}


.mba-section-tag {

    display: inline-block;

    margin-bottom: 15px;

    color: #123A8C;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;
}


.mba-why-content h2 {

    margin: 0;

    color: #123A8C;

    font-family: var(--font-main);

    font-size: clamp(2.3rem, 4vw, 3.5rem);

    line-height: 1.15;
}


.mba-why-content h2 span {

    color: #F4C430;
}


.mba-title-line {

    width: 70px;

    height: 4px;

    margin: 22px 0 30px;

    background:
        linear-gradient(
            90deg,
            #123A8C,
            #F4C430
        );

    border-radius: 5px;
}


.mba-why-content > p {

    margin: 0 0 22px;

    color: #596273;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   FEATURE BOX
========================================= */

.mba-feature-box {

    display: flex;

    gap: 20px;

    margin: 30px 0;

    padding: 25px;

    background: #F7F9FC;

    border-left: 4px solid #F4C430;

    border-radius: 15px;
}


.mba-feature-icon {

    flex-shrink: 0;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #123A8C;

    color: #F4C430;

    font-size: 21px;
}


.mba-feature-box h3 {

    margin: 0 0 8px;

    color: #123A8C;

    font-family: var(--font-main);

    font-size: 19px;
}


.mba-feature-box p {

    margin: 0;

    color: #667085;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   BENEFITS
========================================= */

.mba-benefits {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px 25px;

    margin: 25px 0 30px;
}


.mba-benefit {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #123A8C;

    font-size: 14px;

    font-weight: 600;
}


.mba-benefit i {

    color: #F4C430;

    font-size: 17px;
}


/* =========================================
   OUTLINE BUTTON
========================================= */

.mba-outline-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 25px;

    border: 2px solid #123A8C;

    border-radius: 30px;

    color: #123A8C;

    background: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.mba-outline-btn:hover {

    background: #123A8C;

    color: #ffffff;

    transform: translateY(-3px);
}


.mba-outline-btn i {

    transition: transform 0.3s ease;
}


.mba-outline-btn:hover i {

    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .mba-why-container {

        grid-template-columns: 1fr;

        gap: 60px;

        max-width: 850px;
    }


    .mba-why-visual {

        min-height: 600px;
    }

}


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

@media (max-width: 650px) {

    .mba-why-section {

        padding: 70px 0;
    }


    .mba-why-container {

        padding: 0 18px;
    }


    .mba-why-visual {

        min-height: 650px;

        border-radius: 25px;
    }


    .mba-visual-content {

        left: 25px;

        bottom: 30px;

        max-width: 270px;
    }


    .mba-visual-content h2 {

        font-size: 30px;
    }


    .mba-stat-card {

        width: 125px;

        min-height: 105px;

        padding: 16px;
    }


    .mba-stat-card strong {

        font-size: 24px;
    }


    .mba-stat-1 {

        left: 18px;

        top: 25px;
    }


    .mba-stat-2 {

        right: 18px;

        top: 80px;
    }


    .mba-stat-3 {

        left: 18px;

        top: 245px;
    }


    .mba-stat-4 {

        right: 18px;

        top: 280px;
    }


    .mba-stat-5 {

        right: 18px;

        bottom: 30px;
    }


    .mba-benefits {

        grid-template-columns: 1fr;
    }


    .mba-feature-box {

        flex-direction: column;
    }


    .mba-outline-btn {

        width: 100%;

        justify-content: center;
    }

}

/* =========================================
   MBA® TESTIMONIALS
   ROYAL BLUE + YELLOW + WHITE
========================================= */

.mba-testimonials {
    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #ffffff 100%
        );

    overflow: hidden;
}


/* Decorative background */

.mba-testimonials::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    left: -180px;

    border-radius: 50%;

    background:
        rgba(18, 58, 140, 0.05);

    pointer-events: none;
}


.mba-testimonials::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    bottom: -200px;
    right: -150px;

    border-radius: 50%;

    background:
        rgba(244, 196, 48, 0.07);

    pointer-events: none;
}


/* Container */

.mba-testimonials-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 25px;
}


/* =========================================
   HEADER
========================================= */

.mba-testimonials-header {

    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;
}


.mba-testimonials-tag {

    display: inline-block;

    margin-bottom: 16px;

    padding: 7px 16px;

    border-radius: 30px;

    background:
        rgba(244, 196, 48, 0.15);

    border:
        1px solid rgba(244, 196, 48, 0.45);

    color: #123A8C;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.mba-testimonials-header h2 {

    margin: 0 0 18px;

    color: #123A8C;

    font-family: var(--font-main);

    font-size:
        clamp(2.2rem, 4vw, 3.5rem);

    line-height: 1.15;
}


.mba-testimonials-header h2 span {

    display: block;

    color: #F4C430;
}


.mba-testimonials-header p {

    max-width: 650px;

    margin: 0 auto;

    color: #667085;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   TESTIMONIAL GRID
========================================= */

.mba-testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    align-items: start;
}


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

.mba-testimonial-card {

    position: relative;

    background: #ffffff;

    border-radius: 22px;

    overflow: hidden;

    border:
        1px solid rgba(18, 58, 140, 0.10);

    box-shadow:
        0 12px 40px rgba(18, 58, 140, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


.mba-testimonial-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(244, 196, 48, 0.65);

    box-shadow:
        0 25px 55px
        rgba(18, 58, 140, 0.14);
}


/* Featured middle card */

.mba-testimonial-card.featured {

    transform:
        translateY(-18px);

    border:
        2px solid #F4C430;

    box-shadow:
        0 25px 60px
        rgba(18, 58, 140, 0.14);
}


.mba-testimonial-card.featured:hover {

    transform:
        translateY(-25px);
}


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

.mba-testimonial-image {

    position: relative;

    height: 310px;

    overflow: hidden;

    background: #123A8C;
}


.mba-testimonial-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.6s ease;
}


.mba-testimonial-card:hover
.mba-testimonial-image img {

    transform:
        scale(1.06);
}


/* Image overlay */

.mba-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(18,58,140,0.05) 40%,
            rgba(18,58,140,0.75) 100%
        );
}


/* Quote */

.mba-quote {

    position: absolute;

    left: 22px;
    bottom: 18px;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #F4C430;

    color: #123A8C;

    font-family: Georgia, serif;

    font-size: 42px;

    line-height: 1;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,0.2);
}


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

.mba-testimonial-content {

    padding: 30px;
}


/* Stars */

.mba-stars {

    margin-bottom: 15px;

    color: #F4C430;

    font-size: 16px;

    letter-spacing: 3px;
}


/* Name */

.mba-testimonial-content h3 {

    margin: 0 0 6px;

    color: #123A8C;

    font-family: var(--font-main);

    font-size: 21px;

    line-height: 1.3;
}


/* Designation */

.mba-designation {

    display: block;

    margin-bottom: 20px;

    color: #F4C430;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.5;
}


/* Review */

.mba-testimonial-content p {

    margin: 0 0 22px;

    color: #667085;

    font-size: 14px;

    line-height: 1.8;
}


/* Link */

.mba-testimonial-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #123A8C;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: gap 0.3s ease;
}


.mba-testimonial-link span {

    color: #F4C430;

    font-size: 18px;
}


.mba-testimonial-link:hover {

    gap: 13px;
}


/* =========================================
   BOTTOM CTA
========================================= */

.mba-testimonials-cta {

    margin-top: 55px;

    padding: 28px 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    background: #123A8C;

    border-radius: 20px;

    box-shadow:
        0 18px 45px
        rgba(18, 58, 140, 0.15);
}


.mba-testimonials-cta span {

    color: #F4C430;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.mba-testimonials-cta h3 {

    margin: 5px 0 0;

    color: #ffffff;

    font-family: var(--font-main);

    font-size: 25px;
}


.mba-testimonials-cta a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 24px;

    background: #F4C430;

    color: #123A8C;

    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    white-space: nowrap;

    transition: all 0.3s ease;
}


.mba-testimonials-cta a:hover {

    background: #ffffff;

    transform:
        translateY(-3px);
}


.mba-testimonials-cta a span {

    color: #123A8C;

    font-size: 18px;

    letter-spacing: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .mba-testimonial-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .mba-testimonial-card.featured {

        transform: none;
    }


    .mba-testimonial-card.featured:hover {

        transform:
            translateY(-10px);
    }

}


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

@media (max-width: 650px) {

    .mba-testimonials {

        padding: 75px 0;
    }


    .mba-testimonials-container {

        padding: 0 18px;
    }


    .mba-testimonials-header {

        margin-bottom: 40px;
    }


    .mba-testimonials-header h2 {

        font-size: 2rem;
    }


    .mba-testimonial-grid {

        grid-template-columns: 1fr;

        gap: 22px;
    }


    .mba-testimonial-image {

        height: 280px;
    }


    .mba-testimonial-content {

        padding: 25px;
    }


    .mba-testimonials-cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 25px;
    }


    .mba-testimonials-cta a {

        width: 100%;

        justify-content: center;
    }

}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(244, 196, 48, 0.35);

    color: #F4C430;

    font-size: 18px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.social-link:hover {
    background: #F4C430;

    color: #123A8C;

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(244, 196, 48, 0.25);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.social-link {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(244, 196, 48, 0.45);

    color: #F4C430;

    text-decoration: none;

    font-size: 18px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.social-link i {
    display: block;
    line-height: 1;
}

.social-link:hover {
    background: #F4C430;
    color: #123A8C;

    transform: translateY(-4px);

    box-shadow:
        0 8px 20px rgba(244, 196, 48, 0.3);
}

