/* 
* Douglas Business School Vietnam - Modern Green Theme
* 現代綠色主題設計 - 全新版型
*/

:root {
  /* 綠色主題顏色 */
  --primary-green: #28a745;
  --secondary-green: #20c997;
  --dark-green: #198754;
  --light-green: #d4edda;
  --accent-green: #40e0d0;
  --green-hover: rgba(40, 167, 69, 0.1);

  /* 背景顏色 */
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #212529;
  --bg-section: #f1f8ff;
  --bg-card: #ffffff;
  --bg-overlay: rgba(0, 0, 0, 0.5);

  /* 文字顏色 */
  --text-dark: #212529;
  --text-secondary: #6c757d;
  --text-muted: #adb5bd;
  --text-white: #ffffff;

  /* 邊框和陰影 */
  --border-light: #dee2e6;
  --border-primary: var(--primary-green);
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --shadow-green: 0 0.5rem 1rem rgba(40, 167, 69, 0.2);

  /* 漸變效果 */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );
  --gradient-hero: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* 重置和基礎樣式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    sans-serif !important;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Preloader - 簡潔綠色主題 */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
}

#preloader::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-light);
  border-top: 3px solid var(--primary-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#preloader .school-name {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-green);
  letter-spacing: 1px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Header - 現代極簡設計 */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.sticked {
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.98);
}

.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 80px;
  position: relative;
  width: 100%;
}

.header .logo img {
  height: 85px;
  width: auto;
  transition: transform 0.3s ease;
}

.header .logo img:hover {
  transform: scale(1.05);
}

/* ===== BRAND NEW NAVIGATION SYSTEM ===== */

/* Navigation Container */
.navbar {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 5;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2rem;
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 10;
}

.nav-desktop li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-desktop li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-desktop li a:hover::before {
  left: 100%;
}

.nav-desktop li a:hover {
  color: var(--primary-green);
  background: rgba(40, 167, 69, 0.1);
  transform: translateY(-2px);
}

.nav-desktop li a.active {
  color: #ffffff;
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Hero Section */
.hero-animated {
  position: relative;
  min-height: 90vh;
  padding: 120px 0;
  background: #0a1930;
  overflow: hidden;
}

/* Tech Background */
.hero-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, #0a1930 21px, transparent 1%) center,
    linear-gradient(#0a1930 21px, transparent 1%) center,
    rgba(40, 167, 69, 0.1);
  background-size: 22px 22px;
  opacity: 0.4;
}

.hero-animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 100px;
  color: #4ade80;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 16px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(120deg, #28a745, #98FB98);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 600px;
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 200px;
}

.feature-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(40, 167, 69, 0.4);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 36px;
  color: var(--primary-green);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: translateY(-5px);
  background: var(--primary-green);
}

.feature-item:hover .feature-icon i {
  color: #ffffff;
}

.feature-item span {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.btn-hero-primary {
  padding: 16px 32px;
  background: #2ebd4e;
  color: #ffffff;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.btn-hero-primary:hover {
  background: #34d058;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(40, 167, 69, 0.4);
}

.btn-hero-secondary {
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.stat:last-child::after {
  display: none;
}

.stat .number {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}

.stat .label {
  font-size: 16px;
  color: #e5e7eb;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(40, 167, 69, 0.2),
    rgba(10, 25, 48, 0.2)
  );
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.9);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  min-width: 220px;
}

.card-1 {
  top: 10%;
  right: -30px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  left: -40px;
  animation-delay: 2s;
}

.card-3 {
  bottom: -20px;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.card-content {
  text-align: center;
}

.card-content i {
  font-size: 28px;
  color: #4ade80;
  margin-bottom: 16px;
}

.card-content h5 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
}

.card-content p {
  font-size: 14px;
  color: #e5e7eb;
  margin: 0;
}

@media (max-width: 991px) {
  .hero-animated {
    padding: 100px 0;
  }

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

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

  .feature-item {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .hero-animated {
    padding: 80px 0;
  }

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

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat::after {
    display: none;
  }

  .feature-item {
    width: 100%;
  }

  .hero-image {
    margin-top: 40px;
  }

  .floating-card {
    display: none;
  }
}

/* Card Design - 現代卡片 */
.post-box,
.feature-item,
.stat-item,
.process-step {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.post-box::before,
.feature-item::before,
.stat-item::before,
.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.post-box:hover,
.feature-item:hover,
.stat-item:hover,
.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.post-box:hover::before,
.feature-item:hover::before,
.stat-item:hover::before,
.process-step:hover::before {
  transform: scaleX(1);
}

/* Section Headers - 現代標題設計 */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header h2,
.heading {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after,
.heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Center the heading for the order section */
.order .heading {
  text-align: left;
  font-size: 32px;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 50px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
}

.order .heading:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #28a745;
  margin: 15px 0 0;
}

/* Form Styling - 現代表單 */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.form-box {
  padding: 35px;
}

.form-group {
  margin-bottom: 20px;
}

.form-box label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 15px;
}

.form-box .inp,
.form-box select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.form-box .inp:focus,
.form-box select:focus {
  border-color: #28a745;
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.15);
  outline: none;
}

.form-box .sub-btn {
  width: 100%;
  padding: 14px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.form-box .sub-btn:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
}

/* Icons - 現代圖標設計 */
.feature-icon,
.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-icon::before,
.step-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon::before,
.process-step:hover .step-icon::before {
  width: 100px;
  height: 100px;
  top: 0;
  left: 0;
}

.feature-icon i,
.step-icon i {
  font-size: 2rem;
  color: var(--text-white);
  z-index: 2;
  position: relative;
}

/* Statistics - 現代統計設計 */
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-green);
  display: block;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0;
}

/* Process Steps - 現代流程設計 */
.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  box-shadow: var(--shadow-green);
}

/* Sections - 現代區段設計 */
.course-features,
.learning-process,
.testimonials {
  /* padding: 6rem 0; */
  background: var(--bg-section);
  position: relative;
}

.course-features::before,
.learning-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%2328a745" opacity="0.1"/></svg>');
  background-size: 30px 30px;
  pointer-events: none;
}

#cta {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#cta .container {
  position: relative;
  z-index: 2;
}

#cta h3,
#cta p {
  color: var(--text-white);
}

#cta .cta-btn {
  background: var(--bg-white);
  color: var(--primary-green);
  border: 2px solid var(--bg-white);
}

#cta .cta-btn:hover {
  background: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
}

/* ===============================================
   MODERN PARTNERS SECTION STYLES
   =============================================== */

.simple-partners {
  position: relative;
  /* padding: 120px 0; */
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 50%, #f0f9ff 100%);
  overflow: hidden;
}

/* Background Elements */
.partners-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(40, 167, 69, 0.03) 50%, transparent 100%);
  z-index: 1;
}

.partners-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.partner-particle {
  position: absolute;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: partnersFloat 10s ease-in-out infinite;
}

.partner-particle.particle-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.partner-particle.particle-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.partner-particle.particle-3 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
}

.partner-particle.particle-4 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  right: 5%;
  animation-delay: 1s;
}

.partner-particle.particle-5 {
  width: 90px;
  height: 90px;
  top: 60%;
  left: 60%;
  animation-delay: 3s;
}

