:root {
    --primary-gold: #D48C1B;
    --bg-cream: #FFFDF0;
    --text-main: #B22222;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/*html, body {*/
/*  overflow-x: hidden;*/
/*}*/

* {
  box-sizing: border-box;
}

/* ==============Header================== */
.header-v3 {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

/* INNER WRAP */
.header-inner {
  max-width: 1300px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-bar {
  width: 4px;
  height: 44px;
  background: #ff6a00;
  border-radius: 4px;
}

.brand img {
  height: 48px;
}

.brand-text strong {
  display: block;
  font-size: 17px;
  color: #222;
}

.brand-text small {
  font-size: 12px;
  color: #666;
}

/* NAV */
.nav-v3 {
  display: flex;
  gap: 32px;
}

.nav-v3 a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  padding: 6px 0;
  position: relative;
}

.nav-v3 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ff6a00;
  transition: width 0.3s ease;
}

.nav-v3 a:hover::after {
  width: 100%;
}

/* ACTIONS */
.actions-v3 {
  display: flex;
  gap: 14px;
  align-items: center;
}

.actions-v3 .link {
  padding: 6px 16px 9px 16px;
  border: 1px solid #ff6a00;
  color: #ff6a00;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.actions-v3 .link:hover {
  color: #ff6a00;
}

.actions-v3 .btn {
  padding: 6px 16px 9px 16px;
  background: #ff6a00;
  /* color: #ff6a00; */
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.actions-v3 .btn:hover { 
   background: #be5a02; 
 } 

/* Hide mobile buttons on desktop */
.mobile-actions {
  display: none;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
}

/* ================= LARGE DESKTOP (1400px+) ================= */
@media (min-width: 1400px) {
  .header-inner {
    max-width: 1400px;
  }
}

/* ================= LAPTOP (1200px–1399px) ================= */
@media (max-width: 1399px) {
  .nav-v3 {
    gap: 24px;
  }
}

/* ================= SMALL LAPTOP / TABLET LANDSCAPE (992px–1199px) ================= */
@media (max-width: 1199px) {
  .nav-v3 {
    gap: 18px;
    font-size: 12px;
  }

  .brand img {
    height: 42px;
  }

  .actions-v3 .btn {
    padding: 8px 14px;
  }
}

/* ================= TABLET & BELOW (991px and down) ================= */
/* THIS IS WHERE WE SWITCH TO HAMBURGER */

@media (max-width: 991px) {

  /* Hide desktop nav & buttons */
  .nav-v3,
  .actions-v3 {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Mobile Menu */
  .nav-v3.active {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    overflow-y: auto;
    align-items: stretch;
  }

  .nav-v3.active a {
    font-size: 18px;
  }

  /* Mobile Buttons */
  .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    width: 100%;
  }

  .mobile-actions a {
    width: 100%;
    padding: 16px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
  }

  .mobile-volunteer {
    border: 2px solid #ff6a00;
    color: #ff6a00;
  }

  .mobile-donate {
    background: #ff6a00;
    color: #fff;
  }
}

/* ================= SMALL MOBILE (480px and down) ================= */
@media (max-width: 480px) {

  .header-inner {
    padding: 14px 16px;
  }

  .brand img {
    height: 34px;
  }

  .brand-text strong {
    font-size: 14px;
  }

}


/* ================slider styles================ */
/* ROOT */
:root {
    --cream: #fffbe8;
    --primary: #b7d23b;
    --dark: #222;
}

/* SLIDER WRAPPER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

/* SLIDES */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* CENTER CONTENT BOX */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);

    /* 🔹 TRANSPARENT GLASS LOOK */
    background: rgba(255, 252, 230, 0.88); /* 85% transparent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding: 50px 60px;
    max-width: 720px;
    width: 90%;
    border-radius: 20px;
    text-align: center;

    box-shadow: 
        0 20px 50px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.4);

    animation: fadeUp 1.2s ease forwards;
    border: 2px solid rgba(5, 4, 4, 0.45);
}


/* TEXT */
.hero-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--dark);
}

