
:root{
  --brand-blue-dark:#002b69;
  --brand-blue:#004aab;
  --brand-blue-light:#005ecb;
  --brand-orange:#ff7a00;
  --brand-text:#061b4d;
  --brand-light:#f4f9ff;
}/* Academy Header */
.academy-header {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Top Bar */
.academy-topbar {
  background:linear-gradient(135deg,var(--brand-blue-dark),var(--brand-blue));
  color: #ffffff;
}

.academy-topbar-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 105px;
}

.academy-info-item {
  display: flex;
  align-items: center;
  gap: 13px;
  position: relative;
}

.academy-info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -52px;
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.28);
}

.academy-info-item i {
  font-size: 27px;
  color: #ffffff;
}

.academy-info-item span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.1;
}

.academy-info-item strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

/* Main Header */
.academy-main-header {
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(0,0,0,0.08);
}

.academy-nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.academy-logo img {
  width: 160px;
  height: auto;
  display: block;
}

.academy-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0;
  margin: 0;
}

.academy-nav > ul > li {
  position: relative;
}

.academy-nav > ul > li > a {
  color: #061b4d;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 34px 0;
  display: inline-block;
  white-space: nowrap;
  transition: 0.3s ease;
}

.academy-nav > ul > li > a.active,
.academy-nav > ul > li > a:hover {
  color: #ff7a00;
}

.academy-nav > ul > li > a.active {
  position: relative;
}

.academy-nav > ul > li > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 55px;
  height: 3px;
  background: #ff7a00;
}

.academy-nav i {
  font-size: 11px;
  margin-left: 5px;
}

/* Button */
.academy-header-btn {
  background: linear-gradient(90deg, #ff8500, #ff6b00);
  color: #ffffff;
  padding: 15px 26px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

.academy-header-btn:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #004db8, #002f7e);
}

/* Dropdown */
.academy-dropdown {
  position: relative;
}

.academy-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s ease;
  z-index: 9999;
}

.academy-dropdown:hover .academy-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.academy-dropdown-menu li a {
  display: block;
  color: #061b4d;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.academy-dropdown-menu li a:hover {
  background: #fff3e6;
  color: #ff7a00;
}

/* Mobile Button */
.academy-menu-btn {
  display: none;
  border: none;
  background: #ff7a00;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 5px;
  font-size: 27px;
}

/* Overlay */
.academy-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: 0.3s ease;
}

.academy-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.academy-mobile-menu {
  position: fixed;
  top: 0;
  left: -340px;
  width: 320px;
  max-width: 90%;
  height: 100vh;
  background: #ffffff;
  z-index: 1001;
  padding: 22px;
  overflow-y: auto;
  transition: 0.4s ease;
}

.academy-mobile-menu.active {
  left: 0;
}

.academy-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.academy-mobile-head img {
  width: 145px;
}

