/* Modern Banner Styles */
.banner-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background-color: #002e5e;
}

.banner-section header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  transition: .4s;
}

.banner-section .header-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.banner-section .logo-wrapper img {
  max-width: 200px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-container {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 46, 94, 0.85) 0%, rgba(0, 88, 50, 0.75) 100%);
  z-index: 2;
}

.banner-section .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-section .banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-section .banner-content {
  position: relative;
  z-index: 10;
  padding: 150px 0 80px;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-section .banner-text-content {
  color: #fff;
  max-width: 700px;
}

.banner-section .banner-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
}

.banner-section .banner-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease-out;
}

.banner-section .banner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeInUp 1.4s ease-out;
}

.banner-section .feature-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.banner-section .feature-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.banner-section .feature-icon {
  margin-right: 10px;
  color: #ffaa17;
}

.banner-section .feature-text {
  font-weight: 500;
  font-size: 16px;
}

.banner-section .banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  animation: fadeInUp 1.6s ease-out;
}

.btn-primary-action {
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(255, 170, 23, 0.3);
  transition: all 0.3s ease;
}

.btn-primary-action:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(255, 170, 23, 0.4);
}

.btn-secondary-action {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-secondary-action:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.banner-section .banner-decoration {
  position: relative;
  height: 400px;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 170, 23, 0.4) 0%, rgba(255, 170, 23, 0) 70%);
  animation: pulse 6s infinite alternate;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 30%;
  animation-delay: 2s;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

/* Modal Form Styling */
.modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 46, 94, 0.2);
}

.modal-header {
  background: linear-gradient(135deg, #002e5e, #005832);
  color: #fff;
  border: none;
  padding: 20px 30px;
}

.modal-title {
  font-weight: 600;
  font-size: 24px;
}

.btn-close {
  color: #fff;
  opacity: 0.8;
  filter: brightness(3);
}

.modal-body {
  padding: 30px;
  background-color: #f8f9fa;
}

.form-intro {
  text-align: center;
  margin-bottom: 25px;
}

.form-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  border-radius: 50%;
  margin-bottom: 15px;
  color: #fff;
  font-size: 30px;
}

.form-tagline {
  color: #555;
  font-size: 16px;
  margin-bottom: 0;
}

.application-form .form-control,
.application-form .form-select {
  padding: 0.75rem 1rem;
  height: 58px;
  border-radius: 10px;
  border: 1px solid #dee2e6;
  background-color: #fff;
  font-size: 16px;
}

.application-form .form-floating label {
  padding: 1rem;
  color: #6c757d;
}

.form-otp {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.otp-input-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.otp-label {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 5px;
  display: block;
}

.otp-actions {
  display: flex;
  gap: 10px;
}

.otp-btn {
  flex: 1;
  height: 40px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.otp-btn.verify {
  background-color: #002e5e;
  color: #fff;
}

.otp-btn.resend {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #495057;
}

.otp-btn.success {
  background-color: #28a745;
  color: #fff;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #002e5e, #005832);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #005832, #002e5e);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 46, 94, 0.2);
}

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #6c757d;
  margin-top: 15px;
}

.form-disclaimer a {
  color: #002e5e;
  text-decoration: none;
}

.form-disclaimer a:hover {
  text-decoration: underline;
}

@media(max-width: 992px) {
  .banner-section .banner-title {
    font-size: 36px;
  }
  
  .banner-section .banner-content {
    padding: 120px 0 60px;
  }
  
  .banner-section .banner-decoration {
    height: 250px;
    margin-top: 40px;
  }
  
  .circle-1 {
    width: 200px;
    height: 200px;
  }
  
  .circle-2 {
    width: 150px;
    height: 150px;
  }
  
  .circle-3 {
    width: 100px;
    height: 100px;
  }
}

/* USP Section - Modern Redesign */
.usp-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.usp-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.usp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 46, 94, 0.95) 0%, rgba(0, 88, 50, 0.9) 100%);
  z-index: 1;
}

.usp-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
}

.usp-section .heading-block {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.usp-section .heading-block h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-left: 0;
  text-transform: none;
  line-height: 1.2;
  width: auto;
}

.usp-section .heading-block h2::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  border-radius: 2px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.usp-section .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.usp-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}

.usp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.usp-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              background-color 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
}

.usp-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.usp-card-icon {
  margin-bottom: 25px;
  transition: transform 0.4s ease-out;
  will-change: transform;
}

