@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   Design Tokens & System Variables
   ========================================================================== */
:root {
  /* Color Palette */
  --primary: #0a3663;
  --primary-rgb: 10, 54, 99;
  --primary-dark: #072545;
  --primary-light: #1e548e;
  --secondary: #00a896;
  --secondary-rgb: 0, 168, 150;
  --secondary-light: #02c39a;
  --accent: #ff9f1c;
  --accent-rgb: 255, 159, 28;
  --success: #2ec4b6;
  
  /* Neutral Colors */
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-gradient-main: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  --bg-gradient-hero: linear-gradient(135deg, #072545 0%, #0a3663 50%, #1e548e 100%);
  
  /* Glassmorphism & Borders */
  --bg-glass: rgba(255, 255, 255, 0.75);
  --border-glass: rgba(255, 255, 255, 0.4);
  --bg-glass-dark: rgba(7, 37, 69, 0.75);
  --border-glass-dark: rgba(255, 255, 255, 0.1);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 20px -2px rgba(10, 54, 99, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(10, 54, 99, 0.15);
  --shadow-hover: 0 30px 60px -15px rgba(10, 54, 99, 0.22);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);

  /* Layout & Spacing */
  --container-max-width: 1280px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 100px 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Typography & Headers
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(0, 168, 150, 0.1);
  color: var(--secondary);
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  box-shadow: 0 8px 24px rgba(10, 54, 99, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(10, 54, 99, 0.3);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: var(--bg-white);
  box-shadow: 0 8px 24px rgba(0, 168, 150, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 168, 150, 0.3);
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #ffb703 100%);
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(255, 159, 28, 0.25);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 159, 28, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
  border-color: var(--bg-white);
  transform: translateY(-3px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 24px;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info-item i {
  color: var(--secondary-light);
}

.top-socials {
  display: flex;
  gap: 16px;
}

.top-socials a:hover {
  color: var(--secondary-light);
}

header {
  position: absolute;
  top: 37px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header.scrolled .logo-text h1 {
  color: var(--primary);
}

header.scrolled .logo-text p {
  color: var(--text-muted);
}

header.scrolled .nav-link {
  color: var(--text-main);
}

header.scrolled .nav-link:hover,
header.scrolled .nav-link.active {
  color: var(--secondary);
}

header.transparent {
  background-color: transparent;
}

header.transparent .logo-text h1 {
  color: var(--bg-white);
}

header.transparent .logo-text p {
  color: rgba(255, 255, 255, 0.7);
}

header.transparent .nav-link {
  color: var(--bg-white);
}

header.transparent .nav-link:hover,
header.transparent .nav-link.active {
  color: var(--secondary-light);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 168, 150, 0.3);
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: var(--transition-smooth);
  line-height: 1.1;
}

.logo-text p {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-light);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mega Menu Styles */
.has-mega-menu {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  z-index: 999;
}

header.scrolled .mega-menu {
  top: 100%;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}

.mega-menu-featured {
  background: linear-gradient(135deg, rgba(10, 54, 99, 0.03) 0%, rgba(0, 168, 150, 0.05) 100%);
  padding: 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(10, 54, 99, 0.05);
}

.mega-menu-featured h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.mega-menu-featured p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.mega-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-menu-list-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 8px;
}

.mega-menu-item a {
  display: flex;
  flex-direction: column;
  padding: 8px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.mega-menu-item a:hover {
  background-color: rgba(10, 54, 99, 0.04);
}

.mega-menu-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.mega-menu-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--bg-white);
  transition: var(--transition-fast);
}

header.scrolled .nav-toggle {
  color: var(--primary);
}

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: var(--transition-smooth);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 16px;
}

.mobile-nav-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.mobile-nav-submenu {
  margin-left: 16px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 2px solid rgba(0, 168, 150, 0.2);
  padding-left: 16px;
}

.mobile-nav-submenu a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.mobile-nav-submenu a:hover {
  color: var(--secondary);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(7, 37, 69, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  background: var(--bg-gradient-hero);
  color: var(--bg-white);
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(2, 195, 154, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(10, 54, 99, 0.4) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-light);
  width: fit-content;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--bg-white);
}

.hero-title span {
  color: var(--secondary-light);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background-color: var(--bg-glass-dark);
  border: 1px solid var(--border-glass-dark);
  backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.hero-floating-icon {
  width: 48px;
  height: 48px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero-floating-info h4 {
  color: var(--bg-white);
  font-size: 1rem;
}

.hero-floating-info p {
  color: var(--secondary-light);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
  background-color: var(--bg-white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-image-stack {
  position: relative;
  height: 520px;
}

.about-img-1 {
  width: 80%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
}

.about-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 20px;
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge span {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--secondary-light);
}

.about-badge p {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-title {
  font-size: 2.25rem;
  font-weight: 800;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.about-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feat-icon {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-top: 4px;
}

.about-feat-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.about-feat-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Campuses Section
   ========================================================================== */
.campuses {
  background-color: var(--bg-light);
}

.campuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.campus-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 54, 99, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.campus-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.campus-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.campus-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.campus-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.campus-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.campus-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.campus-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.campus-loc i {
  color: var(--secondary);
}

.campus-courses {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.campus-courses-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.5px;
}

.campus-courses-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.campus-course-tag {
  background-color: rgba(10, 54, 99, 0.05);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.campus-footer {
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 16px 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.campus-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}

.campus-link i {
  transition: var(--transition-fast);
}

.campus-card:hover .campus-link i {
  transform: translateX(4px);
  color: var(--secondary);
}

/* ==========================================================================
   Courses Section
   ========================================================================== */
.courses {
  background-color: var(--bg-white);
}

.courses-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.courses-tabs {
  display: inline-flex;
  background-color: rgba(10, 54, 99, 0.04);
  padding: 6px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(10, 54, 99, 0.02);
}

.tab-btn {
  font-family: 'Outfit', sans-serif;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.course-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 28px;
  border: 1px solid rgba(10, 54, 99, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-light);
}

.course-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 168, 150, 0.08);
  color: var(--secondary);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.course-card:hover .course-icon {
  background-color: var(--secondary);
  color: var(--bg-white);
  transform: rotateY(180deg);
}

.course-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.course-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.course-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
  margin-top: auto;
}

.course-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.course-detail-item span:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.course-detail-item span:last-child {
  color: var(--primary-dark);
  font-weight: 700;
}

.course-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us {
  background: linear-gradient(135deg, rgba(10, 54, 99, 0.02) 0%, rgba(0, 168, 150, 0.04) 100%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-us-item {
  display: flex;
  gap: 20px;
}

.why-us-icon {
  width: 56px;
  height: 56px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 54, 99, 0.04);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.why-us-item:hover .why-us-icon {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: scale(1.05);
}

.why-us-text h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.why-us-text p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.why-us-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-box {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 54, 99, 0.02);
  transition: var(--transition-smooth);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

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

/* ==========================================================================
   Campus Life / Gallery Section
   ========================================================================== */
.gallery {
  background-color: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 54, 99, 0.85) 0%, rgba(0, 168, 150, 0.4) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--bg-white);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: var(--secondary-light);
}

/* ==========================================================================
   Placements & Partners
   ========================================================================== */
.placements {
  background-color: var(--bg-light);
  border-top: 1px solid rgba(10, 54, 99, 0.03);
}

.placements-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.placement-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.placement-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 24px;
}

.placement-stat h4 {
  font-size: 1.85rem;
  color: var(--secondary);
}

.placement-stat p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.partners-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-logo {
  background-color: var(--bg-white);
  height: 90px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  padding: 16px;
  border: 1px solid rgba(10, 54, 99, 0.04);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  color: var(--primary-light);
}

.partner-logo i {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-right: 8px;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
  background-color: var(--bg-white);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  position: relative;
  height: auto;
  overflow: hidden;
}

.testimonial-slide {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  display: none;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(10, 54, 99, 0.02);
}

.testimonial-slide.active {
  display: flex;
  animation: fadeIn 0.5s ease;
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-main);
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  color: rgba(0, 168, 150, 0.15);
  position: absolute;
  top: -30px;
  left: -20px;
}

.testimonial-student {
  display: flex;
  align-items: center;
  gap: 16px;
}

.student-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-weight: 700;
  font-size: 1.25rem;
}

.student-info h4 {
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.student-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(10, 54, 99, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: var(--border-radius-full);
}

/* ==========================================================================
   Admission Inquiry Form Section
   ========================================================================== */
.admissions {
  background: var(--bg-gradient-hero);
  color: var(--bg-white);
  overflow: hidden;
}

.admissions .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.admission-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admission-info h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
}

.admission-info p {
  color: rgba(255, 255, 255, 0.85);
}

.admission-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  gap: 16px;
}

.step-num {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}

.step-text h4 {
  color: var(--bg-white);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.step-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.admission-form-wrapper {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.admission-form-wrapper h3 {
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  color: var(--bg-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary-light);
  box-shadow: 0 0 10px rgba(2, 195, 154, 0.3);
}

.form-control option {
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  border-top: 4px solid var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col h3 {
  color: var(--bg-white);
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bg-white);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  color: var(--secondary-light);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--bg-white);
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--secondary-light);
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-contact-item h5 {
  color: var(--bg-white);
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--bg-white);
}

/* ==========================================================================
   Floating Widgets & Utilities
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--bg-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.sticky-cta {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  animation: pulse 2.5s infinite;
}

/* ==========================================================================
   Animation Keyframes
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 159, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 159, 28, 0); }
}

/* ==========================================================================
   Sub-page Styles
   ========================================================================== */
/* Header Banner for Sub-pages */
.sub-page-hero {
  background: var(--bg-gradient-hero);
  color: var(--bg-white);
  padding: 150px 0 80px;
  text-align: center;
}

.sub-page-hero h1 {
  color: var(--bg-white);
  font-size: 3rem;
  margin-bottom: 12px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
  color: var(--secondary-light);
}

/* Campus Details Sub-page Styling */
.campus-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  background-color: var(--bg-white);
}

