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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
}

h1, h2 {
  letter-spacing: -0.02em;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: white;

  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: linear-gradient(
    to bottom,
    rgba(11, 60, 93, 0.75) 0%,
    rgba(11, 60, 93, 0.45) 45%,
    rgba(11, 60, 93, 0) 100%
  );

  transition: background 0.35s ease;
}


.navbar:hover {
  background-color: #0b3c5d;
}

.navbar:hover {
  color: #ffffff;
}

.logo {
  position: relative;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}

.logo img {
  display: block;
  height: 36px;        /* or 40px */
  width: auto;
  border-radius: 3px;
}

.logo::after {
  content: "";
  position: absolute;
  inset: -6px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35),
    transparent 70%
  );
  z-index: -1;
  border-radius: 10px;
}


.nav-links a {
  position: relative;
  color: white;
  font-weight: bold;
  text-decoration: none;
  margin-left: 20px;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #9fd3f5;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #9fd3f5;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    z-index: 1100;
  }
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    background-color: #0b3c5d;
    width: 100%;
    flex-direction: column;
    text-align: center;
    display: none;
  }

  .nav-links a {
  margin: 16px 0;
  }

  .nav-links.active {
    display: flex;
  }
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  width: 100px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) translateZ(0);
  object-fit: cover;
  image-rendering: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -60px -60px -60px -60px ;
  background: linear-gradient(
    to right,
    rgba(11, 60, 93, 0.55),
    rgba(11, 60, 93, 0.15),
    rgba(11, 60, 93, 0)
  );
  z-index: -1;
  border-radius: 12px;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  color: white;
  padding-left: 80px;
  padding-right: 40px;
}

.hero-content {
  font-size: 42px;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 17px;
  max-width: 420px;
  margin-top: 8px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;       /* vertical center */
  justify-content: center; 
  text-align: left;  /* horizontal anchor area */

  color: white;

  padding-left: 8vw;
  padding-right: 8vh;
}



.hero-content h1 {
  font-size: 52px;
  max-width: 800px;
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-content h1 span {
  display: block;
  font-weight: 400;
  opacity: 0.9;
}

.hero-content h1 strong {
  display: block;
  font-weight: 700;
  letter-spacing: 1px;
}

.impact {
  background-color: #162f4d;
  padding: 100px 24px;
}

.impact-content {
  max-width: 1100px;
  margin: 0 auto;

}

.section-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9b37e;
  margin-bottom: 16px;
}

.impact h2 {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 32px;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.impact-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.impact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1.5px solid #c9b37e;
  color: #c9b37e;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #c9b37e;
  color: #162f4d;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible.reveal-left,
.reveal.visible-reveal-right {
  transform: translateX(0);
}

.value {
  background-color: #0b3c5d;
  padding: 100px 24px;
}

.value-container {
  max-width: 1100px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.value-text h2 {
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.value-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom:16px ;
}

.value-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-image img:hover {
  transform:  translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .value-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.impact-content,
.value-text,
.hero-content {
  max-width: 720px;
}

p,
li {
  line-height: 1.7;
}

h1 {
  line-height: 1.05;
}

h2 {
  line-height: 1.15;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .impact h2,
  .value-text h2 {
    font-size: 32px;
  }
}

.hero-text-slider {
  position: relative;

  width: 100%;
  max-width: 640px;
  min-height: 260px;
 /* pushes it to the left side */
}


.hero-slide {
  position: absolute;
  inset: 0;
  pointer-events: none;

  opacity: 0;
  transform: translateY(16px);

  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
}



.hero-slide h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 12px;
  max-width: 14ch;
}

.hero-slide p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.85);
}

.facilities {
  background: linear-gradient(
    to bottom,
    #f5f7fa,
    #eef2f7
  );
  padding: 100px 24px;
}

.facilities::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(11, 60, 93, 0.03),
    transparent 60%
  );
  pointer-events: none;
}

.facilities-container {
  max-width: 1100px;
  margin: 0 auto;
}

.facilities h2 {
  font-size: 40px;
  font-weight: 600;
  color: #162f4d;
  margin-bottom: 16px;
}