.hero-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: var(--primary);
    color: #000;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn.secondary {
    background: #f1f1f1;
    color: #000;
}

.btn.secondary:hover {
    background: #e5e5e5;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* RESPONSIVE */
@media (max-width: 1399px) {

  .hero-content {
    max-width: 650px;
    padding: 45px 50px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

}

@media (max-width: 1199px) {

  .hero-slider {
    height: 85vh;
  }

  .hero-content {
    max-width: 600px;
    padding: 40px 45px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content h3 {
    font-size: 20px;
  }

}


@media (max-width: 991px) {

  .hero-slider {
    height: 80vh;
  }

  .hero-content {
    max-width: 540px;
    padding: 35px 35px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content h3 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 15px;
  }

}


@media (max-width: 767px) {

  .hero-slider {
    height: 75vh;
  }

  .hero-content {
    width: 92%;
    padding: 28px 25px;
    border-radius: 16px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content h3 {
    font-size: 16px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 12px;
  }

}


@media (max-width: 480px) {

  .hero-slider {
    height: 70vh;
  }

  .hero-content {
    padding: 22px 18px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .hero-content h3 {
    font-size: 14px;
  }

  .hero-content p {
    font-size: 13px;
  }

}

/* ==============pillars grid styles================  */
:root {
    --cream-bg: #fbf7e1;
    --white: #ffffff;
    --accent-red: #e30000;
    --accent-gold: #ffd770;
    --text-dark: #1f1f1f;
}

/* SECTION */
.pillars-section {
    background: var(--cream-bg);
    padding: 40px 6%;
    font-family: "Segoe UI", sans-serif;
}

/* MODERN HEADER */
.pillars-header.modern {
    max-width: 900px;
    margin: 0 auto 70px;
    padding: 45px 40px;
    border-radius: 28px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.section-tag {
    display: inline-block;
    background: var(--accent-gold);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pillars-header h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.pillars-header p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* GRID */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* CARD */
.pillar-card {
    background: var(--white);
    border-radius: 24px;
    padding: 15px 30px;
    text-align: center;
    border: 1.5px solid var(--accent-red);
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
}

/* ICON */
.pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* HOVER */
.pillar-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

/* TEXT */
.pillar-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.focus {
    background: var(--accent-gold);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

/* MODAL */
.pillar-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.pillar-modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    animation: scaleUp 0.3s ease;
}

.modal-content h3 {
    margin-bottom: 14px;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 26px;
    cursor: pointer;
}

/* ANIMATION */
@keyframes scaleUp {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .pillars-grid { grid-template-columns: 1fr; }
}

/* ========================APPROACH SECTION ======================= */
/* Container & Section Setup */
.approach-section {
    padding: 40px 20px;
    /* background-color: #f9f9f9; */
    background: var(--cream-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* The Grid - Forces cards in one line */
.card-grid {
    display: flex;
    gap: 20px;
    align-items: stretch; /* Ensures all cards are the same height */
}

/* Card Styling */
.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 25px;
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;    /* Centers content horizontally */
    text-align: center;      /* Centers text lines */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #e67e22;
}

/* Icon Circle Centering */
.icon-circle {
    width: 70px;
    height: 70px;
    background: #fff3e0;
    color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    /* margin-bottom: 20px; */
}

.card h3 {
    margin-bottom: 15px;
    min-height: 3em; /* Ensures titles align even if one wraps to 2 lines */
    display: flex;
    align-items: center;
}

.card-body {
    flex-grow: 1; /* Pushes the footer to the bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left; /* Keeps list items readable, but centered in the card */
}

.features li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
  color: #444;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Footer Quote Alignment */
.footer-quote {
    margin-top: auto; /* Aligns footer to the bottom of the card */
    padding-top: 20px;
    border-top: 1px solid #eee;
    width: 100%;
}

.sanskrit {
    font-weight: bold;
    color: #e67e22;
    font-size: 1.1rem;
    margin: 0;
}

.translation {
    font-style: italic;
    color: #888;
    font-size: 0.85rem;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .card-grid {
        flex-direction: column;
    }
}

/* ========gallary============== */
:root {
  --cream-bg: #fffbe8;
  --accent-orange: #ff9800;
  --text-dark: #1f1f1f;
}

/* SECTION */
.gallery-section {
  background: var(--cream-bg);
  padding: 10px 6%;
  font-family: "Segoe UI", sans-serif;
}

/* HEADER */
.gallery-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.gallery-header h2 {
  font-size: 36px;
  color: var(--accent-orange);
  margin-bottom: 14px;
  font-weight: 700;
}

.gallery-header p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* IMAGE CARD */
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.overlay span {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 30px;
  background: rgba(0,0,0,0.25);
}

/* HOVER EFFECT */
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header h2 {
    font-size: 28px;
  }
}


/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 3000;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: zoomIn 0.35s ease;
}

/* CLOSE BUTTON */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* ANIMATION */
@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.overlay span {
  cursor: pointer;
}
.gallery-item {
  cursor: default;
}


/* ===================================VIEW MORE BUTTON */
.gallery-more {
  text-align: center;
  margin-top: 50px;
}

#viewMoreBtn {
  background: transparent;
  border: 2px solid var(--accent-orange);
  color: var(--accent-orange);
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#viewMoreBtn:hover {
  background: var(--accent-orange);
  color: #fff;
  transform: translateY(-2px);
}

/* HIDDEN IMAGES */
.gallery-item.hidden {
  display: none;
}


/* ================ready to built================= */

:root {
  /* --cream-bg: #fffdf0; */
  --orange-main: #ff8c00;
  --orange-soft: #ffd8a8;
  --text-dark: #1f1f1f;
  --text-muted: #555;
}

/* CTA SECTION */
.cta-premium {
  /* background: linear-gradient(
    135deg,
    #fff7e0,
    #fffdf0
  ); */
  background: var(--cream-bg);
  padding: 40px 6%;
  position: relative;
  overflow: hidden;
}

/* subtle decorative glow */
.cta-premium::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 140, 0, 0.18);
  border-radius: 50%;
  top: -180px;
  right: -180px;
  filter: blur(120px);
}

/* INNER */
.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* EYEBROW */
/* .cta-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--orange-main);
  margin-bottom: 18px;
} */

/* TITLE */
.cta-inner h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-dark);
  margin-top: 10px;
}

.cta-inner h2 span {
  color: var(--orange-main);
}

/* DESCRIPTION */
.cta-inner p {
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* TAGS */
.cta-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
}

.cta-tags span {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 140, 0, 0.35);
  font-size: 13px;
  font-weight: 500;
  color: var(--orange-main);
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.cta-tags span:hover {
  background: var(--orange-main);
  color: #fff;
  transform: translateY(-2px);
}

/* CTA BUTTON */
.cta-action {
  display: inline-block;
  padding: 15px 52px;
  background: var(--orange-main);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 45px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(255, 140, 0, 0.35);
  transition: all 0.3s ease;
}

.cta-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(255, 140, 0, 0.45);
  background: #ff7a00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-inner h2 {
    font-size: 32px;
  }

  .cta-inner p {
    font-size: 15px;
  }

  .cta-tags {
    gap: 10px;
  }

  .cta-action {
    padding: 16px 38px;
  }
}