.icon-circle {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(255, 170, 23, 0.15), rgba(255, 126, 0, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  border: 2px solid rgba(255, 170, 23, 0.3);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              background 0.3s ease,
              border-color 0.3s ease;
  will-change: transform, background;
}

.usp-card:hover .icon-circle {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(255, 170, 23, 0.3), rgba(255, 126, 0, 0.3));
}

.icon-circle img {
  max-width: 50px;
  max-height: 50px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.usp-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.usp-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.usp-learn-more {
  color: #ffaa17;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.usp-learn-more i {
  margin-left: 8px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}

.usp-learn-more:hover {
  color: #ff7e00;
}

.usp-learn-more:hover i {
  transform: translateX(6px);
}

.usp-cta {
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.usp-student-image {
  flex: 0 0 40%;
  position: relative;
}

.usp-student-image img {
  max-width: 85%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  transition: all 0.5s ease;
}

.usp-cta:hover .usp-student-image img {
  transform: translateY(-10px);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 126, 0, 0.4);
  animation: pulse 3s infinite;
}

.experience-badge .number {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}

.usp-cta-content {
  flex: 0 0 60%;
  padding-left: 50px;
}

.usp-cta-content h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.usp-cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.6;
}

.usp-cta-button {
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 126, 0, 0.3);
}

.usp-cta-button i {
  margin-left: 10px;
  transition: all 0.3s ease;
}

.usp-cta-button:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(255, 126, 0, 0.4);
}

.usp-cta-button:hover i {
  transform: translateX(6px);
}

@media(max-width: 992px) {
  .usp-section {
    padding: 80px 0;
  }
  
  .usp-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .usp-cta {
    flex-direction: column;
    padding: 40px 30px;
  }
  
  .usp-student-image {
    margin-bottom: 30px;
    flex: 0 0 100%;
    text-align: center;
  }
  
  .usp-cta-content {
    padding-left: 0;
    text-align: center;
    flex: 0 0 100%;
  }
  
  .usp-cta-content p {
    margin: 0 auto 30px;
  }
  
  .experience-badge {
    right: 50%;
    transform: translateX(70px);
  }
}

@media(max-width: 767px) {
  .banner-section .banner-title {
    font-size: 28px;
  }
  
  .banner-section .banner-subtitle {
    font-size: 16px;
  }
  
  .banner-section .banner-features {
    gap: 10px;
  }
  
  .banner-section .feature-item {
    padding: 8px 15px;
  }
  
  .banner-section .banner-content {
    text-align: center;
    padding: 100px 0 60px;
  }
  
  .banner-section .banner-features {
    justify-content: center;
  }
  
  .banner-section .banner-actions {
    justify-content: center;
  }
  
  .banner-section .banner-decoration {
    display: none;
  }
  
  .btn-primary-action,
  .btn-secondary-action {
    width: 100%;
    margin: 5px 0;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  /* Improved USP section for mobile */
  .usp-section {
    padding: 50px 0;
  }
  
  .usp-section .heading-block {
    margin-bottom: 40px;
  }
  
  .usp-section .heading-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 280px;
  }
  
  .usp-section .section-tag {
    font-size: 12px;
    padding: 5px 14px;
    margin-bottom: 10px;
  }
  
  .usp-section .section-subtitle {
    font-size: 16px;
    padding: 0 20px;
    line-height: 1.4;
  }
  
  .usp-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .usp-card {
    padding: 30px 20px;
  }
  
  .usp-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .usp-card p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .icon-circle {
    width: 70px;
    height: 70px;
  }
  
  .icon-circle img {
    max-width: 40px;
    max-height: 40px;
  }
  
  .usp-cta {
    margin-top: 40px;
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .usp-cta-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .usp-cta-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .usp-cta-button {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .usp-student-image img {
    max-width: 70%;
  }
  
  .experience-badge {
    width: 80px;
    height: 80px;
    right: 50%;
    transform: translateX(40px);
    bottom: 10px;
  }
  
  .experience-badge .number {
    font-size: 22px;
  }
  
  .experience-badge .text {
    font-size: 9px;
  }
}

/* USP Info Section - Modern Redesign */
.usp-info-section {
  background-color: #f8f9fa;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.usp-info-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 46, 94, 0.05) 0%, rgba(0, 46, 94, 0) 70%);
}

.usp-info-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 170, 23, 0.05) 0%, rgba(255, 170, 23, 0) 70%);
}

