:root {
    --mba-primary: #2563eb;
    --mba-primary-dark: #1d4ed8;
    --mba-secondary: #0f172a;
    --mba-accent: #1d4ed8;
    --mba-light: #f8fafc;
    --mba-gray: #64748b;
    --mba-gray-light: #e2e8f0;
    --mba-gray-dark: #334155;
    --mba-text: #1e293b;
    --mba-border-radius: 8px;
    --mba-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --mba-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --mba-transition: all 0.3s ease;
  }
  
  /* Container */
  .mba-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Section Styles */
  .mba-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mba-secondary);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
  }
  
  .mba-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--mba-primary);
    border-radius: 2px;
  }
  
  /* Hero Carousel */
  .mba-hero-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
  }
  
  .mba-carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
  }
  
  .mba-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }
  
  .mba-carousel-slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .mba-carousel-slide.mba-active {
    opacity: 1;
  }
  
  .mba-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mba-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
  }
  
  .mba-carousel-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 0.5s ease-out;
  }
  
  .mba-carousel-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    animation: fadeInUp 0.5s ease-out 0.2s both;
  }
  
  .mba-carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 10;
  }
  
  .mba-carousel-prev,
  .mba-carousel-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: var(--mba-transition);
  }
  
  .mba-carousel-prev:hover,
  .mba-carousel-next:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .mba-carousel-dots {
    display: flex;
    gap: 0.5rem;
  }
  
  .mba-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--mba-transition);
  }
  
  .mba-carousel-dot.mba-active {
    background: white;
    transform: scale(1.2);
  }
  
  /* Overview Section */
  .mba-overview-section {
    padding: 5rem 0;
    background-color: var(--mba-light);
  }
  
  .mba-overview-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mba-overview-text {
    color: var(--mba-text);
  }
  
  .mba-overview-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--mba-gray-dark);
  }
  
  .mba-overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .mba-stat-card {
    background: white;
    border-radius: var(--mba-border-radius);
    padding: 1.5rem;
    box-shadow: var(--mba-shadow);
    display: flex;
    align-items: center;
    transition: var(--mba-transition);
  }
  
  .mba-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mba-shadow-lg);
  }
  
  .mba-stat-icon {
    background: var(--mba-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
  }
  
  .mba-stat-content {
    flex: 1;
  }
  
  .mba-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--mba-primary);
    margin-bottom: 0.25rem;
  }
  
  .mba-stat-label {
    font-size: 1rem;
    color: var(--mba-gray);
  }
  
  /* Skills Section */
  .mba-skills-section {
    padding: 5rem 0;
    background-color: white;
  }
  
  .mba-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .mba-skill-card {
    background: var(--mba-light);
    border-radius: var(--mba-border-radius);
    padding: 2rem;
    box-shadow: var(--mba-shadow);
    transition: var(--mba-transition);
    border-top: 4px solid var(--mba-primary);
  }
  
  .mba-skill-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mba-shadow-lg);
  }
  
  .mba-skill-icon {
    background: var(--mba-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .mba-skill-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--mba-secondary);
    margin-bottom: 1rem;
  }
  
  .mba-skill-description {
    color: var(--mba-gray-dark);
    line-height: 1.6;
  }
  
  /* Technologies Section */
  .mba-tech-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0056b3 0%, #0a704d 100%);
    color: black;
  }
  
  .mba-tech-section .mba-section-title {
    color: white;
  }
  
  .mba-tech-section .mba-section-title::after {
    background: var(--mba-accent);
  }
  
  .mba-tech-wrapper {
    overflow: hidden;
  }
  
  .mba-tech-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .mba-tech-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--mba-border-radius);
    padding: 2rem;
    transition: var(--mba-transition);
    border-left: 4px solid var(--mba-accent);
  }
  
  .mba-tech-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
  }
  
  .mba-tech-icon {
    background: var(--mba-accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .mba-tech-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
  }
  
  .mba-tech-description {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
  }
  
  /* Benefits Section */
  .mba-benefits-section {
    padding: 5rem 0;
    background-color: var(--mba-light);
  }
  
  .mba-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .mba-benefit-card {
    background: white;
    border-radius: var(--mba-border-radius);
    padding: 2rem;
    box-shadow: var(--mba-shadow);
    transition: var(--mba-transition);
    text-align: center;
  }
  
  .mba-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mba-shadow-lg);
  }
  
  .mba-benefit-icon {
    background: var(--mba-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }
  
  .mba-benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--mba-secondary);
    margin-bottom: 1rem;
  }
  
  .mba-benefit-description {
    color: var(--mba-gray-dark);
    line-height: 1.6;
  }
  
  /* CTA Section */
  .mba-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--mba-primary), var(--mba-primary-dark));
    color: white;
  }
  
  .mba-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .mba-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white
  }
  
  .mba-cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: white!important;
  }
  
  .mba-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .mba-cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--mba-transition);
  }
  
  .mba-primary-button {
    background: white;
    color: var(--mba-primary);
  }
  
  .mba-primary-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
  }
  
  .mba-secondary-button {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .mba-secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Styles */
  @media (min-width: 768px) {
    .mba-overview-content {
      grid-template-columns: 2fr 1fr;
    }
    
    .mba-carousel-title {
      font-size: 4rem;
    }
    
    .mba-carousel-subtitle {
      font-size: 1.75rem;
    }
  }
  
  @media (max-width: 767px) {
    .mba-section-title {
      font-size: 2rem;
    }
    
    .mba-carousel-title {
      font-size: 2.5rem;
    }
    
    .mba-carousel-subtitle {
      font-size: 1.25rem;
    }
    
    .mba-carousel-container {
      height: 450px;
    }
    
    .mba-cta-title {
      font-size: 2rem;
    }
  }
  
  
  
  
  /* Contact Section */
  
  /* General Styling */
  .support-section {
      padding: 60px 0;
      background-color: #f9f9f9;
  }
  .support-section .conform {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  
  .inquiry-form {
      max-width: 600px; /* Adjust width if needed */
      width: 100%;
  }
  
  
  /* Info Details & Form Container */
  .info-box {
      min-height: 100%; /* Ensures both boxes are the same height */
      background: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .info-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  /* Icon Styling */
  .info-icon {
   
      color: #610095;
      display: flex;
      align-items: center;
      justify-content: center;
    
      font-size: 18px;
  }
  
  /* Info Details */
  .info-details {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
  }
  
  .info-details .info-text {
      margin-left: 15px;
  }
  
  .info-text h5 {
      margin-bottom: 5px;
      color: #333;
      font-weight: 600;
  }
  
  /* Inquiry Form */
  .inquiry-form input,
  .inquiry-form textarea {
      border-radius: 10px;
      border: 1px solid #c0bfbf !important;
      padding: 12px;
  }
  
  .inquiry-form input:focus,
  .inquiry-form textarea:focus {
      border-color: #610095;
      box-shadow: 0 0 10px rgba(97, 0, 149, 0.3);
  }
  
  .inquiry-form button {
      border-radius: 10px;
      background: #610095;
      border: none;
      font-size: 18px;
      font-weight: 600;
      transition: 0.3s;
  }
  
  .inquiry-form button:hover {
      background: #4d0077;
  }
  