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

:root {
  --primary: #0a1128;
  --secondary: #0c1970;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-blue: #3b82f6;
  --accent-blue-glow: rgba(59, 130, 246, 0.4);
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #f1f5f9;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px 3px rgba(12, 25, 112, 0.25);
  --shadow-gold-glow: 0 0 15px 2px rgba(245, 158, 11, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* Base Layout & Utility classes */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
}

.logo-icon {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.25rem;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 0.25rem;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  border-radius: 2px;
}

.nav-separator {
  color: #cbd5e1;
  font-size: 0.75rem;
  pointer-events: none;
  user-select: none;
}

/* Dropdown styling */
.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: var(--transition);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-white);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-item a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.dropdown-item a:hover {
  background-color: var(--bg-light);
  color: var(--secondary);
}

.nav-cta {
  background: var(--secondary);
  color: white !important;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-glow);
  display: inline-block;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(12, 25, 112, 0.4);
  background: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
  padding: 10rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  animation: slideUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(12, 25, 112, 0.08);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

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

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--secondary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(12, 25, 112, 0.4);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
  box-shadow: var(--shadow-gold-glow);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.4);
}

/* Organic Blob Image Layout (Inspired by screenshot) */
.hero-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  animation: fadeIn 1.2s ease-out;
}

.blob-img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.blob-img:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: var(--shadow-lg);
}

.blob-1 {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  height: 220px;
  grid-column: 1;
}

.blob-2 {
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  height: 180px;
  grid-column: 2;
  align-self: end;
}

.blob-3 {
  border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
  height: 250px;
  grid-column: 1;
}

.blob-4 {
  border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
  height: 230px;
  grid-column: 2;
}

.blob-5 {
  border-radius: 30% 70% 70% 30% / 50% 30% 70% 50%;
  height: 200px;
  grid-column: 1;
}

.blob-6 {
  border-radius: 45% 55% 35% 65% / 55% 45% 55% 45%;
  height: 210px;
  grid-column: 2;
}

/* Course Card Showcase */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.course-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

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

.course-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.course-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--secondary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.course-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.course-meta-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.course-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.course-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.course-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--secondary);
}

.course-link {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.course-link:hover {
  color: var(--accent-hover);
}

/* Feature/USP Section */
.features {
  background-color: var(--bg-light);
}

.section-header {
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.5rem;
  margin-top: 0.5rem;
}

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

.feature-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.01);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  background-color: rgba(12, 25, 112, 0.05);
  color: var(--secondary);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.stats h2 {
  color: white;
}

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

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

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

/* Testimonial Section */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.testimonial-slide {
  text-align: center;
  padding: 1rem;
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 0.25rem;
}

.testimonial-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.testimonial-text-container .testimonial-text {
  margin-bottom: 0;
}

.testimonial-text-container .read-more-btn {
  margin-top: 0.75rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--secondary);
  width: 25px;
  border-radius: 5px;
}

/* Contact/Map Page specific styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-list {
  list-style: none;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-icon-box {
  background-color: rgba(12, 25, 112, 0.05);
  color: var(--secondary);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-info-details p {
  color: var(--text-muted);
}

.contact-form-wrapper {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(12, 25, 112, 0.1);
}

textarea.form-control {
  resize: vertical;
}

/* Map placeholder */
.map-container {
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 4rem;
  border: 1px solid #e2e8f0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

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

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 40, 0) 40%, rgba(10, 17, 40, 0.8) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

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

.gallery-overlay-text {
  color: white;
}

.gallery-overlay-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.gallery-overlay-category {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.cta-banner-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Footer Section */
footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.footer-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-link-item {
  margin-bottom: 0.75rem;
}

.footer-link-item a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  flex-grow: 1;
  font-family: var(--font-body);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-btn {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 0 1.25rem;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: var(--accent-hover);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

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

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

/* About Page Specific Styles */
.about-hero {
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
  padding: 8rem 0 4rem 0;
  text-align: center;
}

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

.about-img-box {
  position: relative;
}

.about-img-box::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--accent);
  border-radius: 20px;
  z-index: -1;
}

.about-img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

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

.trainer-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.trainer-img-box {
  height: 280px;
  overflow: hidden;
  background-color: var(--bg-white);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.trainer-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.trainer-card:hover .trainer-img {
  transform: scale(1.05);
}

.trainer-info {
  padding: 1.5rem;
}

.trainer-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.trainer-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 850px;
  margin: 0 auto;
}

.leader-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

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

.leader-img-box {
  height: 340px;
  overflow: hidden;
  background-color: var(--bg-white);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.leader-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.leader-card:hover .leader-img {
  transform: scale(1.05);
}

.leader-info {
  padding: 2rem;
}

.leader-name {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.leader-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.leader-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
  padding: 0;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: inherit;
  transition: color 0.2s ease;
}

.read-more-btn:hover {
  color: var(--accent-hover);
}

.read-more-btn .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.read-more-btn:hover .arrow {
  transform: translateX(3px);
}

.hero-desc-container {
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-desc-container .hero-desc {
  margin-bottom: 0;
}

.hero-desc-container .hero-desc:not(:last-child) {
  margin-bottom: 1rem;
}

.hero-desc-container .full-text {
  display: block !important;
}

.hero-desc-container .read-more-btn {
  display: none !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-grid, .about-intro-grid, .contact-grid {
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .logo {
    order: 1;
    font-size: 1.3rem;
    gap: 0.5rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .nav-cta {
    order: 2;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }

  .nav-container {
    gap: 0.75rem;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: 0.4s ease;
    overflow-y: auto;
  }

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

  .nav-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-separator {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0.5rem 0 0 1rem;
    width: 100%;
    display: none;
  }

  .has-dropdown.active .dropdown-menu {
    display: block;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

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

  .hero-content {
    margin: 0 auto;
  }

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

  .hero-images {
    margin-top: 3rem;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-img-box {
    order: -1;
    margin-bottom: 2rem;
  }

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

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

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

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

  .leader-img-box {
    height: 300px;
  }

  .hero-desc-container {
    margin-bottom: 1.5rem;
  }

  .hero-desc-container .full-text {
    display: none !important;
  }

  .hero-desc-container.expanded .full-text {
    display: block !important;
  }

  .hero-desc-container .read-more-btn {
    display: inline-flex !important;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.1rem;
  }
  .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }
  .nav-cta {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-btn {
    padding: 0.85rem;
  }
}