.usp-info-section .heading-block {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.usp-info-section .heading-block h2 {
  color: #002e5e;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-left: 0;
  text-transform: none;
  line-height: 1.2;
}

.usp-info-section .heading-block h2::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  border-radius: 2px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.usp-info-section .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.usp-info-section .section-subtitle {
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin: 20px auto 0;
}

.usp-info-item {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  will-change: transform, box-shadow;
}

.usp-info-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 46, 94, 0.1);
}

.usp-info-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 88, 50, 0.03) 0%, rgba(0, 88, 50, 0) 70%);
  border-radius: 0 0 0 100%;
  z-index: 0;
}

.usp-info-img {
  flex: 0 0 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 46, 94, 0.1), rgba(0, 88, 50, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-right: 25px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              background 0.3s ease;
  will-change: transform, background;
}

.usp-info-item:hover .usp-info-img {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(0, 46, 94, 0.15), rgba(0, 88, 50, 0.15));
}

.usp-info-img img {
  max-width: 100%;
  max-height: 100%;
  filter: brightness(0) saturate(100%) invert(24%) sepia(67%) saturate(1763%) hue-rotate(183deg) brightness(94%) contrast(101%);
  transition: all 0.3s ease;
}

.usp-info-detail {
  flex: 1;
  position: relative;
  z-index: 2;
}

.usp-info-detail h6 {
  color: #002e5e;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.usp-info-item:hover .usp-info-detail h6 {
  color: #ff7e00;
}

.usp-info-detail p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Extra Small Devices */
@media(max-width: 480px) {
  .usp-section {
    padding: 40px 0;
  }
  
  .usp-section .heading-block h2 {
    font-size: 24px;
  }
  
  .usp-card {
    padding: 25px 15px;
  }
  
  .usp-cta {
    padding: 25px 15px;
    margin-top: 40px;
  }
  
  .usp-cta-content h2 {
    font-size: 22px;
    text-align: center;
  }
  
  .usp-cta-content p {
    text-align: center;
  }
  
  .usp-student-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  
  .usp-student-image img {
    max-width: 60%;
  }
  
  .experience-badge {
    width: 70px;
    height: 70px;
    transform: none;
    right: auto;
    left: 60%;
  }
  
  .experience-badge .number {
    font-size: 20px;
  }
  
  .experience-badge .text {
    font-size: 8px;
  }
  
  .banner-section .banner-content {
    padding: 80px 0 40px;
  }

  .banner-section .banner-title {
    font-size: 24px;
  }

  .banner-section .banner-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .banner-section .feature-item {
    padding: 6px 12px;
    font-size: 14px;
  }
}
  
  /* USP Info Section - Mobile */
  .usp-info-section {
    padding: 50px 0;
  }
  
  .usp-info-section .heading-block h2 {
    font-size: 24px;
  }
  
  .usp-info-item {
    padding: 25px;
    flex-direction: column;
    text-align: center;
  }
  
  .usp-info-img {
    margin: 0 auto 20px;
  }
  
  .usp-info-detail h6 {
    font-size: 18px;
  }
  
  .usp-info-detail p {
    font-size: 14px;
  }

/* Advantage Section - Modern Redesign */
.advantage-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 46, 94, 0.02) 0%, rgba(0, 88, 50, 0.05) 100%);
  position: relative;
  overflow: hidden;
}


.advantage-section .heading-block {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.advantage-section .heading-block h2 {
  color: #002e5e;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-left: 0;
  text-transform: none;
  line-height: 1.2;
}

.advantage-section .heading-block h2::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  border-radius: 2px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.advantage-section .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.advantage-section .section-subtitle {
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin: 20px auto 0;
}

.advantage-list {
  position: relative;
  z-index: 2;
}

.advantage-item {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform, box-shadow;
}

.advantage-item::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 46, 94, 0.03) 0%, rgba(0, 46, 94, 0) 70%);
  border-radius: 50%;
  bottom: -75px;
  right: -75px;
}

.advantage-item1:hover, .advantage-item2:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-item1 {
  border-top: 4px solid #002e5e;
}

.advantage-item2 {
  border-top: 4px solid #ffaa17;
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 46, 94, 0.1), rgba(0, 88, 50, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              background 0.3s ease;
  will-change: transform, background;
}

.advantage-item:hover .advantage-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(0, 46, 94, 0.15), rgba(0, 88, 50, 0.15));
}

