* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;

  background: url("images/dbit_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  overflow-x: hidden;
}
/* ===================== HEADER 1 ===================== */
#header-top {
  background-color: #f5c518;
  padding: 6px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: #111;
}
#header-top a {
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}
#header-top a:hover {
  text-decoration: underline;
}

.top-contact span {
  margin-right: 18px;
}
.top-contact i {
  margin-right: 4px;
}

.top-nav-links {
  display: none; /* hidden by default, shown on lg+ via media query below */
}
.top-nav-links a {
  margin-left: 16px;
  font-size: 12.5px;
}

/* Hamburger for top nav (small/md) */
#topNavToggle {
  background: none;
  border: 1.5px solid #333;
  border-radius: 4px;
  padding: 3px 8px;
  cursor: pointer;
  display: inline-flex; /* visible by default, hidden on lg+ via media query */
  align-items: center;
}
#topNavToggle i {
  font-size: 16px;
}

#topNavCollapse {
  background: #f5c518;
  border-top: 1px solid #e0b000;
}
#topNavCollapse a {
  display: block;
  padding: 7px 16px;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px solid #e0b000;
}
#topNavCollapse a:hover {
  background: #e0b000;
}

/* ===================== HEADER 2 ===================== */
#header-main {
  background: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.full-logo {
  width: 200px;
  height: auto;
}
.code-box {
  border: 1.5px solid #ccc;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}
.code-box span {
  color: #003087;
}

.btn-tender {
  background-color: #003087;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  white-space: nowrap;
}
.btn-tender:hover {
  background-color: #002060;
  color: #fff;
}

.btn-fee {
  background-color: #8b0000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  white-space: nowrap;
}
.btn-fee:hover {
  background-color: #6b0000;
  color: #fff;
}

.btn-admissions {
  background-color: #c0392b;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  white-space: nowrap;
}
.btn-admissions:hover {
  background-color: #a93226;
  color: #fff;
}

/* Mobile hamburger for main nav (inside header 2) */
#mainNavToggle {
  background: #003087;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 7px 12px;
  cursor: pointer;
  display: none;
}
#mainNavToggle i {
  font-size: 18px;
}

/* ===================== HEADER 3 – NAV ===================== */
#header-nav {
  background-color: #003087;
}
#header-nav .navbar {
  padding: 0;
}
#header-nav .nav-link {
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 500;
  padding: 13px 12px !important;
  transition: background 0.2s;
  white-space: nowrap;
}
#header-nav .nav-link:hover,
#header-nav .nav-link:focus {
  background: #0052cc;
}
#header-nav .dropdown-menu {
  background: #003087;
  border: none;
  border-radius: 0;
  padding: 0;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
#header-nav .dropdown-item {
  color: #fff;
  font-size: 13px;
  padding: 9px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#header-nav .dropdown-item:hover {
  background: #0052cc;
  color: #fff;
}
#header-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
  margin: 6px 12px;
}
#header-nav .navbar-toggler-icon {
  filter: invert(1);
}

/* ===================== HEADER 4 – TICKER ===================== */
#header-ticker {
  background: #ffe174;
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 28s linear infinite;
  gap: 0;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
}

.ticker-item img {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
  margin-right: 6px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.ticker-sep {
  color: #888;
  padding: 0 10px;
  font-weight: 400;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  /* Header 1: show only contact, hide nav links inline */
  #topNavToggle {
    display: inline-flex;
    align-items: center;
  }
  .top-nav-links {
    display: none !important;
  }

  /* Header 2: hide code box and buttons, show hamburger */
  .header2-center {
    display: none !important;
  }
  .header2-actions {
    display: none !important;
  }
  #mainNavToggle {
    display: inline-flex;
    align-items: center;
  }

  /* Header 3: hide on small, controlled via header 2 hamburger */
  #header-nav {
    display: none;
  }
}

