﻿/* ======================= PROGRAMS TYPOGRAPHY SYSTEM ======================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary-sky-blue: #0077BE;
  --secondary-yellow: #FFD700;
  --dark-sky-blue: #005A8D;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  
  /* ===== UNIFIED TYPOGRAPHY SYSTEM - DESKTOP ===== */
  --body-text: 16px;
  --h1-size: 36px;
  --h2-size: 28px;
  --h3-size: 22px;
  --h4-size: 18px;
  --h5-size: 18px;
  --h6-size: 18px;
  --subheading-size: 18px;
  --nav-link-size: 16px;
  --small-text-size: 14px;
  --line-height: 1.5;
}

@media (max-width: 768px) {
  :root {
    /* ===== UNIFIED TYPOGRAPHY SYSTEM - MOBILE ===== */
    --body-text: 14px;
    --h1-size: 28px;
    --h2-size: 22px;
    --h3-size: 18px;
    --h4-size: 16px;
    --h5-size: 16px;
    --h6-size: 16px;
    --subheading-size: 16px;
    --nav-link-size: 14px;
    --small-text-size: 12px;
    --line-height: 1.4;
  }
}

/* ===== PROGRAMS TYPOGRAPHY OVERRIDES ===== */
body { 
    font-family: 'Poppins', sans-serif; 
    font-size: var(--body-text);
    line-height: var(--line-height);
}

/* ===== ABSOLUTE UNIVERSAL HEADING ENFORCEMENT FOR PROGRAMS - CATCH ALL VARIATIONS ===== */

/* ALL H1 ELEMENTS - NO EXCEPTIONS */
h1, h1[class], h1[id], 
h1.title, h1.story-title, h1.section-title, h1.main-title,
h1.hero-title, h1.page-title, h1.heading, h1.header,
h1.dsufaq-title, h1.certtitle, h1.text-black,
h1.master-of-fixed, h1.typewriter-line, h1.main-title .headline,
h1.mba-hero-title, h1.career-title, h1.coordinator-section-title,
.h1, *[class*="h1"] { 
    font-size: var(--h1-size) !important; 
    font-weight: 800 !important; 
    line-height: 1.2 !important; 
}

/* ALL H2 ELEMENTS - NO EXCEPTIONS */
h2, h2[class], h2[id],
h2.title, h2.story-title, h2.section-title, h2.main-title,
h2.hero-title, h2.page-title, h2.heading, h2.header,
h2.dsufaq-title, h2.certtitle, h2.text-black,
h2.why-title, h2.pls-heading, h2.fees-main-heading,
h2.po-title, h2.electives-heading,
.h2, *[class*="h2"] { 
    font-size: var(--h2-size) !important; 
    font-weight: 700 !important; 
    line-height: 1.3 !important; 
}

/* ALL H3 ELEMENTS - NO EXCEPTIONS */
h3, h3[class], h3[id],
h3.title, h3.story-title, h3.section-title, h3.main-title,
h3.hero-title, h3.page-title, h3.heading, h3.header,
h3.dsufaq-title, h3.certtitle, h3.text-black,
h3.jp-section-title, h3.pls-title, h3.faculty-modal-name,
h3.name, h3.elective-title,
.h3, *[class*="h3"] { 
    font-size: var(--h3-size) !important; 
    font-weight: 600 !important; 
    line-height: 1.4 !important; 
}

/* ALL H4 ELEMENTS - NO EXCEPTIONS */
h4, h4[class], h4[id],
h4.title, h4.story-title, h4.section-title, h4.main-title,
h4.hero-title, h4.page-title, h4.heading, h4.header,
h4.dsufaq-title, h4.certtitle, h4.text-black,
h4.step-title,
.h4, *[class*="h4"] { 
    font-size: var(--h4-size) !important; 
    font-weight: 600 !important; 
    line-height: 1.4 !important; 
}

/* ALL H5 ELEMENTS - NO EXCEPTIONS */
h5, h5[class], h5[id],
h5.title, h5.story-title, h5.section-title, h5.main-title,
h5.hero-title, h5.page-title, h5.heading, h5.header,
h5.dsufaq-title, h5.certtitle, h5.text-black,
h5.pls-subtitle,
.h5, *[class*="h5"] { 
    font-size: var(--h5-size) !important; 
    font-weight: 500 !important; 
    line-height: 1.5 !important; 
}

/* ALL H6 ELEMENTS - NO EXCEPTIONS */
h6, h6[class], h6[id],
h6.title, h6.story-title, h6.section-title, h6.main-title,
h6.hero-title, h6.page-title, h6.heading, h6.header,
h6.dsufaq-title, h6.certtitle, h6.text-black,
.h6, *[class*="h6"] { 
    font-size: var(--h6-size) !important; 
    font-weight: 500 !important; 
    line-height: 1.5 !important; 
}

/* ===== CONSISTENT HEADING SIZES FOR PROGRAMS - UNIVERSAL ENFORCEMENT ===== */
h1, .h1, .master-of-fixed, .typewriter-line, .main-title .headline,
.mba-hero-title, .career-title, .coordinator-section-title,
h1.dsufaq-title, h1.certtitle, h1.text-black { 
    font-size: var(--h1-size) !important; 
    font-weight: 800 !important; 
    line-height: 1.2 !important; 
}

h2, .h2, .section-title, .why-title, .pls-heading,
.fees-main-heading, .po-title, .electives-heading,
h2.dsufaq-title, h2.certtitle, h2.text-black { 
    font-size: var(--h2-size) !important; 
    font-weight: 700 !important; 
    line-height: 1.3 !important; 
}

h3, .h3, .jp-section-title, .pls-title, .faculty-modal-name,
.name, .elective-title,
h3.dsufaq-title, h3.certtitle, h3.text-black { 
    font-size: var(--h3-size) !important; 
    font-weight: 600 !important; 
    line-height: 1.4 !important; 
}

h4, .h4, .step-title,
h4.dsufaq-title, h4.certtitle, h4.text-black { 
    font-size: var(--h4-size) !important; 
    font-weight: 600 !important; 
    line-height: 1.4 !important; 
}

h5, .h5, .pls-subtitle,
h5.dsufaq-title, h5.certtitle, h5.text-black { 
    font-size: var(--h5-size) !important; 
    font-weight: 500 !important; 
    line-height: 1.5 !important; 
}

h6, .h6,
h6.dsufaq-title, h6.certtitle, h6.text-black { 
    font-size: var(--h6-size) !important; 
    font-weight: 500 !important; 
    line-height: 1.5 !important; 
}

/* ===== CONSISTENT PARAGRAPH AND TEXT SIZES FOR PROGRAMS - UNIVERSAL ENFORCEMENT ===== */
p, .text-black, .mba-hero-desc, .why-desc, .pls-text,
.step-text, .bio, .faculty-modal-bio, .jp-item-para,
.dsu-accordion-body, .career-accordion-content p,
.accordion-content p, .feature p, .ahead-text,
.pls-list li, .po-desc, .curriculum-table td,
.semester-content, .elective-card p,
p.dsufaq-title, p.certtitle, p.text-black { 
    font-size: var(--body-text) !important; 
    line-height: var(--line-height) !important; 
    font-weight: normal !important;
}