.facilities-intro {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(22, 47, 77, 0.75);
  margin-bottom: 56px;
}

/* Grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.facility-card {
  background: #ffffff;
  border: 1px solid rgba(11, 60, 93, 0.12);
  box-shadow: 0 12px 30px  rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.facility-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0b3c5d;
  margin-bottom: 10px;
}

.facility-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(22, 47, 77, 0.8);
}

/* Hover (subtle, professional) */
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .facilities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .facilities h2 {
    font-size: 32px;
  }
}

/* Facilities icons */
.facility-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: inline-block;
}

/* Make cards clickable but clean */
.facility-card {
  text-align: left;
  cursor: pointer;
  border: 1px solid rgba(11, 60, 93, 0.15);
}

.facility-card:focus {
  outline: none;
}

/* CTA */
.facilities-cta {
  margin-top: 64px;
  text-align: center;
}

/* Modal */
.facility-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.facility-modal.active {
  display: flex;
}

.facility-modal-content {
  background: #ffffff;
  max-width: 520px;
  width: 90%;
  padding: 40px;
  border-radius: 10px;
  position: relative;
  animation: fadeUp 0.4s ease;
}

.facility-modal-content h3 {
  color: #0b3c5d;
  margin-bottom: 12px;
}

.facility-modal-content p {
  color: rgba(22, 47, 77, 0.85);
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile polish */
@media (max-width: 600px) {
  .facility-card {
    padding: 28px 22px;
  }

  .facility-icon {
    font-size: 24px;
  }
}

.program-highlight {
  position: relative;
  padding: 120px 24px;
  background: linear-gradient(
    135deg,
    #162f4d 0%,
    #0b3c5d 100%
  );
  overflow: hidden;
}

.program-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 179, 126, 0.12),
      transparent 60%
    );
}

.program-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  color: white;
}

.program-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.program-intro {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

.program-points {
  list-style: none;
  margin-bottom: 40px;
}

.program-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.85);
}

.program-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #c9b37e;
  border-radius: 50%;
}

.feature-highlight {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 24px;
  background-image: url("images/program1.jpg"); /* your image */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 60, 93, 0.85),
    rgba(11, 60, 93, 0.45),
    rgba(11, 60, 93, 0.15)
  );
}

.feature-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  padding: 56px 56px;
  max-width: 520px;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  margin-left: 6%;
}

.feature-card h2 {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #162f4d;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.feature-note {
  font-size: 14px;
  color: #555;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .feature-card {
    margin-left: 0;
    padding: 40px 32px;
  }

  .feature-highlight {
    min-height: auto;
    padding: 100px 24px;
  }
}

.approach {
  background-color: #162f4d;
  padding: 120px 24px;
}

.approach-container {
  max-width: 1100px;
  margin: 0 auto;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.approach-step {
  background: rgba(255, 255, 255, 0.04);
  padding: 36px 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease,
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.approach-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  color: #c9b37e;
  margin-bottom: 12px;
}

.approach-step h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 14px;
}

.approach-step p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 1024px) {
  .approach-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .approach {
    padding: 80px 20px;
  }

  .approach-step {
    padding: 28px 24px;
  }
}


/* =====================
   NGO IMPACT MARQUEE
===================== */

.impact-marquee {
  background-color: #0b3c5d;
  padding: 24px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  white-space: nowrap;
  margin-right: 64px;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Smooth rolling motion */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile tuning */
@media (max-width: 600px) {
  .marquee-item {
    font-size: 14px;
    margin-right: 40px;
  }
}

/* =====================
   IMPACT STRIP (ROLLING)
===================== */

.impact-strip {
  background: #0b3c5d;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.impact-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: roll 30s linear infinite;
}

.impact-track span {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

@keyframes roll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile speed tweak */
@media (max-width: 768px) {
  .impact-track {
    animation-duration: 40s;
  }
}


/* =====================
   FOOTER
===================== */

.site-footer {
  background: linear-gradient(
    180deg,
    #0b3c5d 0%,
    #162f4d 100%
  );
  color: rgba(255, 255, 255, 0.9);
  padding: 80px 24px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Brand */
.footer-brand h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 360px;
}

/* Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: #c9b37e;
  transform: translateX(4px);
}

/* Social */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.footer-social a:hover {
  background: #c9b37e;
  color: #162f4d;
  transform: translateY(-4px);
}

/* Bottom */
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-links {
    align-items: center;
  }

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

/* Footer section headings */
.footer-links h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c9b37e;
  margin-bottom: 18px;
}

/* Adjust grid for 4 columns */
.footer-inner {
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
}

/* Responsive tweak */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links h4 {
    margin-top: 24px;
  }
}