@media (max-width: 575.98px) {
  #header-top {
    font-size: 12px;
  }
  .top-contact span {
    margin-right: 10px;
    font-size: 12px;
  }
}

/* When main nav toggled open (via JS class) */
#header-nav.nav-open {
  display: block !important;
}
/* On large screens always show nav */
@media (min-width: 992px) {
  #header-nav {
    display: block !important;
  }
  #topNavToggle {
    display: none !important;
  }
  .top-nav-links {
    display: flex !important;
    align-items: center;
  }
  .header2-center {
    display: flex !important;
  }
  .header2-actions {
    display: flex !important;
  }
  #mainNavToggle {
    display: none !important;
  }
}

/* HERO SECTION */

.hero-section {
  background: #efefef;
  position: relative;
}
.hero-title {
  font-size: 62px;
}
.hero-row {
  min-height: 85vh;
}
.hero-left {
  z-index: 2;
  margin-bottom: 100px;
}

.hero-right {
  position: relative;
}

.blue-shape {
  position: absolute;
  width: 220px;
  height: 620px;
  background: #0d47c9;
  top: -300px;
  left: 42%;
  transform: rotate(20deg);
  border-radius: 8px;
  z-index: 1;
}

.blue-shape::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  width: 6px;
  height: 100%;
  background: #ffcc00;
  border-radius: 10px;
}

.blue-shape::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 0;
  width: 6px;
  height: 100%;
  background: #ffcc00;
  border-radius: 10px;
}

.hero-banner {
  position: relative;
  width: 100%;
  max-width: 900px;
  z-index: 2;
}

.social-icons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.social-icons a {
  width: 55px;
  height: 55px;
  background: #0d47c9;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  font-size: 22px;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: translateY(-5px);
}
.social-red {
  background-color: #ae152d !important;
}

@media (max-width: 992px) {
  .hero-left {
    text-align: center;
    margin-bottom: 50px;
  }

  .blue-shape {
    width: 150px;
    height: 420px;
    left: 40%;
    top: -30px;
  }

  .hero-banner {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .blue-shape {
    width: 90px;
    height: 280px;
    left: 43%;
    top: -20px;
  }
  .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 5px;
  }
}
@media (max-width: 768px) {
  .blue-shape {
    display: none;
  }
  .hero-title {
    font-size: 42px;
  }
}
/* STATS SECTION */