/* ===== PROGRAMS SPECIFIC ELEMENTS - UNIVERSAL ===== */
.slide-text, .online-mba, .cloudhero_subtitle { 
    font-size: var(--subheading-size) !important; 
    font-weight: 600 !important; 
}

.info-box .title, .cloudhero_info_box .title { 
    font-size: var(--small-text-size) !important; 
}

.info-box .value, .cloudhero_info_box .value { 
    font-size: var(--h4-size) !important; 
    font-weight: 700 !important; 
}

.designation, .course, .designation-caption { 
    font-size: var(--subheading-size) !important; 
    font-weight: 600 !important; 
}

.name-caption { 
    font-size: var(--h3-size) !important; 
    font-weight: 800 !important; 
}

.course-caption { 
    font-size: var(--body-text) !important; 
    font-weight: 500 !important; 
}

/* ===== BUTTON TEXT FOR PROGRAMS - UNIVERSAL ===== */
.btn, .button, .pls-btn, .fees-apply-btn, .faculty-link,
.banner-btn, .curriculum-btn, .semester-btn { 
    font-size: var(--body-text) !important; 
}

/* ===== FORM ELEMENTS FOR PROGRAMS - UNIVERSAL ===== */
input, textarea, select, label { 
    font-size: var(--body-text) !important; 
    line-height: var(--line-height) !important; 
}

/* ===== OVERRIDE ANY INLINE STYLES FOR PROGRAMS - UNIVERSAL ENFORCEMENT ===== */
[style*="font-size"] h1,
.dsufaq-title h1, .certtitle h1, .text-black h1 { 
    font-size: var(--h1-size) !important; 
}

[style*="font-size"] h2,
.dsufaq-title h2, .certtitle h2, .text-black h2 { 
    font-size: var(--h2-size) !important; 
}

[style*="font-size"] h3,
.dsufaq-title h3, .certtitle h3, .text-black h3 { 
    font-size: var(--h3-size) !important; 
}

[style*="font-size"] h4,
.dsufaq-title h4, .certtitle h4, .text-black h4 { 
    font-size: var(--h4-size) !important; 
}

[style*="font-size"] h5,
.dsufaq-title h5, .certtitle h5, .text-black h5 { 
    font-size: var(--h5-size) !important; 
}

[style*="font-size"] h6,
.dsufaq-title h6, .certtitle h6, .text-black h6 { 
    font-size: var(--h6-size) !important; 
}

[style*="font-size"] p,
.dsufaq-title p, .certtitle p, .text-black p { 
    font-size: var(--body-text) !important; 
}