.advantage-icon img {
  max-width: 40px;
  max-height: 40px;
  filter: brightness(0) saturate(100%) invert(24%) sepia(67%) saturate(1763%) hue-rotate(183deg) brightness(94%) contrast(101%);
}

.advantage-title {
  color: #002e5e;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.advantage-item:hover .advantage-title {
  color: #ff7e00;
}

@media(max-width: 992px) {
  .advantage-section {
    padding: 80px 0;
  }
  
  .advantage-item {
    margin-bottom: 20px;
  }
}

@media(max-width: 767px) {
  .advantage-section {
    padding: 60px 0;
  }
  
  .advantage-section .heading-block h2 {
    font-size: 32px;
  }
  
  .advantage-section .section-subtitle {
    font-size: 16px;
    padding: 0 15px;
  }
  
  .advantage-title {
    font-size: 15px;
  }
  
  .advantage-icon {
    width: 60px;
    height: 60px;
  }
  
  .advantage-icon img {
    max-width: 35px;
    max-height: 35px;
  }
}

@media(max-width: 480px) {
  .advantage-section {
    padding: 40px 0;
  }
  
  .advantage-section .heading-block h2 {
    font-size: 24px;
  }
  
  .advantage-section .heading-block {
    margin-bottom: 30px;
  }
}

/* Program Section - Modern Redesign */
.program-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(248, 249, 250, 1) 0%, rgba(240, 242, 245, 1) 100%);
  position: relative;
  overflow: hidden;
}

.program-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 46, 94, 0.03) 0%, rgba(0, 46, 94, 0) 70%);
  top: -250px;
  right: -250px;
  z-index: 1;
}

.program-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 88, 50, 0.02) 0%, rgba(0, 88, 50, 0) 70%);
  bottom: -200px;
  left: -200px;
  z-index: 1;
}

.program-section .heading-block {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.program-section .heading-block h2 {
  color: #002e5e;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-left: 0;
  text-transform: none;
  line-height: 1.2;
}

.program-section .heading-block h2::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  border-radius: 2px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.program-section .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-section .section-subtitle {
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin: 20px auto 0;
}

.program-block {
  position: relative;
  z-index: 2;
}

.program-box {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  will-change: transform, box-shadow;
}

.program-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-title {
  background: linear-gradient(135deg, #002e5e, #005832);
  color: #fff;
  padding: 20px 30px;
  font-size: 22px;
  font-weight: 600;
  border-radius: 20px 20px 0 0;
}

.program-list {
  padding: 30px;
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #002e5e #f1f1f1;
}

.program-list::-webkit-scrollbar {
  width: 6px;
}

.program-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.program-list::-webkit-scrollbar-thumb {
  background: #002e5e;
  border-radius: 10px;
}

.program-item {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: flex;
  align-items: center;
}

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

.program-item i {
  color: #ffaa17;
  margin-right: 10px;
  font-size: 14px;
}

.program-item:hover {
  color: #002e5e;
  padding-left: 6px;
}

.program-apply {
  margin-top: 50px;
  text-align: center;
}

.program-apply-btn {
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(255, 170, 23, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.program-apply-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(255, 170, 23, 0.4);
}

@media(max-width: 992px) {
  .program-section {
    padding: 80px 0;
  }
  
  .program-box {
    margin-bottom: 30px;
  }
  
  .program-title {
    font-size: 20px;
    padding: 15px 20px;
  }
  
  .program-list {
    padding: 20px;
    max-height: 400px;
  }
}

@media(max-width: 767px) {
  .program-section {
    padding: 60px 0;
  }
  
  .program-section .heading-block h2 {
    font-size: 32px;
  }
  
  .program-section .section-subtitle {
    padding: 0 15px;
    font-size: 16px;
  }
  
  .program-apply-btn {
    width: 100%;
    padding: 14px 20px;
  }
  
  .program-title {
    font-size: 18px;
  }
  
  .program-list {
    padding: 20px 15px;
  }
  
  .program-item {
    padding: 12px 0;
    font-size: 15px;
  }
}

@media(max-width: 480px) {
  .program-section {
    padding: 40px 0;
  }
  
  .program-section .heading-block h2 {
    font-size: 24px;
  }
  
  .program-title {
    font-size: 18px;
    padding: 12px 15px;
  }
  
  .program-list {
    padding: 15px;
    max-height: 350px;
  }
  
  .program-item {
    font-size: 14px;
  }
}

/* Mentor Section - Modern Redesign */
.mentor-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 46, 94, 0.03) 0%, rgba(0, 88, 50, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.mentor-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 46, 94, 0.04) 0%, rgba(0, 46, 94, 0) 70%);
  top: -100px;
  left: -100px;
  z-index: 1;
}