.stats-container {
  background: linear-gradient(90deg, #0b3c88, #1f5db8);
  border-radius: 10px;
  padding: 35px 20px;
  margin-top: -200px;
  position: relative;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ICON + TEXT */
.stats-bar {
  margin-right: 25px;
  margin-left: 25px;
}
.stat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.stat-box img {
  width: 55px;
}

.stat-content h2 {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-content p {
  color: white;
  font-size: 12px;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

/* MOBILE */

@media (max-width: 768px) {
  .stats-container {
    margin-top: -35px;
    padding: 30px 20px;
  }

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

  .stat-content h2 {
    font-size: 32px;
  }

  .stat-content p {
    font-size: 8px;
  }
}
/* NEWS SECTION */

.news-section {
  background: #f3f3f3;
}

/* CARD */

.news-card {
  background: #f1f2f5;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

/* HEADER */

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.news-header h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}

.news-header a {
  color: #ff5b5b;
  font-size: 12px;
  text-decoration: underline;
  text-wrap-mode: nowrap;
}

/* SCROLL AREA */

.news-scroll {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.news-scroll .scroll-content {
  animation: autoScroll 12s linear infinite;
}

.news-scroll:hover .scroll-content {
  animation-play-state: paused;
}

@keyframes autoScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* SCROLLBAR */

.news-scroll::-webkit-scrollbar {
  width: 4px;
}

.news-scroll::-webkit-scrollbar-thumb {
  background: #0d47c9;
  border-radius: 10px;
}
/* ITEM */

.news-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.news-content h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.news-date {
  min-width: 100px;
  font-size: 12px;
  color: #666;
  text-align: right;
  line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .news-header h2 {
    font-size: 22px;
  }

  .news-content h4 {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .news-card {
    padding: 22px;
  }

  .news-scroll {
    height: 220px;
  }

  .news-header h2 {
    font-size: 22px;
  }

  .news-content h4 {
    font-size: 12px;
  }

  .news-date {
    font-size: 12px;
    min-width: 70px;
  }

  .news-item {
    gap: 12px;
  }
}
/* ABOUT SECTION */

.about-section {
  background-color: transparent;
  background-image: linear-gradient(9deg, #f1f5ff 6.06%, #f3f6ff 95.97%);
}

/* IMAGES */

.about-images {
  display: flex;
  gap: 20px;
  position: relative;
  align-items: center;
}

.small-images {
  width: 45%;
}

.big-image {
  width: 55%;
}

.about-small-img,
.about-big-img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}

/* CIRCLE DESIGN */

.circle-design {
  position: absolute;
  width: 450px;
  height: 450px;
  border: 3px solid #d9e6ff;
  border-radius: 50%;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.circle-design::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 3px solid #ffd83d;
  border-radius: 50%;
  left: 60px;
  top: 60px;
}

/* CONTENT */

.about-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
}

.about-text {
  font-size: 12px;
  line-height: 1.6;
  color: #555;
}

.about-btn {
  background-color: #195198;
  color: white;
  padding: 14px 38px;
  border-radius: 10px;
  margin-top: 20px;
  font-weight: 500;
}

.about-btn:hover {
  background: #08328d;
  color: white;
}

/* WHY SECTION */

.why-section {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  background-image: linear-gradient(9deg, #f1f5ff 6.06%, #f3f6ff 95.97%);
  padding: 80px 0;
}

/* RIGHT RED BACKGROUND DESIGN */

.background-overlay {
  position: absolute;
  right: -100px;
  top: 10px;
  width: 400px;
  height: 400px;
  background-image: url("images/why_dbit.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .background-overlay {
    position: absolute;
    right: -80px;
    top: 270px;
    width: 250px;
    height: 270px;
    background-image: url("images/why_dbit.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
    pointer-events: none;
  }
}
/* CONTENT ABOVE BACKGROUND */

.why-section .container,
.scroll-wrapper {
  position: relative;
  z-index: 2;
}
.why-title {
  font-size: 32px;
  font-weight: 700;
}

.why-text {
  font-size: 12px;
  max-width: 850px;
  margin: 20px auto 50px;
  line-height: 1.6;
  color: #666;
}

/* AUTO SCROLL */

.scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollMove 20s linear infinite;
}

.scroll-wrapper:hover .scroll-track {
  animation-play-state: paused;
}

/* CARD */

.why-card {
  flex-shrink: 0;
}

.why-card img {
  height: 150px;
}

/* ANIMATION */

@keyframes scrollMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .about-title {
    font-size: 38px;
  }

  .why-title {
    font-size: 42px;
  }

  .circle-design {
    width: 300px;
    height: 300px;
  }

  .circle-design::after {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .about-images {
    flex-direction: column;
  }

  .small-images,
  .big-image {
    width: 100%;
  }

  .about-title {
    font-size: 30px;
    text-align: center;
  }

  .about-text {
    text-align: center;
    font-size: 15px;
  }

  .about-btn {
    display: table;
    margin: 20px auto 0;
  }

  .why-title {
    font-size: 34px;
  }

  .why-text {
    font-size: 15px;
  }

  .why-card {
    width: 220px;
  }

  .circle-design {
    display: none;
  }
}
/* PROGRAMMES SECTION */

.programmes-section {
  background: #f3f3f3;
}

/* TITLE */

.programme-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.title-line {
  width: 90px;
  height: 4px;
  background: #1d7ddc;
  margin: 18px auto;
  border-radius: 20px;
}

.programme-subtitle {
  font-size: 16px;
  color: #222;
  margin-top: 20px;
}

/* CARD */

.programme-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

/* IMAGE */

.programme-img-box {
  overflow: hidden;
  border-radius: 18px;
}

.programme-img {
  width: 100%;
  transition: 0.5s ease;
}

/* BOTTOM CONTENT CARD */

.programme-content {
  width: 90%;
  background: #1d7ddc;
  color: white;
  padding: 28px 25px;
  position: relative;
  margin: -90px auto 0;
  z-index: 5;
  text-align: center;
  transition: 0.5s ease;
  height: 120px;
}

/* HOVER CONTENT */

.programme-hover-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s ease;
}

/* HOVER */

.programme-card:hover .programme-content {
  background: white;
  transform: translateY(-15px);
  min-height: 180px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.programme-card:hover .programme-content h3,
.programme-card:hover .programme-content p {
  color: #111;
}

.programme-card:hover .programme-hover-content {
  max-height: 100px;
  opacity: 1;
  margin-top: 15px;
}
.programme-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.programme-content p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

.programme-hover-content a {
  display: inline-block;
  color: #1d7ddc;
  font-weight: 700;
  text-decoration: none;
  font-size: 20px;
}

/* HOVER EFFECT */

.programme-card:hover .programme-img {
  transform: scale(1.1);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .programme-title {
    font-size: 22px;
  }
  .programme-content {
    width: 85%;
  }
}

@media (max-width: 768px) {
  .programme-title {
    font-size: 14px;
  }

  .programme-subtitle {
    font-size: 12px;
  }

  .programme-content {
    width: 90%;
    padding: 22px 18px;
  }

  .programme-content h3 {
    font-size: 12px;
  }

  .programme-content p {
    font-size: 16px;
  }
}
/* SECTION */

.campus-life-section {
  overflow: hidden;
  background: #ffffff;
}

/* MAIN WRAPPER */

.campus-wrapper {
  position: relative;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

/* MAIN IMAGE */

.campus-main-img {
  width: 75%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
}

/* OVERLAY */

.campus-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* FLOATING IMAGES */

.floating-img {
  position: absolute;
  width: 340px;
  border: 6px solid white;
  z-index: 5;
  transition: 1s ease;
  object-fit: cover;
}

.top-img {
  top: 20px;
  left: 50px;
}

.bottom-img {
  bottom: 20px;
  right: 540px;
}

/* PLAY BUTTON */

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-decoration: none;
}

.play-circle {
  width: 110px;
  height: 110px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.play-circle i {
  font-size: 55px;
  color: #1f6ed4;
  margin-left: 8px;
}

/* RING ANIMATION */

.play-ring {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* CONTENT BOX */

.campus-content-box {
  position: absolute;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  width: 500px;
  background: rgba(83, 123, 189, 0.88);
  padding: 60px 35px;
  text-align: center;
  z-index: 10;
}

/* LEFT DARK SHADE */

/* TEXT */

.campus-content-box h2 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.campus-content-box p {
  color: white;
  font-size: 24px;
  line-height: 1.8;
}

/* MOBILE */

@media (max-width: 992px) {
  .campus-wrapper {
    height: auto;
  }

  .campus-main-img {
    height: 400px;
  }

  .floating-img {
    width: 180px;
  }

  .top-img {
    left: 10px;
    top: 10px;
  }

  .bottom-img {
    right: 10px;
    bottom: 10px;
  }

  .campus-content-box {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    transform: none;
    padding: 40px 20px;
  }

  .campus-content-box::before {
    display: none;
  }

  .campus-content-box h2 {
    font-size: 34px;
  }

  .campus-content-box p {
    font-size: 16px;
  }

  .play-circle {
    width: 80px;
    height: 80px;
  }

  .play-circle i {
    font-size: 40px;
  }
}
/* REMOVE INDICATORS */

.carousel-indicators,
.carousel-control-prev,
.carousel-control-next {
  display: none;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .campus-content {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    transform: none;
    padding: 50px 30px;
  }

  .campus-content::before {
    display: none;
  }

  .campus-img {
    height: auto;
  }

  .campus-content h2 {
    font-size: 40px;
  }

  .campus-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .campus-content {
    padding: 40px 20px;
  }

  .campus-content h2 {
    font-size: 30px;
  }

  .campus-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .play-ring {
    width: 120px;
    height: 120px;
    top: -25px;
    left: -25px;
  }

  .play-circle {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
}
/* ACCREDITATION SECTION */

.accreditation-section {
  position: relative;
  background: transparent;
  overflow: hidden;
}

/* DARK OVERLAY */

.accreditation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 65, 0.78);
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */

.accreditation-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* LEFT CONTENT */

.accreditation-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: white;
  margin-top: 60px;
}

.accreditation-line {
  width: 220px;
  height: 4px;
  background: white;
  margin: 25px 0;
  border-radius: 20px;
}

.accreditation-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #f1f1f1;
  max-width: 600px;
  margin-bottom: 60px;
}

.logo-card {
  text-align: center;
  transition: 0.4s ease;
}

.logo-card img {
  transition: 0.4s ease;
}

.logo-card:hover img {
  transform: scale(1.08);
}
/* RESPONSIVE */

@media (max-width: 992px) {
  .accreditation-content {
    text-align: center;
  }

  .accreditation-line {
    margin: 20px auto;
  }

  .accreditation-content h2 {
    font-size: 48px;
  }

  .accreditation-content p {
    font-size: 18px;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .accreditation-content h2 {
    font-size: 34px;
  }

  .accreditation-content p {
    font-size: 15px;
  }

  .logo-card img {
    width: 130px;
  }
}
/* SUCCESS SECTION */

.success-section {
  background: #f5f5f5;
}

/* HEADING */

.success-heading h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.heading-line {
  width: 70px;
  height: 4px;
  background: #b71c2b;
  border-radius: 10px;
}

/* BUTTON */

.stories-btn {
  background: #356fbe;
  color: white;
  text-decoration: none;
  padding: 18px 35px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}

.stories-btn:hover {
  background: #0d47c9;
  color: white;
}

/* IMAGE */

.success-image-box {
  padding: 25px;
}

.success-img {
  width: 100%;
  transition: 0.5s ease;
  transform: scale(1);
}
.zoom-animation {
  animation: zoomEffect 0.6s ease;
}
@keyframes zoomEffect {
  0% {
    transform: scale(1.08);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* STORIES */

.stories-wrapper {
  display: flex;
  flex-direction: column;
}

/* ITEM */

.story-item {
  display: flex;
  gap: 35px;
  padding: 35px 0;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: 0.3s;
}
.story-item:hover {
  transform: translateX(8px);
}
/* NUMBER */

.story-number {
  font-size: 78px;
  font-weight: 700;
  color: #cfcfcf;
  transition: 0.3s;
  min-width: 90px;
  line-height: 1;
}

/* ACTIVE */

.active-story .story-number {
  color: #1976d2;
}

/* CONTENT */

.story-content h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 18px;
  color: #111;
}

/* META */

.story-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.story-meta span {
  font-size: 14px;
  color: #222;
}

.meta-line {
  width: 25px;
  height: 1px;
  background: #bbb;
}

/* HOVER */

.story-item:hover .story-number {
  color: #1976d2;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .success-heading h2 {
    font-size: 28px;
  }

  .story-number {
    font-size: 55px;
  }

  .story-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .success-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .success-heading h2 {
    font-size: 18px;
  }

  .stories-btn {
    margin-top: 20px;
    padding: 14px 24px;
    font-size: 14px;
  }

  .story-item {
    gap: 18px;
    padding: 25px 0;
  }

  .story-number {
    font-size: 42px;
    min-width: 55px;
  }

  .story-content h3 {
    font-size: 16px;
  }

  .story-meta span {
    font-size: 13px;
  }
}
/* PLACEMENT SECTION */

.placement-section {
  background: #f5f5f5;
  overflow: hidden;
}

/* TITLE */

.placement-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.placement-subtitle {
  max-width: 900px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.8;
  color: #222;
}

/* STATS */

.placement-stat h3 {
  font-size: 62px;
  font-weight: 700;
  color: #1d7ddc;
  line-height: 1;
}

.placement-stat p {
  font-size: 18px;
  color: #111;
  line-height: 1.8;
  margin-top: 10px;
}

/* AUTO SCROLL */

.placement-scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.placement-scroll-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: placementScroll 22s linear infinite;
}

.placement-scroll-wrapper:hover .placement-scroll-track {
  animation-play-state: paused;
}

/* CARD */

/* CARD HOVER */

.placement-card {
  position: relative;
  width: 280px;
  height: 350px;
  border-radius: 28px;
  overflow: hidden;
  flex-shrink: 0;
  transition: 0.4s ease;
}

/* IMAGE ZOOM */

.placement-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* HOVER EFFECT */

.placement-card:hover {
  transform: translateY(-10px);
}

.placement-card:hover img {
  transform: scale(1.08);
}
/* OVERLAY */

.placement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.05));
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* BADGE */

.student-badge {
  background: #1d7ddc;
  color: white;
  display: inline-block;
  width: fit-content;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

/* TEXT */

.placement-overlay h4 {
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.placement-overlay p {
  color: white;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
  margin: 0;
}

/* ANIMATION */

@keyframes placementScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .placement-title {
    font-size: 28px;
  }

  .placement-stat h3 {
    font-size: 40px;
  }

  .placement-card {
    width: 260px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .placement-title {
    font-size: 22px;
  }

  .placement-subtitle {
    font-size: 14px;
  }

  .placement-stat h3 {
    font-size: 32px;
  }

  .placement-stat p {
    font-size: 14px;
  }

  .placement-card {
    width: 220px;
    height: 340px;
  }

  .placement-overlay {
    padding: 20px;
  }

  .placement-overlay h4 {
    font-size: 14px;
  }

  .placement-overlay p {
    font-size: 12px;
  }

  .student-badge {
    font-size: 11px;
    padding: 8px 12px;
  }
}
/* SECTION */

.potential-section {
  background: #f5f5f5;
}

/* TITLE */

.potential-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.title-design {
  width: 130px;
  margin-top: -10px;
}

.potential-subtitle {
  font-size: 18px;
  color: #222;
  margin-top: 8px;
}

/* COMPANY CARD */

.company-card {
  display: flex;
  transition: 0.3s ease;
}

/* IMAGE */

.company-card img {
  max-height: 65px;
  object-fit: contain;
  transition: 0.3s ease;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .potential-title {
    font-size: 45px;
  }
}

@media (max-width: 768px) {
  .potential-title {
    font-size: 32px;
  }

  .potential-subtitle {
    font-size: 14px;
  }
}
/* SECTION */

.testimonial-faq-section {
  background: #ffffff;
  padding: 50px;
}

/* TITLE */

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.section-line {
  width: 90px;
  height: 4px;
  background: #1d7ddc;
  margin: 20px 0 40px;
  border-radius: 20px;
}

/* TESTIMONIAL */

.testimonial-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 50px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 25px;
}

.testimonial-user img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial-user span {
  font-size: 18px;
  font-weight: 600;
}

/* DOTS */

.custom-indicators {
  position: absolute;
  margin-top: 50px;
  justify-content: center;
  top: 300px;
}

.custom-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  border: none;
  background: #bbb !important;
  opacity: 1 !important;
  margin: 0 8px !important;
}

.custom-indicators .active {
  width: 18px !important;
  height: 18px !important;
  border: 2px solid #999;
  background: #000 !important;
}

/* FAQ */

.custom-accordion .accordion-item {
  border: none;
  background: transparent;
}

.custom-accordion .accordion-button {
  background: #fff;
  color: #3c6bb3;
  font-size: 14px;
  font-weight: 700;
  padding: 15px;
  border: 1px solid #eee;
  box-shadow: none !important;
}

/* ACTIVE QUESTION */

.custom-accordion .accordion-button:not(.collapsed) {
  background: #ffffff;
  color: #b3122f;
}

/* ANSWER */

.custom-accordion .accordion-body {
  background: #fff;
  padding: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #222;
  border: 1px solid #eee;
  border-top: none;
}

/* REMOVE DEFAULT ICON */

.accordion-button::after {
  filter: hue-rotate(320deg);
}

/* MOBILE */

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .testimonial-box p {
    font-size: 15px;
    line-height: 1.9;
  }

  .testimonial-user img {
    width: 70px;
    height: 70px;
  }

  .testimonial-user h5 {
    font-size: 18px;
  }

  .testimonial-user span {
    font-size: 14px;
  }

  .custom-accordion .accordion-button {
    font-size: 16px;
    padding: 18px;
  }

  .custom-accordion .accordion-body {
    font-size: 14px;
    padding: 18px;
    line-height: 1.8;
  }
}

/* ============================================================
       FOOTER WRAPPER
    ============================================================ */
footer {
  background-color: #0d3a72;
  color: #cdd8f0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
}

/* ============================================================
       SECTION 1 — LOGO + CONTACT
    ============================================================ */
.footer-top {
  padding: 36px 40px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Logo circle */
.footer-logo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #f5c518;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-logo-circle svg {
  width: 80px;
  height: 80px;
}

.footer-brand-trust {
  font-size: 10px;
  color: #aab8d8;
  margin-bottom: 2px;
}
.footer-logo {
  width: 300px;
  height: auto;
}
.footer-brand-inst {
  font-size: 13px;
  font-weight: 700;
  color: #e0e8ff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-brand-addr {
  font-size: 11px;
  color: #aab8d8;
  margin-top: 2px;
}
.footer-brand-badge {
  display: inline-block;
  background: #f5c518;
  color: #111;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 2px;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

/* Contact items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 15px;
}
.contact-text {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

/* ============================================================
       SECTION 2 — QUICK LINKS
    ============================================================ */
.footer-links {
  padding: 32px 40px 24px;
}
.footer-links h5 {
  color: #f5c518;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
}

.link-col a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 13.5px;
  padding: 4px 0;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.link-col a:hover {
  color: #f5c518;
  padding-left: 6px;
}

/* ============================================================
       SECTION 3 — SOCIAL ICONS
    ============================================================ */
.footer-social {
  padding: 24px 40px;
  text-align: center;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 18px;
  margin: 0 6px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.social-icon:hover {
  background: #f5c518;
  color: #0d2461;
  border-color: #f5c518;
}

/* ============================================================
       SECTION 4 — COPYRIGHT BAR
    ============================================================ */
.footer-bottom {
  padding: 16px 40px;
  background: #0d3a72;
  font-size: 12.5px;
  color: #ffffff;
}
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #f5c518;
}
.footer-bottom strong {
  color: #ffffff;
}

/* ============================================================
       RESPONSIVE — Medium & Small (< 992px)
    ============================================================ */
@media (max-width: 991.98px) {
  .footer-top,
  .footer-links,
  .footer-social,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Logo block: stacked center */
  .footer-logo-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  /* Contact block below logo */
  .footer-contact-block {
    margin-top: 0;
  }

  /* Quick links: 2 columns per row */
  .links-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 16px;
  }
  .link-col {
    margin-bottom: 16px;
  }

  /* Copyright: stack vertically */
  .footer-bottom .row > div {
    text-align: center !important;
    margin-bottom: 6px;
  }
}

@media (max-width: 575.98px) {
  .footer-logo-circle {
    width: 80px;
    height: 80px;
  }
  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
    margin: 0 4px;
  }
}