.academy-mobile-head button {
  border: none;
  background: #ff7a00;
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.academy-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.academy-mobile-nav li {
  border-bottom: 1px solid #e8eef7;
}

.academy-mobile-nav a,
.academy-mobile-drop-btn {
  width: 100%;
  padding: 15px 0;
  color: #061b4d;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.academy-mobile-nav a:hover,
.academy-mobile-drop-btn.active {
  color: #ff7a00;
}

.academy-mobile-dropdown {
  display: none;
  list-style: none;
  padding: 0 0 12px 16px;
  margin: 0;
}

.academy-mobile-dropdown.show {
  display: block;
}

.academy-mobile-dropdown li {
  border-bottom: none;
}

.academy-mobile-dropdown li a {
  font-size: 14px;
  padding: 9px 0;
  color: #334155;
}

.academy-mobile-btn {
  margin-top: 24px;
  width: 100%;
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #ff8500, #ff6b00);
  color: #ffffff;
  padding: 14px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
}

.academy-mobile-info {
  margin-top: 24px;
  background: #eef6ff;
  border-radius: 10px;
  padding: 16px;
}

.academy-mobile-info p {
  color: #061b4d;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  word-break: break-word;
}

.academy-mobile-info p:last-child {
  margin-bottom: 0;
}

.academy-mobile-info i {
  color: #ff7a00;
  margin-right: 8px;
}

body.academy-menu-open {
  overflow: hidden;
}

/* Laptop */
@media (max-width: 1199px) {
  .academy-nav > ul {
    gap: 28px;
  }

  .academy-logo img {
    width: 145px;
  }

  .academy-header-btn {
    padding: 13px 20px;
  }

  .academy-topbar-inner {
    gap: 65px;
  }

  .academy-info-item:not(:last-child)::after {
    right: -32px;
  }
}

/* iPad */
@media (max-width: 991px) {
  .academy-nav,
  .academy-header-btn {
    display: none;
  }

  .academy-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .academy-nav-wrap {
    min-height: 76px;
  }

  .academy-logo img {
    width: 135px;
  }

  .academy-topbar-inner {
    justify-content: flex-start;
    gap: 45px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .academy-topbar-inner::-webkit-scrollbar {
    display: none;
  }

  .academy-info-item {
    min-width: max-content;
  }

  .academy-info-item:not(:last-child)::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .academy-nav-wrap {
    min-height: 70px;
  }

  .academy-logo img {
    width: 122px;
  }

  .academy-topbar-inner {
    min-height: 50px;
    gap: 35px;
    animation: academyInfoMove 14s linear infinite;
  }

  .academy-info-item i {
    font-size: 22px;
  }

  .academy-info-item span {
    font-size: 11px;
  }

  .academy-info-item strong {
    font-size: 13px;
  }

  .academy-mobile-menu {
    width: 295px;
  }
}

@keyframes academyInfoMove {
  0% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(-190px);
  }

  55% {
    transform: translateX(-190px);
  }

  100% {
    transform: translateX(0);
  }
}
/* Academy Footer */
.academy-footer {
  background:linear-gradient(135deg,var(--brand-blue-dark),var(--brand-blue));
  color: #ffffff;
  padding: 42px 0 18px;
}

.academy-footer-brand img {
  width: 150px;
  margin-bottom: 16px;
}

.academy-footer-brand p {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.7;
  color: #d8e7ff;
  margin: 0;
}

.academy-footer-links h4,
.academy-footer-contact h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #ffffff;
}

.academy-footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.academy-footer-links ul li {
  margin-bottom: 8px;
}

.academy-footer-links ul li a {
  color: #d8e7ff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.academy-footer-links ul li a:hover {
  color: #ff8500;
  padding-left: 5px;
}

.academy-footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 14px;
  color: #d8e7ff;
  font-size: 14px;
  line-height: 1.6;
}

.academy-footer-contact i {
  color: #ffffff;
  font-size: 18px;
  margin-top: 3px;
}

.academy-footer-contact a {
  color: #d8e7ff;
  text-decoration: none;
}

.academy-footer-contact a:hover {
  color: #ff8500;
}

.academy-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 34px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.academy-footer-bottom p {
  margin: 0;
  color: #d8e7ff;
  font-size: 15px;
}
.academy-footer-bottom p a{
   color: #1e90ff;
    margin-left: 5px;
    text-decoration: none;
}
.academy-footer-bottom p a:hover{
  color:#ff8500 ;
}

.academy-footer-bottom span {
  color: #ff8500;
  font-weight: 500;
}


/* iPad */
@media (max-width: 991px) {
  .academy-footer {
    padding-top: 45px;
  }

  .academy-footer-brand p {
    max-width: 100%;
  }

  .academy-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .academy-footer {
    padding: 38px 0 16px;
  }

  .academy-footer-brand img {
    width: 130px;
  }

  .academy-footer-links h4,
  .academy-footer-contact h4 {
    margin-top: 10px;
  }

  .academy-footer-bottom p {
    font-size: 13px;
  }
}
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;

}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none;
}
/* BIZL Academy Index */
.academy-hero {
  background:linear-gradient(135deg,var(--brand-blue-dark),var(--brand-blue));
  /* padding: 70px 0 0; */
  overflow: hidden;
}

