/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
  overflow-x: hidden;
}

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

/* Color Variables - Navy Blue Theme */
:root {
  --primary-navy: #1e3a8a;
  --secondary-navy: #1e40af;
  --light-navy: #3b82f6;
  --dark-navy: #1e293b;
  --accent-blue: #60a5fa;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
}

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

/* Welcome Banner */
.welcome-banner {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0.75rem 0;
}

.welcome-text {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gray-800);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  animation: popupAnimation 1s ease-out forwards;
}

@keyframes popupAnimation {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.welcome-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-navy);
  opacity: 0.3;
  border-radius: 2px;
}

.accent-text {
  color: var(--primary-navy);
  font-weight: 700;
  position: relative;
}

.accent-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-navy);
  opacity: 0.3;
  border-radius: 2px;
}

/* Logo */
.logo {
  width: 40px;
  height: 40px;
  background: var(--primary-navy);
  border-radius: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
  background: var(--secondary-navy);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(30, 58, 138, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-navy);
  transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-navy);
}

.nav-auth {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
}

.auth-btn {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid;
  font-size: 0.9rem;
}

.student-btn {
  color: var(--primary-navy);
  border-color: var(--primary-navy);
  background: transparent;
}

.student-btn:hover {
  background: var(--primary-navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.admin-btn {
  color: var(--light-navy);
  border-color: var(--light-navy);
  background: transparent;
}

.admin-btn:hover {
  background: var(--light-navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1000;
    background: transparent;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--gray-800);
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.nav-toggle span:first-child {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 10px;
}

.nav-toggle span:last-child {
    top: 20px;
}

.nav-toggle.active span:first-child {
    top: 10px;
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:last-child {
    top: 10px;
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--gray-800);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-navy);
  color: white;
  border-color: var(--primary-navy);
}

.btn-primary:hover {
  background: var(--secondary-navy);
  border-color: var(--secondary-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

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

.btn-secondary:hover {
  background: var(--primary-navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.hero-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.1);
  border: 1px solid var(--gray-200);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  background: var(--gray-50);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: var(--gray-100);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Page Header */
.page-header {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  color: white;
  text-align: center;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.page-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-navy);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  border-color: var(--primary-navy);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-navy);
  transition: all 0.3s ease;
}

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

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.feature-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Prospectus Download Section */
.prospectus-download {
  padding: 40px 0;
  background: var(--gray-50);
}

.download-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-200);
  gap: 30px;
}

.download-icon {
  font-size: 3rem;
  color: var(--primary-navy);
  background: var(--gray-100);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-content {
  flex: 1;
}

.download-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.download-content p {
  color: var(--gray-600);
  margin-bottom: 0;
}

.download-btn {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .download-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .download-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Courses Section */
/* Courses Section */
.courses {
    background: white;
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin: 2rem auto;
    width: 100%;
    max-width: 100%;
    padding: 0 4rem;
}

.course-card,
.course-card-detailed {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.course-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.course-content h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    font-size: 1.1rem;
    color: var(--gray-700);
}

@media (min-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .course-card,
    .course-card-detailed {
        min-height: 400px;
    }
}

@media (max-width: 1023px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}/* Course Categories */
.course-categories {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    background: var(--gray-50);
    padding: 2rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .category-tabs {
        padding: 0 1rem;
    }
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--gray-700);
}

.category-tab.active {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
}

/* Courses Grid Section */
.courses-grid-section {
    padding: 4rem 0;
    background: white;
    width: 100%;
    overflow-x: hidden;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
}

.course-card-detailed {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.course-card::before,
.course-card-detailed::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-navy);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.course-card:hover::before,
.course-card-detailed:hover::before {
  transform: scaleX(1);
}

.course-card:hover,
.course-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  border-color: var(--primary-navy);
}

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.course-badge {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-700);
}

.course-badge.popular {
  background: var(--primary-navy);
  color: white;
}

.course-badge.recommended {
  background: var(--light-navy);
  color: white;
}