.mba-banner {
    min-height: 95vh;
    max-height: none; /* Remove max-height constraint */
    height: auto; /* Allow dynamic height */
    display: flex;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, rgba(3, 27, 122, 1), rgba(4, 91, 126, 1));
    color: #fff;
    padding: 5rem 1rem 1rem 1rem;
  }

  /* Dynamic height adjustment for the entire banner */
  .mba-banner.dynamic-height {
    min-height: var(--banner-height, 95vh);
    height: var(--banner-height, auto);
  }

  /* RIGHT DYNAMIC IMAGE - MATCHES CONTENT HEIGHT */
  .parallax-image {
    position: fixed;
    top: 0;
    right: 0;
    width: 43%;
    height: 100vh; /* Start with full viewport height */
    background: url('images/DSU4.webp') center/cover no-repeat;
    z-index: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    opacity: 1;
  }

  /* Dynamic height adjustment via JavaScript */
  .parallax-image.dynamic-height {
    height: var(--content-height, 100vh);
  }

  .home-banner-cont {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: flex-start;
    height: 100%;
  }

  /* Ensure all sections after hero have higher z-index and proper background */
  .mba-banner ~ section:not(.pgm-learning-sys):not(.custom-curriculum-section):not(.why-mba-section):not(.jp-industries-section),
  .mba-banner ~ div,
  section:not(.mba-banner):not(.pgm-learning-sys):not(.custom-curriculum-section):not(.why-mba-section):not(.jp-industries-section),
  .electives-card-section,
  .faculty-section,
  .pls-section,
  .how-to-apply,
  .po-section,
  footer,
  main,
  .main-content {
    position: relative !important;
    z-index: 100 !important;
    background: white !important;
  }

  /* Add extra coverage for any potential gaps - but exclude special sections */
  .mba-banner ~ *:not(.pgm-learning-sys):not(.custom-curriculum-section):not(.why-mba-section):not(.jp-industries-section) {
    position: relative !important;
    z-index: 100 !important;
  }

  /* Ensure body has proper background after hero */
  body {
    background: white !important;
  }

  /* Special handling for sections with their own backgrounds */
  .why-mba-section,
  .jp-industries-section {
    position: relative !important;
    z-index: 100 !important;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%) !important;
  }

  .pgm-learning-sys {
    position: relative !important;
    z-index: 100 !important;
    background: linear-gradient(135deg, rgba(0, 106, 188, 1), rgba(50, 97, 167, 1)) !important;
  }

  .pls-section {
    position: relative !important;
    z-index: 100 !important;
    background: #f8f9fa !important;
  }

  .custom-curriculum-section {
    position: relative !important;
    z-index: 100 !important;
    background: linear-gradient(hsla(206, 84%, 43%, 0.28), hsla(206, 84%, 43%, 0.34)),
                url('https://dsuonline.com/assets/images/mba/programme.png') center/cover no-repeat !important;
  }

  footer {
    position: relative !important;
    z-index: 100 !important;
    background: #1a365d !important;
  }

  .heading-content {
    text-align: left;
    padding-left: 0;
    max-width: 55%;
    margin-top:30px;
    margin-left: -10px;
  }

  .top-logos {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
  }

  .logo-item {
    width: 140px;
    height: 85px;
    padding: 4px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,119,190,.3);
    backdrop-filter: blur(4px);
    transition: all .35s ease;
    flex-shrink: 0;
  }

  .logo-item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  }

  .logo-item img {
    width: 100%;
    height: 100%;
    background: white;
    padding: 3px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 4px 15px rgba(0,119,190,.25);
    transition: all .3s ease;
  }

  .logo-item:hover img {
    transform: scale(1.1);
  }

  .slide-text {
    font-size: var(--h3-size);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }

  .main-title {
    text-align: left;
    position: relative;
  }

  .master-of-fixed {
    display: block;
    font-size: var(--h2-size);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 0.2rem;
  }

  .typewriter-line {
    display: inline-block;
    font-size: var(--h2-size);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typewriter 2.5s steps(25) 0.8s forwards;
    margin-bottom: 0.2rem;
  }

  @keyframes typewriter {
    to { width: 100%; }
  }

  .online-mba {
    display: block;
    font-size: var(--h3-size);
    font-weight: 700;
    color: #fff;
    margin-top: 0.4rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 3.3s forwards;
  }

  @keyframes fadeIn { to { opacity: 1; } }

  .water-flow-text span, .typewriter-line span, .online-mba span {
    display: inline-block;
    transition: transform 0.3s, color 0.3s;
  }

  .water-flow-text span:hover, .typewriter-line span:hover, .online-mba span:hover {
    transform: scale(1.2) translateY(-2px);
    color: #FFD700 !important;
  }

  .mba-info {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
  }

  .info-box {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    min-width: 130px;
    text-align: center;
    transition: all 0.4s ease;
  }

  .info-box:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.3);
  }

  .info-box .title {
    font-size: var(--small-text-size);
    opacity: 0.9;
    margin-bottom: 0.2rem;
  }

  .info-box .value {
    font-size: var(--h5-size);
    font-weight: 700;
    color: #FFD700;
  }

  .info-box .subtext {
    font-size: 0.75rem;
    opacity: 0.85;
  }

  .scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
    z-index: 3;
  }

  @keyframes bounce {
    0%,100%{ transform: translateX(-50%) translateY(0); }
    50%{ transform: translateX(-50%) translateY(-10px); }
  }

  .mouse { width: 28px; height: 45px; border: 2px solid #fff; border-radius: 20px; position: relative; margin-bottom: 8px; }
  .mouse::before { content: ''; width: 5px; height: 8px; background: #fff; border-radius: 3px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scrollWheel 1.5s infinite; }
  @keyframes scrollWheel { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 20px; } }
  .scroll-indicator p { color: #fff; font-size: var(--small-text-size); font-weight: 500; letter-spacing: 1px; margin: 0; }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .mba-banner { 
      flex-direction: column !important; 
      min-height: auto !important; 
      max-height: none !important;
      height: auto !important;
    }
    .heading-content { 
      max-width: 100% !important; 
      margin-bottom: 1rem !important; 
      flex: none !important;
    }
    .parallax-image { 
      position: relative !important; 
      width: 100% !important; 
      height: auto !important;
      min-height: 300px !important;
      max-height: none !important;
      top: auto !important; 
      right: auto !important; 
    }
    .master-of-fixed, .typewriter-line { font-size: var(--h3-size); }
    .online-mba { font-size: var(--h5-size); }
    .slide-text { font-size: var(--h5-size); }
    .mba-info { 
      gap: 0.8rem !important; 
      flex-wrap: wrap !important; /* Allow wrapping to second line */
      justify-content: space-between !important;
      padding: 0 1rem !important;
      margin: 1rem 0 !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }
    
    /* First two boxes - side by side on first line */
    .info-box:nth-child(1),
    .info-box:nth-child(2) { 
      min-width: 140px !important;
      max-width: 150px !important;
      padding: 0.8rem 0.6rem !important;
      flex: 0 0 calc(50% - 0.4rem) !important; /* 2 boxes per line with gap */
      box-sizing: border-box !important;
    }
    
    /* Third box - full width on second line */
    .info-box:nth-child(3) {
      min-width: 100% !important;
      max-width: 100% !important;
      padding: 0.8rem 0.6rem !important;
      flex: 0 0 100% !important; /* Full width on second line */
      box-sizing: border-box !important;
      margin-top: 0.5rem !important;
    }
    .logo-item { width: 110px; height: 65px; }
  }

  @media (max-width: 576px) {
    .master-of-fixed, .typewriter-line { font-size: 1.6rem; }
    .online-mba { font-size: 1.2rem; }
    .slide-text { font-size: 1.2rem; }
    .parallax-image { height: 25vh; }
    
    /* Add padding to prevent overflow */
    .mba-banner {
      padding: 2rem 1.5rem !important; /* Increased horizontal padding */
    }
    
    .heading-content {
      padding: 0 0.5rem !important; /* Add internal padding */
    }
    
    .mba-info { 
      gap: 0.8rem !important; 
      flex-wrap: wrap !important; /* Allow wrapping to second line */
      justify-content: space-between !important;
      padding: 0 1rem !important;
      margin: 1rem 0 !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }
    
    /* First two boxes - side by side on first line */
    .info-box:nth-child(1),
    .info-box:nth-child(2) { 
      min-width: 140px !important;
      max-width: 150px !important;
      padding: 0.8rem 0.6rem !important;
      flex: 0 0 calc(50% - 0.4rem) !important; /* 2 boxes per line with gap */
      box-sizing: border-box !important;
    }
    
    /* Third box - full width on second line */
    .info-box:nth-child(3) {
      min-width: 100% !important;
      max-width: 100% !important;
      padding: 0.8rem 0.6rem !important;
      flex: 0 0 100% !important; /* Full width on second line */
      box-sizing: border-box !important;
      margin-top: 0.5rem !important;
    }
  }
  
  /* Extra small screens for programs */
  @media (max-width: 375px) {
    .mba-info { 
      gap: 0.2rem !important;
      flex-wrap: wrap !important;
      justify-content: space-between !important;
    }
    
    .info-box { 
      min-width: 80px !important;
      max-width: 85px !important;
      padding: 0.3rem 0.2rem !important;
      margin: 0.1rem !important;
    }
    
    .info-box .title {
      font-size: 0.6rem !important;
      white-space: nowrap !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
    }
    
    .info-box .value {
      font-size: 0.8rem !important;
      white-space: nowrap !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
    }
    
    .info-box .subtext {
      font-size: 0.55rem !important;
      white-space: nowrap !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
    }
  }
  @media (max-width: 992px) {
    .mba-banner { flex-direction: column; }
    .heading-content { max-width: 100%; margin-bottom: 1rem; }
    .parallax-image {
        position: relative;  /* not fixed */
        width: 100%;         /* full width below content */
        height: 35vh;        /* smaller height */
        order: 2;            /* moves below heading content */
        margin-top: 1rem;    /* spacing below content */
    }
}


 .mba-hero-section {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--content-padding) 1.5rem;
    overflow: hidden;
    color: white;
    text-align: center;
    margin-top: var(--content-padding);
  }

  .mba-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
      linear-gradient(135deg, #005a8d 0%, #0077be 50%, #0099cc 100%),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23006699"/><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%230088cc" stroke-width="1" opacity="0.3"/><path d="M0,50 L100,50 M50,0 L50,100" stroke="%230099dd" stroke-width="1" opacity="0.2"/></svg>') repeat;
    background-size: cover, 80px 80px;
    z-index: 1;
  }

  .floating-squares {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
  }

  .square {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    animation: floatZoom 6s ease-in-out infinite;
  }

  .square:nth-child(1) { width: 70px; height: 70px; top: 15%; left: 10%; animation-delay: 0s; }
  .square:nth-child(2) { width: 100px; height: 100px; top: 60%; right: 15%; animation-delay: 1.5s; }
  .square:nth-child(3) { width: 55px; height: 55px; bottom: 20%; left: 20%; animation-delay: 3s; }
  .square:nth-child(4) { width: 85px; height: 85px; top: 40%; left: 70%; animation-delay: 4.5s; }

  @keyframes floatZoom {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.6) rotate(10deg); opacity: 0.6; }
  }

  .mba-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .mba-hero-title {
    font-size: var(--h3-size);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  }

  .mba-hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(-40px);
    animation: slideDown 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  }

  .mba-hero-title .line:nth-child(2) {
    animation-delay: 0.3s;
  }

  @keyframes slideDown {
    to { opacity: 1; transform: translateY(0); }
  }

  .mba-hero-desc {
    font-size: var(--body-text);
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.6s forwards;
    color: #fff;
    font-weight: 400;
    text-align: left !important;
  }

  @keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 992px) {
    .mba-hero-title { font-size: var(--h3-size); }
    .mba-hero-desc { font-size: var(--small-text-size); }
  }

  @media (max-width: 768px) {
    .mba-hero-section { 
      min-height: auto !important; 
      height: auto !important;
      padding: 2rem 1rem !important; 
    }
    .mba-hero-title { font-size: var(--h4-size); }
    .mba-hero-desc { font-size: var(--small-text-size); }
  }

  @media (max-width: 576px) {
    .mba-hero-title { font-size: var(--h5-size); }
    .mba-hero-desc { font-size: var(--small-text-size); }
  }

 /* Section Wrapper */
