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

:root {
  /* Colors - Navy Blue & Orange theme */
  --color-primary: #1e3a5f;
  --color-primary-dark: #152b47;
  --color-accent: #e67e22;
  --color-accent-light: #f39c12;
  --color-secondary: #34495e;
  --color-background: #ffffff;
  --color-foreground: #1a1a1a;
  --color-muted: #6b7280;
  --color-muted-light: #f3f4f6;
  --color-border: #e5e7eb;
  --color-card: #ffffff;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;
  
  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 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);
  
  /* Transitions */
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-family);
  color: var(--color-foreground);
  background-color: var(--color-background);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px; /* Space for fixed navbar */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: none;         /* removes the orange background */
  border-radius: 0;         /* optional — removes any rounded edge */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  color: var(--color-foreground);
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background-color: var(--color-foreground);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: white;
  border-bottom: 1px solid var(--color-border);
  padding: var(--spacing-md);
  flex-direction: column;
  gap: var(--spacing-md);
  z-index: 40;
}

.mobile-menu.active {
  display: flex;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

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

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

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid white;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn .icon {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 4px solid var(--color-accent); /* distinct separation line */
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top; /* keeps top of image visible */
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 58, 95, 0.5); /* lighter, modern overlay */
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 80px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-md);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-2xl);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
}

.hero-buttons .btn-accent:hover {
  background-color: #007bff; /* new hover background color */
  color: #ffffff; /* text color on hover */
  border-color: #007bff;
  transition: all 0.3s ease;
}

.hero-buttons .btn-outline:hover {
  background-color: #ffffff; /* switch to white */
  color: #007bff; /* text becomes blue */
  border-color: #007bff;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Remove the cloudy gradient completely */
.hero-gradient {
  display: none;
}

/* Section */
.section {
  padding: var(--spacing-3xl) 0;
}

.stats-section {
  background-color: var(--color-background);
}

.cta-section {
  background-image: url("../images/cta-bg.jpg"); /* ← path to your image */
  background-size: cover;       /* makes image fill entire section */
  background-position: center;  /* centers the image */
  background-repeat: no-repeat;
  color: white;                 /* ensures text stands out */
  padding: 100px 20px;          /* adds space around text */
  text-align: center;
  position: relative;
}

/* Optional: add a dark overlay for readability */
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);  /* dark overlay */
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;  /* keeps text above overlay */
}


.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-muted);
  max-width: 768px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-2xl);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

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

/* Cards */
.card {
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

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

.benefit-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(230, 126, 34, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.benefit-card p {
  color: var(--color-muted);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1.125rem;
  color: var(--color-muted);
}

.footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 48px;
  height: auto;
  border-radius: 8px;
}

.footer-logo h3 {
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
}

.footer-about p {
  line-height: 1.6;
}

.footer-socials a {
  color: #cbd5e1;
  margin-right: 12px;
  font-size: 24px;
  transition: color 0.3s;
}

.footer-socials {
  margin-top: 20px;
}

.footer-socials a:hover {
  color: #f39c12;
}

.footer-section h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 8px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f39c12;
}

.footer-contact i {
  color: #ffffff;
  margin-right: 8px;
}

.footer-newsletter form {
  display: flex;
  margin-top: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background-color: #1e293b;
  color: #fff;
  border-radius: 4px 0 0 4px;
}

.footer-newsletter button {
  background-color: #f39c12;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}

.footer-newsletter button i {
  color: #fff;
  font-size: 16px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  font-size: 14px;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
    border-radius: 4px;
  }

  .footer-newsletter button {
    margin-top: 10px;
  }
}


/* Board Section */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
  justify-items: center;
  align-items: start;
}

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

@media (max-width: 640px) {
  .board-grid {
    grid-template-columns: 1fr;
  }
}

.board-card {
  background: #fff;
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 340px;
  width: 100%;
}

.board-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.board-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
}

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

.board-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}

