:root {
  --primary-color: #0a47a8;
  --secondary-color: #5d8c2c;
  --alternative-color: #f5f5f5;
  --dark-color: #111;
  --paragraph-color: #555;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

.contact-section {
  overflow-x: hidden;
}

.section-title {
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
}

/* ========================= ABOUT, BLOG, COURSE & CONTACT PAGE BANNER PORTION ========================= */

/* ============ PAGE HERO ============ */
.page-hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.588);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  background: transparent;
  margin: 0;
}

.breadcrumb-item {
  font-size: 14px;
  text-transform: uppercase;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.breadcrumb-item a:hover {
  opacity: 1;
}

.breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #fff;
}

@media (max-width: 991px) {
  .page-hero {
    height: 300px;
  }

  .hero-title {
    font-size: 32px;
  }

  .breadcrumb {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .page-hero {
    height: 250px;
  }

  .hero-title {
    font-size: 25px;
  }

  .breadcrumb {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 20px;
  }
}

/* ============ Apply Now ============ */
.apply-form-wrapper {
  font-family: "Inter", sans-serif;
  background: #faf8f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 4vw, 60px) clamp(15px, 4vw, 40px);
  color: #1a1a1a;
  position: relative;
}

.apply-form-box {
  max-width: 720px;
  width: 100%;
  background: #ffffff;
  border-radius: clamp(24px, 2vw, 32px);
  padding: clamp(40px, 4vw, 56px);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.06),
    0 0 1px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-header {
  margin-bottom: clamp(30px, 4vw, 48px);
  position: relative;
}

.form-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e4efff 0%, #ebffd5 100%);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  margin-bottom: clamp(15px, 2vw, 20px);
  letter-spacing: 0.3px;
}

.form-header h1 {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(24px, 4vw, 35px);
  font-weight: 700;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.form-header p {
  color: #6b6b6b;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  max-width: 100%;
}

.apply-form-box .form-group:nth-child(1) {
  animation-delay: 0.1s;
}
.apply-form-box .form-group:nth-child(2) {
  animation-delay: 0.15s;
}
.apply-form-box .form-group:nth-child(3) {
  animation-delay: 0.2s;
}
.apply-form-box .form-group:nth-child(4) {
  animation-delay: 0.25s;
}
.apply-form-box .form-group:nth-child(5) {
  animation-delay: 0.3s;
}
.apply-form-box .form-group:nth-child(6) {
  animation-delay: 0.35s;
}
.apply-form-box .form-group:nth-child(7) {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.apply-form-box label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: clamp(13px, 1.2vw, 14px);
  letter-spacing: 0.2px;
}

.apply-form-box .required {
  color: var(--primary-color);
  margin-left: 2px;
}

.apply-form-box input.form-control,
.apply-form-box textarea.form-control,
.apply-form-box select.form-select {
  width: 100%;
  padding: clamp(14px, 2vw, 16px) clamp(16px, 2vw, 18px);
  border: 1.5px solid #e6e6e6;
  border-radius: clamp(12px, 2vw, 16px);
  font-size: clamp(14px, 1.2vw, 16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fafafa;
  color: #1a1a1a;
}

.apply-form-box select.form-select {
  color: #8f8f8f;
  width: 100%;
  max-width: 100%;
  background: #fafafa !important;
  border: 1.5px solid #e6e6e6 !important;
  font-size: clamp(14px, 1.2vw, 16px);
  border-radius: clamp(12px, 2vw, 16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.apply-form-box .form-select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.apply-form-box input:hover,
.apply-form-box select:hover,
.apply-form-box textarea:hover {
  border-color: #d0d0d0;
}

.apply-form-box input.form-control:focus,
.apply-form-box select.form-select:focus,
.apply-form-box textarea.form-control:focus {
  outline: none;
  border-color: #0a47a8;
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow:
    0 8px 24px rgba(10, 71, 168, 0.12),
    0 0 0 4px rgba(10, 71, 168, 0.08);
}

.apply-form-box input.form-control::placeholder,
.apply-form-box textarea.form-control::placeholder {
  color: #a0a0a0;
}

.submit-btn {
  width: 100%;
  padding: clamp(16px, 2vw, 18px);
  background: linear-gradient(135deg, #0a47a8 0%, #5d8c2c 100%);
  color: white;
  border: none;
  border-radius: clamp(14px, 2vw, 16px);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: clamp(20px, 2vw, 24px);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 71, 168, 0.35);
}

.submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .apply-form-box {
    max-width: 650px;
  }
}

@media (max-width: 768px) {
  .apply-form-box {
    max-width: 600px;
  }
}

@media (max-width: 640px) {
  .apply-form-box {
    max-width: 500px;
  }
}

/* ============ TOP BAR ============ */
.top-bar {
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    rgba(10, 71, 168, 0.9)
  );
  font-size: 14px;
  color: #fff;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.top-bar i {
  margin-right: 5px;
}

.offer {
  word-spacing: 1px;
  font-weight: 500;
}

.arrow-icon {
  transition: all 0.3s ease;
}

.offer:hover .arrow-icon {
  transform: translateX(8px) scaleX(1.3);
}

.top-bar a {
  color: var(--alternative-color);
  text-decoration: none;
}

.top-bar a:hover {
  color: #c7eba1;
}

.contact-info {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 991px) {
  .top-bar {
    font-size: 13px;
  }

  .top-bar .container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .contact-info {
    margin-top: 4px;
  }
}

@media (max-width: 576px) {
  .top-bar {
    font-size: 12px;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 4px;
    padding: 6px 10px;
  }

  .contact-info {
    white-space: normal;
    line-height: 1.4;
  }

  .contact-info i {
    margin-left: 6px;
  }
}

@media (max-width: 454px) {
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============ NAVBAR ============ */
.navbar {
  background: #fff !important;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 64px;
  width: auto;
  transition: 0.3s ease;
}

.navbar .nav-link {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: 0.3s ease;
}

.navbar .nav-link:hover {
  color: var(--primary-color);
}

.navbar .nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.navbar .nav-item {
  position: relative;
}

.navbar .nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.35s ease;
}

.navbar .nav-item:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.navbar a {
  text-decoration: none;
}

.apply-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.apply-btn:hover {
  background: #1558a8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 71, 168, 0.25);
}

.apply-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.6s;
}

.apply-btn:hover::before {
  left: 120%;
}

.dropdown-menu {
  border-radius: 12px;
  border: none;
  padding: 10px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.25s ease;
}

.dropdown-item {
  padding: 8px 20px;
  font-size: 14px;
  transition: 0.25s;
}

.dropdown-item:hover {
  background: var(--grey-color);
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.navbar .dropdown:hover > .dropdown-toggle::after {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }

  .navbar .navbar-nav .nav-link {
    padding: 1.4rem 0;
  }

  .navbar .navbar-nav .nav-item {
    margin: 0 1.2rem;
  }

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .navbar-brand img {
    height: 54px;
  }

  .navbar-nav {
    text-align: center;
    padding-top: 10px;
  }

  .navbar-nav .nav-item {
    margin: 8px 0;
  }

  .navbar .nav-item::after {
    display: none;
  }

  .dropdown-menu {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 46px;
  }

  .apply-btn {
    margin-top: 10px;
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ FOOTER SECTION ============ */
.main-footer {
  background: #2c3e50;
  color: #fff;
  padding: 70px 0 35px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 18px;
}

.footer-about p {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: clamp(13px, 1.1vw, 15px);
  max-width: 420px;
}

.footer-links h4,
.footer-contact h4,
.social h4 {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.4px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a,
.copyright a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: clamp(13px, 1vw, 14px);
  transition: 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.copyright a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: clamp(12px, 1vw, 14px);
  color: #cfcfcf;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact i {
  font-size: 15px;
  margin-top: 4px;
  min-width: 16px;
}

.phone-numbers {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-bottom-row {
  margin-top: 45px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-icons a i {
  color: #2c3e50;
  font-size: 16px;
}

.social-icons a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.social-icons a:hover i {
  color: #fff;
}

footer hr {
  margin: 50px 0 25px;
  border-color: rgba(255, 255, 255, 0.671);
}

.copyright {
  text-align: center;
  font-size: clamp(12px, 0.9vw, 14px);
  color: #cfcfcf;
}

@media (max-width: 991px) {
  .main-footer {
    padding: 60px 0 30px;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-about p {
    max-width: 100%;
  }

  .footer-bottom-row {
    margin-top: 35px;
  }
}

@media (max-width: 576px) {
  .main-footer {
    padding: 50px 0 25px;
  }

  .footer-logo {
    width: 170px;
  }

  .footer-links li {
    margin-bottom: 7px;
  }

  .footer-contact p {
    font-size: 12px;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
  }
}

/* ============ BACK-TO-TOP ============ */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
  color: #fff;
  background: var(--primary-color);
}

#backToTop:hover {
  background-color: #0a47a8;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  #backToTop {
    width: 42px;
    height: 42px;
    bottom: 40px;
    right: 60px;
  }
}

@media (max-width: 576px) {
  #backToTop {
    width: 38px;
    height: 38px;
    bottom: 30px;
    right: 25px;
    font-size: 14px;
  }
}

/* ========================= INDEX PAGE ========================= */

/* ============ HERO SECTION ============ */
.hero-section {
  padding: 40px 0;
  background:
    linear-gradient(
      180deg,
      rgba(233, 248, 255, 0.3) 21%,
      rgba(195, 234, 251, 0.3) 46%
    ),
    url("../img/banner.png") center/cover no-repeat;
}

.hero-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  font-size: clamp(14px, 2vw, 16px);
}

.hero-main-title {
  font-size: clamp(26px, 4vw, 33px);
  font-weight: 700;
  line-height: 1.2;
}

.hero-text {
  color: var(--paragraph-color);
  text-align: justify;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
}

.iso {
  font-size: clamp(13px, 1.3vw, 15px);
  margin-bottom: 20px;
}

.button {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 71, 168, 0.25);
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.6s;
}