/* =================footer styles================= */

:root {
  --orange: #ff8c00;
  --dark-bg: #14110f;
  --dark-card: #1d1916;
  --light-bg: #fffdf0;
}

/* FOOTER BASE */
.onf-footer {
  padding: 40px 6% 30px;
  font-family: "Segoe UI", sans-serif;
}

/* DARK VARIANT */
.onf-footer.dark {
  background: linear-gradient(135deg, #0f0c09, #1a140f);
  color: #eee;
}

.onf-footer.dark a { color: #ffb347; }

/* GRID */
.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

/* HEADINGS */
.footer-col h3,
.footer-col h4 {
  margin-bottom: 18px;
  color: #fff;
}

/* TEXT */
.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

/* DHARMA */
.dharma {
  margin-top: 15px;
  color: var(--orange);
  font-weight: 600;
}

.dharma span {
  font-size: 12px;
  color: #aaa;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,140,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--orange);
  color: #fff;
}

/* MAP */
.footer-map {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 14px;
  margin-top: 12px;
}

/* NEWSLETTER */
.newsletter {
  margin-top: 20px;
  /* text-align: center; */
}

.newsletter h4 {
  margin-bottom: 8px;
}

.newsletter p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 20px;
}

.newsletter form {
  display: flex;
  /*justify-content: center;*/
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  padding: 14px 18px;
  /* border-radius: 10px; */
  border: none;
  width: 260px;
}

.newsletter button {
  padding: 14px 22px;
  /* border-radius: 15px; */
  border: none;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.newsletter button:hover {
  background: #ff7600;
}

a {
  text-decoration: none;
  color: inherit;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 1399px) {

  .footer-container {
    gap: 40px;
  }

}


@media (max-width: 1199px) {

  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 35px;
  }

  .newsletter input {
    width: 220px;
  }

}

@media (max-width: 991px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col {
    text-align: left;
  }

  .newsletter form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
  }

}

