::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fcb564, #f47521);
  border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f7a243, #c4530e);
}

/* Firefox */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #f47521 transparent;
}
html,
body {
  padding: 0px !important;
  overflow-x: hidden;
}
body {
  font-family: "TASA Orbiter", Arial, sans-serif;
  color: #000000;
  background: #fff;
  line-height: 1.4;
}

a {
  text-decoration: none;
}

.main-logo {
  height: 60px;
}

@media (max-width: 424px) {
  .main-logo {
    height: 55px;
  }
}
@media (max-width: 374px) {
  .main-logo {
    height: 50px;
  }
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.btn-common {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto 0px;
  width: 316px;
  padding: 7px 10px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  background: linear-gradient(170deg, #fd6500, #993d00);
  color: #fff;
  margin-top: 20px;
  z-index: 1;
}

.btn-common:hover {
  transform: scale(0.9);
  transition: 0.2s all;
  color: #fff;
}

@media (max-width: 991px) {
  .btn-common {
    width: 250px;
  }
}

.nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
}
.nav-btn:hover {
  transform: scale(0.9);
  transition: 0.2s all;
}

.nav-apply {
  background: linear-gradient(177deg, #ff9458 0%, #ff5700 100%);
  color: #fff;
}

.nav-call {
  background: linear-gradient(150deg, #60f4ff 0%, #003358 100%);
  color: #fff;
}

.btn-apply {
  background: linear-gradient(177deg, #ff9458 0%, #ff5700 100%);
  color: #fff;
}

.btn-call {
  background: linear-gradient(150deg, #fbe9de 0%, #febb96 100%);
  color: #000000;
}

/* gradient header bar */
.top-strip {
  background: linear-gradient(90deg, #5b5b5b, #ff8a00);
  padding: 6px 0px;
  overflow: hidden; /* important */
  white-space: nowrap; /* keep text in one line */
  position: relative;
}

.top-strip p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;

  display: inline-block;
  padding-left: 100%; /* start from right side */
  animation: marquee 20s linear infinite;
}

/* infinite scroll animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* hero area */
.hero-bg {
  background: linear-gradient(245deg, #a84200 0%, #f18600 45%, #d77700 100%);
  padding: 40px 0 120px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-section {
  display: none;
}

.skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: url(../assets/images/hero_bg.png) no-repeat bottom center/cover,
    linear-gradient(245deg, #a82700 0%, #f18600 45%, #d73d00 100%);
  background-blend-mode: overlay;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

/* GIRL IMAGE — should appear ABOVE skyline but BELOW content */
.hero-visual {
  position: absolute;
  top: 35%;
  left: 35%;
  object-fit: contain;
  height: 600px;
  z-index: 5;
  pointer-events: none;
}

/* BADGES — above girl */
.visual-badges {
  font-size: 15px;
  text-align: center;
  background: #5b2508;
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 500;
  position: relative; /* important for tail */
}

/* Tail for eMBA (bottom-right side) */
.emba::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: -9px;
  width: 0;
  height: 0;
  rotate: 25deg;
  border-left: 15px solid #5b2508;
  border-top: 15px solid transparent;
}

/* Tail for PGDM (bottom-left side) */
.pgdm::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0px;
  width: 0;
  height: 0;
  border-right: 15px solid #5b2508;
  rotate: 180deg;
  border-top: 15px solid transparent;
}

/* Your existing absolute positions */
.emba {
  width: max-content;
  position: absolute;
  top: 380px;
  left: 500px;
  z-index: 7;
}

.pgdm {
  width: max-content;
  position: absolute;
  top: 410px;
  right: 550px;
  z-index: 7;
}

/* CONTENT + FORM — always top layer */
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
  z-index: 5;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero-sub {
  font-style: italic;
  font-weight: 500;
}

.cta-box {
  background: #4e3920;
  padding: 20px;
  padding-left: 35px !important;
  border-radius: 12px;
  display: inline-block;
  color: #fff;
  width: 100%;
}

.cta-title {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.cta-date {
  font-size: 13px;
}

.phone-flag {
  margin-top: 22px;
}

/* small pill */
.emphasize-pill {
  display: inline-block;
  background: #e5ffe1;
  color: #33862d;
  font-size: 10px;
  padding: 6px 10px;
  border: 1px solid #33862d;
  border-radius: 999px;
  font-weight: 400;
}

/* form card */
.lead-form {
  max-width: 380px;
  color: #000000;
  background: #FDF7F2;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.lead-form .form-control {
  border-radius: 999px;
  padding: 5px 15px;
}

.lead-form .form-select {
  border-radius: 999px;
}

/* mobile adjustments */
@media (max-width: 991px) {
  .hero-bg {
    padding: 36px 0 60px;
    height: 550px;
  }

  .hero-visual {
    position: relative;
    width: 80%;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
  }

  .visual-badges {
    position: relative;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -18px;
  }

  .lead-form {
    max-width: 300px;
    margin: 14px auto;
  }

  .hero-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .hero-bg {
    text-align: center;
    height: 100%;
    padding-bottom: 0px;
  }

  .hero-section {
    display: block;
    position: relative;
    width: 100%;
    height: 250px;
    overflow: visible;
  }

  .hero-img {
    position: absolute;
    bottom: -30px;
    width: 100%;
    object-fit: contain;
    /* filter: opacity(0.2); */
    opacity: 0.1;
  }

  .desc-container {
    display: none;
  }

  /* Text overlay on image */
  .hero-text {
    text-align: center;
    position: absolute;
    top: 45%;
    left: 19%;
    transform: translateY(-50%);
    color: #000000;
    max-width: 245px;
  }

  /* Center Floating Image */
  .floating-img {
    position: absolute;
    top: 180px;
    /* Pulls image into next section */
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    z-index: 5;
  }

  .visual-badges {
    font-size: 15px;
  }
  .emba {
    top: 280px;
    left: 120px;
    z-index: 7;
  }

  .pgdm {
    top: 300px;
    left: 270px;
    z-index: 7;
  }

  .hero-content {
    padding-top: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-title {
    font-size: 18px;
  }

  .hero-title span {
    color: #ff5700;
  }

  .skyline {
    display: none;
  }
  .hero-visual {
    display: none;
  }

  .phone-flag img {
    display: none;
  }

  .hero-inner {
    padding: 0 12px;
  }

  .cta-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center !important;
  }

  .cta-title {
    font-size: 12px;
  }
  .cta-date {
    font-size: 12px;
  }
}

@media (max-width: 424px) {
  .emba {
    top: 280px;
    left: 90px;
    z-index: 7;
  }
}

@media (max-width: 374px) {
  .cta-box {
    padding: 10px !important;
  }
  .cta-date {
    font-size: 10px;
  }
  .emba {
    top: 280px;
    left: 70px;
    z-index: 7;
  }
}

@media (min-device-width: 1440px){
  .emba {
    top: 380px;
    left: 550px;
  }
  .pgdm {
    top: 410px;
    right: 670px;
  }
}

/* Utility for success / error */
.alert-inline {
  margin-top: 12px;
}

/* ========== 03. QUIZ SECTION ========== */
.quiz-section {
  max-width: 900px;
  margin: 0px auto 0px;
  text-align: center;
}

.quiz-logo-row {
  margin-bottom: 10px;
}

.quiz-logo {
  height: 60px;
}

.sec-title {
  font-size: 32px;
  font-weight: 700;
  margin: 12px 0 6px;
}

.accent {
  color: #ff5700;
}

.sec-desc {
  max-width: 400px;
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .sec-title {
    font-size: 28px !important;
  }
}

.quiz-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.quiz-box {
  position: relative;
  background: #fff;
  width: 95%;
  max-width: 780px;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: pop 0.3s ease;
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.quiz-logo-sm {
  height: 60px;
  margin-bottom: 10px;
}

.quiz-close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 24px;
  cursor: pointer;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-step h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
}

.quiz-option {
  background: #f2f2f2;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s;
}

/* .quiz-option.orange {
  background: #ffe1cb;
  color: #000;
} */

.quiz-option:hover {
  background: linear-gradient(160deg, #ff6a00, #ff9a42);
  color: #fff;
}

/* DOTS */
.quiz-dots {
  margin-top: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  display: inline-block;
  margin: 0 5px;
}

.dot.active {
  background: #ff6a00;
}

/* RESULT */
.quiz-result {
  display: none;
  background: #ffe4d2;
  padding: 45px 25px;
  border-radius: 16px;
}

.result-top {
  font-style: italic;
  font-size: 20px;
}

.quiz-result h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
}

.quiz-result h2 span {
  color: #ff5a00;
}

.result-logos {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.result-logos img {
  height: 100px;
}

.result-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.who-section {
  background: #fff;
}

/* ===========================
       TOP BRAND + BUILDING ROW
    =========================== */
.brand-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 100px;
  position: relative;
  z-index: 5;
  margin-bottom: -20px;
  height: 200px;
}

.brand-box {
  position: relative;
  text-align: center;
  top: 30px;
}

.brand-box-2 {
  position: relative;
  text-align: center;
  top: 80px;
}

.brand-logo {
  position: relative;
  top: -10px;
  left: 50px;
  max-width: 110px;
}

.brand-logo-2 {
  position: relative;
  top: -10px;
  left: -80px;
  max-width: 80px;
}

.building-img {
  width: 300px;
}

.divider {
  position: relative;
  left: -14px;
  width: 1px;
  height: 150px;
  background: #ccc;
}

/* ===========================
       BOTTOM SPLIT SECTION
    =========================== */
.split-section {
  display: flex;
}

.mit-panel {
  flex: 1;
  background: #ffd9a8;
  padding: 60px 40px;
}

.avantika-panel {
  flex: 1;
  background: #e06666;
  padding: 60px 40px;
  color: #fff;
}

.panel-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

.panel-item span {
  font-size: 16px;
  font-weight: bolder;
}

.avantika-panel .panel-item {
  border-color: rgba(255, 255, 255, 0.3);
}

.panel-item:last-child {
  border-bottom: none;
}

.panel-item strong {
  font-size: 18px;
}

/* ===========================
       ✅ MOBILE CORRECT FIX
    =========================== */
@media (min-device-width: 768px) and (max-device-width: 991px) {
  /* .sec-desc {
    max-width: 370px;
  }
  .brand-row {
    align-items: center;
    margin-bottom: 0;
    gap: 12px;
  } */

  .brand-box {
    left: 10px;
    top: 65px;
  }

  .brand-box-2 {
    left: -20px;
    top: 70px;
  }

  .brand-logo {
    top: -180px;
    left: 10px;
    max-width: 110px;
  }

  .brand-logo-2 {
    top: 60px;
    left: 0px;
  }

  .divider {
    top: 25px;
    left: -14px;
    width: 1px;
    padding: 1px;
    height: 200px;
    background: #ccc;
  }

  .building-img {
    max-width: 230px;
  }

  /* ✅ IMPORTANT:
         PANELS STAY SIDE-BY-SIDE EVEN ON MOBILE */
  .split-section {
    flex-direction: row;
  }

  .mit-panel,
  .avantika-panel {
    padding: 40px 5px;
  }

  .panel-item span {
    display: block;
  }
}

@media (max-width: 767px) {
  .sec-desc {
    max-width: 370px;
  }
  .brand-row {
    align-items: center;
    margin-bottom: 0;
    gap: 12px;
  }

  .brand-box {
    left: 10px;
    top: 85px;
  }

  .brand-box-2 {
    left: -20px;
    top: 30px;
  }

  .brand-logo {
    top: -180px;
    left: 10px;
    max-width: 110px;
  }

  .brand-logo-2 {
    top: 60px;
    left: 0px;
  }

  .divider {
    top: 25px;
    left: 1px;
    width: 1px;
    padding: 1px;
    height: 200px;
    background: #ccc;
  }

  .building-img {
    max-width: 230px;
  }

  /* ✅ IMPORTANT:
         PANELS STAY SIDE-BY-SIDE EVEN ON MOBILE */
  .split-section {
    flex-direction: row;
  }

  .mit-panel,
  .avantika-panel {
    padding: 40px 20px;
  }

  .panel-item span {
    display: block;
  }
}

/* Dual path */

.dual-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid black;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  min-height: 140px;
  transition: 0.3s ease;
  flex-direction: column; /* IMAGE ON TOP */
  text-align: center;
  padding: 15px;
  overflow: hidden;

  /* ✅ MOBILE DEFAULT: IMAGE LEFT, CONTENT RIGHT */
}

.dual-card:hover {
  transform: translateY(-4px);
}

.dual-card h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.dual-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.dual-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  background: #ff7a00;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  margin-top: 5px;
}

.dual-btn:hover {
  transform: scale(0.9);
  transition: 0.2s all;
}

.dual-card .text-start {
  padding: 14px 0px;
  text-align: start !important;
}

.card-img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.dualSwiper {
  height: auto;
}

.swiper-pagination {
  position: relative;
  margin-top: 25px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #bbb;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ff7a00;
  width: 28px;
  border-radius: 10px;
  transition: 0.3s ease;
}

/* ✅ DESKTOP: IMAGE TOP, CONTENT BOTTOM */
@media (max-width: 767px) {
  .dual-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
    gap: 12px;
  }

  .card-img {
    width: 130px;
    height: 170px;
    border-radius: 12px;
  }
  .dualSwiper {
    height: 450px;
  }
}

/* dual degree section */
.dualdegree-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid black;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  min-height: 140px;
  transition: 0.3s ease;
  flex-direction: column; /* IMAGE ON TOP */
  text-align: center;
  padding: 15px;
  overflow: hidden;

  /* ✅ MOBILE DEFAULT: IMAGE LEFT, CONTENT RIGHT */
}

.dualdegree-card:hover {
  transform: translateY(-4px);
}

.dualdegree-card .text-start {
  padding: 14px 0px;
  text-align: start !important;
}

.dualdegree-card .card-img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.dualDegreeSwiper {
  height: auto;
}

/* ✅ DESKTOP: IMAGE TOP, CONTENT BOTTOM */
@media (max-width: 767px) {
  .dualdegree-card {
    height: 200px;
    justify-self: center;
    padding: 10px;
  }
  .dualdegree-card .text-start h6 {
    font-size: 12px;
  }
  .dualdegree-card .card-img {
    width: 145px;
    height: 140px;
    border-radius: 12px;
  }
}

@media (max-width: 424px) {
  .dualdegree-card .card-img {
    width: 135px;
    height: 130px;
    border-radius: 12px;
  }
}
@media (max-width: 374px) {
  .dualdegree-card .card-img {
    width: 170px;
    height: 135px;
    border-radius: 12px;
  }
}

.what-we-do {
  background-color: #f6f6f6;
}

/* ================= BANNER ================= */
.dual-banner {
  background: radial-gradient(
      circle at 20% 55%,
      rgb(247, 159, 0) 0%,
      rgb(253, 182, 50) 1%,
      transparent 25%
    ),
    linear-gradient(45deg, #ec8e00 0%, #f1870dfb 45%, #5e2400 90%);

  border-radius: 14px;
  padding: 40px 80px 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: left;
}

.dual-banner h2 {
  font-weight: 700;
  line-height: 1.2;
}

.dual-banner p {
  font-size: 14px;
  margin-top: 10px;
}

.dual-banner span {
  display: block;
}

.pencil-man {
  position: absolute;
  right: 40px;
  bottom: 0;
  max-height: 260px;
  z-index: 2;
}

/* ================= CARDS ================= */
.info-cards {
  margin-top: -70px;
  z-index: 5;
  position: relative;
}

.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  height: 100%;
}

.info-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.info-card span {
  display: block;
  font-size: 20px;
  color: #666;
}

.logo-img1 {
  height: 50px;
  margin: 10px auto 5px;
  display: block;
}

.logo-img2 {
  height: 75px;
  margin: 10px auto 5px;
  display: block;
}

.small-text {
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {
  .dual-banner {
    background: radial-gradient(
        circle at 0% 90%,
        rgb(255, 175, 25) 0%,
        transparent 25%
      ),
      linear-gradient(45deg, #ec8e00 0%, #f1870dfb 20%, #5e2400 80%);
    padding: 30px 40px 20px;
  }
  .dual-banner h2 {
    text-align: center;
  }

  .dual-banner p {
    text-align: center;
    font-size: 12px;
  }
  .dual-banner span {
    display: inline-flex;
  }

  .pencil-man {
    position: static;
    width: 350px;
  }

  .info-cards {
    margin-top: 20px;
  }
}

@media (max-width: 424px) {
  .pencil-man {
    position: static;
    width: 300px;
  }
}

/* Section Background */
.placements-section {
  background: linear-gradient(to bottom, #fdfdfd 0%, #eeeeee 100%);
}

/* Headings */
.placement-title {
  color: #ff6400;
  font-weight: 700;
  font-size: 28px;
}

.placement-sub {
  color: #6b6b6b;
  font-size: 18px;
}

/* Cards */
.placement-container {
  margin-top: 70px;
  gap: 1rem;
}
.placement-card {
  width: 150px;
  height: 100px;
  background: linear-gradient(45deg, #ffa104, #ff6a00, #ff3c00);
  color: #fff;
  border-radius: 12px;
}

/* Suitcase Handle */
.suitcase-icon {
  position: relative;
  top: -25px;
  left: 50px;
  width: 45px;
  height: 20px;
  border: 5px solid #ffa026;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

/* Numbers */
.value-text {
  font-size: 22px;
  font-weight: 700;
  margin: 5px;
}

/* Labels */
.label-text {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 767px) {
  .placement-container {
    margin-top: 0px;
    gap: 0.5rem;
  }
  .placement-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 120px;
  }
  .suitcase-icon-big {
    width: 100px;
    display: inline-flex;
    height: 40px;
    border: 10px solid #ffa026;
    border-bottom: 0;
    border-radius: 25px 25px 0 0;
    justify-content: center;
    align-items: center;
  }
  .suitcase-icon {
    display: none;
  }
}

@media (max-width: 424px) {
  .placement-card {
    width: 150px;
  }
}

@media (max-width: 374px) {
  .placement-card {
    width: 135px;
  }
}

/* Infinite Logo Slider */
.logo-slider {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

.slider-track {
  display: flex;
  width: calc(150px * 18); /* (logo width * total logos) */
  animation: slide 25s linear infinite;
}

.img-card {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  width: 150px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin: 5px;
}

.img-card img {
  width: 100px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: 0.3s;
  opacity: 0.9;
}

/* Hover effect */
.img-card img:hover {
  transform: scale(1.05);
  opacity: 1;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */

@media (max-width: 767px) {
  .img-card {
    width: 110px;
    margin: 0px;
  }
  .img-card img {
    max-width: 80px;
    max-height: 40px;
  }
  .slider-track {
    display: grid;
    justify-content: center;
    width: 80%;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    animation: none !important;
    transform: none !important;
    justify-self: center;
  }
}

@media (max-width: 424px) {
  .img-card {
    width: 100px;
    height: 50px;
  }
  .img-card img {
    max-width: 70px;
    max-height: 40px;
  }
}

@media (max-width: 374px) {
  .img-card {
    width: 90px;
    height: 45px;
  }
  .img-card img {
    max-width: 60px;
    max-height: 40px;
  }
}

/* Background section */
.placement-section {
  background: linear-gradient(160deg, #ffe9dd 0%, #f0ad87 100%);
  padding-top: 60px;
  padding-bottom: 80px;
}

.ps-title {
  font-size: 36px;
  font-weight: 700;
  color: #f46c2c;
}

.ps-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #555;
  margin-top: -5px;
}

/* Testimonial card */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  padding: 40px 35px;
  position: relative;
  text-align: left;
  max-width: 650px;
  height: max-content;
  margin: 0 auto;
}

.t-desc {
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Bottom right circular image */
.t-img {
  position: absolute;
  right: 25px;
  bottom: -20px;
}

.t-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Swiper Arrows */
.ps-arrow {
  color: #ffffff !important;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  margin-left: 100px;
  margin-right: 100px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 28px;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 991px) {
  .placement-section {
    background: #fff;
  }
  .testimonial-card {
    background: linear-gradient(160deg, #ffe9dd 0%, #f0ad87 100%);
    padding: 30px 25px;
  }

  .t-img {
    right: 15px;
    bottom: -30px;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    display: none;
  }
}

/* faq */

.faq-accordion .accordion-item {
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: linear-gradient(90deg, #f6f6f67d 49%, #eaeaea);
  font-size: 15px;
  font-weight: 500;
  color: #333;
  padding: 16px 20px;
  box-shadow: none;
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #ffede6;
  color: #000;
  box-shadow: none;
}

.faq-accordion .accordion-body {
  background: #ffede6;
  padding: 18px 22px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555555' class='bi bi-chevron-down' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* footer */

.dual-footer-section {
  background: linear-gradient(
    to bottom,
    #ff6a00,
    #ff8f35,
    #ffffff 80%,
    #8a8a8a
  );
  position: relative;
  overflow: hidden;
}

.footer-subtext {
  max-width: 600px;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  margin: 10px auto 30px;
}

/* Card */
.degree-card {
  background: #fff;
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.card-head {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

.card-logo1 {
  max-height: 40px;
}
.card-logo2 {
  max-height: 100px;
}

.x-symbol {
  font-size: 20px;
  font-weight: normal;
  color: #808080;
}

.building-container {
  margin-top: 200px;
}
.building {
  position: absolute;
  bottom: 0;
  width: 50%;
  opacity: 1;
  filter: grayscale(1);
}

.building-left {
  left: -25px;
  top: 62%;
}

.building-right {
  right: -40px;
  top: 45%;
}

/* Responsive */
@media (min-width: 768px) and (max-width: 991px) {
  .building-container {
    margin-top: 150px;
  }
  .building {
    width: 50%;
  }
  .building-left {
    left: -25px;
    top: 70%;
  }

  .building-right {
    right: -40px;
    top: 65%;
  }
}
@media (max-width: 767px) {
  .dual-footer-section {
    background: linear-gradient(
      to bottom,
      #ff6a00,
      #ff8f35,
      #ffffff 85%,
      #8a8a8a
    );
  }
  .building-container {
    margin-top: 70px;
  }
  .building {
    width: 55%;
  }
  .building-left {
    left: -10px;
    top: 85%;
  }

  .building-right {
    right: -40px;
    top: 80%;
  }
  .footer-title {
    font-size: 28px;
  }
  .degree-card {
    max-width: 90%;
  }
}

@media (min-device-width: 1440px){
  .building-left {
  left: -25px;
  top: 58%;
}
}

.form-control.error {
  border: 2px solid #ff002c;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    #__eedivChatMain #__eechatWindow {
        width: 95vw !important;
        height: 75vh !important;
        margin-right: 10px !important;
    }
}