.button:hover::before {
  left: 120%;
}

.hero-buttons a {
  margin-right: 15px;
}

.button-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.button-outline:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 71, 168, 0.25);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.img-box {
  max-width: 500px;
}

.img-box img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-left {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .img-box {
    max-width: 380px;
  }

  .hero-text {
    text-align-last: center;
  }
}

@media (max-width: 576px) {
  .hero-text {
    text-align: center;
  }

  .hero-buttons a {
    display: block;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .img-box {
    max-width: 320px;
    margin: auto;
  }
}

/* ============ STATS ============ */
.stats-section {
  background: linear-gradient(90deg, #0f3777 0%, #085cd2 64%, #0963e9 100%);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
}

.stats-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-box {
  width: 15%;
  position: relative;
}

.stat-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-content img {
  width: 50px;
}

.stat-box h3 {
  font-size: 26px;
  margin: 0;
}

.stat-box p {
  font-size: 13px;
  margin: 0;
  letter-spacing: 1px;
}

.stat-box:not(:last-child)::before,
.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -80px;
  width: 70px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}

.stat-box:not(:last-child)::before {
  top: 0;
  transform: rotate(50deg);
}

.stat-box:not(:last-child)::after {
  top: 52px;
  transform: rotate(-50deg);
}

@media (max-width: 992px) {
  .stats-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .stat-box {
    width: 45%;
    display: flex;
    justify-content: center;
  }

  .stat-content {
    justify-content: center;
    text-align: center;
  }

  .stat-box::before,
  .stat-box::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .stat-box {
    width: 100%;
  }

  .stat-content {
    justify-content: center;
    text-align: center;
  }
}

/* ============ UPCOMING BATCH SECTION HOME ============ */
.course-title {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin-bottom: 25px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-left img {
  width: 90px;
  height: 100%;
  object-fit: contain;
}

.course-meta-right {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1c4fb5;
}

.course-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.course-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  margin-bottom: 10px;

  font-size: 14px;
}

.course-list i {
  color: #1c4fb5;
  font-size: 18px;
}

@media (max-width: 768px) {
  .course-title {
    font-size: 18px;
  }

  .course-meta-right {
    gap: 2px;
  }
}

@media (max-width: 380px) {
  .course-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

/* ============ ABOUT SECTION HOME ============ */
.about-section {
  margin: 40px 0 70px;
  padding: 70px 0;
  overflow: hidden;
}

.certificate-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
}

.about-left {
  position: relative;
  display: flex;
  justify-content: center;
}

.badge-circle {
  position: absolute;
  top: -45px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.badge-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 12s linear infinite;
}

.badge-text {
  fill: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.badge-logo {
  position: absolute;
  width: 95px;
  height: 95px;
  background: url("../img/badge-logo.png") center/cover no-repeat;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.partner-card {
  position: absolute;
  bottom: -80px;
  right: -80px;
  background: #fff;
  padding-top: 15px;
  width: 220px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.partner-card img {
  width: 70%;
  margin-bottom: 10px;
}

.partner-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.partner-card p {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

.partner-footer {
  background: var(--dark-color);
  color: #fff;
  padding: 15px;
  font-size: 15px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.line {
  width: 80px;
  height: 2px;
  background: #000;
  margin-bottom: 20px;
}

.about-desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.about-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1e4ea1;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .partner-card {
    right: -90px;
    width: 200px;
  }

  .badge-circle {
    width: 135px;
    height: 135px;
    top: -35px;
    right: -65px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-section {
    margin: 20px 0 40px;
    padding: 50px 0;
  }

  .partner-card {
    right: -110px;
    width: 200px;
  }

  .badge-circle {
    width: 135px;
    height: 135px;
    top: -35px;
    right: -80px;
  }
}

@media (min-width: 767px) and (max-width: 991px) {
  .about-section {
    padding: 60px 0 0;
  }

  .about-left {
    margin-bottom: 80px;
  }

  .certificate-img {
    margin: auto;
  }

  .badge-circle {
    top: -30px;
    left: 80px;
    width: 140px;
    height: 140px;
  }

  .badge-logo {
    width: 95px;
    height: 95px;
  }

  .partner-card {
    position: absolute;
    bottom: -50px;
    right: 60px;
  }

  .about-right {
    text-align: center;
  }

  .line {
    margin-left: auto;
    margin-right: auto;
  }

  .about-list {
    text-align: left;
    max-width: 420px;
    margin: auto;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 0;
  }

  .about-left {
    width: 100%;
    height: 500px;
    background-image: url("../img/certificate-home.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
    text-align: center;
  }

  .certificate-img {
    display: none;
  }

  .badge-circle,
  .partner-card {
    display: none;
  }

  .about-right {
    text-align: center;
  }

  .section-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .line {
    margin: auto;
  }

  .about-desc {
    font-size: 15px;
  }

  .about-list {
    text-align: left;
    max-width: 330px;
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .about-left {
    height: 400px;
    background-size: contain;
  }

  .section-title {
    font-size: 20px;
  }
}

/* ============ ALUMNI ============ */
.img-slider {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.student-box {
  position: relative;
  width: 260px;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f8f8;
  transition: 0.3s;
}

.student-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  text-align: left;
}

.name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.location {
  font-size: 14px;
  margin: 0;
}

.student-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .student-box {
    width: 220px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .student-box {
    width: 200px;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .student-box {
    width: 170px;
    height: 220px;
  }

  .name {
    font-size: 14px;
  }

  .location {
    font-size: 12px;
  }
}

/* ============ ALUMNI ============ */
.why-section {
  background: var(--alternative-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.why-box {
  position: relative;
  padding-left: 25px;
}

.why-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 3px;
}

.why-box .icon {
  margin-bottom: 15px;
}

.why-box .icon img {
  width: clamp(40px, 4vw, 60px);
  height: auto;
  object-fit: contain;
}

.why-box h4 {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 600;
  margin-bottom: 10px;
}

.why-box p {
  font-size: clamp(13px, 1vw, 15px);
  color: #555;
  line-height: 1.6;
}

.blue::before {
  background: #1f4fa3;
}
.red::before {
  background: #ff0000;
}
.yellow::before {
  background: #f4b400;
}
.green::before {
  background: #5b7f2d;
}
.purple::before {
  background: #c742a8;
}

@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-box {
    text-align: left;
  }
}

/* ============ STUDENT GROWTH SECTION ============ */
.career-img img {
  width: 100%;
  height: 350px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  font-size: clamp(14px, 1vw, 16px);
  margin-bottom: 8px;
}

.percent {
  color: #f4b400;
  font-weight: 600;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #26a641;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .career-img img {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .career-img img {
    height: 280px;
  }
}

@media (max-width: 420px) {
  .career-img img {
    height: 220px;
  }
}

/* ============ Focus SAP Modules SECTION ============ */
.module-box p {
  margin-top: 15px;
  color: #444;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.6;
}

.pill {
  display: inline-block;
  padding: clamp(8px, 0.6vw, 10px) clamp(18px, 1.8vw, 25px);
  border-radius: 30px;
  color: white;
  font-weight: 600;
  font-size: clamp(13px, 0.9vw, 14px);
  white-space: nowrap;
}

.pill-1 {
  background: linear-gradient(90deg, #05bbbb, #00d4d4);
}

.pill-2 {
  background: linear-gradient(90deg, #0bb79d, #0fd1a7);
}

.pill-3 {
  background: var(--primary-color);
}

.pill-4 {
  background: linear-gradient(90deg, #1d3fbf, #2c6df2);
}

.infinity-img {
  max-width: 90%;
}

@media (max-width: 991px) {
  .module-box {
    margin-bottom: 35px;
  }

  .pill {
    margin-bottom: 8px;
  }

  .infinity-img {
    max-width: 70%;
  }
}

@media (max-width: 480px) {
  .infinity-img {
    max-width: 80%;
  }
}

/* ============ SAP ADVANTAGE SECTION HOME ============ */
.sap-adv-card {
  padding: clamp(25px, 3vw, 40px);
  border-radius: 18px;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.sap-adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.sap-adv-title {
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  margin-bottom: 15px;
}

.sap-adv-text {
  color: #555;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.7;
  max-width: 650px;
  margin: auto;
}

@media (max-width: 991px) {
  .sap-adv-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .sap-adv-title {
    font-size: 20px;
  }

  .sap-adv-text {
    font-size: 14px;
  }
}

/* ============ ADMISSION SECTION HOME ============ */
.admission-section {
  background: #2c3e50;
  color: #fff;
  overflow: hidden;
}

.admission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 100%;
}

.admission-section .row {
  align-items: stretch;
}

.admission-content {
  padding: 70px 60px;
}

.admission-content h5 {
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.9;
  font-size: clamp(13px, 1.5vw, 17px);
}

.admission-content h2 {
  font-weight: 700;
  margin-bottom: 18px;
  font-size: clamp(20px, 2.2vw, 28px);
}

.admission-content p {
  line-height: 1.7;
  color: #e4e4e4;
  margin-bottom: 25px;
  font-size: clamp(13px, 1vw, 15px);
}

.admission-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.admission-buttons .btn {
  border-radius: 15px;
  padding: 12px 24px;
  font-weight: 500;
  transition: 0.3s;
  background-color: var(--secondary-color);
  color: white;
}

.admission-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1380px) and (min-width: 992px) {
  .admission-content {
    padding: 0 40px;
  }

  .admission-buttons .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

@media (max-width: 1150px) and (min-width: 992px) {
  .admission-content h2 {
    font-size: 22px;
  }

  .admission-content p {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .admission-content h5 {
    font-size: 14px;
  }

  .admission-content {
    padding: 0 40px;
  }
}

@media (max-width: 991px) {
  .admission-content {
    padding: 50px 35px;
    text-align: center;
  }

  .admission-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .admission-section .row {
    flex-direction: column;
  }

  .admission-img {
    height: 280px;
    object-fit: cover;
  }

  .admission-content {
    padding: 40px 25px;
  }

  .admission-buttons {
    flex-direction: column;
  }

  .admission-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ============ lEARNING SECTION ============ */
.learning-title {
  font-weight: 700;
  line-height: 1.3;
  font-size: clamp(20px, 3vw, 32px);
}

.learning-text {
  font-size: clamp(13px, 1.5vw, 16px);
  color: #555;
}

@media (max-width: 992px) {
  .learning-section {
    text-align: center;
  }
}

/* ============ Blog ============ */
.blog-card {
  background: #f1f2f3;
  border-radius: 12px;
  box-shadow: -1px 6px 19px 8px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: -1px 6px 19px 8px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: -1px 6px 19px 8px rgba(0, 0, 0, 0.19);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.blog-title {
  font-size: clamp(15px, 1.6vw, 18px);
  padding-bottom: 4px;
}

.blog-meta {
  font-size: clamp(11px, 1.2vw, 13px);
  padding-bottom: 8px;
}

.read-more {
  font-size: clamp(14px, 1.6vw, 16px);
  text-decoration: none;
  color: var(--primary-color);
  position: relative;
  transition: all 0.3s ease;
}

.read-more i {
  margin-left: 4px;
  transition:
    transform 0.3s ease,
    margin-left 0.3s ease;
}

.read-more:hover i {
  transform: translateX(6px);
  margin-left: 8px;
}

@media (max-width: 992px) {
  .blog-frame {
    padding: 22px;
  }
  .blog-card img {
    height: 180px;
  }
}
@media (max-width: 576px) {
  .blog-frame {
    padding: 16px;
    border-width: 2px;
  }
  .blog-card img {
    height: 160px;
  }
}

/* ============ TESTIMONIAL SECTION ============ */
.testimonial-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);

  display: flex;
  justify-content: center;
  height: 100%;
  min-height: 260px;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.carousel-item .row {
  align-items: stretch;
}

.testimonial-card i {
  color: var(--primary-color);
}

.user-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  color: white;
  width: 18px;
  height: 18px;
}

.carousel-control-prev {
  left: -30px;
}

.carousel-control-next {
  right: -30px;
}

.carousel-indicators {
  bottom: -40px;
}

.carousel-control-prev.disabled,
.carousel-control-next.disabled {
  background-color: #d1d1d1;
  opacity: 0.5;
  pointer-events: none;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #bbb;
  display: inline-block;
  transition: all 0.3s ease;
}

.glass-indicators .active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

@media (min-width: 1200px) {
  .carousel-control-prev {
    left: -25px;
  }
  .carousel-control-next {
    right: -25px;
  }
}

@media (max-width: 992px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .carousel-item .col-lg-4,
  .carousel-item .col-md-6,
  .carousel-item .col-12 {
    width: 100% !important;
    display: block;
    margin: 0 auto;
  }
  .testimonial-card {
    height: auto;
    min-height: 240px;
    width: 95%;
    margin: 0 auto;
    gap: 10px;
  }
  .row .g-3 {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .carousel-control-prev {
    left: 5px;
  }

  .carousel-control-next {
    right: 5px;
  }

  .testimonial-card {
    height: auto;
    min-height: 240px;
    width: 90%;
    margin: 0 auto;
    gap: 15px;
  }

  .card-body {
    padding-top: 0;
  }
}

/* ============ FAQ HOME ============ */
.faq-accordion .accordion-item {
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  background: white;
  box-shadow: none;
  padding: 18px 20px;
  font-size: clamp(14px, 1.2vw, 18px);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #f4f7ff;
  color: #000;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  transition: 0.3s;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-body {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ============ FOOTER CTA ============ */
.footer-cta {
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(
    to right,
    var(--secondary-color) 15%,
    var(--primary-color) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cta-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 1.5vw, 18px);
  color: #333;
}

.cta-item i {
  font-size: clamp(18px, 2vw, 22px);
  color: #333;
}

.divider {
  width: 1px;
  height: 30px;
  background: #bbb;
}

@media (max-width: 992px) {
  .cta-contact {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-cta {
    padding: 60px 0;
  }

  .cta-contact {
    flex-direction: column;
    gap: 15px;
  }

  .divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-item {
    justify-content: center;
    flex-wrap: nowrap;
  }

  .cta-item span {
    white-space: nowrap;
    font-size: 14px;
    word-break: normal;
  }

  .footer-cta {
    padding: 50px 15px;
  }
}

/* ========================= ABOUT PAGE ========================= */

/* ============ STATS ============ */
.stat-box-abt {
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 130px;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.stat-box-abt h3 {
  font-size: 32px;
  font-weight: 700;
}

.stat-box-abt p {
  font-size: clamp(13px, 2vw, 15px);
  color: var(--grey-color);
  margin: 0;
}

.stat-box-abt:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.stat-1 {
  background: rgba(10, 71, 168, 0.2);
}

.stat-2 {
  background: rgba(244, 191, 19, 0.2);
}

.stat-3 {
  background: rgba(255, 0, 0, 0.2);
}

.stat-4 {
  background: rgba(93, 140, 44, 0.2);
}

@media (min-width: 1200px) {
  .about-stats .col-lg-3 {
    width: 23%;
  }

  .stat-box-abt {
    padding: 30px;
    height: 130px;
    max-width: 300px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .about-stats .col-lg-3 {
    width: 23%;
  }

  .stat-box-abt {
    padding: 20px;
    height: 110px;
    max-width: 320px;
  }

  .stat-box-abt h3 {
    font-size: 28px;
  }
}

@media (min-width: 567px) and (max-width: 992px) {
  .about-stats .col-md-6 {
    width: 45%;
    margin-bottom: 20px;
  }

  .stat-box-abt {
    padding: 20px;
    height: 100px;
    max-width: 100%;
  }

  .stat-box-abt h3 {
    font-size: 25px;
  }
}

@media (max-width: 567px) {
  .about-stats .col-12 {
    width: 95%;
  }

  .stat-box-abt {
    padding: 15px;
    height: 80px;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .stat-box-abt h3 {
    font-size: 18px;
  }
}

/* ============ ABOUT SECTION ============ */
.abt-title {
  font-size: clamp(26px, 4vw, 37px);
  font-weight: 700;
  line-height: 1.2;
}

/* ============ ADVANTAGES ============ */
.title-line {
  width: 150px;
  height: 3px;
  background: var(--dark-color);
}

.adv-card {
  background: linear-gradient(
    to bottom,
    rgba(224, 234, 250, 0.1) 0%,
    rgba(224, 223, 241, 0.1) 21%,
    rgba(40, 101, 197, 0.1) 42%,
    rgba(8, 49, 89, 0.1) 69%
  );
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.adv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.adv-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.adv-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 20px;
}

.adv-card p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .adv-card {
    padding: 25px 15px;
  }
}

@media (max-width: 768px) {
  .adv-icon {
    width: 70px;
    height: 70px;
  }

  .adv-card {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .adv-card {
    padding: 25px 18px;
  }

  .adv-card p {
    font-size: 14px;
  }
}

/* ============ TRAINING SOLUTIONS ============ */
.solution-card {
  background: rgba(10, 71, 168, 0.24);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.webinar-card .solution-img {
  height: 260px;
}

.webinar-card .solution-content {
  padding: 25px;
}

.horizontal-card {
  display: flex;
  align-items: center;
}

.horizontal-card .solution-img {
  flex: 0 0 40%;
  height: 190px;
}

.horizontal-card .solution-content {
  padding: 25px;
}

.solution-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: clamp(18px, 1.5vw, 20px);
}

.solution-content p {
  font-size: clamp(14px, 1vw, 15px);
  color: #333;
}

.solution-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.solution-link:hover .solution-card {
  transform: translateY(-6px);
  transition: 0.3s;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .webinar-card .solution-img {
    height: 220px;
  }

  .webinar-card .solution-content {
    padding: 20px;
  }

  .horizontal-card .solution-img {
    width: 70%;
    height: 162px;
  }

  .horizontal-card .solution-content {
    padding: 15px;
  }
}

@media (max-width: 992px) {
  .webinar-card .solution-img {
    height: 180px;
  }

  .webinar-card .solution-content {
    padding: 15px;
  }

  .horizontal-card .solution-img {
    width: 70%;
    height: 148px;
  }

  .horizontal-card .solution-content {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .horizontal-card {
    flex-direction: row;
    text-align: left;
  }

  .horizontal-card .solution-img {
    flex: 0 0 40%;
    height: 120px;
  }

  .solution-content {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .horizontal-card {
    flex-direction: row;
  }

  .horizontal-card .solution-img {
    flex: 0 0 35%;
    height: 130px;
  }

  .webinar-card .solution-img {
    height: 150px;
  }
}

/* ============ MISSION ============ */
.mission-section {
  background: rgba(10, 71, 168, 0.62);
  border-radius: 20px;
  max-width: 1200px;
  margin-top: 50px;
}

.mission-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  margin-top: -48px;
}

.mission-tabs {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: rgba(10, 71, 168, 0.62);
  border-radius: 10px;
}

.tab-btn {
  border: 1px solid rgba(10, 71, 168, 0.62);
  padding: 14px 40px;
  background: #4b6fa8;
  font-size: clamp(13px, 2vw, 16px);
  color: #ddd;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn:first-child {
  border-top-left-radius: 15px;
}

.tab-btn:last-child {
  border-top-right-radius: 15px;
}

.tab-btn:first-child {
  position: relative;
}

.tab-btn:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0%;
  height: 100%;
  width: 1px;
  background: var(--alternative-color);
}

.tab-btn.active {
  color: white;
  background: rgba(10, 71, 168, 0.62);
}

.mission-card ul {
  list-style: none;
  padding: 0;
}

.mission-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: bold;
  font-size: clamp(14px, 0.8vw, 18px);
}

.mission-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: clamp(20px, 3vw, 28px);
}

.mission-card p {
  color: #666;
  line-height: 1.6;
  font-size: clamp(14px, 1.5vw, 17px);
}

.mission-card ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 17px);
}

.start-btn {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  font-size: clamp(14px, 1.8vw, 18px);
}

.start-btn:hover {
  transform: translateX(5px);
  color: #0a47a8;
}

.mission-img {
  border-radius: 12px;
  max-height: 280px;
  object-fit: cover;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

@media (min-width: 992px) {
  .mission-section {
    margin: 100px 0 80px;
  }
}

@media (max-width: 992px) {
  .mission-section {
    margin: 80px 0 60px;
  }

  .mission-card {
    padding: 30px;
  }

  .mission-tabs {
    top: -35px;
  }

  .tab-btn {
    padding: 12px 28px;
  }

  .mission-img {
    margin-top: 25px;
    max-height: 260px;
  }
}

@media (max-width: 768px) {
  .mission-section {
    border-radius: 15px;
    margin: 60px 0 40px;
  }

  .mission-card {
    padding: 25px 20px;
    margin-top: -35px;
  }

  .mission-tabs {
    top: -45px;
  }

  .tab-btn {
    padding: 10px 20px;
  }

  .mission-img {
    margin-top: 30px;
    max-height: 220px;
  }
}

@media (max-width: 480px) {
  .mission-section {
    margin: 40px 0 30px;
  }

  .mission-tabs {
    top: -40px;
  }

  .tab-btn {
    padding: 8px 14px;
  }

  .mission-card {
    padding: 26px 20px;
  }

  .mission-img {
    max-height: 200px;
  }
}

@media (max-width: 410px) {
  .mission-tabs {
    top: -58px;
  }
}

/* ============ SKILLS ============ */
.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-list li {
  position: relative;
  padding-left: 28px;
}

.skill-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  position: absolute;
  left: 0;
  top: 2px;

  font-size: clamp(14px, 0.8vw, 18px);
  color: #1e63ff;
}

.youtube {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.youtube .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}

.youtube:hover .overlay {
  background: rgba(0, 0, 0, 0.2);
}

.youtube .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;

  background: radial-gradient(
    rgba(255, 255, 255, 0.9) 60%,
    rgba(255, 255, 255, 0.6) 62%
  );

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 25px rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.youtube .play-btn::after {
  content: "";
  border-left: 20px solid #1e63ff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

.youtube:hover .play-btn {
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.9),
    0 0 40px rgba(30, 99, 255, 0.6),
    0 0 60px rgba(30, 99, 255, 0.4);
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .skill-list {
    display: inline-block;
    text-align: left;
  }

  .hero-right {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .youtube .play-btn {
    width: 60px;
    height: 60px;
  }

  .youtube .play-btn::after {
    border-left: 16px solid #1e63ff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}

/* ============ PLACEMENT NETWORK ============ */
.placement-network {
  background-color: var(--alternative-color);
}

.logo-slider {
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: logoScroll 22s linear infinite;
}

.company-box {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 18px 35px;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.company-box img {
  width: 120px;
  height: 60px;
  object-fit: contain;
}

.company-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .logo-slider {
    max-width: 90%;
  }

  .company-box {
    min-width: 180px;
    padding: 16px 25px;
  }

  .company-box img {
    width: 100px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .logo-track {
    gap: 20px;
  }

  .company-box {
    min-width: 150px;
    padding: 14px 20px;
  }

  .company-box img {
    width: 90px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .logo-track {
    gap: 15px;
  }

  .company-box {
    min-width: 130px;
    padding: 12px 15px;
  }

  .company-box img {
    width: 80px;
    height: 40px;
  }
}

/* ============ INSTRUCTORS ============ */
.flip-card {
  perspective: 1200px;
  width: 100%;
  height: clamp(280px, 28vw, 360px);
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.flip-card-front {
  background: #fff;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.flip-card:hover .team-img {
  transform: scale(1.08);
}

.team-social {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
}

.team-social a {
  text-decoration: none;
  background: #fff;
  color: var(--primary-color);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.flip-card-back {
  transform: rotateY(180deg);
  background: var(--primary-color);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: clamp(18px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.flip-card-back h4 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  margin-bottom: 8px;
}

.team-role-back {
  font-size: clamp(13px, 1.4vw, 15px);
  margin-bottom: 10px;
  opacity: 0.9;
}

.team-desc {
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.6;
}

@media (min-width: 1400px) {
  .flip-card {
    height: 380px;
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  .flip-card {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .flip-card {
    height: 280px;
  }

  .team-social a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* ============ CEO MESSAGE ============ */
.ceo-testimonial {
  background: linear-gradient(
    90deg,
    rgba(232, 241, 255, 0.73) 0%,
    rgba(230, 255, 243, 0.73) 100%
  );
  max-width: 80%;
  margin: auto;
  border-radius: 16px;
}

.ceo-img {
  background: none;
  display: block;
}

.testimonial-box {
  background: linear-gradient(to bottom, #2563eb 0%, #1e3a8a 100%);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
}

.ceo-name {
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 20px);
}

.ceo-role {
  font-size: clamp(14px, 1.2vw, 16px);
  opacity: 0.9;
}

@media (max-width: 992px) {
  .ceo-testimonial {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .ceo-testimonial {
    max-width: 90%;
  }

  .testimonial-box {
    border-radius: 16px;
    padding: 20px;
  }

  .ceo-img {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* ========================= COURSES PAGE ========================= */

/* ============ COURSES CARD SECTION ============ */
.courses-section {
  max-width: 90%;
  margin: auto;
}

.search-box {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 14px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 10px 15px 10px 40px;
  border-radius: 10px;
  background-color: var(--alternative-color);
  font-size: clamp(13px, 1.2vw, 16px);
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: #78b5e7;
  box-shadow: 0 0 0 2px rgba(120, 181, 231, 0.2);
  outline: none;
}

.underline {
  height: 1px;
  background: #bebebe;
}

.course-card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: -1px 8px 37.9px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  font-family: "Inter", sans-serif;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-img {
  width: 100%;
  height: clamp(180px, 14vw, 200px);
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.course-card .card-body {
  padding: 15px 8px;
}

.icon-box {
  width: clamp(38px, 3vw, 42px);
  height: clamp(38px, 3vw, 42px);
  font-size: clamp(18px, 1.6vw, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(131, 179, 255, 0.4);
  border-radius: 5px;
  color: var(--primary-color);
}

.course-item {
  transition: all 0.3s ease;
}

.course-hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.highlight {
  background: yellow;
  padding: 2px 4px;
  border-radius: 3px;
}

.course-metabody {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta-right {
  display: flex;
  align-items: center;
  gap: 6px;

  color: #1c4fb5;
}

.meta-right img {
  width: clamp(100px, 6vw, 90px);
  height: auto;
}

.meta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.meta-label {
  font-size: clamp(11px, 1vw, 13px);
  color: #6b6b6b;
  font-weight: 600;
}

.meta-value {
  color: var(--dark-color);
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
}

.course-metabody h5 {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.3;
}

.rating {
  color: #ffce31;
  font-size: clamp(12px, 1vw, 14px);
}

.rating-no {
  color: var(--dark-color);
  font-size: clamp(11px, 1.1vw, 13px);
}

.module {
  color: var(--dark-color);
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
}

@media (min-width: 1200px) {
  .meta-right {
    gap: 2px;
  }

  .meta-right .rating-stars {
    justify-content: end;
  }

  .meta-right .modules {
    justify-content: end;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .course-img {
    height: 150px;
  }

  .courses-section {
    max-width: 95%;
    margin: auto;
  }

  .course-metabody {
    flex-wrap: wrap;
  }

  .underline {
    display: none;
  }

  .course-metabody:first-child .meta-left {
    width: 100%;
  }

  .course-metabody:first-child .meta-right {
    width: auto;
    display: flex;
    align-items: center;
  }

  .course-metabody:nth-child(3) {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .course-metabody:nth-child(3) .meta-left {
    order: 2;
    width: 100%;
  }

  .meta-left h5 {
    margin-bottom: 10px;
  }

  .meta-right .rating-stars {
    justify-content: start;
  }

  .meta-right .modules {
    margin-bottom: 10px;
  }

  .meta-right {
    gap: 2px;
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) and (max-width: 820px) {
  .meta-right .modules {
    margin-bottom: 10px;
  }

  .meta-right {
    gap: 2px;
    margin-bottom: 15px;
  }
}

@media (max-width: 450px) {
  .search-box {
    width: 90%;
  }

  .courses-section .section-title {
    text-align: center;
  }
}

@media (max-width: 415px) {
  .course-img {
    height: 150px;
  }

  .meta-right {
    gap: 2px;
    margin-bottom: 10px;
  }

  .courses-section {
    max-width: 95%;
    margin: auto;
  }

  .course-metabody {
    flex-wrap: wrap;
  }

  .underline {
    display: none;
  }

  .course-metabody:first-child .meta-left {
    width: 100%;
  }

  .course-metabody:first-child .meta-right {
    width: auto;
    display: flex;
    align-items: center;
  }

  .course-metabody:nth-child(3) {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .course-logo {
    margin-bottom: 12px;
  }

  .course-metabody:nth-child(3) .meta-left {
    order: 2;
    width: 100%;
  }

  .course-metabody:nth-child(3) .meta-right {
    order: 1;
    justify-content: flex-start;
  }
}

/* ============ FAQ COURSE SECTION ============ */
.faq-course-section {
  background: var(--alternative-color);
}

.faq-desc {
  color: var(--paragraph-color);
  margin-bottom: 25px;
  font-size: clamp(14px, 1.2vw, 18px);
}

/* ============ CAREER SECTION ============ */
.career-abt-section {
  background: rgba(10, 71, 168, 0.28);
  max-width: 80%;
  margin: auto;
  border-radius: 20px;
}

@media (max-width: 992px) {
  .career-abt-section {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .career-abt-section {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .career-box {
    padding: 35px;
    text-align: center;
  }
}

/* ========================= COURSES READ-MORE PAGE ========================= */

/* ============ MAIN SECTION ============ */
.hero-list {
  color: #444444;
  text-align: justify;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.7;
}

/* ============ COURSE ABOUT SECTION ============ */
.course-abt-section {
  background-color: rgba(10, 71, 168, 0.28);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.116);
  border-radius: 20px;
  width: 80%;
  margin: auto;
}

.course-abt-title {
  font-size: clamp(25px, 4vw, 33px);
  font-weight: 700;
}

.course-abt-text {
  color: #444444;
  text-align: justify;
  font-size: clamp(15px, 1.5vw, 17px);
}

@media (min-width: 1200px) {
  .hero-main-title {
    width: 82%;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .course-abt-section {
    width: 80%;
  }

  .hero-main-title {
    width: 95%;
  }
}

@media (max-width: 767px) {
  .course-abt-section {
    width: 90%;
  }
}

/* ============ COURSE REQUIREMENTS SECTION ============ */
.custom-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.253);

  transition: 0.3s;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 35px rgba(0, 0, 0, 0.12);
}

.card-title {
  font-weight: 600;
}

.course-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
}

.course-list i {
  color: #1c4fb5;
  font-size: 18px;
}

.req-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 15px;
}

.req-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #000;
}

/* ============ COURSE DETAILS SECTION ============ */
.course-box {
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e2e2;
}

.info-item {
  gap: 12px;
  text-align: left;
}

.info-item {
  width: 100%;
  max-width: 220px;
  text-align: left;
  gap: 12px;
}

.info-item h6 {
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 600;
}

.info-item small {
  font-size: clamp(14px, 1vw, 15px);
}

.icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: #e7efff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c4fb5;
}

@media (max-width: 768px) {
  .info-item {
    max-width: 180px;
  }
}

@media (max-width: 575px) {
  .info-item {
    max-width: 200px;
  }

  .courses-details {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
  }
}

/* ============ COURSE CURRICULAM SECTION ============ */
.custom-accordion {
  border: none;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  font-weight: 600;
  color: var(--primary-color);
  background: #f5f5f5;
  font-size: 15px;
  padding: 14px 18px;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  filter: brightness(0.4);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.custom-accordion .accordion-body {
  background: #fafafa;
  font-size: 14px;
  color: #333;
  padding: 18px 20px;
}

.course-inner-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.course-inner-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: #333;
  transition: 0.2s;
}

.course-inner-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: #888;
  font-size: 13px;
}

.course-inner-list li:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* ============ COURSE DETAILS SECTION ============ */
.career-cta-box {
  background: url("../img/built-career.png") center/cover no-repeat;
  border-radius: 20px;
  position: relative;
  padding: 80px 20px;
  width: 85%;
  margin: auto;
}

.career-cta-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #000;
}

.career-cta-subtitle {
  margin: 10px 0 25px;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #333;
}

@media (max-width: 992px) {
  .career-cta-box {
    width: 95%;
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .career-cta-box {
    width: 100%;
    padding: 50px 20px;
    border-radius: 18px;
  }
}

@media (max-width: 576px) {
  .career-cta-box {
    padding: 40px 15px;
    border-radius: 15px;
    width: 95%;
    margin: auto;
  }
}

@media (max-width: 400px) {
  .career-cta-box {
    padding: 30px 12px;
  }

  .career-cta-title {
    font-size: 18px;
  }
}

/* ============ REVIEW SECTION ============ */
.student-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.student-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.student-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f3f3f3;
}

.student-title {
  font-weight: 600;
  font-size: 16px;
  color: #222;
}

.student-join-date {
  display: block;
  font-size: 13px;
  color: #888;
  margin: 4px 0;
}

.student-company {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
}

/* ============ CALLBACK MODAL FORM SECTION ============ */
.callback-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.callback-modal.active {
  display: flex;
}

.callback-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}

.callback-box {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  transition: 0.3s;
}

.close-btn:hover {
  color: var(--primary-color);
}

.gender-group {
  display: flex;
  gap: 10px;
}

.gender-group input {
  display: none;
}

.gender-group label {
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.gender-group input:checked + label {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.callback-box input.form-control,
.callback-box textarea.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #fff;
  font-family: inherit;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.callback-box input.form-control:focus,
.callback-box textarea.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .callback-box input.form-control,
  .callback-box textarea.form-control {
    padding: 11px 14px;
    font-size: 15px;
  }

  .callback-box label {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .callback-box {
    width: 95%;
    margin: 0 auto;
    padding: 18px;
    border-radius: 12px;
  }

  .callback-box h4 {
    font-size: 18px;
    font-weight: 700;
  }

  .callback-box p {
    font-size: 15px;
  }

  .callback-box input.form-control,
  .callback-box textarea.form-control {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 6px;
  }

  .callback-box textarea.form-control {
    min-height: 80px;
  }

  .callback-box label {
    font-size: 13px;
  }

  .callback-box input::placeholder,
  .callback-box textarea::placeholder {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .callback-box {
    padding: 15px 12px;
  }

  .callback-box h4 {
    font-size: 15px;
  }

  .callback-box p {
    font-size: 12px;
  }

  .gender-group label {
    font-size: 12px;
    padding: 5px 10px;
  }

  .callback-box input.form-control,
  .callback-box textarea.form-control {
    padding: 9px 10px;
    font-size: 13px;
  }

  .callback-box textarea.form-control {
    min-height: 80px;
  }

  .callback-box label {
    font-size: 12px;
  }

  .callback-box input::placeholder,
  .callback-box textarea::placeholder {
    font-size: 12px;
  }
}

/* ============ POPUP SECTION ============ */
.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.feedback-box {
  background: #fff;
  max-width: 350px;
  margin: 150px auto;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ========================= RECENT PLACEMENT PAGE ========================= */

/* ============ PLACEMENT BANNER SECTION ============ */
.placement-banner {
  position: relative;
  width: 100%;
  height: 400px;
  min-height: clamp(180px, 28vw, 340px);
  display: flex;
  align-items: center;
  justify-content: center;

  background: url("../img/placement-bg.png") center/cover no-repeat;
  overflow: hidden;
}

.placement-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.placement-banner .container {
  position: relative;
  z-index: 2;
}

.placement-main-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
}

@media (max-width: 992px) {
  .placement-banner {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .placement-banner {
    height: 250px;
  }
}

/* ============ SUCCESS OVERVIEW SECTION ============ */
.success-overview {
  background-color: var(--alternative-color);
}

.highlight-text {
  color: #f4bf13;
  font-weight: 700;
}

.card-placement-box {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.logo-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px 35px;
  margin: 15px;
  border: 1px solid #eee;
  min-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-box img {
  height: 40px;
}

.logo-placement-slider {
  display: flex;
  width: max-content;
}

.slider-placement-wrapper {
  overflow: hidden;
  width: 100%;
}

.slide-right {
  animation: slideRight 20s linear infinite;
}

@keyframes slideRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.slide-left {
  animation: slideLeft 20s linear infinite;
}

@keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.graph-box {
  margin-top: 30px;
  position: relative;
}

.graph-box img {
  width: 100%;
}

@media (max-width: 992px) {
  .card-placement-box {
    padding: 28px;
  }

  .logo-box {
    min-width: 130px;
    padding: 10px 15px;
    margin: 8px;
  }

  .graph-box {
    margin-top: 50px;
  }

  .logo-box img {
    height: 35px;
  }
}

@media (max-width: 768px) {
  .card-placement-box {
    padding: 24px;
  }

  .logo-box {
    min-width: 130px;
    padding: 20px 25px;
    margin: 10px;
  }

  .logo-box img {
    height: 30px;
  }

  .slide-left,
  .slide-right {
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .card-placement-box {
    padding: 20px;
  }

  .logo-box {
    min-width: 90px;
    padding: 15px 20px;
    margin: 8px;
  }

  .logo-box img {
    height: 32px;
  }
}

/* ============ ALUMNI SUCCESS SECTION ============ */
.alumni-wrapper {
  background: #34495e;
  padding: 80px 40px;
  border-radius: 25px;
  position: relative;
}

.alumni-card {
  background: #fff;
  border-radius: 16px;
  padding-top: 40px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid #78b5e7;
  position: relative;
  width: 100%;
  height: 100%;
}

.alumni-img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.alumni-img img {
  width: clamp(65px, 6vw, 80px);
  height: clamp(65px, 6vw, 80px);
  border-radius: 50%;
  border: 4px solid #78b5e7;
  object-fit: cover;
}

.alumni-top p {
  color: #777;
  font-size: clamp(12px, 1.8vw, 14px);
}

.alumni-top {
  padding: 20px 15px;
}

.alumni-top h5 {
  font-size: clamp(16px, 2vw, 20px);
}

.alumni-bottom {
  border-top: 1px solid #e4e4e4;
  background: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 0 0 16px 16px;
  flex-wrap: wrap;
}

.alumni-bottom span {
  font-size: 12px;
  color: #777;
  display: block;
}

.alumni-bottom strong {
  font-size: 14px;
}

.alumni-bottom img {
  height: 28px;
}

.arrow {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #555;
}

.alumni-2section {
  margin-top: clamp(40px, 6vw, 80px);
}

@media (min-width: 1150px) {
  .alumni-wrapper {
    padding: 70px 50px;
    width: 95%;
    margin: auto;
  }

  .alumni-top {
    padding: 10px 15px;
  }
}

@media (min-width: 992px) and (max-width: 1070px) {
  .alumni-wrapper {
    padding: 70px 0;
    width: 100%;
    margin: auto;
  }
}

@media (max-width: 991px) {
  .alumni-card-wrapper3,
  .alumni-card-wrapper6 {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .alumni-card-wrapper2,
  .alumni-card-wrapper5 {
    margin-top: 80px;
  }

  .alumni-card-wrapper3 {
    margin-top: 80px;
  }

  .alumni-card-wrapper4 {
    margin-top: 60px;
  }

  .alumni-card-wrapper6 {
    margin-top: 80px;
  }
}

@media (max-width: 576px) {
  .alumni-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .arrow {
    transform: rotate(90deg);
  }
}

/* ========================= CONTACT PAGE ========================= */

/* ============ CONTACT FORM SECTION ============ */
.contact-box {
  background: rgba(10, 71, 168, 0.2);
  padding: 60px;
  border-radius: 20px;
}

.contact-left h2 {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: 2px;
}

.contact-left p {
  color: #444;
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 22px;
  color: #000;
  margin-top: 4px;
  min-width: 22px;
}

.contact-info-item span {
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.5;
  max-width: 100%;
}

.contact-box input,
.contact-box textarea,
.contact-box .form-select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-box input,
.contact-box textarea {
  min-height: 44px;
}

.contact-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.contact-social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-social-icons a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.contact-box .form-select {
  background-color: var(--alternative-color) !important;
  border: none;
  color: #777;
  border-radius: 10px;
  padding: 12px 40px 12px 14px;
}

.contact-box input,
.contact-box textarea {
  background: var(--alternative-color);
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  font-size: 15px;
}

.contact-box textarea {
  resize: none;
}

.contact-box input:focus,
.contact-box textarea:focus,
.contact-box select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(30, 79, 163, 0.2);
}

.contact-box input::placeholder,
.contact-box textarea::placeholder {
  color: #777;
  font-size: 15px;
}

.contact-box .row {
  margin-left: 0;
  margin-right: 0;
}

.contact-box [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 991px) {
  .contact-box {
    padding: 35px;
  }

  .contact-left {
    margin-bottom: 35px;
  }

  .contact-left h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .contact-box {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .contact-box {
    padding: 20px;
    border-radius: 12px;
  }

  .contact-left h2 {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .contact-box .row {
    row-gap: 6px;
  }

  .contact-left p {
    font-size: 14px;
  }

  .contact-info-item {
    gap: 12px;
  }

  .contact-info-item i {
    font-size: 20px;
  }

  .contact-social-icons a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    margin: 25px 0;
  }

  .contact-box {
    padding: 10px;
  }

  .contact-left h2 {
    font-size: 23px;
    letter-spacing: 1px;
  }

  .contact-left p {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-info-item {
    gap: 10px;
  }

  .contact-info-item span {
    font-size: 14px;
  }

  .contact-info-item i {
    font-size: 18px;
  }

  .contact-social-icons {
    gap: 8px;
  }

  .contact-social-icons a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .contact-box input,
  .contact-box textarea,
  .contact-box .form-select {
    font-size: 14px;
    padding: 10px 12px;
  }

  .contact-box textarea {
    height: 100px;
  }

  .apply-btn {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 360px) {
  .contact-left h2 {
    font-size: 21px;
  }

  .contact-left p {
    font-size: 13px;
  }

  .contact-info-item span {
    font-size: 13px;
  }

  .contact-box {
    padding: 15px;
  }
}

/* ============ MAP SECTION ============ */
.map-section {
  width: 100%;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-wrapper iframe {
  filter: grayscale(100%);
  transition: 0.4s;
}

.map-wrapper:hover iframe {
  filter: grayscale(0);
}

@media (max-width: 991px) {
  .map-wrapper {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .map-wrapper {
    height: 220px;
    border-radius: 8px;
  }
}