.course-badge.beginner {
  background: var(--success);
  color: white;
}

.course-badge.demand {
  background: var(--warning);
  color: white;
}

.course-badge.new {
  background: var(--error);
  color: white;
}

.course-badge.trending {
  background: var(--accent-blue);
  color: white;
}

.course-level {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid;
}

.course-level.beginner {
  color: var(--success);
  border-color: var(--success);
  background: rgba(16, 185, 129, 0.1);
}

.course-level.intermediate {
  color: var(--warning);
  border-color: var(--warning);
  background: rgba(245, 158, 11, 0.1);
}

.course-level.advanced {
  color: var(--error);
  border-color: var(--error);
  background: rgba(239, 68, 68, 0.1);
}

.course-level.professional {
  color: var(--primary-navy);
  border-color: var(--primary-navy);
  background: rgba(30, 58, 138, 0.1);
}

.course-icon {
  width: 60px;
  height: 60px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-navy);
  transition: all 0.3s ease;
}

.course-card:hover .course-icon,
.course-card-detailed:hover .course-icon {
  background: var(--primary-navy);
  color: white;
  transform: scale(1.1);
}

.course-content {
  flex: 1;
  padding: 1.5rem 0;
}

.course-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.course-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.course-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.course-features,
.course-highlights {
  margin-bottom: 1.5rem;
}