.campus-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.campus-gallery-grid img {
  border-radius: var(--border-radius-md);
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.sidebar-box {
  background-color: var(--bg-light);
  border: 1px solid rgba(10, 54, 99, 0.05);
  border-radius: var(--border-radius-md);
  padding: 30px;
  margin-bottom: 30px;
}

.sidebar-box h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 10px;
}

/* Courses Listing */
.course-list-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.course-item-row {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid rgba(10, 54, 99, 0.05);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.course-item-img img {
  border-radius: var(--border-radius-md);
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.course-meta-info {
  display: flex;
  gap: 24px;
  margin: 16px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.course-meta-info i {
  color: var(--secondary);
}

/* ==========================================================================
   Responsive Design Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-title { font-size: 3rem; }
  .courses-grid { grid-template-columns: repeat(3, 1fr); }
  .campuses-grid { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 992px) {
  section { padding: 80px 0; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero .container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-badge { margin: 0 auto; }
  .hero-content { align-items: center; }
  .hero-description { margin: 0 auto; }
  .hero-floating-card { left: 20px; }
  .about .container { grid-template-columns: 1fr; gap: 50px; }
  .about-image-stack { height: 450px; max-width: 500px; margin: 0 auto; }
  .campuses-grid { grid-template-columns: 1fr 1fr; }
  .why-us-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-us-stats { margin-top: 30px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .placements-grid { grid-template-columns: 1fr; gap: 40px; }
  .admissions .container { grid-template-columns: 1fr; gap: 50px; }
  .campus-layout { grid-template-columns: 1fr; }
  .course-item-row { grid-template-columns: 1fr; gap: 24px; }
  
  header { top: 0; }
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .top-bar { display: none; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-image-wrapper img { height: 350px; }
  .section-title { font-size: 2rem; }
  .campuses-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-slide { padding: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .admission-form-wrapper { padding: 24px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.15rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .about-image-stack { height: 350px; }
  .about-img-1 { height: 300px; }
  .about-img-2 { height: 200px; }
  .about-badge { padding: 12px; top: 20px; right: 20px; }
  .about-badge span { font-size: 1.75rem; }
  .courses-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.6rem; }
  .sticky-cta { bottom: 20px; left: 20px; }
  .btn { padding: 12px 20px; }
}