@keyframes partnersFloat {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.1) rotate(180deg); opacity: 0.6; }
}

/* Container */
.modern-partners .container {
  position: relative;
  z-index: 2;
}

/* Header Section */
.partners-header {
  text-align: center;
  margin-bottom: 80px;
}

.partners-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.partners-badge .badge-icon {
  font-size: 1.2rem;
  animation: partnersBounce 3s ease-in-out infinite;
}

@keyframes partnersBounce {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

.partners-badge .badge-text {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.partners-title {
  margin-bottom: 24px;
}

.partners-title .title-primary {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.partners-title .title-secondary {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partners-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Partners Categories */
.partners-categories {
  margin-bottom: 80px;
}

.category-section {
  margin-bottom: 60px;
}

.category-header {
  text-align: center;
  margin-bottom: 40px;
}

.category-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.category-title i {
  color: var(--primary-green);
  font-size: 1.5rem;
}

.category-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Global Partners Header Styles */
.global-partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(32, 201, 151, 0.15));
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(40, 167, 69, 0.3);
  margin-bottom: 24px;
}

.header-badge .badge-icon {
  font-size: 20px;
}

.header-badge .badge-text {
  font-weight: 600;
  color: #28a745;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.main-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1f2937;
}

.main-title .title-line {
  display: block;
}

.main-title .title-highlight {
  background: linear-gradient(135deg, #28a745, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.section-description {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Universities Grid Styles */
.universities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.university-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.university-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #28a745, #20c997);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.university-card:hover::before {
  transform: scaleX(1);
}

.university-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.15);
}

.university-card.featured {
  border: 2px solid rgba(40, 167, 69, 0.3);
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(255, 255, 255, 0.95));
}

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

.university-logo {
  width: 60px;
  height: 60px;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
}

.university-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  background: none;
  mix-blend-mode: multiply;
}

.ranking-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.university-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  line-height: 1.3;
}

.university-location {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.university-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.university-stats .stat {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.programs-offered {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.program-tag {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(32, 201, 151, 0.15));
  color: #1f2937;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Achievement Section Styles */
.achievement-section {
  text-align: center;
  margin-bottom: 60px;
}

.achievement-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #28a745, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achievement-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.achievement-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(40, 167, 69, 0.15);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.achievement-content {
  text-align: center;
}

.achievement-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 8px;
}

.achievement-label {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 600;
}

/* Global CTA Styles */
.global-cta {
  position: relative;
  margin-top: 80px;
  padding: 60px 40px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(40, 167, 69, 0.2);
}

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

.cta-pattern {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
  background-size: 100px 100px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #28a745, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary-cta {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary-cta:hover::before {
  left: 100%;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
  color: white;
  text-decoration: none;
}

.btn-secondary-cta {
  background: rgba(255, 255, 255, 0.9);
  color: #28a745;
  border: 2px solid #28a745;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
  background: #28a745;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.2);
  text-decoration: none;
}

/* Responsive Design for New Partners Section */
@media (max-width: 1200px) {
  .universities-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .university-card {
    padding: 20px;
  }
  
  .main-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 992px) {
  .simple-partners {
    padding: 80px 0;
  }
  
  .global-partners-header {
    margin-bottom: 50px;
  }
  
  .main-title {
    font-size: 2.2rem;
  }
  
  .section-description {
    font-size: 1.1rem;
  }
  
  .universities-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .achievement-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .achievement-item {
    padding: 25px 15px;
  }
  
  .global-cta {
    padding: 50px 30px;
    margin-top: 60px;
  }
  
  .cta-content h3 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .simple-partners {
    padding: 60px 0;
  }
  
  .global-partners-header {
    margin-bottom: 40px;
  }
  
  .main-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .universities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .university-card {
    padding: 20px;
  }
  
  .university-logo {
    width: 50px;
    height: 50px;
  }
  
  .university-name {
    font-size: 1.2rem;
  }
  
  .achievement-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .achievement-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .achievement-item {
    padding: 20px 15px;
  }
  
  .achievement-number {
    font-size: 2rem;
  }
  
  .achievement-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .global-cta {
    padding: 40px 25px;
    margin-top: 50px;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .global-partners-header {
    margin-bottom: 30px;
  }
  
  .header-badge {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .main-title {
    font-size: 1.6rem;
  }
  
  .section-description {
    font-size: 0.95rem;
  }
  
  .university-card {
    padding: 15px;
  }
  
  .university-logo {
    width: 45px;
    height: 45px;
  }
  
  .university-name {
    font-size: 1.1rem;
  }
  
  .university-stats {
    gap: 10px;
  }
  
  .university-stats .stat {
    font-size: 11px;
    padding: 3px 8px;
  }
  
  .program-tag {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .achievement-title {
    font-size: 1.4rem;
  }
  
  .achievement-stats {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .achievement-item {
    padding: 20px 10px;
  }
  
  .achievement-number {
    font-size: 1.8rem;
  }
  
  .achievement-label {
    font-size: 1rem;
  }
  
  .global-cta {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}
  transition: all 0.3s ease;
  border: 1px solid rgba(40, 167, 69, 0.1);
  backdrop-filter: blur(10px);
}

.simple-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(40, 167, 69, 0.2);
  border-color: var(--primary-green);
}

.simple-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary-green), #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.simple-stats .stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Simple Call to Action */
.simple-cta {
  text-align: center;
  margin-top: 60px;
}

.btn-simple-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-green), #20c997);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  border: none;
}

.btn-simple-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
  color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .partners-showcase {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .simple-partners {
    padding: 100px 0;
  }
  
  .partners-title .title-primary,
  .partners-title .title-secondary {
    font-size: 2.5rem;
  }
  
  .slideshow-wrapper {
    max-width: 500px;
    padding: 50px 30px;
  }
  
  .slides-container {
    height: 280px;
  }
  
  .partner-image {
    width: 180px;
    height: 100px;
  }
  
  .slideshow-nav {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .slideshow-nav.prev {
    left: -22px;
  }
  
  .slideshow-nav.next {
    right: -22px;
  }
}

@media (max-width: 768px) {
  .simple-partners {
    padding: 80px 0;
  }
  
  .partners-header {
    margin-bottom: 60px;
  }
  
  .partners-title .title-primary,
  .partners-title .title-secondary {
    font-size: 2.2rem;
  }
  
  .partners-description {
    font-size: 1.1rem;
    padding: 0 15px;
  }
  
  .slideshow-wrapper {
    max-width: 400px;
    padding: 40px 20px;
  }
  
  .slides-container {
    height: 250px;
  }
  
  .partner-image {
    width: 160px;
    height: 90px;
    padding: 15px;
  }
  
  .partner-name h4 {
    font-size: 1.3rem;
  }
  
  .partner-name p {
    font-size: 1rem;
  }
  
  .slideshow-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .slideshow-nav.prev {
    left: -20px;
  }
  
  .slideshow-nav.next {
    right: -20px;
  }
  
  .slideshow-dots {
    gap: 8px;
    margin-top: 30px;
  }
  
  .slideshow-dots .dot {
    width: 10px;
    height: 10px;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .simple-stats .stat-item {
    padding: 20px 15px;
  }
  
  .simple-stats .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .partners-header {
    margin-bottom: 50px;
  }
  
  .partners-title .title-primary,
  .partners-title .title-secondary {
    font-size: 1.8rem;
  }
  
  .slideshow-wrapper {
    max-width: 320px;
    padding: 30px 15px;
  }
  
  .slides-container {
    height: 220px;
  }
  
  .partner-image {
    width: 140px;
    height: 80px;
    padding: 12px;
  }
  
  .partner-name h4 {
    font-size: 1.2rem;
  }
  
  .partner-name p {
    font-size: 0.9rem;
  }
  
  .slideshow-nav {
    display: none; /* Hide arrows on very small screens */
  }
  
  .category-title {
    font-size: 1.5rem;
  }
  
  .partnership-stats .stats-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .partnership-stats .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .partners-cta .cta-content h3 {
    font-size: 1.6rem;
  }
  
  .partners-cta .cta-content p {
    font-size: 1rem;
  }
}

/* ===============================================
   END MODERN PARTNERS SECTION STYLES
   =============================================== */

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 4rem 0 2rem;
}

.footer h3,
.footer p,
.footer a {
  color: var(--text-white);
}

.footer a:hover {
  color: var(--secondary-green);
}

/* Social Links */
.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

/* ===== MOBILE NAVIGATION SYSTEM ===== */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Navigation Container - Enhanced Design */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e8f5e8 100%);
  padding: 120px 40px 40px 40px;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.2);
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1002;
  visibility: hidden;
  overflow-y: auto;
  border-left: 4px solid #28a745;
  backdrop-filter: blur(10px);
}