.course-features .feature,
.course-highlights .highlight {
  display: block;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.course-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.course-features .feature {
  background: var(--gray-100);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--gray-700);
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.course-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.price-note {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 400;
}

.course-btn,
.enroll-btn {
  background: var(--primary-navy);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course-btn:hover,
.enroll-btn:hover {
  background: var(--secondary-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

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

/* Course Categories */
.course-categories,
.gallery-categories {
  padding: 40px 0;
  background: var(--gray-50);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 25px;
  color: var(--gray-700);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
  background: var(--primary-navy);
  color: white;
  border-color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* About Section */
.about {
  background: var(--gray-50);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-description {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.about-features {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}

.about-feature i {
  color: var(--primary-navy);
  font-size: 1.2rem;
}

.about-placeholder {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.about-placeholder i {
  font-size: 4rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.about-placeholder h3 {
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.about-placeholder p {
  color: var(--gray-600);
}

/* About Story Section */
.about-story {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  border-color: var(--primary-navy);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-navy);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--primary-navy);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-navy);
}

.timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.timeline-content p {
  color: var(--gray-600);
}

/* Mission Vision Section */
.mission-vision {
  background: var(--gray-50);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mv-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  border-color: var(--primary-navy);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-navy);
  transition: all 0.3s ease;
}

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

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  border-color: var(--primary-navy);
}

.team-image {
  margin-bottom: 1.5rem;
}

.team-placeholder {
  width: 120px;
  height: 120px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 3rem;
  color: var(--primary-navy);
  transition: all 0.3s ease;
}

.team-card:hover .team-placeholder {
  background: var(--primary-navy);
  color: white;
  transform: scale(1.1);
}

.team-info h4 {
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.team-role {
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-info p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.team-skills {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.team-skills span {
  background: var(--gray-100);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--gray-700);
}

/* CTA Section */
.cta {
  background: var(--primary-navy);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: white;
  color: var(--primary-navy);
  border-color: white;
}

.cta .btn-primary:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta .btn-secondary:hover {
  background: white;
  color: var(--primary-navy);
}

/* Contact Section */
.contact-main {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-section h2 {
  margin-bottom: 1rem;
}

.contact-intro {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-items {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
  transform: translateY(-4px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.contact-details p {
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-details a {
  color: var(--primary-navy);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.social-section h4 {
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--gray-100);
  border-radius: 8px;
  text-decoration: none;
  color: var(--gray-700);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-navy);
  color: white;
  transform: translateY(-2px);
}

.social-link.facebook:hover {
  background: #1877f2;
}

.social-link.twitter:hover {
  background: #1da1f2;
}

.social-link.instagram:hover {
  background: #e4405f;
}

.social-link.linkedin:hover {
  background: #0077b5;
}

/* Contact Form */
.form-container {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.form-title {
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.form-subtitle {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.submit-btn {
  background: var(--primary-navy);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  background: var(--secondary-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.map-container {
  margin-top: 2rem;
}

.map-placeholder {
  height: 400px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

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

.map-content i {
  font-size: 4rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.map-content h3 {
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.map-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-navy);
  text-decoration: none;
  font-weight: 500;
}

.map-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
  border-color: var(--primary-navy);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gray-50);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-question h4 {
  margin: 0;
  color: var(--gray-800);
}

.faq-question i {
  color: var(--primary-navy);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Certification Styles */
.certification-overview {
  padding: 80px 0;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cert-features {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cert-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}

.cert-feature i {
  color: var(--primary-navy);
  font-size: 1.2rem;
}

.certificate-preview {
  background: white;
  border: 2px solid var(--primary-navy);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  text-align: center;
}

.cert-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-navy);
}

.cert-header .cert-logo {
  width: 60px;
  height: 60px;
  background: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.cert-header h3 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.cert-body {
  margin-bottom: 2rem;
}

.cert-body h4 {
  color: var(--primary-navy);
  font-size: 1.5rem;
  margin: 1rem 0;
}

.cert-body h5 {
  color: var(--gray-800);
  margin: 1rem 0;
}

.cert-details {
  display: flex;
  justify-content: space-around;
  margin: 1rem 0;
}

.cert-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.qr-code {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-600);
}

/* Certificate Types */
.certificate-types {
  background: var(--gray-50);
}

.cert-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cert-type-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.cert-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  border-color: var(--primary-navy);
}

.cert-type-icon {
  width: 80px;
  height: 80px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-navy);
  transition: all 0.3s ease;
}

.cert-type-card:hover .cert-type-icon {
  background: var(--primary-navy);
  color: white;
  transform: scale(1.1);
}

.cert-type-card ul {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
}

.cert-type-card li {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.cert-type-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-navy);
  font-weight: bold;
}

/* Verification Process */
.verification-process {
  padding: 80px 0;
}

.verification-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 300px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.step-content p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.verification-form {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.verification-form h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--gray-800);
}

.verify-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Industry Recognition */
.industry-recognition {
  background: var(--gray-50);
}

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

.recognition-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.recognition-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  border-color: var(--primary-navy);
}

.recognition-icon {
  width: 60px;
  height: 60px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary-navy);
  transition: all 0.3s ease;
}

.recognition-item:hover .recognition-icon {
  background: var(--primary-navy);
  color: white;
  transform: scale(1.1);
}

/* Gallery Styles */
.gallery-grid-section {
  padding: 80px 0;
  background-color: white;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: minmax(200px, auto);
  grid-auto-flow: dense;
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-card-small {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-card-medium {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-card-large,
  .gallery-card-medium {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
  border-color: var(--primary-navy);
  z-index: 1;
}

.gallery-image {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  color: white;
  font-size: 2.5rem;
}

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

.gallery-overlay i {
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay i {
  transform: scale(1);
  animation: pulse 1.5s infinite;
}

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

.gallery-stats {
  background: var(--primary-navy);
  color: white;
  padding: 60px 0;
}

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

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

.gallery-stats .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.gallery-stats .stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  position: relative;
  background: white;
  margin: 5% auto;
  padding: 2rem;
  width: 90%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-caption {
   padding: 8px 15px;
   text-align: center;
   background: rgba(255, 255, 255, 0.9);
   border-radius: 8px;
   width: 60%;
   max-width: 400px;
   position: relative;
   margin-top: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-caption h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
  z-index: 10;
}

.close:hover {
  color: var(--primary-navy);
  opacity: 1;
  transform: rotate(90deg);
}

.modal-image {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.image-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-button:hover {
  background: var(--primary-color);
}

.prev-button {
  left: 20px;
}

.next-button {
  right: 20px;
}

.modal-placeholder {
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
}

.modal-placeholder i {
  font-size: 4rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

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

.modal-placeholder h3 {
  margin-bottom: 1rem;
  color: var(--gray-800);
  font-size: 2.2rem;
}

.modal-placeholder p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Enrollment Process */
.enrollment-process {
  background: var(--gray-50);
  padding: 80px 0;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.process-steps .step {
  max-width: 300px;
  text-align: center;
}

.process-steps .step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-steps .step-content h4 {
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.process-steps .step-content p {
  color: var(--gray-600);
}

/* Login Page Styles */
.login-page {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  width: 100%;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.3);
}

.login-card {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header .logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.login-header h2 {
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.login-header p {
  color: var(--gray-600);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group i {
  position: absolute;
  left: 16px;
  color: var(--gray-600);
  z-index: 1;
}

.input-group input {
  width: 100%;
  padding: 12px 16px 12px 48px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.toggle-password {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--gray-600);
  cursor: pointer;
  padding: 0;
  z-index: 1;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.forgot-link {
  color: var(--primary-navy);
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

.login-btn {
  background: var(--primary-navy);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.login-btn:hover {
  background: var(--secondary-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.login-btn.admin-btn {
  background: var(--light-navy);
}

.login-btn.admin-btn:hover {
  background: var(--accent-blue);
}

.login-footer {
  text-align: center;
}

.login-footer p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.login-footer a {
  color: var(--primary-navy);
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}

.login-links {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.login-info {
  background: var(--gray-50);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-info.admin-info {
  background: linear-gradient(135deg, var(--light-navy) 0%, var(--accent-blue) 100%);
  color: white;
}

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

.info-content h3 {
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.login-info.admin-info .info-content h3 {
  color: white;
}

.info-content p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.login-info.admin-info .info-content p {
  color: rgba(255, 255, 255, 0.9);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-700);
}

.login-info.admin-info .feature-item {
  color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
  color: var(--primary-navy);
  font-size: 1.2rem;
}

.login-info.admin-info .feature-item i {
  color: white;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer .social-links {
  display: flex;
  gap: 1rem;
}

.footer .social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .social-link:hover {
  background: var(--primary-navy);
  transform: translateY(-2px);
}

.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--gray-300);
}

.footer-contact i {
  color: var(--primary-navy);
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .about-content,
  .overview-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image {
    order: -1;
  }

  .login-container {
    grid-template-columns: 1fr;
  }

  .login-info {
    order: -1;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        margin: 1.5rem 0;
        font-size: 1.2rem;
    }

    .nav-auth {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 2rem;
    }

    .auth-btn {
        width: 100%;
        text-align: center;
    }

  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .features-grid,
  .courses-grid,
  .mv-grid,
  .team-grid,
  .cert-types-grid,
  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .category-tab {
    flex-shrink: 0;
  }

  .verification-steps,
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .login-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  section {
    padding: 60px 0;
  }

  .page-header {
    padding: 100px 0 60px;
  }

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

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card,
  .course-card,
  .course-card-detailed {
    padding: 1.5rem;
  }

  .login-card,
  .login-info {
    padding: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
    padding: 1.5rem;
  }
}

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

.text-left {
  text-align: left;
}

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

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

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

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

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

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

/* Slideshow Styles */
.hero-slideshow {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.1);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  height: 250px; /* Adjust height as needed */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slideshow-controls {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.slide-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-navy);
  transform: scale(1.2);
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--primary-navy);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .cta,
  .btn {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none;
    padding: 0;
  }
}

.nav-brand .logo img {
    height: 40px;
    width: auto;
    display: block;
    border-radius: 0; /* Remove border-radius for the image */
}

/* Add responsive styles for the logo */
@media (max-width: 1024px) {
    .nav-brand .logo img {
        height: 36px;
    }
}

@media (max-width: 768px) {
    .nav-brand .logo img {
        height: 32px;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nav-brand .logo img {
        height: 28px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .brand-logo {
        gap: 8px;
    }
}