.board-title {
  color: var(--color-muted);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.board-bio {
  font-size: 0.95rem;
  color: var(--color-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.board-card .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.board-card .social-links a {
  color: var(--color-primary);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.board-card .social-links a:hover {
  color: var(--color-accent);
}


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

.social-links a {
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--color-accent);
}

/* ✅ Make image perfectly circular */
.board-avatar {
  width: 130px;
  height: 130px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}

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

.board-title {
  color: #777;
  font-size: 15px;
  margin-bottom: 10px;
}

.board-bio {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.board-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* ✅ Proper icon sizing and alignment */
.board-socials a {
  color: #0077b5; /* LinkedIn blue */
  font-size: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.board-socials a:last-child {
  color: #000; /* X (Twitter) black */
}

.board-socials a:hover {
  background: #f0f0f0;
  transform: scale(1.15);
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.timeline-item {
  border-left: 4px solid var(--color-accent);
  padding-left: var(--spacing-md);
}

.timeline-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.timeline-item p {
  color: var(--color-muted);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

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

.value-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(230, 126, 34, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.value-card p {
  color: var(--color-muted);
}

/* Board Grid */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.board-card {
  text-align: center;
  padding: var(--spacing-lg);
}

.board-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--spacing-md);
  background-color: rgba(230, 126, 34, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.board-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the frame perfectly */
  object-position: center; /* keeps the face centered */
  border-radius: 50%;
}


.board-avatar svg {
  display: none; /* hide SVGs if you ever keep them in other cards */
}

.board-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.board-title {
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
}

.board-bio {
  color: var(--color-muted);
  font-size: 0.875rem;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.blog-card {
  padding: var(--spacing-lg);
  transition: var(--transition);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.blog-card-link:hover .blog-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.blog-card-link:hover .blog-card h2 {
  color: var(--color-accent);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-size: 0.875rem;
}

.blog-date {
  color: var(--color-muted);
}

.blog-category {
  background-color: rgba(230, 126, 34, 0.1);
  color: var(--color-accent);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.blog-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.blog-card p {
  color: var(--color-muted);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.pricing-card {
  position: relative;
  padding: var(--spacing-xl);
  text-align: center;
}

.pricing-card.featured {
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-lg);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.pricing-price {
  margin-bottom: var(--spacing-lg);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
}

.price-period {
  color: var(--color-muted);
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.partner-card {
  padding: var(--spacing-lg);
}

.partner-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.partner-category {
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.partner-card p {
  color: var(--color-muted);
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-info-item {
  display: flex;
  gap: var(--spacing-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(230, 126, 34, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.contact-info-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

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

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-group label {
  font-weight: 500;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  padding: var(--spacing-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.pricing-card .btn {
  margin-top: 1.5rem;
  width: 100%;
  border-radius: 6px;
  padding: 0.75rem;
  font-weight: 600;
}

/* Outline button */
.btn-outline {
  border: 2px solid #f39c12;
  background: transparent;
  color: #f39c12;
}

.btn-outline:hover {
  background: #f39c12;
  color: #fff;
}

/* Accent (featured) button */
.btn-accent {
  background: #f39c12;
  color: #fff;
  border: 2px solid #f39c12;
}

.btn-accent:hover {
  background: #f39c12;
}

/* Make pricing cards equal height and align button at bottom */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Use flexbox for vertical alignment */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensures equal height */
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Allow the features list to grow naturally */
.pricing-features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* Ensure the button stays fixed at the bottom */
.pricing-card .btn {
  margin-top: auto;
  align-self: stretch;
}

/* ABOUT PAGE SPACING FIXES */
.about-page {
  padding-top: 120px; /* adds room below navbar */
}

.about-section {
  margin-bottom: var(--spacing-3xl); /* consistent gap between sections */
}

.about-section:last-of-type {
  margin-bottom: var(--spacing-xl); /* slightly smaller before footer */
}

/* Add more space between content sections */
.content-section {
  margin-bottom: 3rem; /* increased from default (likely 1.5rem or 2rem) */
}

.content-section h2 {
  margin-bottom: 1rem; /* adds spacing under each section title */
}
.content-section p {
  margin-bottom: 1.5rem; /* adds spacing between paragraphs */
} 

/* Fix hero text overlap on smaller screens */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.5rem; /* smaller font size */
    padding: 0 var(--spacing-sm); /* add horizontal padding */
  }
  
  .hero-subtitle {
    font-size: 1rem; /* smaller subtitle */
    padding: 0 var(--spacing-sm); /* add horizontal padding */
  }
}

/* === LOGIN PAGE STYLES === */

    body {
      background-color: #f8fafc;
    }

    .login-section {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 80vh;
      padding: 60px 20px;
      background: linear-gradient(to bottom, #f9fafb, #f1f5f9);
    }

    .login-form {
      background: white;
      max-width: 420px;
      width: 100%;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .login-section h2 {
      text-align: center;
      margin-bottom: 30px;
      color: var(--color-primary, #1e3a8a);
    }

    .login-form label {
      display: block;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 8px;
    }

    .login-form input {
      width: 100%;
      padding: 12px;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      margin-bottom: 20px;
      font-size: 15px;
    }

    .login-form input:focus {
      border-color: var(--color-accent, #e67e22);
      outline: none;
    }

    .login-form .btn {
      width: 100%;
      padding: 12px;
      background: var(--color-accent, #e67e22);
      color: white;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .login-form .btn:hover {
      background: #cf6f1d;
    }

    .login-section p {
      text-align: center;
      margin-top: 20px;
    }

    .login-section a {
      color: var(--color-accent, #e67e22);
      text-decoration: none;
      font-weight: 600;
    }

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

    footer {
      margin-top: 60px;
    }
/* === END LOGIN PAGE STYLES === */

.signup-section {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 80vh;
      padding: 60px 20px;
      background: linear-gradient(to bottom, #f9fafb, #f1f5f9);
    }

    .signup-form {
      background: white;
      max-width: 420px;
      width: 100%;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .signup-section h2 {
      text-align: center;
      margin-bottom: 30px;
      color: var(--color-primary, #1e3a8a);
    }

    .signup-form label {
      display: block;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 8px;
    }

    .signup-form input {
      width: 100%;
      padding: 12px;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      margin-bottom: 20px;
      font-size: 15px;
    }

    .signup-form input:focus {
      border-color: var(--color-accent, #e67e22);
      outline: none;
    }

    .signup-form .btn {
      width: 100%;
      padding: 12px;
      background: var(--color-accent, #e67e22);
      color: white;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .signup-form .btn:hover {
      background: #cf6f1d;
    }

    .signup-section p {
      text-align: center;
      margin-top: 20px;
    }

    .signup-section a {
      color: var(--color-accent, #e67e22);
      text-decoration: none;
      font-weight: 600;
    }

    .signup-section a:hover {
      text-decoration: underline;
    }
footer {
      margin-top: 60px;
    }

/* === DASHBOARD PAGE LAYOUT === */
.dashboard-page {
  font-family: 'Poppins', sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  min-height: 100vh;
}

/* HEADER */
.dashboard-header {
  background: #1e3a8a;
  color: white;
  padding: 15px 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-header .header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-header .header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-header .logo {
  height: 40px;
}

.dashboard-header .welcome-text {
  font-size: 1.2rem;
  font-weight: 500;
}

.logout-btn {
  background: #e67e22;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}
.logout-btn:hover {
  background: #cf6f1d;
}

/* MAIN DASHBOARD AREA */
.dashboard-container {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
}

/* SECTIONS */
.dashboard-section {
  margin-bottom: 40px;
}
.dashboard-section h2 {
  color: #1e3a8a;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
}

/* PROFILE CARD */
.profile-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 30px;
  max-width: 400px;
  margin: 0 auto 30px;
}

.profile-card .avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.profile-card h3 {
  color: #1e3a8a;
  margin-bottom: 5px;
}

.profile-card .btn {
  background: #e67e22;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}
.profile-card .btn:hover {
  background: #cf6f1d;
}

/* GRID CARDS */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.info-grid .card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.info-grid .card h3 {
  color: #1e3a8a;
  margin-bottom: 8px;
}
.status.active {
  color: green;
  font-weight: 600;
}

/* EVENT & RESOURCE LISTS */
.event-list,
.resource-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.event-list li,
.resource-list li {
  background: white;
  margin-bottom: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BUTTONS */
.btn.small {
  background: #1e3a8a;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: 0.3s ease;
}
.btn.small:hover {
  background: #142a6d;
}

/* FOOTER */
.dashboard-footer {
  text-align: center;
  background: #f1f5f9;
  padding: 20px 0;
  border-top: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* ==== DEBUG FIX FOR MEMBERSHIP PAGE ==== */

/* Make sure page content is visible and not hidden under navbar */
.membership-header {
  padding: 120px 20px 40px;
  text-align: center;
  background: #f8fafc;
  color: #1e293b;
  position: relative;
  z-index: 1;
}

.membership-header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;
}

.membership-header .page-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #334155;
}

.page-intro-spaced {
  padding-bottom: 40px;
}

/* Ensure pricing grid displays normally */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding-bottom: 60px;
}

/* Reset container overflow if it exists */
.container {
  overflow: visible !important;
}

/* Optional: help visualize if content is hidden */
.membership-header, .page-content {
  outline: none !important;
}

/* === MEMBERSHIP FORM PAGE STYLES === */

.membership-form-section {
  padding: 120px 20px 60px;
  background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.membership-form-container {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 40px 50px;
  width: 100%;
  max-width: 720px;
}

.membership-form-container h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
  margin-bottom: 10px;
}

.membership-form-container p {
  text-align: center;
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  color: #334155;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  color: #1e293b;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  display: inline-block;
  width: 100%;
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: #1d4ed8;
}

.plan-summary {
  background-color: #f1f5f9;
  border-left: 4px solid #2563eb;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  color: #334155;
}

.plan-summary strong {
  color: #0f172a;
}

@media (max-width: 600px) {
  .membership-form-container {
    padding: 30px 20px;
  }
}

/* === CONFIRMATION PAGE === */
.confirmation-section {
  background-color: #f1f5f9;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.confirmation-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.icon-success i {
  font-size: 60px;
  color: #22c55e;
  margin-bottom: 20px;
}

.receipt-preview {
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  text-align: left;
}

.confirmation-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.btn-outline {
  border: 2px solid #2563eb;
  background: transparent;
  color: #2563eb;
  padding: 12px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-outline:hover {
  background-color: #2563eb;
  color: white;
}

/* === RECEIPT PAGE === */
.receipt-section {
  background: #f8fafc;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.receipt-container {
  background: white;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.receipt-details {
  text-align: left;
  margin: 30px 0;
  border: 1px solid #e2e8f0;
  padding: 20px;
  border-radius: 12px;
  background: #f9fafb;
}

.receipt-footer {
  color: #64748b;
  margin-bottom: 20px;
}

/* === BLOG POST PAGE STYLES === */
.blog-post-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5530 100%);
  color: white;
  text-align: center;
}

.page-hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5530 100%);
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-header .blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
}

.blog-post-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-header .blog-excerpt {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.blog-post-content {
  padding: 60px 0;
}

.blog-post-image {
  margin-bottom: var(--spacing-2xl);
  text-align: center;
}

.blog-post-body {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.blog-post-body h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 40px 0 20px 0;
  color: var(--color-primary);
}

.blog-post-body h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 30px 0 15px 0;
  color: var(--color-secondary);
}

.blog-post-body p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.blog-post-body ul,
.blog-post-body ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.blog-post-body li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.blog-post-body blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-secondary);
}

.social-share {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 40px 0;
  margin: 60px 0;
  text-align: center;
}

.social-share h3 {
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.share-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-secondary);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.related-card {
  padding: var(--spacing-lg);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.related-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.related-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.related-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* ---------------------------------------------
   ADEC DONATE PAGE STYLING
   Add this at the bottom of style.css
---------------------------------------------- */

/* Page Hero (Donate Page Only) */
.page-hero {
    position: relative;
    padding: 120px 0;
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Overlay for readability (optional) */
.page-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(36, 56, 91, 0.55); /* navy overlay */
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

/* ---------------------------------------------
   CONTENT SPACING
---------------------------------------------- */
.page-content {
    padding: 60px 0;
    background: #f9f9f9;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    color: #24385B;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* ---------------------------------------------
   DONATION FORM
---------------------------------------------- */
.donation-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.donation-form label {
    font-weight: 600;
    color: #24385B;
}

.donation-form input,
.donation-form select {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 1rem;
    width: 100%;
    transition: 0.3s ease;
}

.donation-form input:focus,
.donation-form select:focus {
    border-color: #24385B;
    outline: none;
    box-shadow: 0 0 4px rgba(36, 56, 91, 0.3);
}

.donation-form button {
    background-color: #F8B400;
    color: #24385B;
    font-weight: 700;
    padding: 16px;
    font-size: 1.15rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Hover animation */
.donation-form button:hover {
    background-color: #24385B;
    color: #F8B400;
    transform: translateY(-2px);
}

/* ---------------------------------------------
   SUPPORT LIST
---------------------------------------------- */
.page-content ul {
    font-size: 1.1rem;
    line-height: 1.6;
}

.page-content a {
    color: #F8B400;
    font-weight: 600;
    text-decoration: underline;
}

/* ---------------------------------------------
   RESPONSIVE DESIGN
---------------------------------------------- */
@media (max-width: 768px) {
    .page-hero {
        padding: 80px 20px;
    }

    .page-hero h1 {
        font-size: 2.3rem;
    }

    .donation-form {
        padding: 25px;
    }
}

/* Payment page styles - separate file to merge with main style.css */

/* Centered payment card style like login page */
.payment-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 40px 20px;
}

.payment-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
  padding: 40px 30px;
  width: 100%;
  max-width: 450px;
}

.payment-card h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.payment-card label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}

.payment-card select,
.payment-card input,
.payment-card button {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.payment-card button {
  background-color: #0056b3;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.payment-card button:hover {
  background-color: #004494;
}

.payment-info {
  font-size: 0.95rem;
  margin-top: 20px;
  line-height: 1.6;
}

.payment-info ul {
  padding-left: 20px;
  margin-top: 10px;
}

.payment-info li {
  margin-bottom: 8px;
}

@media (max-width: 500px) {
  .payment-card {
    padding: 30px 20px;
  }
}