@media (max-width: 767px) {

  .onf-footer {
    padding: 50px 8% 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col p,
  .footer-col li {
    font-size: 13px;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .footer-map {
    height: 200px;
  }

}


@media (max-width: 480px) {

  .onf-footer {
    padding: 40px 6% 25px;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 16px;
  }

  .newsletter input {
    padding: 12px 14px;
  }

  .newsletter button {
    padding: 12px 16px;
  }

  .footer-bottom {
    font-size: 12px;
  }

}


/* ================== HERO SECTION ================== */
.about-hero-v2 {
    height: 70vh;
    min-height: 420px;

    /* Background image instead of color */
    background: url("images/about-onf-header.svg") center/cover no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for readability */
.about-hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

/* Keep content above overlay */
.hero-box {
    position: relative;
    z-index: 1;

    background: rgba(255, 230, 170, 0.75);
    backdrop-filter: blur(6px);
    padding: 22px 40px;
    border-radius: 20px;
    max-width: 900px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ========responsive============ */

@media (min-width: 1400px) {

  .about-hero-v2 {
    height: 75vh;
  }

  .hero-box {
    max-width: 1000px;
    padding: 30px 60px;
  }

}

@media (max-width: 1399px) {

  .about-hero-v2 {
    height: 70vh;
  }

  .hero-box {
    max-width: 850px;
    padding: 25px 50px;
  }

}


@media (max-width: 1199px) {

  .about-hero-v2 {
    height: 65vh;
  }

  .hero-box {
    max-width: 720px;
    padding: 22px 40px;
  }

}


@media (max-width: 991px) {

  .about-hero-v2 {
    height: 60vh;
    min-height: 380px;
    padding: 30px 20px;
  }

  .hero-box {
    max-width: 600px;
    padding: 20px 30px;
    border-radius: 16px;
  }

}


@media (max-width: 767px) {

  .about-hero-v2 {
    height: 55vh;
    min-height: 340px;
  }

  .hero-box {
    width: 92%;
    padding: 18px 22px;
    border-radius: 14px;
  }

  .hero-box h1 {
    font-size: 22px;
  }

}

@media (max-width: 480px) {

  .about-hero-v2 {
    height: 50vh;
    min-height: 300px;
    gap: 15px;
  }

  .hero-box {
    padding: 16px 18px;
    border-radius: 12px;
  }

}
