/*************************************  Navbar *******************************************************/
html {
    scroll-behavior: smooth;
  }
    .hero {
      position: relative;
      background-image: url('https://mitacsc.ac.in/img/msc-imca-course/msc-imca-banner.webp');
      background-position: center 0%; 
      background-repeat: no-repeat;
      background-size: cover; 
      height: 100vh;
      width: 100%;
      font-family: sans-serif;
      overflow: hidden;
    }
  .content-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 6rem 7rem 11rem 10rem;
    background: linear-gradient(#fff0, #000000b3);
    gap: 5px;
  }

  .title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #fff;
  }

  .hero-desc {
    color: #fff;
    font-size: 1rem;
    margin-top: 1rem;
    max-width: 700px;
    line-height: 1.6;
  }

  .apply-btn {
    background: #ffc107;
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .apply-btn:hover {
    background: #D3F2F5;
    color: #8a1538;
  }

  .apply-btn::after {
    content: '→';
    font-size: 1.2rem;
  }

  nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #0000004f;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
  }

  nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 0 15px;
    padding: 5px 10px;
    transition: background 0.3s;
  }

  nav a:hover {
    color: #ffc107;
  }

  /* ✅ Mobile Responsive Fix */
  @media (max-width: 600px) {
    .hero {
      height: auto;
      min-height: 100vh;
    }

    .content-bar {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 3rem 1rem 9rem 1rem;
      text-align: center;
      gap: 20px;
    }

    .title {
      font-size: 1.8rem;
      line-height: 1.3;
      text-align: center;
    }

    .hero-desc {
      font-size: 15px;
      line-height: 1.6;
      text-align: justify;
      max-width: 100%;
      padding: 0 10px;
    }

    .apply-btn {
      padding: 12px 26px;
      font-size: 15px;
      border-radius: 40px;
    }

    nav {
      flex-wrap: wrap;
      justify-content: center;
      padding: 15px 5px;
      background: #000000a0;
    }

    nav a {
      font-size: 15px;
      margin: 6px 8px;
      padding: 5px 8px;
    }
  }
  
/************************************* Close Nav *******************************************************/

/*********************************   Programme Overview ***********************************************/

