* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}












/* MBA CARD */
.mba-card {
    position: relative; /* change */
  

  transform: none;

 margin-top:50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  display: flex;
  background: #fff;
  
}

/* LEFT CONTENT */
.content {
  width: 100%;
 background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
   position: relative;
  z-index: 2; /* upar lane ke liye */

  margin-right: -80px; /* 🔥 overlap magic */

}

.content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.content span {
  color: #f7931e;
}

.content ul {
  list-style: none;
}

.content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f7931e;
}

.content button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #f7931e;
  color: #fff;
  border: none;

}


/* RIGHT IMAGE */
.image {
  width: 100%;
  position: relative;
 border-radius: 0 20px 20px 0;

}

.image .bg {

  width: 80%;
 
  right: 0;
  background: #f7931e;
  border-radius: 0 20px 20px 0;
}

.image img {
   border-radius: 0 20px 20px 0;
  position: relative;
  width: 100%;
  
}
.features {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 40px;
  
margin-top:50px;
}

/* CARD */
.card-alumini {

  width: 250px;
  background: #dfe6ee;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: 0.3s ease;
  cursor: pointer;
}

/* ICON */
.card-alumini img {
  width: 50px;
  margin-bottom: 15px;
}

/* TEXT */
.card-alumini p {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* HOVER EFFECT 🔥 */
.card-alumini:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.programs {
  text-align: center;
  padding: 40px 20px;
}

.programs h2 {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 600;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 15px;
  text-align: left;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height:250px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 16px;
  margin: 10px 0;
}

.meta {
  font-size: 12px;
  color: #555;
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  margin: 5px 0;
}

.card button {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  border: none;
  background: #f7931e;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.card button:hover {
  background: #e67e00;
}

.view-more {
  margin-top: 25px;
}

.view-more button {
  padding: 10px 25px;
  background: #f7931e;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.whychoose-section {
  max-width: 1100px;
  margin: 50px auto;
  text-align: center;
}

.whychoose-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
}

.whychoose-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.whychoose-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.whychoose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.whychoose-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.whychoose-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .whychoose-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .whychoose-container {
    grid-template-columns: 1fr;
  }
}


/* SECTION */
.real-learners {
 width:100%;
  margin: 60px auto;
  display: flex;
background: #f7931e;

padding:40px;
  align-items: center;
  gap: 40px;
  color: #fff;
}

/* LEFT */
.real-learners-content {
  flex: 1;
}

.real-learners-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.real-learners-content p {
  line-height: 1.6;
  font-size: 15px;
  opacity: 0.9;
}

/* RIGHT VIDEO */
.video-box {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

/* Thumbnail */
.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  display: block;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: red;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.play-btn::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* iframe */
.video-box iframe {
  width: 100%;
  height: 320px;
  border: none;
}

/* responsive */
@media(max-width: 900px){
  .section {
    flex-direction: column;
  }
}

/* Section */
.counsellor-section {
  text-align: center;
  padding: 60px 20px;
}

.counsellor-section h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.counsellor-section p {
  color: #666;
  margin-bottom: 30px;
}

/* Card */
.counsellor-card {
  background: #fff;

  border-radius: 12px;
  padding: 15px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.counsellor-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.counsellor-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.counsellor-card span {
  font-size: 13px;
  color: #f7931e;
}

.counsellor-card p {
  font-size: 14px;
  margin: 5px 0;
  color: #444;
}

/* Button */
.cta-btn {
  margin-top: 30px;
  padding: 12px 25px;
  background: #f7931e;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #1d4ed8;
}

.counsellor-section-adds {
text-align: center;
width:800px;
  padding: 60px 20px;
}

.container {
  display: flex;
  max-width: 1100px;
  /*margin: 50px auto;*/
  gap: 40px;
}

/* LEFT SIDE */
.left-box {
  width: 30%;
}

.icon {
  width: 80px;
  margin-bottom: 20px;
}

.left-box h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.email-box {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.mail-icon {
  font-size: 20px;
  margin-right: 10px;
}

.email-box p {
  margin: 0;
  font-size: 12px;
  color: gray;
}

/* RIGHT SIDE */
.faq-box {
  width: 70%;
}

.faq-box h2 {
  font-size: 26px;
  margin-bottom: 20px;
  border-bottom: 3px solid #3b82f6;
  display: inline-block;
  padding-bottom: 5px;
}

/* FAQ */
.faq-item {
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  position: relative;
}

/* Arrow */
.faq-question::after {
  content: "▼";
  position: absolute;
  right: 15px;
  font-size: 12px;
}

.faq-question.active::after {
  content: "▲";
}

/* Answer */
.faq-answer {
  background: #fafafa;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 15px;
  font-size: 13px;
}