* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  background: linear-gradient(135deg, #fffffe,  #580000);
  justify-content: space-between;
  padding: 5px 30px;
  align-items: center;
}
#placements {
  scroll-margin-top: 100px;
}
html {
  scroll-behavior: smooth;
}

.logo {
      width: 60px;
      height: 60px;
      background: #ddd;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #ffffff;
      font-size: 12px;
    }

.logo span {
  color:  #f5c400;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
}.navbar nav a {
  margin:  15px;
  text-decoration: none;
  color: #fdfdfd;
}

.nav a,
.dropbtn {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Dropdown */
.dropdown {
  display: inline-flex;
  align-items: center;
}


.dropdown-content {
  display: none;
  position: absolute;
  background: #b00101;
  min-width: 100px;
  top: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-content a {
  padding: 8px px;
  display: block;
  color: #020101;
}

.dropdown-content a:hover {
  background:  #f5c400;
}

.dropdown:hover .dropdown-content {
  display: block;
}


/* Buttons */
.enquire-btn {
  background:  #f5c400;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  background: #0b2b52;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}




.cta {
  background:  #f5c400;
  color: #fff;
  border: none;
  padding: 20px 30px;
  border-radius: 30px;
  cursor: pointer;
}

/* HERO */
.hero {
  display: flex;
  min-height: 85vh;   /* ✅ allow it to grow */
  padding: 60px;
  flex-wrap: wrap;    /* ✅ prevents overflow */
}

.content {
  flex: 1;
  padding-top: 80px;
  max-width: 600px;  /* prevents text from stretching too wide */
}

.content h5 {
  color:  #550000;
  margin-bottom: 10px;
}

.content h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.content h1 span {
  position: relative;
}

.content h1 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 6px;
  background:  #f5c400;
}

.subtitle {
  margin-bottom: 20px;
  color: #830f0f;
}

.programs {
  font-weight: 600;
  margin-bottom: 25px;
}

.primary-btn {
  padding: 14px 30px;
  background: #580000;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* IMAGE AREA */
.image-area {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.image-area img {
  width: 110%;
  z-index: 2;
}
/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    gap: 10px;
  }

  .navbar nav {
    flex-direction: column;
    gap: 15px;
  }

  .cta {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* HERO SECTION */
  .hero {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
  }

  .content {
    padding-top: 20px;
  }

  .content h1 {
    font-size: 28px;
  }

  .content h5 {
    font-size: 14px;
  }

  .subtitle {
    font-size: 16px;
  }

  .cta-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* IMAGE */
  .image-area {
    margin-top: 20px;
    justify-content: center;
  }

  .image-area img {
    width: 100%;
  }

  /* POPUP */
  .popup-box {
    width: 90%;
    padding: 20px;
  }
}












/* BOTTOM ANIMATED PATTERN */
.pattern-strip {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
}

.pattern-track {
  display: flex;
  width: 200%;
  animation: scroll 12s linear infinite;
}

.pattern-track span {
  width: 80px;
  height: 40px;
  background:  #f5c400;
  margin: 0 10px;
  border-radius: 0 0 40px 40px;
}

.pattern-track span:nth-child(even) {
  background: #580000;
}

/* PLACEMENTS SECTION */
.placements {
  padding: 90px 60px;
  background: #ffffff;
  text-align: center;
}

.placement-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.3;
}

.placement-box {
  background: #f5c400;
  border-radius: 20px;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

/* Item */
.placement-item {
  text-align: center;
  transition: transform 0.4s ease;
}

.placement-item:hover {
  transform: translateY(-10px);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #ffd6da;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-circle img {
  width: 34px;
}

.placement-item h3 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 5px;
}

.placement-item p {
  font-size: 16px;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .placement-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .placements {
    padding: 60px 20px;
  }

  .placement-title {
    font-size: 30px;
  }

  .placement-box {
    grid-template-columns: 1fr;
  }
}

/* REASONS SECTION */
.reasons {
  background: #580000;
  padding: 0px 40px;
  color: #fff;
  text-align: center;
}

.script-title {
  font-family: 'Brush Script MT', cursive;
  color: #f5c400;
  font-size: 28px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 40px;
  margin-bottom: 20px;
}

.section-desc {
  max-width: 900px;
  margin: 0 auto 50px;
  color: #cfd8e3;
  line-height: 1.6;
}

/* Cards */
.reason-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.reason-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 420px;
  cursor: pointer;
}

.reason-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Overlay */
.reason-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
     #f5c400(230, 57, 70, 0.95),
    rgba(7, 28, 47, 0.9)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.reason-overlay h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.reason-overlay p {
  font-size: 15px;
  line-height: 1.6;
}

/* HOVER EFFECT */
.reason-card:hover img {
  transform: scale(1.1);
  filter: grayscale(100%) brightness(0.7);
}

.reason-card:hover .reason-overlay {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .reason-cards {
    grid-template-columns: 1fr;
  }

  .reason-card {
    height: 380px;
  }
}






body {
  font-family: Arial, sans-serif;
  background: #fff;
}
.difference-header {
  text-align: center;
  margin-bottom: 70px;
}
.programme-wrapper {
  width: 90%;
  margin: 40px auto;
}

/* Tabs */
.programme-tabs {
  display: flex;
  gap: 6px;
}

.tab {
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  background: #f5c400;
  color: #fff;
  font-weight: bold;
}

.tab.active {
  background: #580000;
}

/* Container */
.programme-container {
  background: #580000;
  padding: 40px;
  border-radius: 20px;
  margin-top: 10px;
  overflow: hidden;
}

/* Slides */
.programme-slide {
  display: none;
  gap: 40px;
  color: #fff;
  animation: slideIn 0.5s ease;
}

.programme-slide.active {
  display: flex;
}

/* Left */
.left {
  width: 35%;
}

.left h2 {
  font-size: 32px;
}
.left p {
  text-align: justify;
}

.enquire-btn {
  margin-top: 20px;
  padding: 10px 24px;
  background:#f5c400;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Right */
.right {
  width: 65%;
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 16px;
}

.right h3 {
  color: #490202;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .programme-slide {
    flex-direction: column;
  }

  .left,
  .right {
    width: 100%;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}




/* PROGRAM DIFFERENCE SECTION */

/* SPECIALIZATIONS SECTION */
.specializations-section {
  position: relative;
  background: linear-gradient(
      rgba(96, 0, 0, 0.85),
      rgb(56, 0, 0)
    ),
    url("images/SXBclg.jpeg") center/cover no-repeat;
  padding: 120px 60px 100px;
  color: #fff;
  overflow: hidden;
}

/* Decorative strip */
.top-pattern {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    #f5c400 0 40px,
    #580000 40px 80px,
    #ddd 80px 120px
  );
}

/* Content */
.spec-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.spec-content .script-title {
  color: #f5c400;
  font-size: 30px;
  margin-bottom: 10px;
}

.spec-content .main-title {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 60px;
}

/* Grid */
.spec-grid {
  display: grid;
  grid-auto-flow: column;          /* force single row */
  grid-auto-columns: minmax(180px, 1fr);
  gap: 40px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

/* Hide scrollbar (optional but classy) */
.spec-grid::-webkit-scrollbar {
  display: none;
}
.spec-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.spec-grid {
  cursor: grab;
}
.spec-grid:active {
  cursor: grabbing;
}


.spec-item {
  text-align: center;
  padding: 10px;
}
.spec-item {
  min-width: 180px;
}


/* POP ICON */
.spec-icon {
  width: 90px;
  height: 90px;
  background: #f5c400;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.spec-icon img {
  width: 40px;
}

/* Slight random delay */
.spec-item:nth-child(odd) .spec-icon {
  animation-delay: 0.8s;
}

.spec-item:nth-child(even) .spec-icon {
  animation-delay: 1.6s;
}

/* Hover pop */
.spec-item:hover .spec-icon {
  transform: scale(1.15) translateY(-6px);
}

.spec-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.spec-item p {
  font-size: 14.5px;
  color: #d6dde5;
  line-height: 1.6;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Responsive */

@media (max-width: 768px) {
  

  .specializations-section {
    padding: 90px 20px;
  }

  .main-title {
    font-size: 32px;
  }
}
/* ===== CAROUSEL WRAPPER ===== */
.spec-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

/* ===== SINGLE ROW SCROLL ===== */
.spec-grid {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.spec-grid::-webkit-scrollbar {
  display: none;
}
.spec-grid {
  scrollbar-width: none;
}

/* Fix item width */
.spec-item {
  min-width: 200px;
  flex-shrink: 0;
}

/* ===== ARROW BUTTONS ===== */
.spec-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f5c400;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, background 0.3s ease;
}

.spec-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  background: #ffd633;
}

.spec-arrow.left {
  left: 10px;
}

.spec-arrow.right {
  right: 10px;
}

/* Hide arrows on small screens */
@media (max-width: 768px) {
  .spec-arrow {
    display: none;
  }
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    position: relative;
    margin-bottom: 40px;
}

.section-title .underline {
    display: block;
    width: 80px;
    height: 4px;
    background: #b11226;
    margin: 10px auto 0;
    border-radius: 5px;
}




.logo-slider-container {
    max-width: 1400px;
    margin: auto;
    text-align: center;
    position: relative;
}

.slider-arrows {
    margin-top: 30px;   /* Space below logos */
}

.nav-btn {
    background: #b11226;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
}

.logo-slider {
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    transition: transform 0.5s ease;
}

.logo-card {
    flex: 0 0 25%;      /* 100% / 4 = 25% */
    max-width: 25%;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.logo-card img {
    height: 160px;      /* Increase height */
    width: auto;
    max-width: 100%;
    object-fit: contain;
}


.logo-card img:hover {
    transform: scale(1.08);
}



.nav-btn:hover {
    transform: scale(1.2);
}


.nav-btn.left {
    left: -60px;   /* Push more left */
}

.nav-btn.right {
    right: -60px;  /* Push more right */
}

/* Responsive */
@media (max-width: 992px) {
    .logo-card {
        flex: 0 0 33.33%;   /* 3 per slide */
        max-width: 33.33%;
    }
}

@media (max-width: 768px) {
    .logo-card {
        flex: 0 0 50%;      /* 2 per slide */
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .logo-card {
        flex: 0 0 100%;     /* 1 per slide */
        max-width: 100%;
    }
}









.alumni-success {
  padding: 80px 10%;
  text-align: center;
  background: #ffffff;
}

.alumni-top {
  margin-bottom: 30px;
}

.enquire-btn {
  background:  #f5c400;
  color: #000000;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.alumni-script {
  color:  #f5c400;
  font-size: 28px;
  margin-bottom: 5px;
  font-family: cursive;
}

.alumni-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

.alumni-single img {
  width: 100%;
  max-width: 1300px;     /* keeps desktop size */
  height: auto;
  margin-bottom: 20px;
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.4s ease;
}


.alumni-single:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.alumni-single h3 {
  font-size: 22px;
  margin: 5px 0;
}

.designation {
  font-size: 14px;
  margin: 4px 0;
  color: #555;
}


@media (hover: hover) {
  .alumni-single:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
  }
}

@media (max-width: 768px) {
  .alumni-single img {
    width: 100%;
    transform: none;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .alumni-success {
    padding: 50px 5%;
  }

  .alumni-title {
    font-size: 28px;
  }

  .alumni-script {
    font-size: 22px;
  }

  .alumni-single img {
    max-width: 100%;
    border-radius: 8px;
  }
}






.pattern-scroll {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.scroll-track img {
  height: 40px;          /* adjust height if needed */
  width: auto;
  display: block;
}

/* Infinite scrolling animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}













.cta-section {
  font-family: Arial, sans-serif;
  padding: 15px 0;
  border-color: #4e060b;
 background: linear-gradient(135deg, #580000);
}

.cta-container {
  max-width: 1500px;
  margin: auto;
  display: flex;
  border-color: #4e060b;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.cta-left {
  flex: 1;
   background: linear-gradient(135deg, #d9d9d9, #f5c400);
  padding: 70px;
  border-color: #4e060b;
  position: relative;
}
.form-header {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
}

/* FORM CARD */
.form-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* INPUTS & SELECT */
.form-card input,
.form-card select {
  width: 100%;
  padding: 14px 15px;
  margin-bottom: 18px;
  border: 1.5px solid #340000;   /* ✅ BORDER ADDED */
  border-radius: 3px;
  font-size: 15px;
  outline: none;
  background: #fffafa;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* SIDE-BY-SIDE ROW */
.form-row {
  display: flex;
  gap: 15px;
}

.form-row input,
.form-row select {
  margin-bottom: 0;
}

/* FOCUS EFFECT */
.form-card input:focus,
.form-card select:focus {
  border-color: #4e060b;
  box-shadow: 0 0 0 2px rgba(255, 77, 90, 0.15);
}

/* BUTTON */
.form-card button {
  margin-top: 20px;
  background: #4e060b;
  color: #fff;
  padding: 14px 26px;
  border: 1.5px solid #3d0206;
  font-size: 15px;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.form-card button:hover {
  background: #370105;
}


/* RIGHT */
.cta-right {
  flex: 1;
}

.script-text {
  font-family: 'cursive';
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-right h2 {
  font-size: 32px;
  color:  #f5c400;
  margin-bottom: 20px;
}
 
.cta-right h5 {
  font-size: 25px;
  color:  #ffffff;}
.cta-right p {
  font-size: 16px;
  line-height: 1.6;
  color:  #ffffff;
  max-width: 480px;
}
.cta-right p,
.cta-right li {
  color: #e6eef7;   /* softer white for readability */
}
.contact-icons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  color:#f5c400;
  font-size: 22px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-container {
    flex-direction: column;
  }

  .cta-left {
    width: 100%;
    padding: 40px 20px;
  }
}










/* CONTACT HIGHLIGHT SECTION */
.contact-highlight-section {
  background: #ffffff;
  padding: 70px 80px;
}

.contact-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

/* INFO BOX */
.info-box {
  background:  #580000;
  border: 2px solid #f5c400;
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  max-width: 300px;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

/* ICON */
.info-icon {
  width: 54px;
  height: 54px;
  background: #f5c400;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* TEXT */
.info-text h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.info-text p {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.6;
  color: #ffdfe2;
}

/* CENTER CONTENT */
.contact-center {
  text-align: center;/* 👈 moves SXB MBA to the right */
}



.logo {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #580000;
    position: relative;
  left: 70px;   
}

.logo span {
  font-weight: 300;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icons a {
  background:#f5c400;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ffffff;
  color: #f5c400;
  border: 1px solid #f5c400;
}
.contact-container .info-box:last-child {
  margin-left: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .info-box {
    margin: auto;
  }
}



.footer-balance {
  background: #580000;
  width: 100%;
}

.footer-balance-container {
  max-width: 1400px;
  margin: auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT */
.footer-balance-left {
  color: #fff;
  font-size: 14px;
}

/* CENTER */
.footer-balance-center {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* RIGHT */
.footer-balance-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-balance-right a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.footer-balance-right a:hover {
  text-decoration: underline;
}

.footer-balance-right span {
  color: rgba(255,255,255,0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-balance-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
