* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: linear-gradient(135deg, #f5e6ff 0%, #e6f3ff 100%);
    /* margin: 0;
    padding: 0; */
}

.section-global{
  width: 100%;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 auto;
}


section {
  padding-top: 45px;
  padding-bottom: 45px;
}

.header-section {
  background:#fff;
  border-bottom: 1px solid #f5e6ff;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-logo-img {
  width: 300px;
  object-fit: contain;
  display: block;
}

.header-logo-box div {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero-section {
    background:#fff;
    padding: 60px 0;
    position: relative;
}

.hero-content {
    padding: 20px 0;
}

.hero-title {
    font-size: 45px;
    font-weight: 750;
    /* line-height: 80px; */
    margin-bottom: 15px;
    color: #1a1a1a;
}

.text-purple {
    color:#6b2d9e;
    font-weight: 800;
    /* line-height:1; */
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
    /* line-height: auto; */

}

.hero-description {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 25px;
    color: #000;
}

/* Info Boxes */
.info-boxes {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.info-box {
    border: 4px solid #6b2d9e;
    border-radius: 20px;
    padding: 10px 16px;
    background-color: white;
    text-align: center;
    flex: 1 1 calc(50% - 12px);
    min-width: 120px;
}

.info-box h6 {
    font-size: 15px;
    color: #0D1B73;
    display: block;
    margin-bottom: 3px;
}

.info-box strong {
    font-size: 13px;
    color:#0D1B73;
    font-weight: 550;
}

/* CTA Button */
.btn-cta {
    background: #FFFBD9;
    background: radial-gradient(circle,rgba(255, 251, 217, 1) 0%, rgba(255, 229, 0, 1) 100%);
    color: #1a1a1a;
    font-weight: 650;
    font-size: 28px;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    width: 100%;
    max-width: 300px;
}

.btn-cta:hover {
    background-color: #FFE500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color:black;
}


/* .btn-cta:hover {
    background-color: #FFE500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
} */

/* Hero Image */
.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    border-radius: 20px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
    width: 100%;
    max-width: 500px;
    height: auto;
    background-color: #6b2d9e;
}

/* Features Section */
.features-section {
    background-color:#fff;
    padding: 60px 0;
}

.section-title {
    font-size:45px;
    font-weight: 750;
    color: #6b2d9e;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Feature Cards */
.feature-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(188, 234, 5, 0.2);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%); */
    color: white;
    padding: 25px 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-title {
    font-size: 18px;
    font-weight: 650;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-text {
    font-size: 11px;
    line-height: 1.5;
    opacity: 0.95;
} 

.knowledge-section {
  /* background: linear-gradient(90deg, rgba(107,46,203,0.85), rgba(0,191,255,0.85)),
              url('images/bg-graduation.jpg') center/cover no-repeat; */
  position: relative;
}

.knowledge-section .overlay {
  /* background: rgba(0, 0, 0, 0.2); */
  padding-top: 60px;
  padding-bottom: 60px;
}

.knowledge-section h2 {
  font-size: 45px;
  font-weight:750;
  color: #fff;
}

/* Card Styling */
.card-custom {
  border-radius: 40px;
  transition: all 0.3s ease;
}

.icon {
  font-size: 3rem;
  color: #6b2ecb;
}

/* Card Text */
.card-custom h5 {
  color: #6A0DAD;
  font-weight: 700;
  font-size:21px;
}

.card-custom p {
  color: #000;
  font-size:11px;
  font-weight: 500;
}

.msc-section {
  /* background: linear-gradient(90deg, rgba(250, 248, 255, 1), rgba(240, 230, 255, 1)); */
  font-family: 'Poppins', sans-serif;
}

.msc-section h2 {
  color: #6A0DAD; /* Bootstrap primary purple */
  font-weight: 750;
  font-size:45px;
}

.msc-section p {
  font-size: 18px;
}

.custom-btn {
  background: #FFEF60;
  background: linear-gradient(90deg,rgba(255, 239, 96, 1) 0%, rgba(255, 255, 229, 1) 0%, rgba(247, 232, 93, 1) 100%);  
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  color: #000;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 17px; 
  /* white-space: nowrap; */
  transition: all 0.3s ease;
}

 .image-stack{
  position: relative;
  max-width: 420px;
  width:100%;
}

.image-stack .img-1,
.image-stack .img-2{
  position:absolute;
  width:50%;
  border-radius:30px;
}

.image-stack .img-1{
  top:-300px;
  left:220px;
  z-index:2;
}

.image-stack .img-2{
  bottom:-180px; 
  right:220px;
  z-index:1;
}

.tuition-section {
      background: linear-gradient(to bottom right, #f3e8ff, #dbeafe);
      padding: 60px 20px;
      text-align: center;
    }

.tuition-title {
    font-weight: 750;
    font-size: 45px;
    color: #6b2d9e;
    margin-bottom: 40px;
    }

.fees-table {
      background: rgba(50, 0, 120, 0.8);
      border-radius: 10px;
      overflow: hidden;
      color: #fff;
      margin: 0 auto;
      max-width: 1495px;
    }

.fees-table th {
      background-color: rgba(255, 255, 255, 0.1);
      color: #ffd43b;
      font-weight: bold;
      padding: 15px;
      text-transform: uppercase;
    }

.fees-table td {
      padding: 15px;
      font-size: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

.note-section {
      margin-top: 30px;
      text-align: left;
      max-width: 1495px;
      margin-left: auto;
      margin-right: auto;
    }

.note-section p {
      font-size: 20px;
      margin: 8px 0;
      font-weight:600;
      color:#fff;
    }

.note-section i {
      color: #3b82f6;
      margin-right: 8px;
    }

.tab-container {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      margin-top: 20px;
    }

.nav-tabs {
      border-bottom: none;
      justify-content: start;
      margin-bottom: 20px;
    }

.nav-tabs .nav-link {
      border: none;
      color: #333;
      font-weight: 500;
      background: transparent;
      border-radius: 10px 10px 0 0;
    }

.nav-tabs .nav-link.active {
      background: #dbeafe;
      border-bottom: 3px solid #6d28d9;
      font-weight: 600;
      color: #000;
    }

.trimester-title {
      background: linear-gradient(to right, #5b21b6, #7c3aed);
      color: white;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 20px;
      padding: 10px 15px;
      border-radius: 5px;
      margin-bottom: 15px;
      /* text-align: center; */
    }

.trimester-box {
      background: #fff;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

.trimester-content {
      padding: 10px;
    }

.trimester-content p {
      background: #f9fafb;
      padding: 10px;
      border-radius: 6px;
      margin-bottom: 10px;
      /* text-align: center; */
      font-weight: 500;
      font-size:15px;
    }

.trimester-content p:nth-child(odd) {
      background: #f3f4f6;
    }

.year-heading {
      font-size: 26px;
      font-weight: 700;
      color: #4c1d95;
      margin-bottom: 20px;
    }

.impact-section {
  background: linear-gradient(to right, #f8f9ff, #eef3ff);
}

.impact-section h2 {
  color: #6b2d9e;
  font-size: 45px;
  font-weight: 750;
}

.impact-box {
  background-color: white;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.impact-box:hover {
  background-color: white;
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.impact-box h6{
font-size: 20px;
color:#6b2d9e;
font-weight: 700;
}

.impact-box span{
  font-size : 20px;
  font-weight:700;
}

.impact-box p{
  font-size : 10px;
  /* font-weight:700; */
}

.skills-section {
  background-color: #fafaff;
}

.skills-section h2{
  color: #6b2d9e;
  font-size: 45px;
  font-weight: 750;
}

.skill-box h6{
  font-size: 25px;
  color:#6b2d9e;
  font-weight: 700;
}

.skill-box p{
  font-weight:500;
  font-size:18px;
}

.skill-icon{
  width: 55px; 
}

.skill-box hr{
  width: 90%;
  border: 1px solid black; 
  margin: 4px 0 10px 0;
}


.know-more-section {
  background: linear-gradient(to right, #f9f3ff, #e8e9ff);
  border-radius: 0;
}

.know-more-section h3{
  color: #6b2d9e;
  font-size: 45px;
  font-weight: 750;
}

.know-more-section p{
  font-size:22.5px;
}

.brochure-btn {
  background: #FFD700;
  border: none;
  color: #000;
  border-radius: 50px;
  box-shadow: 2px 3px 0 #00000050;
  transition: all 0.3s ease;
  font-size: 25px;
}
.brochure-btn:hover {
  background: #ffca00;
  box-shadow: 3px 4px 0 #00000070;
  transform: translateY(-2px);
}


.owl-carousel .item{
  height:100% !important;
}

.electives-carousel .item{
  height:auto !important;
}

.electives-section {
  background: linear-gradient(to bottom, #3a0ca3, #4cc9f0);
}

.electives-section h2{
  font-size:45px;
  font-weight: 750;
}

.electives-card h6{
  font-size: 19px;
  color:#6b2d9e;
  margin-top: 15px;
  font-weight:700;
}

.elective-card p{
  font-size:12px;
  color:#000;
  margin-top:auto;
}


.elective-card{
  background:white;
  border-radius: 25px;
  padding: 20px;
  height: 350px !important; 
}

.elective-card img {
  width: 100%;
  height: 160px !important;
  object-fit: cover;
  border-radius: 20px;
}
.elective-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Difference Section */
.difference-section {
  background: #fafaff;
  border-radius: 20px;
}

.difference-section h2{
  color: #6b2d9e;
  font-size: 45px;
  font-weight: 750;
}

.difference-section span{
  color : #000;
}

.text-accent {
  color: #7b2cbf;
}

.bg-dark-purple {
  background-color: #6a1b9a !important;
}

.difference-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  /* font-size:100px; */
}

.difference-table th,
.difference-table td {
  vertical-align: middle;
  padding: 1rem;
  text-align: left;
  font-size: 0.95rem;
}

.difference-table th:first-child {
  width: 20%;
  text-align: left;
}

.difference-table th {
  font-weight: 600;
}

.difference-table tr:nth-child(even) {
  background-color: #f5f3ff;
}

/* ===== Career Outcomes Section ===== */
.career-section {
  background: linear-gradient(135deg, #4b0082, #00bcd4);
  color: white;
  border-radius: 20px;
  padding: 60px 30px;
}

.career-title {
  font-weight: 750;
  /* font-size: 45px; */
  line-height: 1.4;
  font-size: clamp(32px, 3.5vw, 45px);
  word-wrap: break-word;
}

.career-title span{
  /* font-size : 60px; */
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight:400;
}

.career-box {
  background: white;
  color: #333;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  height: 100%;
  width: 100%;
  max-width: 280px; /* Optional: limit maximum width */
  margin: 0 auto;
  transition: 0.3s ease;
}

.career-box:hover {
  transform: translateY(-5px);
}

.career-box h5 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  color: #6b2d9e;
}

.career-box p {
  font-size:18px;
  font-weight:500px;
}

.career-image {
  width: 50px; /* Add proper image sizing */
  height: 50px;
  margin-right: 8px;
  vertical-align: middle;
}

/* .carrer-image{
  height:1px;
  width:1px;
} */


/* ===== Faculty Section ===== */
.faculty-section {
  background: linear-gradient(180deg, #f9f0ff, #e0e7ff);
  padding: 70px 0;
}

.faculty-title {
  font-size: 45px;
  font-weight: 750;
  color: #6b2d9e;
}

.faculty-subtitle {
  font-size: 50px;
  color: #333;
}

.faculty-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #fff;
} 

.faculty-section h5 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  color:#0D1B73;
  min-height: 50px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.faculty-section .btn {
  background-color: white;
  color: black;
  border-radius: 60px;
  transition: 0.3s;
  border: 0 2px black;
  font-size:20px;
  width:80%;
}


.faculty-content{
  height: 150px;
  display: flex; 
  flex-direction: column; 
  justify-content: flex-start; 
  align-items: center;
  margin-bottom: 15px; 
}

.faculty-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  margin: 0;
  padding: 0 10px;
}

.faculty-card .btn:hover {
  background-color: white;
  color: #5e17eb;
}

.faculty-section .container{
  position:relative;
}

.faculty-arrow{
  width:45px;
  height:45px;
  border-radius:50%;
  color:#5e17eb;
  display:flex;
  justify-content:center;
  align-items:center;
  border:none;
  font-size:22px;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  box-shadow:0 0 15px rgba(0,0,0,0.15);
  cursor:pointer;
  background:white;
  z-index:9999;
}

.faculty-arrow.prev{ left:-25px; }
.faculty-arrow.next{ right:-25px; }

.faculty-carousel .item{
  text-align: center;
  display: flex !important; 
  flex-direction: column !important; 
  align-items: center !important; 
  height: 100% !important;
}

.faculty-carousel .owl-stage-outer,
.faculty-carousel .owl-stage,
.faculty-carousel .owl-item {
  height: auto !important;
}


/* ===== Recognitions Section ===== */
/* .recognition-section h2{
  font-size: 45px;
  font-weight: 750;
  color: #6b2d9e;
}

.rec-scroll{
  display:flex;
  gap:30px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  justify-content:center;
  padding:30px 0;
}

.rec-scroll::-webkit-scrollbar{
  display:none;
}

.rec-card{
  border-radius:20px;
  padding:25px;
  text-align:center;
  min-width:260px;
  scroll-snap-align:center;
  box-shadow:0px 0px 25px rgba(0,0,0,0.15);
  transition:.3s;
  background: #6A0DAD;
  background: linear-gradient(90deg,rgba(106, 13, 173, 1) 50%, rgba(13, 27, 115, 1) 100%);
  border: 0 2px white;
  height:100%;
  width:200%;
}

.rec-card.small{
  min-width:220px;
  height:100%;
  width:100%;
}

.rec-card img{
  height:100%;
  width:100%;
}

.main-card{
  min-width:300px;
  transform:scale(1.05);
}
 */


 .recognition-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f5f0ff, #ffffff);
}

.recognition-section h2 {
  font-size: 45px;
  font-weight: 750;
  color: #6b2d9e;
  text-align: center;
  margin-bottom: 40px;
}

/* ✅ MAIN CONTAINER */
.rec-scroll {
  display: flex;
  gap: 20px; /* ✅ 30px se 20px kiya */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  justify-content: center;
  padding: 30px 20px; /* ✅ Side padding add kiya */
  max-width: 1400px; /* ✅ Max width add kiya */
  margin: 0 auto; /* ✅ Center align */
}

.rec-scroll::-webkit-scrollbar {
  display: none;
}

/* ✅ NORMAL CARDS */
.rec-card {
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  min-width: 220px; /* ✅ 260px se 220px kiya */
  max-width: 240px; /* ✅ Max width add kiya */
  flex: 0 0 auto; /* ✅ Flex property add ki */
  scroll-snap-align: center;
  box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
  transition: 0.3s;
  background: linear-gradient(135deg, rgba(106, 13, 173, 1) 0%, rgba(13, 27, 115, 1) 100%);
  border: 2px solid transparent;
  height: 280px; /* ✅ Fixed height */
  display: flex; /* ✅ Flex add kiya */
  align-items: center; /* ✅ Content center */
  justify-content: center; /* ✅ Content center */
}

.rec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0,0,0,0.2);
}

/* ✅ SMALL CARDS */
.rec-card.small {
  min-width: 200px; /* ✅ 220px se 200px kiya */
  max-width: 220px; /* ✅ Max width add kiya */
  height: 280px;
}

.rec-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain; /* ✅ Image fit properly */
}

/* ✅ MAIN/CENTER CARD */
.main-card {
  min-width: 280px; /* ✅ 300px se 280px kiya */
  max-width: 300px; /* ✅ Max width add kiya */
  transform: scale(1.05);
  height: 300px; /* ✅ Thoda bada height */
  z-index: 2;
}

/* ✅ RESPONSIVE FOR 110% ZOOM */
@media (max-width: 1600px) {
  .rec-card {
    min-width: 200px;
    max-width: 220px;
  }
  
  .rec-card.small {
    min-width: 180px;
    max-width: 200px;
  }
  
  .main-card {
    min-width: 250px;
    max-width: 270px;
  }
  
  .rec-scroll {
    gap: 15px;
  }
}

/* ✅ TABLET */
@media (max-width: 1024px) {
  .rec-scroll {
    justify-content: flex-start;
    padding: 30px 15px;
  }
  
  .rec-card {
    min-width: 220px;
  }
}

/* ✅ MOBILE */
@media (max-width: 768px) {
  .recognition-section h2 {
    font-size: 32px;
  }
  
  .rec-card {
    min-width: 250px;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
  background: linear-gradient(180deg, #f7f0ff, #ebe8ff);
}

.faq-section .section-title {
  color: #6b2d9e;
  font-size:45px;
  font-weight:750;
}

.faq-section .section-title span {
  color: #00bcd4;
}

.accordion-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.accordion-button {
  background-color: white;
  box-shadow: 0 2px 2px white;
  border-radius: 30px;
  font-weight: 550;
  color: #6A0DAD;
  font-size:20px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #f3e8ff;
  color: #5e17eb;
}

.accordion-body {
  background-color: #fff;
  color: #444;
  border-radius: 0 0 12px 12px;
  font-size: 1rem;
}

/* body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f9f4ff, #f2e9ff);
  margin: 0;
  padding: 0;
} */

.enquire-section h2 {
  font-size: 45px;
  font-weight: 750;
  color: #6b2d9e;
}

.enquire-section h2 span {
  color: #007BFF;
}

.form-container {
  background: linear-gradient(135deg, #2b1f84, #5a22d1, #008dd2);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  height: 200%;
  width:75%;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-weight: 500;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.form-select option {
  color: #000;
}

.form-check-label {
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.4;
}

.submit-btn {
  background: linear-gradient(90deg, #FFD700, #FFC300);
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(90deg, #FFC300, #FFB700);
  transform: scale(1.05);
}

.form-image {
  border-radius: 30px;
  height:200%;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

@media (min-width:1400px){
  .image-stack{
    max-width: 460px;
  }
}


/* Tablet Responsive (768px - 991px) */
@media (max-width: 991px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 36px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 17px;
        text-align: center;
    }
    
    .hero-description {
        font-size: 14px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .info-boxes {
        justify-content: center;
    }
    
    .btn-cta {
        margin: 0 auto;
        display: block;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .feature-card {
        height: 380px;
    }

    /* .image-stack .img-2 {
    top: 40px;
    left: 80px;
    } */
.msc-section h2{
    font-size:36px;
  }

  /* .image-stack{
    max-width: 350px;
    margin:0 auto;
  }
  .image-stack .img-1,
  .image-stack .img-2{
    position:relative;
    transform:none;
    left:0;
    top:0;
    width:100%;
    margin-bottom:20px;
  } */

  .image-stack{
    max-width:360px;
    margin:auto;
    min-height:auto;
  }
  .image-stack .img-1,
  .image-stack .img-2{
    position:relative;
    width:100%;
    top:0;
    left:0;
    right:0;
    margin-bottom:30px;
  }

}

/* Mobile Responsive (576px - 767px) */
@media (max-width: 767px) {
  .header-logo-img{
    width:50px;
  }
  .header-section{
    padding-top:10px;
    padding-bottom:10px;
  } 
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 28px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .hero-description {
        font-size: 14px;
        text-align: center;
    }
    
    .info-boxes {
        justify-content: center;
        gap: 10px;
    }
    
    .info-box {
        flex: 1 1 calc(50% - 10px);
        min-width: auto;
        padding: 8px 12px;
    }
    
    .info-box small {
        font-size: 10px;
    }
    
    .info-box strong {
        font-size: 12px;
    }
    
    .btn-cta {
        font-size: 14px;
        padding: 12px 30px;
        width: 100%;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card {
        height: 350px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-text {
        font-size: 12px;
    }

    .development-section h2 {
    font-size: 1.5rem;
    }

    .image-stack {
    text-align: center;
  }

  .image-stack .img-1,
  .image-stack .img-2 {
    position: static;
    width: 80%;
    margin-bottom: 15px;
  }

  .msc-section h2 {
    text-align: center;
  }

  .msc-section p,
  .custom-btn {
    text-align: center;
  }

  .fees-table th, .fees-table td {
        font-size: 14px;
        padding: 10px;
    }

   .trimester-title {
        font-size: 14px;
    }
   .year-heading {
        font-size: 22px;
    }

    .difference-section h2 {
    font-size: 1.4rem;
  }
  .difference-table th, .difference-table td {
    font-size: 0.85rem;
  }

  .rec-card {
    max-width: 90%;
  }

  .main-card {
    transform: scale(1);
  }

  .form-container {
    border-radius: 15px;
  }

  .submit-btn {
    width: 100%;
  }

  section, 
  .page, 
  .container,
  body > div {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* Extra Small Mobile (Below 576px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .feature-card {
        height: 320px;
        margin-bottom: 15px;
    }
    
    .card-overlay {
        padding: 20px 15px;
    }

    .msc-section p{
    font-size: 16px;
  }
  .custom-btn{
    width:100%;
    white-space:normal;
    text-align:center;
  }
  
  .section-global{
    padding: 0 12px;
  }

  /* .elective-card{
    height: 300px;
  } */
}

/* Very Small Devices (Below 400px) */
@media (max-width: 399px) {
    .logo-container {
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .info-box {
        flex: 1 1 100%;
    }
    
    .feature-card {
        height: 300px;
    }
}