/* ============================================
   ASTC Corporate Website - Main Stylesheet
   Colors: Blue, Light Blue, White, Black
   ============================================ */

/* CSS Variables */
:root {
  --blue-primary: #1e40af;
  --blue-dark: #1e3a8a;
  --blue-darker: #172554;
  --blue-light: #dbeafe;
  --blue-soft: #eff6ff;
  --blue-bright: #3b82f6;
  --white: #ffffff;
  --black: #111827;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

/* Typography */
.text-blue {
  color: var(--blue-primary);
}

.text-center {
  text-align: center;
}

.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: var(--blue-primary);
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 2px solid var(--blue-primary);
  background-color: transparent;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  color: var(--blue-primary);
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-outline:hover {
  background-color: var(--blue-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Section Styles */
.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 6rem 0;
  }
}

.section-header {
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto;
}

/* Backgrounds */
.bg-white {
  background-color: var(--white);
}

.bg-light-blue {
  background-color: var(--blue-light);
}

.bg-soft-blue {
  background-color: var(--blue-soft);
}

.bg-dark {
  background-color: var(--black);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background-color: var(--white);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: none;
}

@media (min-width: 768px) {
  .logo-sub {
    display: inline;
  }
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu li a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
}

.nav-menu li a:hover {
  color: var(--blue-primary);
}

.nav-menu li a.active {
  color: var(--blue-primary);
  border-bottom: 2px solid var(--blue-primary);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-700);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  gap: 1rem;
  border-top: 1px solid var(--gray-200);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  margin-top: 0;
  padding-top: 5rem;
}

.hero-content {
  max-width: 48rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Page Hero */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
  color: var(--white);
}

.about-hero {
  background: linear-gradient(135deg, var(--blue-darker), var(--blue-primary));
}

.training-hero {
  background: linear-gradient(135deg, var(--blue-darker), var(--blue-dark));
}

.contact-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 3.75rem;
  }
}

.page-hero-subtitle {
  font-size: 1.25rem;
  margin-top: 1rem;
  opacity: 0.9;
  max-width: 32rem;
}

/* Grid Systems */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* About Page */
.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.accreditation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badge {
  background-color: var(--blue-light);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.quote-box {
  background-color: var(--blue-light);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.quote-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--black);
}

.quote-author {
  margin-top: 1rem;
  font-weight: 600;
}

.quote-divider {
  height: 2px;
  background-color: var(--blue-primary);
  width: 3rem;
  margin: 1rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-primary);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-primary);
}

.team-avatar {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-primary));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.team-role {
  font-size: 0.875rem;
  color: var(--blue-primary);
  margin-bottom: 0.5rem;
}

.team-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Training Page */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.programme-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--blue-primary);
  transition: all 0.3s ease;
}

.programme-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.programme-badge {
  display: inline-block;
  background-color: var(--blue-light);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.programme-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.programme-list {
  list-style: none;
  padding: 0;
}

.programme-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.875rem;
  color: var(--gray-600);
}

.programme-list li:last-child {
  border-bottom: none;
}

/* Accreditation Section */
.accreditation-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .accreditation-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.accreditation-logos {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.accred-logo {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: var(--blue-dark);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.feature-check {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--blue-primary);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

/* Schedule Section */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .schedule-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.delivery-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--blue-light);
  border-radius: 0.75rem;
}

.delivery-icon {
  font-size: 1.5rem;
}

.delivery-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.delivery-item p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.highlight-box {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.highlight-number {
  font-size: 3rem;
  font-weight: 700;
}

.highlight-label {
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--black), var(--gray-800));
  color: var(--white);
  padding: 4rem 0;
}

.training-cta {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--gray-400);
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-bright);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-accred {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue-bright);
}

.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
}

.footer-quote {
  margin-top: 0.5rem;
  font-style: italic;
  color: var(--gray-500);
}

/* Contact Page */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.contact-form-container {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 1rem;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card, .social-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.info-card h3, .social-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--blue-light);
  color: var(--black);
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.info-icon {
  font-size: 1.25rem;
}

.info-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.info-item p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  padding: 0.5rem 1rem;
  background: var(--blue-light);
  color: var(--blue-dark);
  text-decoration: none;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--blue-primary);
  color: var(--white);
}

/* Map Section */
.map-section {
  padding-bottom: 4rem;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
  border-radius: 1rem;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-content {
  text-align: center;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.map-pin {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Impact Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.impact-card {
  background: linear-gradient(135deg, var(--blue-light), var(--white));
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-primary);
}

.impact-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-primary);
}

.impact-title {
  font-weight: 600;
  margin-top: 0.5rem;
  color: var(--black);
}

.impact-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

/* Programmes Preview */
.programmes-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.preview-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.preview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-primary);
}

.preview-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.preview-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Story Content */
.story-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-700);
}

/* Image Zoom */
.image-zoom {
  overflow: hidden;
  border-radius: 1rem;
}