.profile-section {
  width: 100%;
  padding: var(--section-padding) 90px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Centered Heading */
.coordinator-section-title {
  width: 100%;
  text-align: center;
  font-size: var(--h2-size);
  font-weight: 800;
  margin-bottom: var(--section-margin);
  color: #001f3f;
  position: relative;
}
.coordinator-section-title::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 6px;
  background: #3b82f6;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

/* Main Content Row - Desktop: side by side | Mobile: column with image first */
.profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Background Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  z-index: -1;
}
.shape-1 { width: 520px; height: 520px; background: #3b82f6; top: -160px; left: -160px; }
.shape-2 { width: 380px; height: 380px; background: #facc15; bottom: -120px; right: 80px; }
.shape-3 { width: 240px; height: 240px; background: #3b82f6; top: 50%; left: 23%; transform: translateY(-50%); }

/* Text Content */
.text-content {
  margin-left: 40px;
  flex: 1;
  min-width: 320px;
  max-width: 620px;
}

.name { 
  font-size: var(--h3-size);
  font-weight: 800; 
  color: #1f2937; 
  margin-bottom: 8px;
}
.designation { 
  font-size: 1.35rem;
  font-weight: 600; 
  color: #4b5563; 
  margin-bottom: 4px;
}
.course { 
  font-size: 1.7rem;
  font-weight: 800; 
  color: #6b7280; 
  margin-bottom: 14px;
}
.bio {
  font-size: var(--body-text);
  line-height: 1.5;
  color: #4b5563;
  margin-top: 14px;
  text-align: justify;
}

/* Image Wrapper */
.coordinator-image-wrapper {
  flex: 1.2;
  min-width: 250px;
  display: flex;
  justify-content: center;
  margin-right: 30px;
}

.profile-img {
  width: 620px;
  height: 400px;
  object-fit: cover;
  border-radius: 22px;
  transform: perspective(1000px);   /* very subtle tilt */
  box-shadow: 40px 40px 90px rgba(0,0,0,0.35),
              -20px -20px 60px rgba(255,255,255,0.15);
}

/* ========== MOBILE FIRST LAYOUT (Image on Top) ========== */
/* ============= MOBILE: Only Paragraph has uniform line length ============= */
@media (max-width: 992px) {
  .profile-section {
    padding: 60px 25px;
  }

  .profile-row {
    flex-direction: column;
    text-align: center;
  }

  /* Image on top */
  .coordinator-image-wrapper {
    order: 1;
    margin: 0 auto 40px auto;
  }

  .text-content {
    order: 2;
    margin: 0 auto;
    max-width: 620px;
  }

  /* Name, Designation, Course → natural centering (no forced width) */
  .name,
  .designation,
  .course {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* ONLY THE PARAGRAPH → perfect rectangle with same line lengths */
  .bio {
    max-width: 420px;           /* ← Controls the uniform paragraph width */
    margin: 20px auto 0 auto;   /* Centered with nice spacing */
    padding: 0 15px;
    font-size: var(--small-text-size);
    line-height: 1.55;
    color: #4b5563;
    text-align: justify;        /* ← This makes every line same length */
    text-justify: inter-word;   /* Extra clean justification */
    hyphens: auto;
  }

  /* Rest of mobile styles */
  .name { font-size: var(--h3-size); margin-bottom: 6px; }
  .designation { font-size: 1.2rem; margin-bottom: 4px; }
  .course { font-size: var(--body-text); margin-bottom: 16px; }

  .profile-img {
    width: 380px !important;
    height: 320px !important;
    transform: none !important;
    border-radius: 18px;
    box-shadow: 25px 25px 50px rgba(0,0,0,0.25);
  }
}

@media (max-width: 600px) {
  .bio {
    max-width: 360px;           /* Slightly narrower on small phones */
    font-size: 0.92rem;
    padding: 0 10px;
  }
  .name { font-size: 1.9rem; }
  .profile-img {
    width: 340px !important;
    height: 280px !important;
  }
}
/* Wrapper remains flex column on desktop so caption goes below image */
.coordinator-image-wrapper {
  flex: 1.2;
  min-width: 250px;
  display: flex;
  flex-direction: column;        /* ← This forces caption below image */
  align-items: center;           /* ← Perfectly centered */
  margin-right: 30px;
}

/* Caption that appears only on desktop */
.caption-desktop {
  margin-top: 24px;
  text-align: center;
  display: none;                 /* Hidden by default */
}

/* Show only on Desktop */
@media (min-width: 993px) {
  .caption-desktop {
    display: block;
  }
}

/* Hide completely on Mobile/Tablet */
@media (max-width: 992px) {
  .caption-desktop {
    display: none !important;
  }
}

.name-caption {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.designation-caption {
  font-size: var(--h5-size);
  font-weight: 600;
  color: #4b5563;
  margin: 0;
  line-height: 1.4;
}

.course-caption {
  display: block;
  font-size: var(--body-text);
  font-weight: 500;
  color: #6b7280;
  margin-top: 4px;
}
.electives-card-section {
  padding: var(--section-padding) 5px;
  position: relative;
  overflow: hidden;
}

.electives-main-card {
  position: relative;
  z-index: 2;
  max-width: 1350px;
  margin: 0 auto;
  background: url('https://www.color-meanings.com/wp-content/uploads/2022/01/blue-white-abstract-pattern-1024x653.png') center/cover no-repeat;
  background-blend-mode: overlay;
  border-radius: 28px;
  padding: 1rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 50, 100, 0.18);
  border: 1.5px solid rgba(0, 150, 255, 0.2);
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.electives-main-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.electives-container {
  text-align: center;
}

.electives-heading {
  font-size: var(--h2-size);
  font-weight: 800;
  color: #001f3f;
  margin-bottom: var(--section-margin);
  position: relative;
  display: inline-block;
}

.electives-heading::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 7px;
  background: linear-gradient(90deg, #fa1818, #317cbe, #45B7D1, #96CEB4);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.electives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--content-padding);
}

/* ================= CARD ================= */
.elective-card {
  background: white;
  border-radius: 24px;
  padding: 1rem 0.6rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 50, 100, 0.12);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1.8px solid transparent;
  cursor: pointer;
  user-select: none;
}

.elective-card:hover {
  transform: translateY(-14px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 50, 100, 0.22);
  border-color: var(--icon-color);
}

.elective-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--icon-color-light), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.elective-card:hover::before {
  opacity: 0.15;
}

.icon-wrapper {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.4rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(0, 120, 255, 0.25);
  transition: all 0.4s ease;
  z-index: 1;
  animation: float 3.8s ease-in-out infinite;
}

.icon-wrapper i {
  font-size: var(--h3-size);
  color: var(--icon-color);
}

.elective-card:hover .icon-wrapper {
  background: var(--icon-color);
  border-color: var(--icon-color);
  transform: scale(1.08);
}

.elective-card:hover .icon-wrapper i {
  color: white;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
}

.elective-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #001f3f;
  line-height: 1.4;
  z-index: 1;
}

/* ================= COLORS ================= */
.card-1 { --icon-color: #fa1818; --icon-color-light: rgba(255,107,107,.25); }
.card-2 { --icon-color: #4ea1cd; --icon-color-light: rgba(78,205,196,.25); }
.card-3 { --icon-color: #0fc36c; --icon-color-light: rgba(15,195,108,.25); }
.card-4 { --icon-color: #951bcd; --icon-color-light: rgba(149,27,205,.25); }
.card-5 { --icon-color: #FECA57; --icon-color-light: rgba(254,202,87,.25); }
.card-6 { --icon-color: #DDA0DD; --icon-color-light: rgba(221,160,221,.25); }
.card-7 { --icon-color: #6C5CE7; --icon-color-light: rgba(108,92,231,.25); }
.card-8 { --icon-color: #FD79A8; --icon-color-light: rgba(253,121,168,.25); }

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .electives-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .electives-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 🔥 MOBILE ONLY CHANGES */
@media (max-width: 640px) {

  /* 2 cards per row */
  .electives-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  /* Smaller card */
  .elective-card {
    padding: 1.4rem 1rem;
    border-radius: 20px;
  }

  /* Smaller icon */
  .icon-wrapper {
    width: 68px;
    height: 68px;
    margin-bottom: 0.8rem;
  }

  .icon-wrapper i {
    font-size: 1.6rem;
  }

  /* Smaller text */
  .elective-title {
    font-size: var(--small-text-size);
  }

  .electives-heading {
    font-size: 2.1rem;
  }

  .electives-main-card {
    padding: 2.2rem 1.4rem;
    border-radius: 24px;
  }
}

  /* Modal styles remain unchanged - kept from previous working version */
  .mba-modal { display: none; position: fixed; z-index: 1000; background: #fff; border-radius: 24px; padding: 40px; width: 600px; max-width: 92%; box-shadow: 0 30px 70px rgba(0,0,0,0.3); top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9); opacity: 0; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); font-family: 'Inter', sans-serif; }
  .mba-modal.show { display: block; opacity: 1; transform: translate(-50%, -50%) scale(1); }
  .mba-modal-header { display: flex; align-items: center; margin-bottom: 20px; }
  .mba-modal-header .icon-wrapper { width: 70px; height: 70px; margin-right: 20px; background: var(--modal-color); animation: none; }
  .mba-modal-header .icon-wrapper i { color: f white; font-size: var(--h3-size); }
  .mba-modal h2 { margin: 0; font-size: 26px; font-weight: 700; color: #1a1a1a; }
  .mba-modal p, .mba-modal li { font-size: 16.5px; line-height: 1.8; color: #333; }
  .modal-close { position: absolute; top: 18px; right: 18px; background: none; border: none; font-size: var(--h3-size); cursor: pointer; color: #999; transition: 0.3s; }
  .modal-close:hover { color: #e74c3c; transform: rotate(90deg); }
  @media (max-width: 640px) { .mba-modal { padding: 30px 20px; } .mba-modal h2 { font-size: var(--h5-size); } }


  .why-mba-section {
    padding: var(--section-padding) 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
  }

  .why-mba-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
  }

  .why-content {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .why-content.animate {
    opacity: 1;
    transform: translateX(0);
  }

  .why-title {
    font-size: var(--h2-size);
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .why-title span {
    color: #0077be;
  }

  .why-desc {
    font-size: 1.05rem;
    color: #2d3748;
    line-height: 1.75;
    margin-bottom: 1.8rem;
    text-align: justify;
  }

  .why-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 80, 140, 0.12);
    border: 1.5px solid rgba(0, 150, 255, 0.18);
    position: relative;
    opacity: 0;
    transform: translateX(80px);
    transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .why-card.animate {
    opacity: 1;
    transform: translateX(0);
  }

  .why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,119,190,0.05), transparent);
    border-radius: 24px;
    z-index: 0;
  }

  .why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.35rem 0;
    transition: transform 0.3s ease;
  }

  .feature-item:hover {
    transform: translateX(6px);
  }

  .check-icon {
    width: 28px;
    height: 28px;
    background: #0077be;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--small-text-size);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,119,190,0.3);
  }

  .feature-text {
    font-size: 0.98rem;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.5;
  }

  .feature-text strong {
    color: #001f3f;
  }

  /* Background decorative wave */
  .wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: url('https://dsuonline.com/assets/images/bba/why-online-bba.png') center bottom no-repeat;
    background-size: cover;
    z-index: 0;
  }

  @media (max-width: 992px) {
    .why-mba-container {
          gap: 0px !important;
      flex-direction: column;
      text-align: center;
    }
    .why-content, .why-card {
      transform: translateY(60px);
    }
    .why-content.animate, .why-card.animate {
      transform: translateY(0);
    }
    .why-title { font-size: 2.2rem; }
    .why-features { grid-template-columns: 1fr; gap:0px; }
  }

  @media (max-width: 768px) {
    .why-mba-section { padding: 20px 15px; }
    .why-title { font-size: 1.9rem; }
    .why-desc { font-size: 0.98rem; }
    .why-card { padding: 2rem 1.5rem; }
    .feature-item { gap: 0.7rem; }
    .check-icon { width: 24px; height: 24px; font-size: 0.8rem; }
  }

  @media (max-width: 576px) {
    .why-title { font-size: 1.7rem; }
    .feature-text { font-size: 0.92rem; }
  }


  .jp-industries-section {
    padding: var(--section-padding) var(--element-margin);
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    overflow: hidden;
    position: relative;
  }
  .jp-section-title {
    font-size: var(--h3-size);
    font-weight: 800;
    color: #001f3f;
    text-align: center;
    margin-bottom: var(--content-padding);
    position: relative;
  }
  .jp-section-title span { color: #0077be; }
  .jp-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, #003366, #005a8d, #0077be);
    border-radius: 3px;
    box-shadow: 0 3px 8px rgba(0, 51, 102, 0.3);
  }
  .jp-slider-container { max-width: 1350px; margin: 0 auto; padding: 0 10px; }
  .jp-job-slider, .jp-industry-slider { position: relative; padding: var(--element-margin) 0; margin-bottom: var(--section-margin); }
  .jp-swiper-buttons-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
  }
  .jp-cus-prev-btn, .jp-cus-next-btn {
    width: 48px; height: 48px; background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15); pointer-events: all;
    transition: all 0.3s ease; cursor: pointer; z-index: 11;
  }
  .jp-cus-prev-btn:hover, .jp-cus-next-btn:hover {
    background: #0077be; transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,119,190,0.3);
  }
  .jp-cus-prev-btn img, .jp-cus-next-btn img {
    width: 20px; height: 20px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(80%) saturate(3000%) hue-rotate(190deg);
  }
  .jp-cus-prev-btn:hover img, .jp-cus-next-btn:hover img { filter: brightness(0) saturate(100%) invert(100%); }

  .jp-job-item, .jp-industry-item {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.0rem;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0,50,100,0.1);
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 285px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    cursor: pointer;
  }
  .jp-industry-item {
    height:220px !important;
  }
  .jp-job-item::before, .jp-industry-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--jp-gradient-bg); opacity: 0; transition: opacity 0.4s ease;
    border-radius: 20px; z-index: 0;
  }
  .jp-job-item:hover::before, .jp-industry-item:hover::before { opacity: 1; }
  .jp-job-item:hover, .jp-industry-item:hover {
    transform: translateY(-14px) scale(1.06);
    box-shadow: 0 22px 45px rgba(0,50,100,0.22);
    border-color: var(--jp-icon-color);
  }

  .jp-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 10px;
    position: relative;
    z-index: 2;
  }
  .jp-icon-wrapper {
    width: 48px; height: 48px; background: var(--jp-icon-color); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: var(--h5-size); box-shadow: 0 8px 22px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position:fixed;
    top:22px !important;
  }
  .jp-item-title {
    margin-left:65px !important;
    font-size: 1.18rem; font-weight: 700; color: #001f3f;
    margin: 0; flex: 1;
    margin-top:-14px !important;
  }
  .jp-item-para {
    font-size: 0.92rem; color: #444; line-height: 1.5;
    margin: 14px 20px 0 20px; font-weight: 500;
  }

  /* Colors */
  .jp-job-1 { --jp-icon-color: #e74c3c; --jp-gradient-bg: linear-gradient(135deg, rgba(231,76,60,0.12), transparent); }
  .jp-job-2 { --jp-icon-color: #3498db; --jp-gradient-bg: linear-gradient(135deg, rgba(52,152,219,0.12), transparent); }
  .jp-job-3 { --jp-icon-color: #2ecc71; --jp-gradient-bg: linear-gradient(135deg, rgba(46,204,113,0.12), transparent); }
  .jp-job-4 { --jp-icon-color: #f39c12; --jp-gradient-bg: linear-gradient(135deg, rgba(243,156,18,0.12), transparent); }
  .jp-job-5 { --jp-icon-color: #9b59b6; --jp-gradient-bg: linear-gradient(135deg, rgba(155,89,182,0.12), transparent); }
  .jp-job-6 { --jp-icon-color: #1abc9c; --jp-gradient-bg: linear-gradient(135deg, rgba(26,188,156,0.12), transparent); }
  .jp-job-7 { --jp-icon-color: #34495e; --jp-gradient-bg: linear-gradient(135deg, rgba(52,73,94,0.12), transparent); }
  .jp-job-8 { --jp-icon-color: #e67e22; --jp-gradient-bg: linear-gradient(135deg, rgba(230,126,34,0.12), transparent); }
  .jp-job-9 { --jp-icon-color: #c0392b; --jp-gradient-bg: linear-gradient(135deg, rgba(192,57,43,0.12), transparent); }
  .jp-job-10 { --jp-icon-color: #8e44ad; --jp-gradient-bg: linear-gradient(135deg, rgba(142,68,173,0.12), transparent); }

  .jp-ind-1 { --jp-icon-color: #8e44ad; --jp-gradient-bg: linear-gradient(135deg, rgba(142,68,173,0.12), transparent); }
  .jp-ind-2 { --jp-icon-color: #27ae60; --jp-gradient-bg: linear-gradient(135deg, rgba(39,174,96,0.12), transparent); }
  .jp-ind-3 { --jp-icon-color: #2980b9; --jp-gradient-bg: linear-gradient(135deg, rgba(41,128,185,0.12), transparent); }
  .jp-ind-4 { --jp-icon-color: #e67e22; --jp-gradient-bg: linear-gradient(135deg, rgba(230,126,34,0.12), transparent); }
  .jp-ind-5 { --jp-icon-color: #e74c3c; --jp-gradient-bg: linear-gradient(135deg, rgba(231,76,60,0.12), transparent); }
  .jp-ind-6 { --jp-icon-color: #7f8c8d; --jp-gradient-bg: linear-gradient(135deg, rgba(127,140,141,0.12), transparent); }
  .jp-ind-7 { --jp-icon-color: #16a085; --jp-gradient-bg: linear-gradient(135deg, rgba(22,160,133,0.12), transparent); }
  .jp-ind-8 { --jp-icon-color: #f1c40f; --jp-gradient-bg: linear-gradient(135deg, rgba(241,196,15,0.12), transparent); }
  .jp-ind-9 { --jp-icon-color: #d35400; --jp-gradient-bg: linear-gradient(135deg, rgba(211,84,0,0.12), transparent); }
  .jp-ind-10 { --jp-icon-color: #2c3e50; --jp-gradient-bg: linear-gradient(135deg, rgba(44,62,80,0.12), transparent); }

  @media (max-width: 992px) {
    .jp-job-item, .jp-industry-item { width: 280px; height: 240px; }
  }
  @media (max-width: 576px) {
    .jp-job-item, .jp-industry-item { width: 260px; height: 230px; padding: 1.6rem; }
  }

   /* ===== REFINED CURRICULUM SECTION ===== */
  .custom-curriculum-section {
    background: linear-gradient(hsla(206, 84%, 43%, 0.28), hsla(206, 84%, 43%, 0.34)),
                url('https://dsuonline.com/assets/images/mba/programme.png') center/cover no-repeat;
    padding: var(--content-padding) 35px;
    margin-top: var(--small-margin);
    border-radius: 16px;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
  }

  .custom-curriculum-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
  }

  .custom-curriculum-section .curriculum-wrapper {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
  }
  .curriculum-main-title{
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--content-padding);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}
  .custom-curriculum-section .elective-heading {
    background: linear-gradient(135deg, #0d5a8a, #1e88e5);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;               /* Medium */
    margin-bottom: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.4px;
  }

  .custom-curriculum-section .curriculum-sidebar {
    background: rgba(30, 41, 59, 0.94);
    padding: 22px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 260px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* ===== SMALLER BUTTONS + MEDIUM FONT + SUBTLE HOVER ===== */
  .custom-curriculum-section .curriculum-btn,
  .custom-curriculum-section .semester-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;             /* Smaller */
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;               /* Medium */
    font-size: var(--small-text-size);             /* Smaller */
    text-align: left;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  }

  .custom-curriculum-section .curriculum-btn:hover,
  .custom-curriculum-section .semester-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);    /* Subtle lift */
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
  }

  .custom-curriculum-section .curriculum-btn.active,
  .custom-curriculum-section .semester-btn.active {
    background: #000;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 0 2px #fff;
    transform: none;                /* No scale */
  }

  .custom-curriculum-section .curriculum-content { flex: 1; z-index: 1; }

  /* ===== CONTENT: Transparent + White Text ===== */
  .custom-curriculum-section .curriculum-table,
  .custom-curriculum-section .semester-content {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
    background: transparent;
    color: #ffffff !important;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.15);
  }

  .custom-curriculum-section .curriculum-table.visible,
  .custom-curriculum-section .semester-content.visible { display: block; }

  .custom-curriculum-section table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
    background: transparent;
  }

  .custom-curriculum-section th {
    background: rgba(30, 41, 59, 0.85);
    color: #fff;
    padding: 12px 12px;
    font-weight: 600;               /* Medium */
    text-transform: uppercase;
    font-size: var(--small-text-size);
    letter-spacing: 0.8px;
    border-radius: 6px 6px 0 0;
  }

  .custom-curriculum-section td {
    padding: 12px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;               /* Medium */
    font-size: var(--small-text-size);
    border-radius: 5px;
  }

  .custom-curriculum-section tr:hover td {
    background: rgba(255, 255, 255, 0.18);
    transition: background 0.25s;
  }

  .custom-curriculum-section .fs-20 {
    font-size: 1.25rem;
    font-weight: 600;               /* Medium */
    color: #fff;
    margin: 0 0 12px 0;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  }

  .custom-curriculum-section .pt-3 { padding-right: 1.4rem; }
  .custom-curriculum-section .mb-2 { margin-bottom: 0.7rem; }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Responsive */
  @media (max-width: 992px) {
    .custom-curriculum-section .curriculum-wrapper { flex-direction: column; }
    .custom-curriculum-section .curriculum-sidebar { min-width: auto; }
      .custom-curriculum-section td   .custom-curriculum-section th {padding:6px 6px;
      }
  }

  @media (max-width: 576px) {
    .custom-curriculum-section { padding: 30px 18px; }
    .custom-curriculum-section .curriculum-btn,
    .custom-curriculum-section .semester-btn {
      font-size: var(--small-text-size);
      padding: 9px 12px;
    }
  }

   /* Center the cards perfectly */
  .faculty-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 10px;
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Your EXACT original card - size, color, shadow, everything preserved */
  .faculty-card {
    position: relative;
    padding: 30px 30px 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    border-radius: 24px;
    overflow: hidden;
    min-width: 380px;
    width: 380px;
    height: 450px;
    background: linear-gradient(135deg,#667eea,#764ba2);
    background-image: url('images/faculty.png');
    background-size: cover;
    background-position: bottom right;
    flex-shrink: 0;
    color: white;
  }

  .faculty-link {
    position: absolute;
    bottom: 22px;
    left: 30px;
    z-index: 10;
    padding: 14px 32px;
    background: linear-gradient(45deg,#007bff,#0056b3);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
    transition: all .3s;
    text-decoration: none;
  }
  .faculty-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,123,255,0.6);
  }

  /* UNIQUE MODAL - ZERO CONFLICT */
  .faculty-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: hsla(0, 0%, 0%, 0.00);
  }
  .faculty-modal-content {
    position: relative;
    width: 95%;
    max-width: 900px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.35);
    animation: facultyModalPop .35s ease-out;
    background: #fff;
  }
  @keyframes facultyModalPop { from{transform:scale(.1);opacity:0} to{transform:scale(1);opacity:1} }
  .faculty-modal-bg {
    background: url('images/faculty.png') center/cover no-repeat;
    position: absolute;
    inset: 0;
    opacity: 0.25;
    z-index: 1;
  }
  .faculty-modal-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
    padding: 40px;
    backdrop-filter: blur(5px);
  }
  .faculty-modal-photo {
    width: 200px;
    height: 400px;
    object-fit: cover;
    border-radius: 14px;
  }
  .faculty-section{
    padding: var(--section-padding) 0;
  }

  .faculty-modal-name {
    font-size: var(--h2-size);
    font-weight: 800;
    color: #0a1d37;
    margin-bottom: 15px;
  }
  .faculty-modal-bio {
    font-size: var(--small-text-size);
    line-height: 1.8;
    color: #1a1a1a;
    text-align: justify;
  }
  .faculty-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    font-size: var(--h3-size);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: 0.3s;
  }
  .faculty-modal-close:hover {
    background: #c70000;
    transform: scale(1.1);
  }
/* ====================== MOBILE SCROLLING SINGLE CARD VIEW ====================== */
@media (max-width: 768px) {
  .faculty-wrapper {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 15px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .faculty-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }
  .faculty-card {
    min-width: calc(100vw - 30px);   /* Takes almost full width */
    max-width: calc(100vw - 30px);
    width: calc(100vw - 30px);
    scroll-snap-align: center;
    flex-shrink: 0;
  }
}
  @media (max-width:900px) {
    .faculty-modal-inner { gap:20px; padding:30px; }
    .faculty-modal-photo { width:150px; height:300px; }
  }
  @media (max-width:600px) {
    .faculty-modal-inner { flex-direction:column; text-align:center; padding:25px; }
    .faculty-modal-photo { width:180px; height:180px; border-radius:50%; margin:0 auto; }
  }

   .pls-section {
    background: #f8f9fa;
    padding: var(--section-padding) 0;
  }

  .pls-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .pls-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }

  /* LEFT SIDE */
  .pls-left-bg {
    background-size: cover;
    background-position: center;
    border-radius: 20px 0 0 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
  }

  .pls-black-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
  }

  .pls-overlay-content {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .pls-heading {
    font-size: var(--h2-size);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .pls-primary { color: #1184db; }
  .pls-accent { color: #ffc107; }

  .pls-text {
    font-size: 1.18rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.96;
  }

  /* BUTTONS - FULLY RESPONSIVE FIX */
  .pls-btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .pls-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border: none;
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(4px);
  }

  .pls-num {
    font-weight: 800;
    color: #1184db;
    font-size: 1.1em;
  }

  .pls-btn:hover,
  .pls-btn.active {
    background: #1184db;
    color: white;
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(17,132,219,0.4);
  }

  .pls-btn.active .pls-num {
    color: #ffc107;
  }

  /* RIGHT SIDE */
  .pls-right {
    display: flex;
    align-items: stretch;
    padding-left: 40px;
  }

  .pls-card {
    background: white;
    padding: 50px 45px;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .pls-panel {
    display: none;
    animation: fadeIn 0.5s ease forwards;
  }

  .pls-panel.active { display: block; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .pls-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
  }

  .pls-subtitle {
    font-size: 1.2rem;
    color: #1184db;
    font-weight: 600;
    margin-bottom: 28px;
  }

  .pls-list li {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 38px;
    position: relative;
  }

  .pls-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: var(--h5-size);
  }

  /* ==================== RESPONSIVE FIXES ==================== */
  @media (max-width: 992px) {
    .pls-grid {
      grid-template-columns: 1fr;
    }
    .pls-left-bg {
      border-radius: 20px;
      min-height: 500px;
    }
    .pls-right { padding-left: 0; }
    .pls-card { border-radius: 20px; padding: 40px 35px; min-height:300px !important;}
  }

  @media (max-width: 768px) {
    .pls-overlay-content { padding: 40px 30px; }
    .pls-heading { font-size: var(--h2-size); }
    .pls-btn {
      font-size: var(--body-text);
      padding: 14px 18px;
      gap: 10px;
    }
    .pls-card { padding: 35px 30px; }
  }

  @media (max-width: 576px) {
    .pls-heading { font-size: 2.2rem; }
    .pls-text { font-size: 1.05rem; }
    .pls-btn {
      font-size: 0.98rem;
      padding: 13px 16px;
      gap: 8px;
    }
    .pls-title { font-size: var(--h4-size); }
    .pls-subtitle { font-size: var(--body-text); }
  }

  @media (max-width: 400px) {
    .pls-btn {
      font-size: 0.94rem;
      padding: 12px 14px;
    }
    .pls-overlay-content { padding: 35px 25px; }
  }

  .pgm-learning-sys {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, rgba(0, 106, 188, 1), rgba(50, 97, 167, 1));
  color: white;
  overflow: hidden;
}

/* Animation */
.pgm-learning-sys .fees-main-heading,
.pgm-learning-sys .fees-table-wrapper,
.pgm-learning-sys .fees-apply-btn {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out forwards;
}

.pgm-learning-sys .fees-main-heading { 
  animation-delay: 0.2s; 
  font-size: var(--h2-size); 
  font-weight: 800; 
  text-shadow: 0 2px 8px rgba(0,0,0,0.2); 
}
.pgm-learning-sys .fees-table-wrapper { animation-delay: 0.4s; }
.pgm-learning-sys .fees-apply-btn { animation-delay: 0.6s; }
.pgm-learning-sys .text-blue { color: #ffc107; font-weight: 800; }

/* Table - unchanged */
.fees-table-wrapper { width: 100%; max-width: 900px; margin: 0 auto; }
.fees-table-official { width: 100%; max-width: 800px; border-collapse: collapse; font-size: var(--h5-size); margin: 0 auto; background: transparent; }

.fees-table-official th {
  background: rgba(255,255,255,0.15);
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 20px;
  border-bottom: 2px solid #ffc107;
}

.fees-table-official td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.fees-table-official td:first-child { text-align: left; font-weight: 600; }
.fees-table-official td:last-child { text-align: right; font-weight: 700; color: #ffffff; }

.fees-table-official .total-row td {
  background: rgba(255,193,7,0.25);
  font-size: var(--h5-size);
  font-weight: 800;
  color: #fff;
  border-top: 3px solid #ffc107;
  border-bottom: 3px solid #ffc107;
}
.fees-table-official .total-row td:last-child { text-align: right; }

/* UNIQUE BUTTON - CLEAN & PERFECTLY CENTERED */
.fees-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffc107;
  color: #1a1a1a;
  font-weight: 700;
  font-size: var(--body-text);
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 8px 25px rgba(255,193,7,0.4);
  transition: all 0.4s ease;
}

.fees-apply-btn:hover {
  background: #ffca2c;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255,193,7,0.5);
  color: #1a1a1a;
}

.fees-apply-btn .arrow-aftr-btn {
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a1a'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.3s ease;
}

.fees-apply-btn:hover .arrow-aftr-btn {
  transform: translateX(8px);
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .pgm-learning-sys .fees-main-heading { font-size: var(--h3-size); }
  .fees-apply-btn { padding: 12px 30px; font-size: var(--body-text);  margin-left:0px !important;}
}

@media (max-width: 576px) {
  .pgm-learning-sys .fees-main-heading { font-size: var(--h4-size); }
  .fees-apply-btn { padding: 11px 26px; font-size: var(--small-text-size); margin-left:0px !important; }
}

/* ========================================
   ELIGIBILITY CRITERIA – CLEAN SINGLE CARD
   ======================================== */


 .how-to-apply {
        padding: var(--section-padding) 0;
        background: #fff;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .section-title {
        font-size: var(--h3-size);
        font-weight: 800;
        color: #212529;
        margin-bottom: var(--element-margin);
    }

    .section-subtitle {
        color: #007bff;
    }

    .steps-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 35px;
        flex-wrap: wrap;
    }

    .steps-content {
        flex: 1;
        min-width: 300px;
    }

    .step {
        margin-bottom: 20px;
    }

    .step-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #212529; /* Changed to black */
        margin-bottom: 6px;
    }

    .step-text {
        font-size: var(--body-text);
        color: #555;
        font-weight: 400;
    }

    .image-wrapper {
        flex: 0 0 420px;
        max-width: 420px;
    }

    .apply-image {
        width: 100%;
        height: 360px; /* Increased height */
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        display: block;
        transition: transform 0.4s ease;
    }

    .apply-image:hover {
        transform: translateY(-8px);
    }

    @media (max-width: 992px) {
        .steps-wrapper {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .image-wrapper {
            order: -1;
            margin-bottom: -105px !important;
            max-width: 380px;
        }

        .section-title {
            font-size: 2.1rem;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: var(--h4-size);
        }

        .step-title {
            font-size: var(--body-text);
        }

        .step-text {
            font-size: var(--small-text-size);
        }

        .how-to-apply {
            padding: 50px 0;
        }

        .apply-image {
            height: 300px; /* Adjusted for mobile */
        }
    }


     .po-section{
  padding:var(--section-padding) var(--element-margin);
  background:transparent;
}

/* CENTER HEADING */
.po-title {
    font-size: var(--h2-size);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--section-margin);
    background: linear-gradient(90deg, #5e42a6, #00c9c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* MAIN CARD - LIGHT BACKGROUND */
.po-main-card{
  max-width:1350px;
  margin:0 auto;
  background:#e7f3ff;
  border-radius:25px;
  padding:var(--content-padding);
  box-shadow:0 15px 30px rgba(0,0,0,.15);
}

/* ROW */
.po-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:var(--content-padding);
  gap:var(--content-padding);
}

/* ZIG-ZAG */
.po-row.right{
  flex-direction:row-reverse;
}

/* PO CARD - OUTLINE ONLY */
.po-box{
  min-width:150px;
  height:95px;
  background: #4f82ab;/* ✅ Light black fill */
  border:2px solid #071a2b;
  color:#ffffff; /* better contrast on dark fill */
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  font-weight:bold;
  border-radius:22px;
}

/* PROGRAM OUTCOMES SECTION */
/* DESCRIPTION CARD - OUTLINE ONLY */
.po-desc{
  flex:1;
  background:transparent;
  border:2px solid #4f82ab;
  padding:25px 30px;
  color:#1a2a3a;
  border-radius:22px;
  font-size:1.05rem;
  line-height:1.6;
  opacity:0;
}

/* Sequential animation */
.animate{
  animation: slideIn 0.9s ease forwards;
}

.delay1{ animation-delay:0.4s; }
.delay2{ animation-delay:1s; }
.delay3{ animation-delay:1.6s; }
.delay4{ animation-delay:2.2s; }
.delay5{ animation-delay:2.8s; }
.delay6{ animation-delay:3.4s; }

@keyframes slideIn{
  from{
    opacity:0;
    transform:translateY(25px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){
  .po-row{
    flex-direction:column !important;
    text-align:center;
  }
  .po-box,
  .po-desc{
    width:100%;
  }
}


/* Mobile scroll buttons and dots - visible only on mobile */
.faculty-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: var(--h4-size);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.faculty-prev { left: 10px; }
.faculty-next { right: 10px; }

.faculty-scroll-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.faculty-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.faculty-dot {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.faculty-dot.active {
  background: #1184db;
  transform: scale(1.3);
}

/* Hide on desktop */
@media (min-width: 769px) {
  .faculty-scroll-btn,
  .faculty-dots {
    display: none !important;
  }
}

/* Force first two boxes to stay on same line - GRID LAYOUT */
@media (max-width: 992px) {
  .mba-info {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 0.8rem !important;
    padding: 0 1rem !important;
    margin: 1rem 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .info-box:nth-child(1) {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  
  .info-box:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
  
  .info-box:nth-child(3) {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
  }
}

@media (max-width: 576px) {
  .mba-info {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 0.6rem !important;
    padding: 0 1rem !important;
    margin: 1rem 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .info-box:nth-child(1) {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  
  .info-box:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
  
  .info-box:nth-child(3) {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
  }
}