.mentor-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 170, 23, 0.04) 0%, rgba(255, 170, 23, 0) 70%);
  bottom: -100px;
  right: -100px;
  z-index: 1;
}

.mentor-section .heading-block {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.mentor-section .heading-block h2 {
  color: #002e5e;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-left: 0;
  text-transform: none;
  line-height: 1.2;
}

.mentor-section .heading-block h2::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  border-radius: 2px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.mentor-section .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mentor-section .section-subtitle {
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin: 20px auto 0;
}

.mentor-slider {
  position: relative;
  z-index: 2;
}

.mentor-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  will-change: transform, box-shadow;
}

.mentor-item::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 46, 94, 0.03) 0%, rgba(0, 46, 94, 0) 70%);
  border-radius: 0 0 0 100%;
  z-index: 1;
}

.mentor-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mentor-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 46, 94, 0.1);
  padding: 4px;
  background-color: #fff;
  position: relative;
  transition: border-color 0.3s ease;
  will-change: border-color;
}

.mentor-item:hover .mentor-img {
  border-color: rgba(255, 170, 23, 0.3);
}

.mentor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}

.mentor-item:hover .mentor-img img {
  transform: scale(1.08);
}

.mentor-item h6 {
  color: #002e5e;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.mentor-item:hover h6 {
  color: #ff7e00;
}

.mentor-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #002e5e, #005832) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.owl-prev {
  left: -20px;
}

.owl-next {
  right: -20px;
}

.owl-nav button:hover {
  background: linear-gradient(135deg, #ffaa17, #ff7e00) !important;
  transform: scale(1.08);
}

.owl-nav i {
  font-size: 16px;
}

@media(max-width: 992px) {
  .mentor-section {
    padding: 80px 0;
  }
  
  .mentor-item {
    padding: 20px;
  }
  
  .mentor-img {
    width: 100px;
    height: 100px;
  }
}

@media(max-width: 767px) {
  .mentor-section {
    padding: 60px 0;
  }
  
  .mentor-section .heading-block h2 {
    font-size: 32px;
  }
  
  .mentor-section .section-subtitle {
    padding: 0 15px;
    font-size: 16px;
  }
  
  .owl-prev {
    left: 0px;
  }
  
  .owl-next {
    right: 0px;
  }
  
  .mentor-item {
    padding: 20px 15px;
  }
  
  .mentor-img {
    width: 100px;
    height: 100px;
  }
  
  .mentor-item h6 {
    font-size: 16px;
  }
  
  .mentor-item p {
    font-size: 13px;
  }
}

@media(max-width: 480px) {
  .mentor-section {
    padding: 40px 0;
  }
  
  .mentor-section .heading-block h2 {
    font-size: 24px;
  }
  
  .mentor-section .section-subtitle {
    font-size: 14px;
  }
  
  .mentor-item {
    padding: 15px 10px;
    margin: 5px;
  }
  
  .mentor-img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  
  .mentor-item h6 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .mentor-item p {
    font-size: 12px;
    line-height: 1.4;
  }
  
  /* Make the navigation arrows more visible on mobile */
  .mentor-section .owl-nav button {
    width: 30px;
    height: 30px;
  }
  
  .mentor-section .owl-nav i {
    font-size: 14px;
  }
}

/* Testimonial Section - Modern Redesign */
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #002e5e 0%, #005832 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  top: -200px;
  right: -200px;
  z-index: 1;
}

.testimonial-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -150px;
  left: -150px;
  z-index: 1;
}

.testimonial-section .heading-block {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.testimonial-section .heading-block h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-left: 0;
  text-transform: none;
  line-height: 1.2;
}

.testimonial-section .heading-block h2::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  border-radius: 2px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-section .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 700px;
  margin: 20px auto 0;
}

.testimonial-block {
  position: relative;
  z-index: 2;
}

.testimonial-slider {
  position: relative;
}

.testimonial-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  margin: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              background-color 0.3s ease,
              box-shadow 0.3s ease;
  will-change: transform, box-shadow;
}

