* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 60px 20px;
  min-height: auto; /* Override 85vh */
}

/* Desktop only: Keep vertical height */
@media (min-width: 1024px) {
  .hero {
    min-height: 85vh;
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}


.hero-content {
  flex: 1;
  padding-right: 20px;
}

.hero-content .logo {
  width: 240px;
  margin-bottom: 20px;
}

.hero-content .tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.hero-content .headline {
  font-size: 3rem;
  font-weight: 800;
  color: #f02d00;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-content .headline span {
  color: #1a1a1a;
  font-weight: 900;
}

.hero-content .subtext {
  font-size: 1.3rem;
  color: #555;
  max-width: 580px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #000000;
  padding: 16px 32px;
  font-size: 1.1rem;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(240,45,0,0.3);
}

.cta-button:hover {
  background-color: #f02d00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,86,210,0.4);
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .hero-content .headline {
    font-size: 2.8rem;     /* previously 3rem */
    line-height: 1.3;
  }
}


/* Trusted Section */

.trusted-by {
  padding: 60px 5%;
  background-color: #f7f6f2;
  text-align: center;
  overflow-x: auto;
}

.trusted-by h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
  font-weight: 800;
  margin-bottom: 40px;
  
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  justify-items: center;
  padding: 20px 10px;
}


.logo-grid img {
  background: #ffffff;
  padding: 20px;
  width: 140px;
  height: 140px;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.logo-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



/* Partnership Section */
.partnership {
  padding: 60px 0;
  background: linear-gradient(to right, #ffffff, #f9f9f9);
}

.partnership-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.partnership h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 800;
}

.partnership-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;  /* Slightly increased */
  flex-wrap: wrap;
}


.partnership-text {
  flex: 1;
  min-width: 320px;
  padding-right: 10px;
}

.partnership-text p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.partnership-text strong {
  color: #f02d00;
  font-weight: 700;
}

.partnership-features {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.partnership-features li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.partnership-features li::before {
  content: "→";
  color: #f02d00;
  position: absolute;
  left: 0;
}

.partnership-image {
  flex: 1;
  min-width: 320px;
}

.partnership-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .partnership-content {
    flex-direction: column-reverse;
    padding: 0;
    gap: 30px;
  }

  .partnership h2 {
    font-size: 2rem;
  }

  .partnership-text p {
    font-size: 1.1rem;
  }

  .partnership-image img {
    max-width: 100%;
  }
}


/* activties section */

.activities {
  padding: 60px 20px;
  background-color: #f7f6f2;
}

.activities h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #1a1a1a;
  margin-bottom: 30px; /* reduced from 60px */
  font-weight: 800;
}

.activities h2 span {
  color: #f02d00;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-top: 20px; /* reduced from 40px */
}

.timeline::before {
  content: "";
  position: absolute;
  top: 32px; /* lowered from 50px to pull the line up */
  left: 0;
  right: 0;
  height: 3px;
  background-color: #000;
  z-index: 0;
}

.activity {
  text-align: left;
  width: 22%;
  position: relative;
  z-index: 1;
}

.activity .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #000;
  position: relative;
  top: 16px;
  margin: 0 auto;
  transform: translateY(-50%);
}

.activity h3,
.activity p {
  margin-top: 16px; /* adds space between the dot/line and the text */
}


.activity h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f02d00;
  margin-bottom: 10px;
  line-height: 1.3;
}

.activity p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Mobile styles */
@media (max-width: 900px) {
  .timeline {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline::before {
    height: 100%;
    width: 3px;
    top: 10px;
    left: 24px;
    right: auto;
  }

  .activity {
    width: 100%;
    padding-left: 60px;
    margin-bottom: 40px;
  }

  .activity .dot {
    position: absolute;
    left: 15px; /* aligned perfectly to the vertical line */
    top: 10px;  /* aligns with ::before line top */
  }
}

/* Academic Partners Section */

/* Academic Partners Section */
.academic-partners {
  padding: 60px 20px;
  background-color: #f02d00;
  color: #fff;
}

.academic-partners-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.partners-logos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 logos per row */
  gap: 30px;
  padding: 20px;
}

.partners-logos img {
  width: 100%;
  max-width: 140px;
  height: 140px;
  object-fit: contain;
  padding: 15px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.partners-logos img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.partners-content {
  flex: 1;
  padding: 20px;
}

.partners-content h2 {
  font-size: 1.9rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.4;
  max-width: 800px;
}

/* Responsive (≤768px) */
@media (max-width: 768px) {
  .academic-partners-container {
    flex-direction: column;
    text-align: center;
  }

  .partners-logos {
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 logos per row */
  }

  .partners-content h2 {
    max-width: 100%;
    font-size: 1.6rem;
  }
}



/* Key Features Section */
.key-features {
  padding: 60px 20px;
  background-color: #000; /* black background */
  color: white;
}

.key-features h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  font-weight: 800;
  color: white;
}

.key-features h2 span {
  color: #f02d00; /* red highlight */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d); /* inner box gradient */
  border: 1px solid rgba(255, 255, 255, 0.15);            /* subtle white border */
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.08), /* soft outer glow */
    0 0 25px rgba(255, 255, 255, 0.05); /* layered glow */
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 20px rgba(240, 45, 0, 0.3),
    0 0 35px rgba(255, 255, 255, 0.1);
}