.image-zoom img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-zoom:hover img {
  transform: scale(1.05);
}

/* Mission Grid */
.mission-grid {
  align-items: center;
}

.mission-content p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* About Grid */
.about-grid {
  align-items: center;
}

.about-content p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: translateY(0);
  }
  
  .btn-primary:hover,
  .btn-outline:hover,
  .programme-card:hover,
  .team-card:hover,
  .value-card:hover,
  .impact-card:hover {
    transform: none;
  }
}
/* Logo Image Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-image {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--gray-500);
}

@media (min-width: 768px) {
  .logo-image {
    height: 50px;
  }
  
  .logo-text {
    font-size: 1.75rem;
  }
  
  .logo-sub {
    font-size: 0.75rem;
  }
}

/* Mobile menu adjustments */
@media (max-width: 767px) {
  .logo-image {
    height: 35px;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
}
/* ============================================
   Additional Image Styles for Header
   Add these to your existing css/style.css
   ============================================ */

/* Logo Image Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-image {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.logo:hover .logo-image {
  transform: scale(1.05);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--gray-500);
}

/* Footer Logo Image */
.footer-logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-bright);
  margin-bottom: 0.25rem;
}

/* Responsive Logo */
@media (min-width: 768px) {
  .logo-image {
    height: 50px;
  }
  
  .logo-text {
    font-size: 1.75rem;
  }
  
  .logo-sub {
    font-size: 0.75rem;
  }
  
  .footer-logo-image {
    height: 45px;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .logo-image {
    height: 35px;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .logo-sub {
    font-size: 0.65rem;
  }
}

/* Scrolled navbar effect */
.navbar.scrolled .logo-image {
  height: 40px;
}

@media (min-width: 768px) {
  .navbar.scrolled .logo-image {
    height: 42px;
  }
}

/* Hero Overlay Image (if needed) */
.hero-overlay-image {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 40%;
  opacity: 0.1;
  pointer-events: none;
}

/* Page Header Decorative Image */
.page-header-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  opacity: 0.1;
  object-fit: cover;
  pointer-events: none;
}

/* Team Avatar Images */
.team-avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.team-avatar {
  position: relative;
  overflow: hidden;
}

/* Testimonial Images */
.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

/* Partner/Client Logos */
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.partner-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Hero Section with Background Image */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}
/* ============================================
   Programme Card Images Styles
   Add these to your css/style.css
   ============================================ */

/* Programme Card Image Wrapper */
.programme-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  background-color: var(--blue-light);
}

.programme-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.programme-card:hover .programme-image {
  transform: scale(1.05);
}

/* Alternative image style with overlay on hover */
.programme-image-wrapper {
  position: relative;
}

.programme-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(30, 64, 175, 0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.75rem;
  pointer-events: none;
}

.programme-card:hover .programme-image-wrapper::after {
  opacity: 1;
}

/* Programme Card adjustments for better visual */
.programme-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--blue-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.programme-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Badge positioning adjustment */
.programme-badge {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .programme-image-wrapper {
    height: 160px;
  }
}

/* Optional: Icon overlay on image hover */
.programme-image-wrapper {
  cursor: pointer;
}

/* Optional: Image caption/icon */
.programme-image-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 2;
}

.programme-card:hover .programme-image-icon {
  opacity: 1;
  transform: translateY(0);
}
/* ============================================
   Floating WhatsApp Button
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background-color: #20b359;
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

/* Tooltip on hover */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: #333;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

/* Pulse animation for attention */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  animation: none;
}
/* Map Container Styles */
.map-section {
  padding: 2rem 0 4rem 0;
}

.map-container {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* Responsive map */
@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}

/* Address styling in contact info */
.info-item p {
  line-height: 1.4;
}

.info-item strong {
  color: var(--black);
  margin-bottom: 0.25rem;
  display: block;
}

/* Get Directions Button (optional) */
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--blue-light);
  color: var(--blue-primary);
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  background-color: var(--blue-primary);
  color: var(--white);
}
/* ============================================
   Leadership Section with Image Styles
   Add these styles to your existing style.css
   ============================================ */

/* Leadership Container */
.leadership-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
  .leadership-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Leadership Image Styles */
.leadership-image-wrapper {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 400px;
}

.leadership-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.leadership-image:hover {
  transform: scale(1.02);
}

/* Leadership Info Styles */
.leadership-info {
  padding: 2rem;
  display: flex;
  align-items: center;
  background: var(--white);
}

.team-card-large {
  width: 100%;
  text-align: center;
}

.team-avatar-large {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.team-details {
  text-align: center;
}

.team-qualifications {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.qual-badge {
  display: inline-block;
  background-color: var(--blue-light);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--blue-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .leadership-image-wrapper {
    min-height: 300px;
    padding: 1.5rem;
  }
  
  .team-avatar-large {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }
  
  .leadership-info {
    padding: 1.5rem;
  }
}