/* ===============================
   GLOBAL RESET
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #000;
}

/* ===============================
   CONTAINERS
================================= */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ===============================
   NAVBAR
================================= */
.navbar {
  background: #F5EFE6;
  padding: 15px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-size: 18px;
  font-weight: 700;
}

.brand-sub {
  font-size: 13px;
  color: #F05A3A;
}

/* Links */
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #F05A3A;
}

/* ===============================
   HERO SECTION
================================= */
.hero {
    background: #F5EFE6;
    color: #000;
    padding: 100px 20px;
    text-align: center;
}

.hero h1, .hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    max-width: 600px;
    margin: auto;
    margin-bottom: 20px;
}

/* ===============================
   BUTTONS
================================= */
.about-btn {
	display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #00c896;
    color: #000;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #F05A3A;
    color: #000;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
   background: #0097a7;
}

.btn-secondary {
   display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #F05A3A;;
    color: #000;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #0097a7;
}
.hero-buttons {
    margin-top: 20px;
}
.donate-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #F05A3A;;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}

.donate-btn:hover {
    background: #0097a7;
}
/* ===============================
   SECTIONS
================================= */
.section {
    padding: 60px 20px;
}

.section.light {
    background: #f4f4f4;
}

.center {
    text-align: center;
    margin-bottom: 30px;
}

/* ===============================
   CARD GRID
================================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
	margin-left: 74px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card .icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    margin-top: 10px;
    background: #00bcd4;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}
/* ===============================
   ABOUT SECTION
================================= */
.about {
    padding: 60px 20px;
}

.about-container {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image img {
    width: 185%;
	height: 185%;
    border-radius: 8px;
}

.about-text {
    flex: 1;
	margin-left: 40px;
}

.about-features {
    margin: 15px 0;
}

.feature {
    margin-bottom: 10px;
}

/* ===============================
   JOURNEY SECTION
================================= */
.journey-container {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.journey-text {
    flex: 1;
}

.journey-image img {
    width: 50%;
	height: 50%;
    border-radius: 75px;
	margin-right: -775px;
}

.journey-btn {
	display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #F05A3A;
    color: #000;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

/* ===============================
   FORMS
================================= */
form {
    max-width: 500px;
    margin: auto;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    width: 100%;
    padding: 10px;
    background: #00bcd4;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background: #0097a7;
}

/* ===============================
   FOOTER
================================= */
.footer {
    background: #0a2a43;
    color: white;
    padding: 40px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.footer-logo {
    width: 60px;
    margin-bottom: 10px;
}

.footer-section h4 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #00bcd4;
}

.social-icons a {
    margin-right: 10px;
    color: white;
    font-size: 18px;
}

.social-icons a:hover {
    color: #00bcd4;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}
/* Footer links clean style */
.footer a {
    color: #fff;            /* or your theme color */
    text-decoration: none; /* removes underline */
}

/* Optional: hover effect */
.footer a:hover {
    color: #f4b400;        /* nice highlight color */
    text-decoration: underline;
}
/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }

    .about-container,
    .journey-container {
        flex-direction: column;
    }

    .hero h1, .hero h2 {
        font-size: 26px;
    }
}
/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

/* Modal Box */
.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Button */
.modal-btn {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #0d6efd; /* match your brand */
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.popup-box h2 {
  margin-bottom: 15px;
}

.popup-box p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.popup-box button {
  background: #e50914;
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}