.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: radial-gradient(circle, #f02d00 0%, #ff5722 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 32px;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card p {
  font-size: 1.05rem;
  color: #ddd;
  line-height: 1.5;
}

/* Programs Section */
.programs {
  padding: 60px 20px;
  background: #ffffff;
}

.programs h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #1a1a1a;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.program-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.program-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.8;
  filter: brightness(1.1) contrast(0.9);
}

.program-card h3 {
  font-size: 1.4rem;
  color: #f02d00;
  margin: 20px;
  text-align: center;
  font-weight: 700;
}

.program-list {
  list-style: none;
  margin: 0;
  padding: 0 20px 20px;
}

.program-list li {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.program-list li::before {
  content: "•";
  color: #000000;
  position: absolute;
  left: 8px;
  font-weight: bold;
}

/* comparison */
.comparison {
  padding: 60px 20px;
  background: #fffdf7;
}

.comparison h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #f02d00;
  margin-bottom: 40px;
  font-weight: 800;
}

.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #1a1a1a;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  flex: 1;
  padding: 0 16px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.comparison-cell:first-child {
  font-weight: 700;
  color: #000;
}


/* Impact Stats Section */

.impact-stats {
  padding: 80px 20px;
  background: #f9f9f9; /* Slightly darker than white */
}


.impact-header {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.impact-title {
  flex: 1;
}

.impact-title h2 {
  font-size: 2.4rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.impact-title p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

.impact-description {
  flex: 1;
  display: flex;
  align-items: center;
}

.impact-description p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #f02d00;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.4;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.contact-content {
  flex: 1;
}

.contact-content h2 {
  font-size: 2.4rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.benefits-list {
  list-style: none;
  margin: 0 0 30px;
}

.benefits-list li {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.benefits-list li span {
  font-size: 1.4rem;
}

.contact-content p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-actions {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-button {
  display: block;
  width: 100%;
  padding: 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.email-button {
  background: #f02d00;
  color: white;
  font-weight: 600;
}
.email-button:hover {
  background: #d62800;
}


.whatsapp-button {
  background: #25D366;
  color: white;
}

.whatsapp-button:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

/* Footer Section */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* Main Layout */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Logo */
.footer-logo img {
  height: 80px;
  background: white;
  padding: 10px 20px;
  border-radius: 10px;
}

/* Center Tagline */
.footer-text {
  flex: 1;
  text-align: center;
}

.footer-text .tagline {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 10px;
}

/* Right Contact Block (Grouped) */
.footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 200px;
}

.footer-contact-block .footer-contact {
  text-align: left;
}

.footer-contact-block .footer-contact a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-contact-block .footer-contact a:hover {
  color: #f02d00;
}

.footer-contact-block .footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.footer-contact-block .footer-social a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-contact-block .footer-social a:hover {
  color: #f02d00;
}

/* Divider Line */
.footer-divider {
  border-top: 2px dotted #666;
  margin: 30px auto 15px;
  width: 90%;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
}


/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact-block {
    align-items: center;
  }

  .footer-contact-block .footer-contact {
    text-align: center;
  }

  .footer-contact-block .footer-social {
    justify-content: center;
  }
}


@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .partnership-content {
    flex-direction: column-reverse;
  }

  .partnership h2 {
    font-size: 2rem;
  }

  .partnership-text p {
    font-size: 1.1rem;
    text-align: left;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .program-card {
    max-width: 400px;
    margin: 0 auto;
  }

 

  .comparison-row {
    flex-direction: column;
  }

  .comparison-cell {
    padding: 16px;
  }

  .comparison-cell:first-child {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .impact-header {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .impact-title h2 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card {
    padding: 25px;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .contact-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .benefits-list li {
    justify-content: center;
  }

  .contact-content h2 {
    font-size: 2rem;
  }

  .contact-actions {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

 
}

@media (max-width: 480px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    max-width: 300px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    max-width: 300px;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
    max-width: 300px;
    margin: 0 auto;
  }

  /* ✅ Corrected this part */
  .partners-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .trusted-by h2 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}



.justify {
  text-align: justify;
  line-height: 1.7;
  word-spacing: 0.02em;
}


/* partenrship gallery section */

@media (min-width: 769px) {
  .partnership-gallery {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

  .partnership-gallery h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
  }

  .gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }

  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #f4f4f4;
    display: block;
    padding: 10px;
  }

  .gallery-overlay {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
  }

  .gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
  }

  .gallery-overlay p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }
}


@media (max-width: 768px) {
  .partnership-gallery {
    padding: 50px 15px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f3f5 100%);
  }

  .partnership-gallery h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    color: #111;
  }

  .gallery-subtitle {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }

  .gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background-color: #f7f7f7;
  }

  .gallery-overlay {
    padding: 15px;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
  }

  .gallery-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .gallery-overlay p {
    font-size: 0.95rem;
    color: #666;
  }
}


@media (max-width: 480px) {
  .partnership-gallery {
    padding: 50px 15px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f3f5 100%);
  }

  .partnership-gallery h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    color: #111;
  }

  .gallery-subtitle {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }

  .gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background-color: #f7f7f7;
    padding: 10px;
  }

  .gallery-overlay {
    padding: 15px;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
  }

  .gallery-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
    color: #222;
  }

  .gallery-overlay p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
  }
}