.academy-hero span {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
}

.academy-hero h1 {
  color: #ffffff;
  font-size: 62px;
  font-weight: 500;
  margin: 15px 0;
}

.academy-hero h1 b {
  color: #ff7a00;
}

.academy-hero p {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 500;
  max-width: 520px;
}

.academy-hero a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff7a00;
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 30px;
  font-weight: 500;
  margin-top: 18px;
  text-decoration: none;
}

.academy-hero-img {
  text-align: right;
}

.academy-hero-img img {
  width: 100%;
  max-width: 720px;
}

/* Overview */
.academy-overview {
  padding: 45px 0 35px;
}

.overview-img {
  position: relative;
}

.overview-img img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.10);
}

.academy-label {
  color: #005ecb;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.academy-label::after {
  content: "";
  width: 35px;
  height: 3px;
  background: #ff7a00;
  display: block;
  margin-top: 6px;
}

.academy-overview h2 {
  color: #061b4d;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 18px;
}

.academy-overview p {
  color: #061b4d;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Courses */
.academy-courses {
  padding: 20px 0 35px;
}

.course-box {
  background: #eef6ff;
  border-radius: 16px;
  padding: 22px;
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
}

.section-title span {
  color: #005ecb;
  font-size: 14px;
  font-weight: 500;
}

.section-title h2 {
  color: #061b4d;
  font-size: 30px;
  font-weight: 500;
}

.section-title h2 b {
  color: #ff7a00;
}

.course-card {
  background: #ffffff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  padding-bottom: 18px;
}

.course-card img {
  width: 100%;
  height: 125px;
  object-fit: cover;
}

.course-card i {
  width: 58px;
  height: 58px;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.course-card h4 {
  color: #061b4d;
  font-size: 18px;
  font-weight: 500;
  min-height: 50px;
  margin: 14px 0;
}

.course-card a {
  display: inline-block;
  color: #ffffff;
  padding: 9px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.course-card.blue i,
.course-card.blue a { background: #005ecb; }

.course-card.purple i,
.course-card.purple a { background: #7434b8; }

.course-card.orange i,
.course-card.orange a { background: #ff7a00; }

.course-card.green i,
.course-card.green a { background: #05a660; }

.course-card.pink i,
.course-card.pink a { background: #ef3b72; }

/* Success */
.academy-success {
  padding: 20px 0 25px;
}

.academy-success h3 {
  color: #005ecb;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.academy-success p {
  color: #061b4d;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.academy-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stat-card i {
  font-size: 45px;
  display: block;
  margin-bottom: 12px;
}

.stat-card h2 {
  font-size: 48px;
  font-weight: 500;
  margin: 0;
}

.stat-card p {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.stat-card.blue i,
.stat-card.blue h2 { color: #005ecb; }

.stat-card.orange i,
.stat-card.orange h2 { color: #ff7a00; }

.stat-card.green i,
.stat-card.green h2 { color: #05a660; }

.stat-card.pink i,
.stat-card.pink h2 { color: #ef3b72; }

/* Admission */
.academy-admission {
  padding: 10px 0 35px;
}

.admission-banner {
  background: linear-gradient(135deg, #003f91, #005ecb);
  color: #ffffff;
  border-radius: 12px;
  padding: 121px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.admission-banner h2 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 15px;
}

.admission-banner h2 span {
  color: #ff7a00;
}

.admission-banner p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 260px;
  font-weight: 500;
}

.admission-banner img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 230px;
}

.academy-form-box {
  background: #ffffff;
  border: 1px solid #d8e5f5;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.academy-form-box h3 {
  color: #005ecb;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}

.academy-form-box input,
.academy-form-box select {
  width: 100%;
  height: 42px;
  border: 1px solid #cbd8ea;
  border-radius: 6px;
  padding: 0 14px;
  color: #061b4d;
  outline: none;
  font-size: 14px;
}

.academy-form-box button {
  width: 100%;
  height: 44px;
  background: #005ecb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 500;
}

/* iPad */
@media (max-width: 991px) {
  .academy-hero {
    text-align: center;
    padding-top: 55px;
  }

  .academy-hero h1 {
    font-size: 48px;
  }

  .academy-hero p {
    margin: auto;
    font-size: 20px;
  }

  .academy-hero-img {
    text-align: center;
    margin-top: 30px;
  }

  .academy-overview {
    text-align: center;
  }

  .academy-label::after {
    margin-left: auto;
    margin-right: auto;
  }

  .academy-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .admission-banner img {
    width: 190px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .academy-hero {
    padding-top: 40px;
  }

  .academy-hero h1 {
    font-size: 38px;
  }

  .academy-hero p {
    font-size: 17px;
  }

  .overview-img img {
    height: 240px;
  }

  .academy-overview h2,
  .section-title h2 {
    font-size: 27px;
  }

  .course-box {
    padding: 18px;
  }

  .academy-stats {
    grid-template-columns: 1fr;
  }

  .admission-banner {
    padding: 28px 22px;
  }

  .admission-banner h2 {
    font-size: 30px;
  }

  .admission-banner img {
    position: relative;
    width: 180px;
    display: block;
    margin-left: auto;
    margin-top: 15px;
  }
}
/* About Academy Page */
.academy-about-hero {
  background: linear-gradient(
      135deg,
      var(--brand-blue-dark),
      var(--brand-blue)
  );
  padding: 75px 0 5px;
  overflow: hidden;
}

.about-small {
  color: #ff7a00;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 18px;
}

.academy-about-hero h1 {
  color: #ffffff;
  font-size: 52px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 20px;
}

.academy-about-hero h1 span {
  color: #ff7a00;
}

.about-line {
  width: 46px;
  height: 3px;
  background: #ff7a00;
  margin-bottom: 26px;
}

.academy-about-hero p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff7a00;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 10px;
}

.about-building-img {
  position: relative;
  text-align: right;
}

.about-building-img img {
  width: 100%;
  max-width: 570px;
  height: 590px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.10);
}

/* Mission Vision */
.academy-mission-vision {
  padding: 55px 0 70px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title span {
  color: #ff7a00;
  font-size: 15px;
  font-weight: 500;
}

.section-title h2 {
  color: #061b4d;
  font-size: 36px;
  font-weight: 500;
  margin: 8px 0;
}

.section-title h2 b {
  color: #ff7a00;
}

.section-title p {
  color: #061b4d;
  font-size: 17px;
  margin: 0;
}

.mv-academy-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.10);
  height: 100%;
}

.mv-academy-card > img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.mv-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #005ecb, #003f91);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -45px auto 20px;
  position: relative;
  z-index: 2;
  font-size: 38px;
}

.mv-content {
  padding: 0 38px 38px;
  text-align: center;
}

.mv-content h3 {
  color: #061b4d;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.mv-line {
  width: 40px;
  height: 3px;
  background: #ff7a00;
  margin: 0 auto 22px;
}

.mv-content p {
  color: #061b4d;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 18px;
}

/* iPad */
@media (max-width: 991px) {
  .academy-about-hero {
    text-align: center;
    padding: 60px 0 50px;
  }

  .academy-about-hero h1 {
    font-size: 42px;
  }

  .about-line {
    margin-left: auto;
    margin-right: auto;
  }

  .about-building-img {
    text-align: center;
    margin-top: 25px;
  }

  .about-building-img img {
    max-width: 520px;
    height: 460px;
  }

  .mv-content p {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .academy-about-hero {
    padding: 45px 0 40px;
  }

  .academy-about-hero h1 {
    font-size: 34px;
  }

  .academy-about-hero p {
    font-size: 15px;
  }

  .about-building-img img {
    height: 330px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .mv-academy-card > img {
    height: 200px;
  }

  .mv-icon {
    width: 78px;
    height: 78px;
    font-size: 32px;
    margin-top: -39px;
  }

  .mv-content {
    padding: 0 22px 28px;
  }

  .mv-content h3 {
    font-size: 24px;
  }

  .mv-content p {
    font-size: 14px;
  }
}
/* Academy Contact Page */
.academy-contact-hero {
   background: linear-gradient(
      135deg,
      var(--brand-blue-dark),
      var(--brand-blue)
  );
  /* padding: 70px 0 30px; */
  overflow: hidden;
}

.contact-small {
  color: #ff7a00;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
}

.academy-contact-hero h1 {
  color: #ffffff;
  font-size: 62px;
  line-height: 1.18;
  font-weight: 500;
  margin-bottom: 24px;
}

.academy-contact-hero h1 span {
  color: #ff7a00;
}

.contact-line {
  width: 46px;
  height: 3px;
  background: #ff7a00;
}

.contact-hero-img {
  text-align: right;
}

.contact-hero-img img {
  width: 100%;
  max-width: 620px;
}

/* Contact Info */
.academy-contact-info {
  padding: 45px 0 25px;
}

.contact-card {
  min-height: 155px;
  background: #ffffff;
  border: 1px solid #dbe5f3;
  border-radius: 10px;
  padding: 22px 34px;
  display: flex;
  align-items: center;
  gap: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.contact-card i {
  min-width: 70px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #005ecb, #003f91);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.contact-card h4 {
  color: #061b4d;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-card p {
  color: #061b4d;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.academy-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #002b69;
  color: #ffffff;
  padding: 14px 48px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 22px;
}

/* Map */
.academy-map-section {
  padding: 10px 0 35px;
}

.academy-map-box {
  position: relative;
  height: 520px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d8e4f4;
}

.academy-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.academy-map-card {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 8px;
  padding: 22px 28px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}

.academy-map-card i {
  color: #ef2d2d;
  font-size: 42px;
}

.academy-map-card h4 {
  color: #061b4d;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.academy-map-card p {
  color: #061b4d;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  white-space: nowrap;
}

/* Assistance */
.academy-assist-section {
  padding: 0 0 45px;
}

.academy-assist-box {
  background: linear-gradient(135deg, #002b69, #003f91);
  border-radius: 10px;
  padding: 32px 55px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.assist-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.assist-left > i {
  min-width: 86px;
  width: 86px;
  height: 86px;
  background: #ffffff;
  color: #003f91;
  border-radius: 50%;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assist-left h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.assist-left p {
  font-size: 18px;
  margin: 0;
}

.academy-assist-box a {
  min-width: 175px;
  height: 56px;
  background: #ff7a00;
  color: #ffffff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* iPad */
@media (max-width: 991px) {
  .academy-contact-hero {
    text-align: center;
    padding: 60px 0 35px;
  }

  .academy-contact-hero h1 {
    font-size: 48px;
  }

  .contact-line {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-img {
    text-align: center;
    margin-top: 25px;
  }

  .contact-hero-img img {
    max-width: 520px;
  }

  .academy-map-box {
    height: 430px;
  }

  .academy-assist-box {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .assist-left {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .academy-contact-hero {
    padding: 45px 0 30px;
  }

  .academy-contact-hero h1 {
    font-size: 38px;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .contact-card i {
    min-width: 64px;
    width: 64px;
    height: 64px;
    font-size: 29px;
  }

  .academy-whatsapp-btn {
    width: 100%;
  }

  .academy-map-box {
    height: 360px;
  }

  .academy-map-card {
    width: 88%;
    top: 50%;
    padding: 18px;
  }

  .academy-map-card p {
    white-space: normal;
  }

  .academy-assist-box {
    padding: 30px 22px;
  }

  .assist-left > i {
    min-width: 72px;
    width: 72px;
    height: 72px;
    font-size: 34px;
  }

  .assist-left h3 {
    font-size: 24px;
  }

  .academy-assist-box a {
    width: 100%;
  }
}
/* Courses Page */
.course-hero {
  background: linear-gradient(
      135deg,
      var(--brand-blue-dark),
      var(--brand-blue)
  );
  padding: 70px 0 55px;
  overflow: hidden;
}

.course-hero span {
  color: #ff7a00;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 16px;
}

.course-hero h1 {
  color: #ffffff;
  font-size: 66px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 20px;
}

.course-hero h1 b {
  color: #ff7a00;
}

.course-line {
  width: 46px;
  height: 3px;
  background: #ff7a00;
  margin-bottom: 24px;
}

.course-hero p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
  max-width: 470px;
  margin: 0;
}

.course-hero-img {
  text-align: right;
}

.course-hero-img img {
  width: 100%;
  max-width: 610px;
}

/* Tabs */
.course-tabs-section {
  padding: 35px 0 25px;
}

.course-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.course-tab {
  min-height: 150px;
  background: #ffffff;
  border: 1px solid #dbe5f3;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  color: #061b4d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.course-tab.active {
  background: linear-gradient(135deg, #002b69, #003f91);
  color: #ffffff;
}

.course-tab i {
  font-size: 44px;
  margin-bottom: 18px;
}

.course-tab.orange i {
  color: #ff7a00;
}

.course-tab.green i {
  color: #05a660;
}

.course-tab h4 {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* Course Detail */
.course-detail-section {
  padding: 70px 0 55px;
}

.course-detail-card,
.academy-course-form {
  background: #ffffff;
  border: 1px solid #dbe5f3;
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.07);
  overflow: hidden;
  height: 100%;
}

.course-detail-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.course-detail-content {
  padding: 34px;
}

.course-detail-content h2,
.academy-course-form h2 {
  color: #061b4d;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}

.small-orange-line {
  width: 40px;
  height: 3px;
  background: #ff7a00;
  margin-bottom: 24px;
}

.course-detail-content p {
  color: #061b4d;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.course-detail-content h3 {
  color: #061b4d;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}

.course-detail-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-detail-content ul li {
  color: #061b4d;
  font-size: 16px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.course-detail-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #005ecb;
  font-weight: 500;
}

/* Form */
.academy-course-form {
  padding: 36px;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #7e93c1;
  font-size: 18px;
}

.textarea-icon i {
  top: 20px;
  transform: none;
}

.academy-course-form input,
.academy-course-form select,
.academy-course-form textarea {
  width: 100%;
  height: 58px;
  border: 1px solid #d3dff0;
  border-radius: 8px;
  padding: 0 16px 0 45px;
  color: #061b4d;
  font-size: 15px;
  outline: none;
  background: #ffffff;
}

.academy-course-form textarea {
  height: 145px;
  padding-top: 18px;
  resize: none;
}

.academy-course-form button {
  width: 100%;
  height: 62px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #002b69, #003f91);
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

/* iPad */
@media (max-width: 991px) {
  .course-hero {
    text-align: center;
    padding: 60px 0 40px;
  }

  .course-hero h1 {
    font-size: 50px;
  }

  .course-line {
    margin-left: auto;
    margin-right: auto;
  }

  .course-hero p {
    margin: auto;
  }

  .course-hero-img {
    text-align: center;
    margin-top: 30px;
  }

  .course-hero-img img {
    max-width: 500px;
  }

  .course-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .course-hero {
    padding: 45px 0 35px;
  }

  .course-hero h1 {
    font-size: 38px;
  }

  .course-hero p {
    font-size: 16px;
  }

  .course-tabs {
    grid-template-columns: 1fr;
  }

  .course-tab {
    min-height: 125px;
  }

  .course-detail-card img {
    height: 220px;
  }

  .course-detail-content,
  .academy-course-form {
    padding: 24px 18px;
  }

  .course-detail-content h2,
  .academy-course-form h2 {
    font-size: 26px;
  }

  .academy-course-form input,
  .academy-course-form select {
    height: 52px;
  }
}
/* Academy Blog Page */
.academy-blog-hero {
  background: linear-gradient(
      135deg,
      var(--brand-blue-dark),
      var(--brand-blue)
  );
  padding: 40px 0 55px;
  overflow: hidden;
}

.academy-blog-hero span {
  color: #ff7a00;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 16px;
}

.academy-blog-hero h1 {
  color: #ffffff;
  font-size: 66px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 20px;
}

.academy-blog-hero h1 b {
  color: #ff7a00;
}

.blog-line {
  width: 46px;
  height: 3px;
  background: #ff7a00;
  margin-bottom: 24px;
}

.academy-blog-hero p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
  max-width: 460px;
  margin: 0;
}

.blog-hero-img {
  text-align: right;
}

.blog-hero-img img {
  width: 100%;
  max-width: 610px;
}

/* Blog Cards */
.academy-blog-section {
  padding: 55px 0 70px;
}

.blog-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0,0,0,0.10);
  height: 100%;
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.blog-content {
  padding: 30px 32px;
}

.blog-content h3 {
  color: #061b4d;
  font-size: 27px;
  line-height: 1.32;
  font-weight: 500;
  margin-bottom: 28px;
}

.blog-content a {
  color: #ff7a00;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.blog-content a i {
  font-size: 22px;
}

/* iPad */
@media (max-width: 991px) {
  .academy-blog-hero {
    text-align: center;
    padding: 60px 0 45px;
  }

  .academy-blog-hero h1 {
    font-size: 50px;
  }

  .blog-line {
    margin-left: auto;
    margin-right: auto;
  }

  .academy-blog-hero p {
    margin: auto;
  }

  .blog-hero-img {
    text-align: center;
    margin-top: 25px;
  }

  .blog-hero-img img {
    max-width: 520px;
  }

  .blog-content h3 {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .academy-blog-hero {
    padding: 45px 0 35px;
  }

  .academy-blog-hero h1 {
    font-size: 38px;
  }

  .academy-blog-hero p {
    font-size: 16px;
  }

  .academy-blog-section {
    padding: 40px 0 50px;
  }

  .blog-card img {
    height: 210px;
  }

  .blog-content {
    padding: 24px 20px;
  }

  .blog-content h3 {
    font-size: 22px;
  }
}
/* Blog Detail Page */
.blog-detail-section {
  padding: 45px 0 65px;
  background: #ffffff;
}

.blog-detail-card {
  background: #ffffff;
  border: 1px solid #e1e8f2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.blog-detail-img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.blog-detail-content {
  padding: 42px 48px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}

.blog-meta span {
  color: #ff7a00;
  font-size: 16px;
  font-weight: 500;
}

.blog-meta p {
  margin: 0;
  color: #6b7aa0;
  font-size: 16px;
}

.blog-meta i {
  color: #ff7a00;
  margin-right: 7px;
}

.blog-detail-content h1 {
  color: #061b4d;
  font-size: 50px;
  line-height: 1.22;
  font-weight: 500;
  margin-bottom: 24px;
}

.blog-detail-content .intro {
  color: #061b4d;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.blog-detail-content h2 {
  color: #061b4d;
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 8px;
}

.title-line {
  width: 46px;
  height: 3px;
  background: #ff7a00;
  margin-bottom: 28px;
}

.steps-list {
  display: grid;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.step-item span {
  min-width: 38px;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #002b69, #003f91);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  margin-top: 3px;
}

.step-item h3 {
  color: #061b4d;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.step-item p {
  color: #061b4d;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.final-thoughts {
  margin-top: 35px;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.final-thoughts > i {
  min-width: 56px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #002b69, #003f91);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.final-thoughts h3 {
  color: #061b4d;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 12px;
}

.final-thoughts p {
  color: #061b4d;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.final-thoughts hr {
  border-color: #145eb6;
  margin: 20px 0;
}

.final-thoughts h4 {
  color: #061b4d;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

.share-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.share-box h4 {
  color: #061b4d;
  font-size: 19px;
  font-weight: 500;
  margin: 0 8px 0 0;
}

.share-box a {
  width: 44px;
  height: 44px;
  border: 1px solid #d5e0ef;
  border-radius: 50%;
  color: #003f91;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.share-box a:hover {
  background: #003f91;
  color: #ffffff;
}

/* iPad */
@media (max-width: 991px) {
  .blog-detail-img {
    height: 360px;
  }

  .blog-detail-content {
    padding: 36px 30px;
  }

  .blog-detail-content h1 {
    font-size: 38px;
  }

  .blog-detail-content .intro {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .blog-detail-section {
    padding: 30px 0 45px;
  }

  .blog-detail-img {
    height: 240px;
  }

  .blog-detail-content {
    padding: 28px 18px;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .blog-detail-content h1 {
    font-size: 30px;
  }

  .blog-detail-content .intro {
    font-size: 15px;
  }

  .step-item {
    gap: 15px;
  }

  .step-item h3 {
    font-size: 18px;
  }

  .step-item p {
    font-size: 14px;
  }

  .final-thoughts {
    flex-direction: column;
    padding: 24px 20px;
  }

  .share-box {
    flex-wrap: wrap;
  }
}
.floating-contact {
    position: fixed;
    right: 22px;
    top: 270px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #ffffff;
}
.floating-contact a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.floating-contact a:nth-child(1) {
    background: #24d366;
}
.floating-contact a:nth-child(2) {
    background: #1d7df2;
}
.floating-contact a:nth-child(3) {
    background: #ff9416;
}
/* Academic Advisor Card */
.academy-contact-card{
    background:linear-gradient(135deg,#ffffff,#f4f9ff);
    border-radius:20px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,43,105,.10);
    border:1px solid #dbe8f8;
    position:relative;
    overflow:hidden;
}

.academy-contact-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(0,74,171,.08);
    border-radius:50%;
    top:-70px;
    right:-60px;
}

.academy-contact-card::after{
    content:"";
    position:absolute;
    width:100px;
    height:100px;
    background:rgba(255,122,0,.10);
    border-radius:50%;
    bottom:-40px;
    left:-30px;
}

.academy-contact-card span{
    display:inline-block;
    background:#eaf3ff;
    color:var(--brand-blue);
    font-size:13px;
    font-weight:500;
    padding:8px 16px;
    border-radius:30px;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.academy-contact-card h3{
    font-size:34px;
    font-weight:500;
    color:var(--brand-text);
    margin-bottom:15px;
    position:relative;
    z-index:2;
}

.academy-contact-card p{
    font-size:15px;
    line-height:1.8;
    color:#5d6d83;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}

.academy-contact-list{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}

.academy-contact-list a{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 18px;
    background:#ffffff;
    border-radius:12px;
    text-decoration:none;
    color:var(--brand-text);
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    transition:.3s ease;
}

.academy-contact-list a:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.academy-contact-list i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#eef6ff;
    color:var(--brand-blue);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.academy-whatsapp-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    background:#25D366;
    color:#fff;
    padding:16px;
    border-radius:12px;
    text-decoration:none;
    font-weight:500;
    font-size:15px;
    transition:.3s ease;
    position:relative;
    z-index:2;
}

.academy-whatsapp-btn:hover{
    background:#1eb857;
    color:#fff;
    transform:translateY(-3px);
}

.academy-whatsapp-btn i{
    font-size:20px;
}

/* Mobile */
@media(max-width:575px){

    .academy-contact-card{
        padding:28px 20px;
    }

    .academy-contact-card h3{
        font-size:26px;
    }

    .academy-contact-list a{
        font-size:14px;
        padding:14px;
    }

    .academy-whatsapp-btn{
        font-size:14px;
    }
}