.container-box {
      display: flex;
      flex-wrap: wrap;
      padding: 20px;
    }
    .left {
      flex: 2;
      padding: 20px;
      background: #fff;
    }
    .right {
      flex: 1;
      padding: 20px;
      color: #fff;
    }
    .right-box {
      padding: 20px;
      margin-bottom: 20px;
    }
    .duration-box {
      background: #e0f7fa;
      color: #333;
    }
    .fee-box {
      background: #222; /* Keeps the dark background for fee section */
    }
    .fee {
      font-size: 1.5em;
      color: #f9a825;
    }
    .ctc {
      font-size: 1.5em;
      color: #f9a825;
    }
    .apply-btn-box {
      display: inline-block;
      padding: 10px 20px;
      background: #F8901F;
      color: #fff;
      text-decoration: none;
      border-radius: 20px;
      margin: 20px 0;
    }
    .download-link {
      display: flex;
      align-items: center;
      margin: 10px 0;
      color: #00bcd4;
      text-decoration: none;
    }
    .download-link span {
      color: white;
    }
    .program-list li::before {
    content: "•";
    color: #f9a825;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
    }
    @media (max-width: 600px) {
  .container-box {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .left, .right {
    width: 100%;
    padding: 15px;
  }

  .left h2, 
  .left h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .left p {
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
  }

  .left ul {
    padding-left: 20px;
  }

  .left ul li {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .apply-btn-box {
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
  }

  .right-box {
    padding: 18px;
  }

  .duration-box h2 {
    font-size: 18px;
  }

  .fee {
    font-size: 18px;
  }

  .download-link {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .download-link img {
    width: 18px;
    height: 18px;
  }

  .right {
    gap: 15px;
  }
}

/*********************************  End Programme Overview ***********************************************/

/*********************************  Specialisations *****************************************************/

.bcom-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .bcom-text {
    width: 100%;
  }

  /* Specializations left & image right */
  .image-specialization {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }

  .specialization-box {
    flex: 1 1 55%;
    order: 1;
  }

  .bcom-image {
    flex: 1 1 40%;
    text-align: center;
    order: 2;
  }

  .bcom-image img {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
  }

  .major-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 10px;
  }

  .major-track div {
    border-left: 2px solid #00bcd4;
    padding-left: 10px;
  }

  @media (max-width: 600px) {
    .image-specialization {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .specialization-box {
      width: 100%;
      order: 1;
    }

    .bcom-image {
      width: 100%;
      order: 2;
    }

    .bcom-image img {
      max-width: 100%;
      height: auto;
    }

    .bcom-text h2 {
      text-align: center;
      font-size: 20px;
      line-height: 1.4;
    }

    .bcom-text p {
      font-size: 15px;
      line-height: 1.6;
      text-align: justify;
    }

    .major-track {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .major-track div {
      font-size: 15px;
      padding: 8px 10px;
      border-left: 3px solid #00bcd4;
    }
  }
  
/*********************************  End Specialisations *****************************************************/

/*********************************  Campus Overview ********************************************************/

.campus-overview {
    font-family: 'Roboto', sans-serif;
    background: #8a1639;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .content {
    flex: 1 1 400px;
    max-width: 600px;
    padding: 20px;
    color: white;
  }

  .content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
  }

  .content ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .read-more {
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
  }

  .read-more:hover {
    background: #D3F2F5;
    color: #8a1538;
  }

  .image {
    flex: 1 1 400px;
    padding: 20px;
    text-align: center;
  }

  .image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    display: block;
    margin: 0 auto;
  }

  /* ✅ Mobile Responsive Design */
  @media (max-width: 768px) {
    .campus-overview {
      flex-direction: column;
      padding: 30px 20px;
      text-align: center;
    }

    .content {
      order: 2;
      padding: 10px;
      max-width: 100%;
    }

    .content h2 {
      font-size: 24px;
    }

    .content ul {
      padding-left: 15px;
      text-align: left;
    }

    .image {
      order: 1;
      width: 100%;
      padding: 10px 0;
    }

    .image img {
      width: 95%;
      max-width: none;
      border-radius: 15px;
      margin: 0 auto;
      transform: scale(1.1); 
    }

    .read-more {
      padding: 12px 28px;
      font-size: 15px;
      margin-top: 15px;
    }
  }
  
/*********************************  End Campus Overview ********************************************************/


/*********************************  Career Opportunities ******************************************************/


.main-section {
    font-family: Arial, sans-serif;
    max-width: 1400px;
    margin: 80px auto;
  }

  .main-section .title {
    display: inline-block;
    text-align: left;
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000000;
  }

  .executive-box {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    align-items: center;
  }

  .executive-box div {
    box-sizing: border-box;
  }

  .left-side {
    flex: 1 1 40%;
    min-width: 400px;
  }

  .left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 60px 0 60px 0;
  }

  .right-side {
    flex: 1 1 40%;
    min-width: 300px;
    padding: 30px 40px;
  }

  .right-side h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 5px 0;
  }

  .designation {
    font-weight: normal;
    color: #555;
    margin: 0 0 15px 0;
  }

  .description {
    font-size: 16px;
    color: #333;
    margin: 0 0 20px 0;
    text-align: justify;
  }

  .buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .buttons a {
    text-decoration: none;
    background: #f9a825;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;
  }

  .buttons a:hover {
    background: #f57f17;
  }

  /* ✅ Mobile Responsive */
  @media (max-width: 768px) {
    .main-section {
      margin: 40px 15px;
    }

    .executive-box {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .left-side {
      width: 100%;
      min-width: unset;
    }

    .left-side img {
      border-radius: 20px;
      width: 90%;
      margin: 0 auto;
    }

    .right-side {
      width: 100%;
      padding: 20px;
    }

    .right-side h2 {
      font-size: 20px;
    }

    .designation {
      font-size: 15px;
    }

    .description {
      font-size: 15px;
      text-align: justify;
    }

    .buttons {
      justify-content: center;
    }

    .buttons a {
      padding: 10px 18px;
      font-size: 15px;
    }
  }

/*********************************  End Career Opportunities ******************************************************/

/*********************************  Description ******************************************************************/

.description {
    list-style-type: disc;
    margin-left: 20px;
    color: black;
}

.description li {
    color: black;
    position: relative;
    padding-left: 10px;
}

.description li::marker {
    color: #f7901f; /* Orange bullet color */
    font-size: 18px;
}

.description {
    list-style-type: disc;
    margin-left: 20px;
    color: black;
}

.description li {
    color: black;
    position: relative;
    padding-left: 10px;
}

.description li::marker {
    color: #f7901f; /* Orange bullet color */
    font-size: 18px;
}
/*********************************  End Description ******************************************************************/

 .faculty-section {
      background-color: #f2c94c;
      padding: 60px;
      font-family: sans-serif;
      text-align: center;
    }

    .faculty-title {
      font-weight: bold;
      font-size: 1.5rem;
      margin: 0;
    }

    .faculty-subtitle {
      font-size: 1.2rem;
      margin: 5px 0 20px 0;
    }

    .faculty-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .faculty-card {
      background: #fff;
      border-radius: 8px;
      width: 290px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .faculty-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .faculty-info {
      padding: 10px;
    }

    .faculty-info .name {
      font-weight: bold;
      display: block;
      margin-bottom: 5px;
    }

    .faculty-info .designation {
      font-size: 0.9rem;
      color: #333;
    }

    .view-all-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 6px 16px;
      background: #262626;
      color: #fff;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .view-all-btn:hover {
      background: #000;
    }
    
/*********************************  End Faculty ******************************************************************/