.testimonial-item:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-item-icon {
  color: rgba(255, 255, 255, 0.1);
  font-size: 60px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.testimonial-text {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.testimonial-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.testimonial-user::before {
  content: "";
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  margin-right: 15px;
}

.testimonial-user h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-user p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.testimonial-section .owl-nav button {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-section .owl-nav button:hover {
  background: linear-gradient(135deg, #ffaa17, #ff7e00) !important;
}

@media(max-width: 992px) {
  .testimonial-section {
    padding: 80px 0;
  }
  
  .testimonial-item {
    padding: 30px;
  }
  
  .testimonial-item-icon {
    font-size: 50px;
  }
}

@media(max-width: 767px) {
  .testimonial-section {
    padding: 60px 0;
  }
  
  .testimonial-section .heading-block h2 {
    font-size: 32px;
  }
  
  .testimonial-section .section-subtitle {
    padding: 0 15px;
    font-size: 16px;
  }
  
  .testimonial-item {
    padding: 25px;
  }
  
  .testimonial-text p {
    font-size: 15px;
  }
  
  .testimonial-user h6 {
    font-size: 16px;
  }
  
  .testimonial-user::before {
    width: 40px;
  }
}

@media(max-width: 480px) {
  .testimonial-section {
    padding: 40px 0;
  }
  
  .testimonial-section .heading-block h2 {
    font-size: 24px;
  }
  
  .testimonial-section .section-subtitle {
    font-size: 14px;
  }
  
  .testimonial-item {
    padding: 20px 15px;
  }
  
  .testimonial-item-icon {
    font-size: 40px;
    top: 10px;
    right: 10px;
  }
  
  .testimonial-text {
    margin-bottom: 20px;
  }
  
  .testimonial-text p {
    font-size: 14px;
  }
  
  .testimonial-user::before {
    width: 25px;
    margin-right: 10px;
  }
  
  .testimonial-user h6 {
    font-size: 15px;
  }
  
  .testimonial-user p {
    font-size: 12px;
  }
}

/* Alumni Section - Modern Redesign */
.alumni-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
  position: relative;
  overflow: hidden;
}

.alumni-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 46, 94, 0.04) 0%, rgba(0, 46, 94, 0) 70%);
  top: -250px;
  left: -150px;
  z-index: 1;
  animation: pulse 15s infinite alternate ease-in-out;
}

.alumni-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 170, 23, 0.04) 0%, rgba(255, 170, 23, 0) 70%);
  bottom: -250px;
  right: -150px;
  z-index: 1;
  animation: pulse 15s infinite alternate-reverse ease-in-out;
}

.alumni-section .heading-block {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.alumni-section .heading-block::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 170, 23, 0.03) 0%, rgba(255, 170, 23, 0) 70%);
  border-radius: 50%;
  top: -40px;
  right: 30%;
  z-index: -1;
}

.alumni-section .heading-block h2 {
  color: #002e5e;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-left: 0;
  text-transform: none;
  line-height: 1.2;
}

.alumni-section .heading-block h2::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  border-radius: 2px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.alumni-section .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.alumni-section .section-subtitle {
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin: 20px auto 0;
}

.alumni-slider {
  position: relative;
  z-index: 2;
  padding: 0 50px;
  margin-top: 20px;
}

.alumni-item {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  margin: 15px 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  will-change: transform, box-shadow;
}

.alumni-item::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(0, 46, 94, 0.02) 0%, rgba(0, 46, 94, 0) 70%);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  z-index: 0;
  transition: all 0.5s ease;
}

.alumni-item:hover::before {
  transform: scale(1.2);
  background: radial-gradient(circle, rgba(255, 170, 23, 0.03) 0%, rgba(255, 170, 23, 0) 70%);
}

.alumni-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 170, 23, 0.2);
  border-top: 3px solid #ffaa17;
}

.alumni-item img {
  max-width: 85%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  will-change: filter, opacity, transform;
}