/* =====================
   FOOTER EXTENSION MARQUEE
===================== */

.impact-marquee {
  position: relative;
  background: linear-gradient(
    180deg,
    #162f4d 0%,
    #0b3c5d 100%
  );

  /* THIS is the key part */
  min-height: 100vh;

  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Smooth fade from footer */
.site-footer {
  position: relative;
  z-index: 2;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(22, 47, 77, 0),
    rgba(22, 47, 77, 1)
  );
}

/* Marquee track */
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  padding-left: 100%;
}

/* Items */
.marquee-item {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Animation */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile polish */
@media (max-width: 768px) {
  .impact-marquee {
    min-height: 70vh;
  }

  .marquee-track {
    gap: 40px;
  }
}

.impact-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* =====================
   CONTACT SECTION
===================== */

.contact-section {
  position: relative;
  padding: 120px 24px;
  background: linear-gradient(
    to bottom,
    #f5f7fa,
    #eef2f7
  );
}

.contact-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  padding: 64px 48px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header h2 {
  font-size: 40px;
  color: #162f4d;
  margin-bottom: 16px;
}

.contact-header p {
  font-size: 16px;
  color: rgba(22, 47, 77, 0.75);
  line-height: 1.7;
}

/* Form */
.contact-form {
  display: grid;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 30px;
  border: 1.5px solid rgba(11, 60, 93, 0.2);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group textarea {
  border-radius: 20px;
  resize: none;
}

/* Focus */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0b3c5d;
  box-shadow: 0 0 0 4px rgba(11, 60, 93, 0.1);
}

/* Button */
.btn-primary {
  margin-top: 12px;
  align-self: center;
  padding: 14px 36px;
  border-radius: 999px;
  border: none;
  background-color: #0b3c5d;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 60, 93, 0.35);
}

/* Mobile */
@media (max-width: 600px) {
  .contact-wrapper {
    padding: 48px 24px;
  }

  .contact-header h2 {
    font-size: 30px;
  }
}

/* =====================
   ABOUT PREVIEW
===================== */

.about-preview {
  background: #f5f7fa;
  padding: 100px 24px;
}

.about-preview-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-preview h2 {
  font-size: 40px;
  color: #162f4d;
  margin-bottom: 20px;
}

.about-preview p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(22, 47, 77, 0.75);
  margin-bottom: 16px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-preview h2 {
    font-size: 30px;
  }
}

.call-card {
  background: linear-gradient(
    135deg,
    #0b3c5d 0%,
    #162f4d 100%
  );
  padding: 120px 24px;
}

.call-card-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.call-card-images {
  position: relative;
}

.call-card-images img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.call-card-images img:last-child {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 70%;
}

.call-card-content h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 18px;
}

.call-card-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.call-card-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .call-card-inner {
    grid-template-columns: 1fr;
  }

  .call-card-images img:last-child {
    position: relative;
    width: 100%;
    right: 0;
    bottom: 0;
    margin-top: 24px;
  }

  .call-card-content h2 {
    font-size: 32px;
  }
}

/* Impact with image */
.impact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.impact-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .impact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .impact-image {
    order: -1; /* image comes first on mobile */
  }
}

/* =========================
   PAGE HERO (ABOUT)
========================= */

.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Background image */
.about-hero {
  background-image: url("images/about-hero.jpg"); /* your image */
  background-size: cover;
  background-position: center;
}

.services-hero {
  background-image: url("images/services-hero.jpg"); /* your image */
  background-size: cover;
  background-position: center;
}

.projects-hero {
  background-image: url("Hemera/01.jpeg"); /* your image */
  background-size: cover;
  background-position: center;
}