.nav-mobile.show {
  right: 0;
  visibility: visible;
}

/* Mobile Navigation Header */
.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(40, 167, 69, 0.2);
}

.nav-mobile-header h3 {
  color: #2c3e50;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-mobile-close {
  /* background: #dc3545; */
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: none; /* Hide the close button visually */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.nav-mobile-close:hover {
  background: #c82333;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.nav-mobile-close i {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile li {
  margin-bottom: 15px;
  opacity: 0;
  transform: translateX(40px);
  animation: slideInMenu 0.4s ease forwards;
}

.nav-mobile li:nth-child(1) { animation-delay: 0.1s; }
.nav-mobile li:nth-child(2) { animation-delay: 0.2s; }
.nav-mobile li:nth-child(3) { animation-delay: 0.3s; }
.nav-mobile li:nth-child(4) { animation-delay: 0.4s; }
.nav-mobile li:nth-child(5) { animation-delay: 0.5s; }
.nav-mobile li:nth-child(6) { animation-delay: 0.6s; }

.nav-mobile li a {
  display: block;
  padding: 20px 25px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-mobile li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-mobile li a:hover::before {
  left: 100%;
}

.nav-mobile li a:hover,
.nav-mobile li a.active {
  background: #28a745;
  border-color: #28a745;
  color: #ffffff;
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

@keyframes slideInMenu {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

  /* Hero Section Mobile */
  .hero-animated {
    padding: 140px 0 60px;
    min-height: auto;
  }

  .hero-animated .row {
    min-height: auto;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero-title {
    font-size: 2.8rem;
    text-align: center;
  }

  .hero-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 100%;
    margin: 0 auto 2rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
  }

  .hero-features .feature-item {
    max-width: 280px;
    width: 100%;
  }

  .hero-actions {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0;
  }

  .floating-card {
    display: none;
  }

  .hero-visual {
    margin-top: 0;
    padding: 1rem;
  }

  .hero-image .main-image {
    height: 300px;
  }

  /* Sections Mobile */
  .section-header h2,
  .heading {
    font-size: 2rem;
  }

  .form-box {
    padding: 2rem;
  }

  .post-box,
  .feature-item,
  .stat-item,
  .process-step {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }


@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .section-header h2,
  .heading {
    font-size: 1.8rem;
  }

  .btn-get-started,
  .btn,
  .sub-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Gallery Responsive */
.responsive {
  padding: 0 10px;
  float: left;
  width: 25%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 50%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.gallery {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid var(--border-light);
}

.gallery:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

/* 滾動條設計 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-green);
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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


/* ===== RESPONSIVE NAVIGATION CONTROLS ===== */

/* Mobile Menu Button - Enhanced Visibility */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 2px solid #28a745;
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1003;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  margin-left: auto;
}

.mobile-menu-btn:hover {
  background: #28a745;
  transform: scale(1.05);
}

.mobile-menu-btn:hover .hamburger-line {
  background: #ffffff;
}

/* Hamburger Lines */
.hamburger-line {
  width: 100%;
  height: 3px;
  background: #28a745;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Active state animation */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #ffffff;
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #ffffff;
}

.mobile-menu-btn.active {
  background: #71aa8f;
  border-color: #059652;
}

/* Desktop Navigation (Default) */
@media (min-width: 992px) {
  .nav-desktop {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mobile-menu-btn {
    display: none !important;
  }
  
  .nav-mobile {
    display: none !important;
  }
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .nav-desktop {
    display: none !important;
  }
  
  .mobile-menu-btn {
    display: flex !important;
  }
  
  .nav-mobile {
    display: block !important;
  }

  .header .container-fluid {
    justify-content: space-between;
  }

  .navbar {
    position: static;
  }
}

.order {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.order .heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #28a745;
  padding: 30px;
  margin: 0;
  background: #fff;
}

.form-box {
  padding: 35px;
}

.form-group {
  margin-bottom: 20px;
}

.form-box label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 15px;
}

.form-box .inp,
.form-box select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.form-box .inp:focus,
.form-box select:focus {
  border-color: #28a745;
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.15);
  outline: none;
}

.form-box .sub-btn {
  width: 100%;
  padding: 14px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.form-box .sub-btn:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
}

.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.about {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(0, 123, 255, 0.1) 100%);
  border-radius: 50%;
  transform: translate(200px, -200px);
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
}

.tech-heading {
  text-align: center;
  margin-bottom: 50px;
}

.gradient-text {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.heading-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.tech-description {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(0, 123, 255, 0.05) 100%);
  border-radius: 20px;
  z-index: -1;
}

.main-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tech-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.15);
}

.stat-icon {
  font-size: 2rem;
  color: #28a745;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

@media (max-width: 768px) {
  .tech-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
    max-width: 250px;
  }
  
  .gradient-text {
    font-size: 2rem;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(40, 167, 69, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 36px;
  color: var(--primary-green);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: translateY(-5px);
  background: var(--primary-green);
}

.feature-item:hover .feature-icon i {
  color: #ffffff;
}

.feature-item h3 {
  font-size: 1.25rem;
  color: #212529;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-item p {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-item {
    padding: 25px;
  }
}

/* ===============================================
   REVOLUTIONARY NEW BANNER DESIGN STYLES
   =============================================== */

/* Main Banner Container */
.hero-banner {
  min-height: 80vh; /* reduced from 100vh */
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
  overflow: hidden;
  padding-top: 120px; /* was 150px */
}

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

.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(40, 167, 69, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(32, 201, 151, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(40, 167, 69, 0.03) 0%, transparent 50%);
  animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.float-circle, .float-square {
  position: absolute;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  opacity: 0.1;
}

.float-circle {
  border-radius: 50%;
}

.circle-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation: floatUpDown 6s ease-in-out infinite;
}

.circle-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 20%;
  animation: floatUpDown 8s ease-in-out infinite reverse;
}