.alumni-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.alumni-section .owl-nav button {
  width: 40px;
  height: 40px;
  background: #fff !important;
  border: 1px solid rgba(0, 46, 94, 0.1) !important;
  border-radius: 50% !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.alumni-section .owl-nav button:hover {
  background: linear-gradient(135deg, #ffaa17, #ff7e00) !important;
  transform: translateY(-50%) scale(1.08);
}

.alumni-section .owl-prev {
  left: 0;
}

.alumni-section .owl-next {
  right: 0;
}

.alumni-section .owl-nav i {
  font-size: 16px;
  color: #002e5e;
  transition: color 0.3s ease;
}

.alumni-section .owl-nav button:hover i {
  color: #fff;
}

@media(max-width: 992px) {
  .alumni-section {
    padding: 80px 0;
  }
  
  .alumni-item {
    height: 80px;
  }
}

@media(max-width: 767px) {
  .alumni-section {
    padding: 60px 0;
  }
  
  .alumni-section .heading-block h2 {
    font-size: 32px;
  }
  
  .alumni-section .section-subtitle {
    padding: 0 15px;
    font-size: 16px;
  }
  
  .alumni-slider {
    padding: 0 40px;
    margin-top: 10px;
  }
  
  .alumni-item {
    height: 100px;
    padding: 15px;
    margin: 10px 5px;
  }
  
  .alumni-item img {
    max-height: 55px;
  }
  
  .alumni-section .owl-nav button {
    width: 35px;
    height: 35px;
  }
}

@media(max-width: 480px) {
  .alumni-section {
    padding: 40px 0;
  }
  
  .alumni-section .heading-block h2 {
    font-size: 24px;
  }
  
  .alumni-section .section-subtitle {
    font-size: 14px;
  }
  
  .alumni-item {
    height: 80px;
    padding: 12px;
    margin: 8px 4px;
  }
  
  .alumni-item img {
    max-height: 45px;
  }
  
  .alumni-slider {
    padding: 0 30px;
  }
  
  /* Make the navigation arrows more visible on mobile */
  .alumni-section .owl-nav button {
    width: 30px;
    height: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  .alumni-section .owl-nav i {
    font-size: 14px;
  }
}

/* Accredite Section - Modern Redesign */
.accredite-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 46, 94, 0.95) 0%, rgba(0, 88, 50, 0.9) 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.accredite-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  top: -200px;
  right: -200px;
  z-index: 1;
}

.accredite-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -150px;
  left: -150px;
  z-index: 1;
}

.accredite-block {
  position: relative;
  z-index: 2;
}

.accredite-section .heading-block {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.accredite-section .heading-block h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-left: 0;
  text-transform: none;
  line-height: 1.2;
}

.accredite-section .heading-block h2::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  border-radius: 2px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.accredite-section .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accredite-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 700px;
  margin: 20px auto 0;
}

.accredite-content {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.accredite-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.accredite-img-block {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.accredite-img {
  background-color: #bfdccc00;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 10px;
  overflow: hidden;
  height: 100%;
  will-change: transform, box-shadow;
}

.accredite-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.accredite-img img {
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease-out;
  will-change: transform;
}

.accredite-img:hover img {
  transform: scale(1.08);
}

@media(max-width: 992px) {
  .accredite-section {
    padding: 80px 0;
  }
  
  .accredite-content {
    margin-bottom: 30px;
  }
}

@media(max-width: 767px) {
  .accredite-section {
    padding: 60px 0;
  }
  
  .accredite-section .heading-block h2 {
    font-size: 32px;
  }
  
  .accredite-section .section-subtitle {
    padding: 0 15px;
    font-size: 16px;
  }
  
  .accredite-content p {
    font-size: 15px;
    text-align: center;
  }
  
  .accredite-img {
    padding: 15px;
    margin: 5px;
  }
}

@media(max-width: 480px) {
  .accredite-section {
    padding: 40px 0;
  }
  
  .accredite-section .heading-block h2 {
    font-size: 24px;
  }
  
  .accredite-section .section-subtitle {
    font-size: 14px;
  }
  
  .accredite-content p {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
  
  .accredite-img {
    padding: 8px;
    margin: 4px;
  }
  
  .accredite-img img {
    max-width: 90%;
  }
}

/* Footer - Modern Redesign */
footer {
  background: #002e5e;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  top: -100px;
  left: -100px;
}

footer::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -100px;
  right: -100px;
}

.footer-block {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.footer-apply {
  background: linear-gradient(135deg, #ffaa17, #ff7e00);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(255, 170, 23, 0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  will-change: transform, box-shadow;
}

.footer-apply:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(255, 170, 23, 0.4);
}

.footer-apply i {
  margin-left: 10px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}

.footer-apply:hover i {
  transform: translateX(6px);
}

@media(max-width: 767px) {
  footer {
    padding: 30px 0;
  }
  
  .footer-apply {
    padding: 14px 30px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
}