/* Overlay */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 60, 93, 0.85),
    rgba(11, 60, 93, 0.55)
  );
}

/* Content */
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.breadcrumb .current {
  color: #c9b37e;
  position: relative;
}

/* underline indicator */
.breadcrumb .current::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #c9b37e;
  margin-top: 6px;
}

/* Heading */
.page-hero-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 auto;
  max-width: 18ch;
  text-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .page-hero {
    min-height: 100vh;
  }

  .breadcrumb {
    font-size: 12px;
  }
}


.about-intro {
  position: relative;
  background: #f5f7fa;
  padding: 120px 24px;
  overflow: hidden;
}

/* Soft accent background */
.about-intro::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(201, 179, 126, 0.18),
    transparent 65%
  );
}

/* Layout */
.about-intro-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

/* Text */
.about-intro h2 {
  font-size: 38px;
  margin-bottom: 24px;
  color: #162f4d;
}

.about-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(22, 47, 77, 0.8);
  margin-bottom: 16px;
}

/* Image block */
.about-intro-media {
  position: relative;
}

.about-intro-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;

  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);

  transform: translateY(0);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Subtle hover lift (desktop only) */
.about-intro-media img:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.22);
}

@media (max-width: 900px) {
  .about-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-intro-media img {
    height: 300px;
  }

  .about-intro {
    padding: 90px 20px;
  }

  .about-intro h2 {
    font-size: 32px;
  }
}


.mission-vision {
  padding: 120px 24px;
  background: linear-gradient(
    to bottom,
    #f7f9fc,
    #ffffff
  );
}

.mv-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.mv-card {
  background: #ffffff;
  padding: 44px 40px;
  border-radius: 16px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.08);
  position: relative;

  /* floating animation */
  animation: float 6s ease-in-out infinite;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* slight offset so they don't float in sync */
.mv-card.vision {
  animation-delay: 1.8s;
}

/* hover lift */
.mv-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.12);
}

/* labels */
.mv-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9b37e;
  margin-bottom: 16px;
}

.mv-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #162f4d;
}

.mv-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(22, 47, 77, 0.8);
}

/* floating keyframes */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .mv-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mv-card {
    animation: float-mobile 2s ease-in-out infinite; /* remove float on mobile for performance */
  }
}

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

.my-card {
  opacity: 0;
  transform: translateY(24px);
}

.my-card.visible {
  opacity: 1;
  animation: float 6s ease-in-out infinite;
}


.core-values {
  background-color: #162f4d;
  padding: 120px 24px;
  color: #ffffff;
}

.core-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.core-values h2 {
  font-size: 40px;
  margin-bottom: 56px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.value-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.value-letter {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #c9b37e;
  margin-bottom: 8px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* Responsive */
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .core-values {
    padding: 90px 20px;
  }

  .core-values h2 {
    font-size: 32px;
  }
}

.value-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  /* NEW */
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}


.why-akmazoo {
  background: #f5f7fa;
  padding: 100px 24px;
}

.why-inner {
  max-width: 720px;
  margin: 0 auto;
}

.why-akmazoo ul {
  margin: 32px 0;
}

.why-akmazoo li {
  margin-bottom: 12px;
  font-size: 16px;
}
.services-intro {
  background: #f5f7fa;
  padding: 120px 24px;
}

.services-intro-inner {
  max-width: 720px;
  margin: 0 auto;
}

.services-intro h2 {
  font-size: 38px;
  margin-bottom: 24px;
  color: #162f4d;
}

.services-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(22, 47, 77, 0.8);
  margin-bottom: 16px;
}

/* Core services */
.services-core {
  background: #ffffff;
  padding: 120px 24px;
}

.services-core-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid rgba(11, 60, 93, 0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #0b3c5d;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(22, 47, 77, 0.85);
}

/* Responsive */
@media (max-width: 900px) {
  .services-core-inner {
    grid-template-columns: 1fr;
  }

  .services-intro h2 {
    font-size: 32px;
  }
}

/* =====================
   SERVICES CTA
===================== */