.circle-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 70%;
  animation: floatUpDown 7s ease-in-out infinite;
}

.square-1 {
  width: 40px;
  height: 40px;
  top: 30%;
  right: 10%;
  animation: rotateFloat 10s linear infinite;
}

.square-2 {
  width: 25px;
  height: 25px;
  bottom: 40%;
  left: 15%;
  animation: rotateFloat 12s linear infinite reverse;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
}

@keyframes rotateFloat {
  0% { transform: rotate(0deg) translateY(0px); }
  50% { transform: rotate(180deg) translateY(-20px); }
  100% { transform: rotate(360deg) translateY(0px); }
}

/* Top Announcement Bar */
.banner-top {
  position: relative;
  z-index: 3;
  padding: 1rem 0;
}

.announcement-bar {
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
  border-radius: 50px;
  padding: 1rem 2rem;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: white;
  font-weight: 600;
}

.announcement-icon {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.announcement-cta {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.announcement-cta:hover {
  background: white;
  color: var(--primary-green);
  transform: scale(1.05);
}

/* Main Banner Content */
.banner-main {
  position: relative;
  z-index: 2;
  /* padding: 3rem 0; */
}

.banner-content {
  padding: 2rem 0;
  position: relative;
  z-index: 5;
}

/* University Badge */
.university-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(40, 167, 69, 0.2);
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: fit-content;
}

.badge-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  border: 3px solid rgba(40, 167, 69, 0.3);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary-green);
  letter-spacing: 1px;
}

.badge-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Main Headline */
.banner-headline {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 25px;
  border: 3px solid rgba(40, 167, 69, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-right: 2rem;
}

.banner-headline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
  border-radius: 22px;
  z-index: -1;
}

.headline-primary {
  color: var(--text-dark);
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.headline-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: none;
  font-weight: 950;
}

.headline-accent::before {
  content: 'Thạc Sĩ & Tiến Sĩ';
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 4px rgba(40, 167, 69, 0.3));
  z-index: -1;
}

.headline-secondary {
  color: var(--text-secondary);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.headline-highlight {
  color: var(--primary-green);
  position: relative;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  font-weight: 950;
}

.headline-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-primary);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(40, 167, 69, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: var(--primary-green);
  transition: all 0.3s ease;
  border: 2px solid rgba(40, 167, 69, 0.2);
}

.benefit-card:hover .benefit-icon {
  background: var(--primary-green);
  color: white;
  transform: scale(1.1);
}

.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.benefit-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* CTA Buttons */
.banner-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-main-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-main-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-main-cta:hover::before {
  left: 100%;
}

.btn-main-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
  color: white;
}

.btn-secondary-cta {
  background: rgba(40, 167, 69, 0.1);
  color: var(--primary-green);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(40, 167, 69, 0.2);
}

.btn-secondary-cta:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(40, 167, 69, 0.1);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Banner Visual */
.banner-visual {
  position: relative;
  padding: 2rem;
}

.visual-main {
  position: relative;
  z-index: 1;
}

.image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.main-visual-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-wrapper:hover .main-visual-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
  pointer-events: none;
}

/* Floating Course Cards */
.course-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(40, 167, 69, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-card:hover .course-icon {
  transform: scale(1.1);
  border-color: var(--primary-green);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.card-mba {
  top: 10%;
  left: -30%;
  animation: floatUpDown 6s ease-in-out infinite;
  z-index: 1;
}

.card-msc {
  top: 45%;
  right: -30%;
  animation: floatUpDown 8s ease-in-out infinite reverse;
  z-index: 1;
}

.card-dba {
  bottom: 5%;
  left: -25%;
  animation: floatUpDown 7s ease-in-out infinite;
  z-index: 1;
}

.course-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 2px solid rgba(40, 167, 69, 0.3);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
}

.course-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: var(--text-dark);
}

.course-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0 0 0.25rem 0;
}