.services-cta {
  background: linear-gradient(
    135deg,
    #0b3c5d 0%,
    #162f4d 100%
  );
  padding: 120px 24px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* subtle accent glow */
.services-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top center,
    rgba(201, 179, 126, 0.18),
    transparent 60%
  );
  pointer-events: none;
}

.services-cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.services-cta h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.15;
}

.services-cta p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

/* Button polish */
.services-cta .btn-outline {
  font-size: 16px;
  padding: 14px 28px;
  border-width: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-cta {
    padding: 90px 20px;
  }

  .services-cta h2 {
    font-size: 32px;
  }

  .services-cta p {
    font-size: 16px;
  }
}


.project-media {
  padding: 120px 24px;
  background: #f5f7fa;
}

.project-media-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}


/* Gallery */
.project-gallery img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}


.gallery-thumbs img:hover {
  opacity: 1;
  transform: scale(1.04);
}

/* Text */
.project-brochure h2 {
  font-size: 34px;
  color: #162f4d;
  margin-bottom: 18px;
}

.project-brochure p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(22, 47, 77, 0.8);
  margin-bottom: 24px;
}

.project-points {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.project-points li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #162f4d;
}

/* Mobile */
@media (max-width: 900px) {
  .project-media-inner {
    grid-template-columns: 1fr;
  }

  .gallery-main img {
    height: 300px;
  }
}


@media (max-width: 768px) {
  .project-media-inner {
    grid-template-columns: 1fr;
  }

  .project-brochure {
    order: 2;
  }

  .project-gallery {
    order: 1;
  }
}
.gallery-main img {
  height: 420px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.project-brochure {
  padding-top: 12px;
}

/* MEDIA SLIDER */
.media-slider {
  width: 100%;
}

.media-slides {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.media-slide {
  display: none;
}

.media-slide.active {
  display: block;
}

.media-slide img,
.media-slide video {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.media-slide video {
  background: #000;
}

/* Thumbnails */
.media-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.media-thumbs button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.media-thumbs button:hover {
  opacity: 1;
  transform: scale(1.04);
}

.media-thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.media-thumbs button:first-child {
  background: #162f4d;
  color: white;
  font-size: 20px;
}

/* Mobile */
@media (max-width: 900px) {
  .media-slide img,
  .media-slide video {
    height: 300px;
  }

  .media-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =====================
   HEMERA GALLERY STRIP
===================== */

.project-gallery-strip {
  background: #ffffff;
  padding: 120px 24px;
  overflow: hidden;
}

.gallery-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.project-gallery-strip h2 {
  font-size: 36px;
  color: #162f4d;
  margin-bottom: 48px;
}

/* Slider */
.gallery-strip-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: gallery-scroll 35s linear infinite;
}

.gallery-strip-track img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

/* Motion */
@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .gallery-strip-track img {
    width: 260px;
    height: 180px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .project-gallery-strip {
    padding: 90px 20px;
  }

  .project-gallery-strip h2 {
    font-size: 30px;
    margin-bottom: 32px;
  }

  .gallery-strip-track {
    gap: 20px;
    animation-duration: 45s;
  }

  .gallery-strip-track img {
    width: 200px;
    height: 140px;
  }
}

.project-gallery-strip {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

/* =====================
   PROJECT OVERVIEW
===================== */

.project-overview {
  background: #ffffff;
  padding: 120px 24px;
}

.project-overview-inner {
  max-width: 900px;
  margin: 0 auto;
}

.project-title {
  font-size: 40px;
  color: #162f4d;
  margin-bottom: 24px;
}

.project-title span {
  font-weight: 400;
  font-size: 20px;
  color: rgba(22,47,77,0.6);
}

/* Meta info */
.project-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.project-meta div {
  font-size: 15px;
  color: rgba(22,47,77,0.8);
}

.project-meta strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c9b37e;
  margin-bottom: 6px;
}

/* Description */
.project-description {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(22,47,77,0.85);
  margin-bottom: 32px;
}

/* Features */
.project-features {
  list-style: none;
  padding: 0;
}

.project-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #162f4d;
}

.project-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #c9b37e;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .project-meta {
    grid-template-columns: 1fr;
  }

  .project-title {
    font-size: 32px;
  }
}