.course-duration {
  font-size: 0.75rem;
  color: var(--primary-green);
  font-weight: 600;
  background: rgba(40, 167, 69, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  display: inline-block;
}

/* Achievement Badge */
.achievement-badge {
  position: absolute;
  top: 10%;
  right: 10%;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 15px 35px rgba(40, 167, 69, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

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

.achievement-icon {
  font-size: 1.5rem;
}

.achievement-text {
  display: flex;
  flex-direction: column;
}

.achievement-title {
  font-weight: 700;
  font-size: 0.9rem;
}

.achievement-subtitle {
  font-size: 0.7rem;
  opacity: 0.9;
}

/* Bottom CTA Strip */
.banner-bottom {
  position: relative;
  z-index: 2;
  /* padding: 2rem 0; */
}

.bottom-cta {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 25px;
  border: 1px solid rgba(40, 167, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.cta-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

.btn-bottom-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.btn-bottom-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
  color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .course-card {
    min-width: 180px;
  }
  
  .card-mba, .card-dba {
    left: -10%;
  }
  
  .card-msc {
    right: -15%;
  }
}

@media (max-width: 992px) {
  .banner-headline {
    font-size: 3rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .trust-indicators {
    gap: 2rem;
  }
  
  .bottom-cta {
    flex-direction: column;
    text-align: center;
  }
  
  .course-card {
    position: static;
    margin: 1rem 0;
    animation: none;
  }
  
  .achievement-badge {
    position: static;
    margin: 1rem auto;
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 65vh;
    padding-top: 100px;
  }
  
  .banner-headline {
    font-size: 2.5rem;
    margin-right: 0;
    padding: 1.5rem;
    border-width: 2px;
  }
  
  .announcement-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .banner-actions {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .trust-number {
    font-size: 2rem;
  }
  
  .university-badge {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .banner-headline {
    font-size: 2rem;
    padding: 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
  }
  
  .headline-highlight::after {
    height: 4px;
    bottom: -3px;
  }
  
  .announcement-bar {
    padding: 0.75rem 1rem;
  }
  
  .btn-main-cta, .btn-secondary-cta, .btn-bottom-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .banner-visual {
    padding: 1rem;
  }
  
  .main-visual-img {
    height: 300px;
  }
}

/* ===============================================
   END REVOLUTIONARY BANNER DESIGN STYLES
   =============================================== */

/* ===============================================
   TECH COURSES SECTION - FUTURISTIC DESIGN
   =============================================== */

/* Main Section */
.tech-courses {
  position: relative;
  padding: 50px 0; /* add top/bottom space */
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #f0fdf4 70%, #ecfdf5 100%);
  overflow: hidden;
  color: #1f2937;
}

/* Animated Background */
.tech-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(40, 167, 69, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 167, 69, 0.1) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-green);
  border-radius: 50%;
  opacity: 0.7;
  animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.particle:nth-child(2) {
  left: 30%;
  animation-delay: 3s;
  animation-duration: 18s;
}

.particle:nth-child(3) {
  left: 50%;
  animation-delay: 6s;
  animation-duration: 12s;
}

.particle:nth-child(4) {
  left: 70%;
  animation-delay: 9s;
  animation-duration: 20s;
}

.particle:nth-child(5) {
  left: 90%;
  animation-delay: 12s;
  animation-duration: 16s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.tech-courses .container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.tech-section-header {
  text-align: center;
  margin-bottom: 80px;
}

.tech-title-wrapper {
  position: relative;
}

.tech-badge {
  display: inline-block;
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 1rem; /* 16 px – consistent across all sections */
  font-weight: 700;
  text-transform: uppercase; /* ensure all words have same perceived size */
  letter-spacing: .5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.tech-badge i {
  font-size: 1rem;
  margin-right: 6px;
}

.tech-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.title-line {
  color: #1f2937;
  text-shadow: none;
}

.title-highlight {
  background: linear-gradient(45deg, var(--primary-green), var(--secondary-green), #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: none;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
  border-radius: 2px;
}

.tech-subtitle p {
  font-size: 1.2rem;
  color: rgba(31, 41, 55, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Courses Grid */
.tech-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Course Card */
.tech-course-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  height: fit-content;
}

.tech-course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.tech-course-card:hover::before {
  opacity: 1;
}

.tech-course-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-green);
  box-shadow: 0 30px 60px rgba(40, 167, 69, 0.2);
}

/* Course Image */
.course-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tech-course-card:hover .course-image {
  transform: scale(1.1);
}

.course-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.course-level {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.course-duration {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Course Content */
.course-content {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.course-category {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-size: 0.85rem;
  font-weight: 600;
}

.course-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffd700;
  font-weight: 700;
  font-size: 0.85rem;
}

.course-title {
  margin-bottom: 20px;
}

.title-main {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 5px;
}

.title-sub {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-green);
  font-weight: 600;
}

/* University Info */
.university-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(40, 167, 69, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.university-logo {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 3px solid rgba(40, 167, 69, 0.3);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
}

.university-details h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 5px 0;
}

.university-details span {
  font-size: 0.8rem;
  color: rgba(31, 41, 55, 0.7);
}

.course-description {
  color: rgba(31, 41, 55, 0.8);
  line-height: 1.5;
  margin-bottom: 25px;
  font-size: 0.9rem;
}

/* Course Features */
.course-features {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(40, 167, 69, 0.1);
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid rgba(40, 167, 69, 0.3);
  font-size: 0.8rem;
  color: var(--primary-green);
  font-weight: 600;
}

.feature i {
  font-size: 0.9rem;
}

/* Course Action */
.course-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.tech-btn-primary {
  background: var(--gradient-primary);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.tech-btn-primary:hover::before {
  left: 100%;
}

.tech-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
  color: white;
}

.course-price {
  text-align: right;
}

.price-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(31, 41, 55, 0.6);
  margin-bottom: 3px;
}

.price-value {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-green);
}

/* Tech Stats Section */
.tech-stats-section {
  margin-top: 80px;
  padding: 60px 0;
  border-top: 1px solid rgba(40, 167, 69, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.8);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(40, 167, 69, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.2);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
  border-color: var(--primary-green);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
}

.university-info:hover .university-logo {
  transform: scale(1.1);
  border-color: var(--primary-green);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 3px solid rgba(40, 167, 69, 0.3);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.2);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tech-courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .tech-title {
    font-size: 3rem;
  }
  
  .tech-courses-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .course-action {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .course-price {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .tech-courses {
    padding: 80px 0;
  }
  
  .tech-title {
    font-size: 2.5rem;
  }
  
  .tech-courses-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-course-card {
    margin: 0 10px;
  }
  
  .course-content {
    padding: 20px;
  }
  
  .course-features {
    gap: 10px;
  }
  
  .feature {
    flex: 1;
    justify-content: center;
    min-width: 100px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .university-logo {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }
  
  .course-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
  
  .badge-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .tech-title {
    font-size: 2rem;
  }
  
  .tech-subtitle p {
    font-size: 1rem;
  }
  
  .course-image-wrapper {
    height: 170px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-course-card {
    margin: 0;
  }
  
  .university-logo {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }
  
  .stat-icon {
    width: 65px;
    height: 65px;
    font-size: 1.4rem;
  }
  
  .benefit-icon {
    width: 65px;
    height: 65px;
    font-size: 1.4rem;
  }
  
  .course-icon {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }
  
  .badge-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
}

/* ===============================================
   END TECH COURSES SECTION STYLES
   =============================================== */

/* ===============================================
   PREMIUM ABOUT SECTION STYLES
   =============================================== */

.premium-about {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf9 50%, #ecfdf5 100%);
  overflow: hidden;
}

/* Animated Background */
.about-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.05));
  animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation-delay: 10s;
}

.shape-4 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 15s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Content Wrapper */
.premium-about .container {
  position: relative;
  z-index: 2;
}

.about-content-wrapper {
  padding-right: 2rem;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(40, 167, 69, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(40, 167, 69, 0.2);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-green);
}

.badge-icon {
  font-size: 1.2rem;
}

/* Premium Title */
.premium-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.title-line-1,
.title-line-2 {
  color: var(--text-dark);
}

.title-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Description */
.premium-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Key Points */
.key-points {
  margin-bottom: 2.5rem;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.point-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Action Buttons */
.about-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.premium-btn-main {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
  position: relative;
  overflow: hidden;
}

.premium-btn-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.premium-btn-main:hover::before {
  left: 100%;
}

.premium-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
  color: white;
}

.premium-btn-video {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.play-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.premium-btn-video:hover .play-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
}

.premium-btn-video:hover {
  color: var(--primary-green);
}

/* Visual Side */
.about-visual {
  position: relative;
  padding: 2rem;
}

.main-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.main-about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image-wrapper:hover .main-about-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
  pointer-events: none;
}

/* Floating Stats */
.floating-stats {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(40, 167, 69, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  min-width: 150px;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-1 {
  top: 10%;
  left: -20%;
}

.stat-2 {
  top: 30%;
  right: -25%;
}

.stat-3 {
  bottom: 30%;
  left: -15%;
}

.stat-4 {
  bottom: 10%;
  right: -20%;
}

.stat-card .stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Achievement Badge */
.achievement-floating {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-primary);
  color: white;
  padding: 1.5rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.3);
  z-index: 3;
  min-width: 250px;
}

.achievement-icon {
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.achievement-content {
  display: flex;
  flex-direction: column;
}

.achievement-title {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.achievement-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stat-1, .stat-3 {
    left: -10%;
  }
  
  .stat-2, .stat-4 {
    right: -15%;
  }
}

@media (max-width: 992px) {
  .premium-about {
    padding: 80px 0;
  }
  
  .premium-title {
    font-size: 3rem;
  }
  
  .about-content-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .about-visual {
    padding: 1rem;
  }
  
  .main-about-image {
    height: 400px;
  }
  
  .stat-card {
    position: static;
    margin: 1rem 0;
    transform: none !important;
  }
  
  .floating-stats {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .achievement-floating {
    position: static;
    transform: none;
    margin: 2rem auto 0;
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .premium-title {
    font-size: 2.5rem;
  }
  
  .premium-description {
    font-size: 1rem;
  }
  
  .about-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .premium-btn-main,
  .premium-btn-video {
    justify-content: center;
  }
  
  .main-about-image {
    height: 300px;
  }
  
  .floating-stats {
    grid-template-columns: 1fr;
  }
  
  .achievement-floating {
    min-width: auto;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .premium-about {
    padding: 60px 0;
  }
  
  .premium-title {
    font-size: 2rem;
  }
  
  .section-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .achievement-floating {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    min-width: auto;
  }
}

/* ===============================================
   END PREMIUM ABOUT SECTION STYLES
   =============================================== */

/* ===============================================
   REVOLUTIONARY WHY CHOOSE US SECTION STYLES
   =============================================== */

.revolutionary-why-choose {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
  overflow: hidden;
}

/* Dynamic Background */
.revolutionary-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(40, 167, 69, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 167, 69, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.floating-elements-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-element {
  position: absolute;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatUpDown 6s ease-in-out infinite;
}

.element-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.element-3 {
  width: 120px;
  height: 120px;
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}

.element-4 {
  width: 90px;
  height: 90px;
  bottom: 20%;
  right: 25%;
  animation-delay: 3s;
}

.element-5 {
  width: 110px;
  height: 110px;
  top: 50%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Container */
.revolutionary-why-choose .container {
  position: relative;
  z-index: 2;
}

/* Revolutionary Header */
.revolutionary-header {
  text-align: center;
  margin-bottom: 80px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.badge-text {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.revolutionary-title {
  margin-bottom: 24px;
}

.title-main {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.title-highlight {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.title-subtitle {
  display: block;
  font-size: 1.1rem;
  color: rgba(31, 41, 55, 0.7);
  font-weight: 400;
}

.revolutionary-description {
  font-size: 1.2rem;
  color: rgba(31, 41, 55, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Revolutionary Features Grid */
.revolutionary-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  align-items: stretch;
}

.revolutionary-feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(40, 167, 69, 0.1);
  border-radius: 24px;
  padding: 40px 32px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.revolutionary-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.revolutionary-feature-card:hover::before {
  opacity: 1;
}

.card-large {
  grid-column: span 1;
}

.card-accent {
  border-color: rgba(40, 167, 69, 0.3);
  background: rgba(40, 167, 69, 0.05);
}

.card-premium {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.05);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.revolutionary-feature-card:hover .card-glow {
  opacity: 1;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-green);
}

.feature-icon-revolutionary {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

.icon-orbit {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(40, 167, 69, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-green);
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.revolutionary-feature-card:hover .feature-icon-revolutionary {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(40, 167, 69, 0.3);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.feature-description {
  color: rgba(31, 41, 55, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-benefits {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.benefit-tag {
  background: rgba(40, 167, 69, 0.2);
  color: var(--primary-green);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.feature-mentor-info {
  margin-top: 20px;
}

.mentor-stats {
  display: flex;
  gap: 16px;
}

.mentor-stats span {
  background: rgba(40, 167, 69, 0.2);
  color: var(--primary-green);
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.graduation-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
}

.flag-icon {
  font-size: 1.2rem;
}

.event-text {
  color: #ffd700;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Revolutionary Stats */
.revolutionary-stats {
  margin-bottom: 40px;
}

.stats-header {
  text-align: center;
  margin-bottom: 50px;
}

.stats-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.stats-header p {
  color: rgba(31, 41, 55, 0.7);
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.stat-card-revolutionary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(40, 167, 69, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.stat-card-revolutionary:hover {
  transform: translateY(-8px);
  border-color: rgba(40, 167, 69, 0.3);
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: white;
  transition: transform 0.4s ease;
}

.stat-card-revolutionary:hover .stat-icon {
  transform: scale(1.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.stat-sublabel {
  font-size: 0.9rem;
  color: rgba(31, 41, 55, 0.6);
}

/* Revolutionary CTA */
.revolutionary-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(40, 167, 69, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  backdrop-filter: blur(10px);
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(31, 41, 55, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
  color: white;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.cta-btn-secondary:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .revolutionary-features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  
  .card-large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .revolutionary-why-choose {
    padding: 80px 0;
  }
  
  .title-main,
  .title-highlight {
    font-size: 2.5rem;
  }
  
  .revolutionary-features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 20px;
  }
  
  .card-large {
    grid-column: auto;
  }
  
  .revolutionary-feature-card {
    padding: 30px 24px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .revolutionary-header {
    margin-bottom: 60px;
  }
  
  .title-main,
  .title-highlight {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .revolutionary-cta {
    padding: 40px 24px;
  }
}

/* ===============================================
   END REVOLUTIONARY WHY CHOOSE US SECTION STYLES
   =============================================== */

/* ===============================================
   NEXT-GEN SUCCESS STORIES SECTION STYLES
   =============================================== */

.nextgen-success-stories {
  position: relative;
  padding: 50px 0; /* add top/bottom space */
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf9 50%, #ecfdf5 100%);
  overflow: hidden;
}

/* Animated Background */
.success-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-success-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.success-particle {
  position: absolute;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: successFloat 8s ease-in-out infinite;
}

.particle-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 80px;
  height: 80px;
  top: 25%;
  right: 20%;
  animation-delay: 2s;
}

.particle-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

.particle-4 {
  width: 60px;
  height: 60px;
  bottom: 35%;
  right: 10%;
  animation-delay: 1s;
}

.particle-5 {
  width: 90px;
  height: 90px;
  top: 50%;
  left: 50%;
  animation-delay: 3s;
}

@keyframes successFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
}

.success-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(40, 167, 69, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 167, 69, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridSlide 25s linear infinite;
}

@keyframes gridSlide {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Container */
.nextgen-success-stories .container {
  position: relative;
  z-index: 2;
}

/* Header Section */
.success-header {
  text-align: center;
  margin-bottom: 80px;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.2rem;
  animation: bounceRotate 3s ease-in-out infinite;
}

@keyframes bounceRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(10deg) scale(1.1); }
}

.badge-text {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.success-title {
  margin-bottom: 24px;
}

.title-primary {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.title-secondary {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Success Stories Grid */
.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 30px;
  margin-bottom: 80px;
  align-items: start;
}

.success-story-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(40, 167, 69, 0.1);
  border-radius: 24px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: fit-content;
}

.success-story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.3);
}

.story-content {
  display: flex;
  flex-direction: column;
  height: auto;
  flex: 1;
}

.story-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.success-story-card:hover .story-background {
  opacity: 1;
}

/* Story Header */
.story-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.story-header.compact {
  gap: 12px;
  margin-bottom: 16px;
}

.student-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-green);
  flex-shrink: 0;
}

.student-avatar.small {
  width: 60px;
  height: 60px;
  border-width: 2px;
}

.student-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.verified-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  border: 3px solid white;
}

.student-info {
  flex: 1;
}

.student-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.story-header.compact .student-name {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.student-degree {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.graduation-year {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Story Rating */
.story-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.story-rating.compact {
  margin-bottom: 12px;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars.small {
  gap: 2px;
}

.stars i {
  color: #ffc107;
  font-size: 1.2rem;
}

.stars.small i {
  font-size: 1rem;
}

.rating-text {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Story Quote */
.story-quote {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  z-index: 1;
}

.quote-text {
  background: rgba(40, 167, 69, 0.05);
  padding: 24px 20px 20px 30px;
  border-radius: 20px;
  border-left: 4px solid var(--primary-green);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
}

/* Story Text */
.story-text {
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* Story Achievement */
.story-achievement {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(40, 167, 69, 0.1);
  padding: 12px 16px;
  border-radius: 15px;
  border: 1px solid rgba(40, 167, 69, 0.2);
  flex: 1;
  min-width: 200px;
}

.achievement-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.achievement-text {
  display: flex;
  flex-direction: column;
}

.achievement-title {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.achievement-desc {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* Story Highlight */
.story-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  margin-bottom: 0;
}

.story-highlight i {
  font-size: 1rem;
}

/* Success Statistics */
.success-statistics {
  margin-bottom: 40px;
}

.stats-container {
  gap: 24px;
}

.stat-item {
  padding: 28px 20px;
}

@media (max-width: 768px) {
  .stat-item {
    padding: 24px 18px;
  }
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: white;
  transition: transform 0.4s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
}

/* Success CTA */
.success-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(40, 167, 69, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  backdrop-filter: blur(10px);
}

.cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-success-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.btn-success-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
  color: white;
}

.btn-success-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
}

.btn-success-secondary:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nextgen-success-stories {
    padding: 80px 0;
  }
  
  .title-primary,
  .title-secondary {
    font-size: 2.2rem;
  }
  
  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .success-story-card {
    padding: 20px;
  }
  
  .story-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .story-header.compact {
    flex-direction: row;
    text-align: left;
    margin-bottom: 12px;
  }
  
  .achievement-item {
    min-width: auto;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
    justify-items: center;
  }
  
  .stat-item {
    padding: 32px 20px;
    width: 100%;
    max-width: 350px;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .btn-success-primary,
  .btn-success-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .success-header {
    margin-bottom: 60px;
  }
  
  .title-primary,
  .title-secondary {
    font-size: 1.8rem;
  }
  
  .success-cta {
    padding: 40px 24px;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .story-header.compact {
    flex-direction: column;
    text-align: center;
  }
  
  .achievement-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .stats-container {
    max-width: 320px;
    gap: 12px;
  }
  
  .stat-item {
    padding: 24px 16px;
    max-width: 300px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    font-size: 1.3rem;
  }
}

/* ===============================================
   END NEXT-GEN SUCCESS STORIES SECTION STYLES
   =============================================== */

/* ===============================================
   GRADUATION CEREMONY SECTION STYLES
   =============================================== */

/* Main Section */
.graduation-ceremony {
  position: relative;
  padding: 60px 0; /* add top/bottom space */
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 30%, #f0f9ff 70%, #ecfdf5 100%);
  overflow: hidden;
  color: #1f2937;
}

/* Background Overlay */
.graduation-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(40, 167, 69, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(32, 201, 151, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating Particles */
.graduation-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary-green), #20c997);
  border-radius: 50%;
  opacity: 0.6;
  animation: graduationFloat 6s ease-in-out infinite;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  top: 40%;
  right: 15%;
  animation-delay: 1.5s;
}

.particle-3 {
  top: 60%;
  left: 20%;
  animation-delay: 3s;
}

.particle-4 {
  top: 80%;
  right: 25%;
  animation-delay: 4.5s;
}

.particle-5 {
  top: 30%;
  left: 50%;
  animation-delay: 2s;
}

@keyframes graduationFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 0.8;
  }
}

.graduation-ceremony .container {
  position: relative;
  z-index: 2;
}

/* Header Section */
.graduation-header {
  text-align: center;
  margin-bottom: 80px;
}

.graduation-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(40, 167, 69, 0.1);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(40, 167, 69, 0.2);
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.badge-text {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.graduation-title {
  margin-bottom: 24px;
}

.title-main {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.title-highlight {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.graduation-description {
  font-size: 1.2rem;
  color: rgba(31, 41, 55, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Content Layout */
.graduation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

/* Graduation Info Card */
.graduation-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(40, 167, 69, 0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.graduation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(40, 167, 69, 0.1);
}

.uk-flag {
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.card-content {
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(40, 167, 69, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(40, 167, 69, 0.1);
  transform: translateX(4px);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
  transition: all 0.3s ease;
}

.info-icon i {
  color: white !important;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.info-item:hover .info-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.35);
}

.info-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.info-details p {
  color: rgba(31, 41, 55, 0.7);
  margin: 0;
  font-size: 0.95rem;
}

.card-cta {
  text-align: center;
}

.btn-graduation-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.btn-graduation-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4);
  color: white;
}

/* Gallery Section */
.gallery-container {
  position: relative;
}

.gallery-main {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

.main-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-main:hover .main-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 40px 24px 24px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-main:hover .image-overlay {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: white;
}

.overlay-content p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
  color: white;
}

/* Gallery Section - Elegant Showcase Design */
.gallery-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Featured Image */
.featured-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  aspect-ratio: 16/10;
  background: #f8f9fa;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.featured-image:hover img {
  transform: scale(1.02);
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured-image:hover .featured-overlay {
  opacity: 1;
}

.overlay-content {
  color: white;
  text-align: left;
}

.overlay-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
  font-size: 1rem;
  margin-bottom: 12px;
  opacity: 0.95;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.view-badge {
  display: inline-block;
  background: rgba(40, 167, 69, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Gallery Thumbnails */
.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.thumbnail-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f8f9fa;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.thumbnail-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(40, 167, 69, 0.2);
}

.thumbnail-item.active {
  ring: 3px solid var(--primary-green);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.thumbnail-item:hover img {
  transform: scale(1.05);
}

.thumb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 12px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumb-overlay {
  transform: translateY(0);
}

.thumb-overlay span {
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gallery Info Box */
.gallery-info-box {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(40, 167, 69, 0.1);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.info-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-highlight i {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.highlight-text p {
  font-size: 0.9rem;
  color: rgba(31, 41, 55, 0.7);
  margin: 0;
}

/* Benefits Grid - Updated */
.graduation-benefits {
  margin-top: 60px;
  text-align: center;
}

.graduation-benefits h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(40, 167, 69, 0.1);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
  position: relative;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.25);
  transition: all 0.3s ease;
}

.benefit-icon i {
  color: white !important;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.35);
}

/* Additional icon fixes */
.info-highlight i {
  color: white !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.benefit-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.benefit-item p {
  color: rgba(31, 41, 55, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Call to Action - Updated */
.graduation-cta {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(40, 167, 69, 0.1);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 0.8rem;
  color: rgba(31, 41, 55, 0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-graduation-primary,
.btn-graduation-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.btn-graduation-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.btn-graduation-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4);
  color: white;
}

.btn-graduation-secondary {
  background: transparent;
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-graduation-secondary:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

/* Responsive Design for Graduation Section */
@media (max-width: 1200px) {
  .graduation-content {
    gap: 40px;
  }
  
  .featured-image {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 992px) {
  .graduation-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .gallery-thumbnails {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .featured-image {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .graduation-ceremony {
    padding: 80px 0;
  }
  
  .title-main, .title-highlight {
    font-size: 2.2rem;
  }
  
  .graduation-card {
    padding: 30px;
  }
  
  .gallery-showcase {
    gap: 16px;
  }
  
  .featured-image {
    aspect-ratio: 4/3;
  }
  
  .featured-overlay {
    padding: 20px;
  }
  
  .overlay-content h4 {
    font-size: 1.2rem;
  }
  
  .overlay-content p {
    font-size: 0.9rem;
  }
  
  .gallery-thumbnails {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .thumbnail-item {
    aspect-ratio: 16/9;
  }
  
  .gallery-info-box {
    padding: 16px;
  }
  
  .info-highlight {
    gap: 12px;
  }
  
  .info-highlight i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit-item {
    padding: 24px 16px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-graduation-primary,
  .btn-graduation-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .graduation-header {
    margin-bottom: 60px;
  }
  
  .title-main, .title-highlight {
    font-size: 1.8rem;
  }
  
  .graduation-description {
    font-size: 1rem;
  }
  
  .graduation-card {
    padding: 24px;
  }
  
  .info-item {
    padding: 12px;
    margin-bottom: 16px;
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .featured-image {
    aspect-ratio: 4/3;
  }
  
  .featured-overlay {
    padding: 16px;
  }
  
  .overlay-content h4 {
    font-size: 1.1rem;
  }
  
  .overlay-content p {
    font-size: 0.85rem;
  }
  
  .view-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .thumbnail-item {
    aspect-ratio: 16/10;
  }
  
  .graduation-cta {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

/* ===== MODERN FOOTER STYLES ===== */

.modern-footer {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green) 0%, #20c997 50%, var(--primary-green) 100%);
}

/* Main Footer Content */
.footer-main {
  padding: 60px 0 40px;
  position: relative;
}

.footer-section {
  height: 100%;
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 24px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #20c997 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 0.9rem;
  color: #a0aec0;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer-description {
  color: #cbd5e0;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* Footer Stats */
.footer-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-stats .stat-item {
  text-align: center;
}

.footer-stats .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 4px;
}

.footer-stats .stat-label {
  font-size: 0.8rem;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer Titles */
.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-title i {
  color: var(--primary-green);
  font-size: 1.1rem;
}

/* Contact Information */
.contact-info {
  space-y: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(40, 167, 69, 0.1);
  transform: translateX(4px);
}

.contact-item i {
  color: var(--primary-green);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
  color: #e2e8f0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-green);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 16px;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: 20px;
}

.footer-links a:hover::before {
  transform: translateX(4px);
}

/* Social Section */
.social-section {
  margin-top: 32px;
}

.social-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link.facebook {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
  border: 1px solid rgba(24, 119, 242, 0.2);
}

.social-link.facebook:hover {
  background: #1877f2;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-link.youtube {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.social-link.youtube:hover {
  background: #ff0000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.social-link.linkedin {
  background: rgba(0, 119, 181, 0.1);
  color: #0077b5;
  border: 1px solid rgba(0, 119, 181, 0.2);
}

.social-link.linkedin:hover {
  background: #0077b5;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.social-link.instagram {
  background: rgba(225, 48, 108, 0.1);
  color: #e1306c;
  border: 1px solid rgba(225, 48, 108, 0.2);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  margin: 0;
  color: #a0aec0;
  font-size: 0.9rem;
}

.copyright strong {
  color: var(--primary-green);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-green);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 30px;
  }
  
  .footer-stats {
    justify-content: center;
    margin-bottom: 24px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 16px;
  }
  
  .footer-bottom .row {
    text-align: center;
  }
  
  .contact-item {
    margin-bottom: 16px;
    padding: 10px;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .footer-main {
    padding: 30px 0 20px;
  }
  
  .footer-logo h3 {
    font-size: 1.5rem;
  }
  
  .footer-stats {
    gap: 16px;
  }
  
  .footer-stats .stat-number {
    font-size: 1.3rem;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .social-links {
    gap: 8px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Support Section Styles */
.support-section {
  padding: 60px 0;
  position: relative;
}

.support-header {
  text-align: center;
  margin-bottom: 50px;
}

.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(40, 167, 69, 0.2);
  margin-bottom: 30px;
}

.badge-icon {
  font-size: 24px;
}

.badge-text {
  font-weight: 600;
  color: #28a745;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.support-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.15);
}

.card-icon {
  margin-bottom: 25px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.25);
}

.icon-circle i {
  font-size: 32px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.support-card h4 {
  color: #1f2937;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.support-card p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.support-card:hover .card-hover-effect {
  opacity: 1;
}

/* Support Section Responsive Design */
@media (max-width: 992px) {
  .support-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .support-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .support-card {
    padding: 30px 20px;
  }
  
  .icon-circle {
    width: 70px;
    height: 70px;
  }
  
  .icon-circle i {
    font-size: 28px;
  }
}

/* Policy Pages Styles */
.policy-section {
  padding: 120px 0 60px;
  position: relative;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 50%, #f0f9ff 100%);
  min-height: 100vh;
}

.policy-header {
  text-align: center;
  margin-bottom: 60px;
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(40, 167, 69, 0.2);
  margin-bottom: 30px;
}

.policy-badge .badge-icon {
  font-size: 24px;
}

.policy-badge .badge-text {
  font-weight: 600;
  color: #28a745;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.policy-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.policy-intro {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.policy-block {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.policy-block h2 {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-block p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.policy-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-block ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.policy-block ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a745;
}

.contact-info {
  background: rgba(40, 167, 69, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: #28a745;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #20c997;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border-radius: 50px;
  color: #28a745;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-back:hover {
  background: #28a745;
  color: white;
  transform: translateY(-2px);
}

.btn-back i {
  font-size: 20px;
}

/* Policy Pages Responsive Design */
@media (max-width: 768px) {
  .policy-section {
    padding: 100px 0 40px;
  }

  .policy-header h1 {
    font-size: 2rem;
  }

  .policy-block {
    padding: 30px 20px;
  }

  .policy-badge {
    padding: 10px 20px;
  }

  .policy-badge .badge-icon {
    font-size: 20px;
  }

  .policy-badge .badge-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .policy-header h1 {
    font-size: 1.8rem;
  }

  .policy-intro {
    font-size: 1rem;
  }

  .policy-block h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .header {
    padding: 0.5rem 0;
  }

  .header .container-fluid {
    min-height: 60px;
    padding: 0 16px;
  }

  .header .logo img {
    height: 60px;
  }

  .mobile-menu-btn {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 10px;
  }
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: flex-start;
}

/* ===============================================
   LEARNING PROCESS FLOW IMPROVEMENTS
   =============================================== */

.learning-process {
  padding: 50px 0 30px; /* tighten bottom space */
}

@media (min-width: 992px) {
  .learning-process .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -35px; /* adjust to bridge gutter */
    width: 70px;
    height: 3px;
    background: var(--primary-green);
    transform: translateY(-50%);
  }
}

@media (max-width: 991px) {
  /* slightly reduce card margin on smaller screens */
  .learning-process .row > [class*="col-"].mb-4 {
    margin-bottom: 1rem !important;
  }
}

.green-heading {
  color: var(--primary-green) !important;
  background: none !important; /* override gradient if inherited */
}