/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}

body {
  background-color: #f2f4f8;
  color: black;
  line-height: 1.7;
}

/* ========== LOGOS ========== */
/* ========== LOGOS (EXTRA LARGE) ========== */
#top-left-logo,
#top-right-logo {
  width: 180px;              /* 🔥 BIG logo */
  height: auto;
  position: absolute;
  top: 5px;
  z-index: 10;
}

#top-left-logo {
  left: 20px;
}

#top-right-logo {
  right: 20px;
}
@media (max-width: 768px) {
  #top-left-logo,
  #top-right-logo {
    width: 120px;   /* big but fits mobile */
    top: 8px;
  }
}


/* ========== MAIN CONTAINER ========== */
.outer-box {
  display: flex;
  justify-content: center;
  padding: 30px 15px;
}

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

/* ========== TOP IMAGES ========== */
.box-image {
  width: 49%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* ========== MENU BAR ========== */
.menu-container{
    background: linear-gradient(90deg,#1f3c88,#274caa);
    border-radius:8px;
    margin:18px 0 25px;
    padding:0 10px;
}

.menu-list{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    padding:12px 0;
}

.menu-list li{
    color:#fff;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    white-space:nowrap;
    padding:8px 4px;
    transition:.3s;
}

.menu-list li:hover{
    background:rgba(255,255,255,.18);
    border-radius:6px;
}

.signup-button{
    padding:8px 18px;
    border:none;
    border-radius:20px;
}

.signup-button {
  background: #f4a261;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.signup-button:hover {
  background: #e76f51;
}

/* ========== DONATE + CONTACT SECTION ========== */
.new-box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-top: 20px;
}

/* DONATE BUTTON */
.glassy-button {
  background: linear-gradient(135deg, #f4a261, #e76f51);
  color: #fff;
  padding: 14px 34px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.glassy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* ===== CONTACT + CONTENT LAYOUT ===== */
.info-layout {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  align-items: flex-start;
}

/* CONTACT CARD */
.contact-box {
  width: 380px;
  position: relative;
}

/* DONATE BUTTON INSIDE CONTACT */
.donate-inside {
  width: 100%;
  margin-bottom: 15px;
  font-size: 15px;
  padding: 12px;
}

/* RIGHT CONTENT */
.right-content {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .info-layout {
    flex-direction: column;
  }

  .contact-box {
    width: 100%;
  }

  .donate-inside {
    font-size: 16px;
  }
}

/* ========== RIGHT CONTENT ========== */
.right-content {
  margin-top: 25px;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.content-heading {
  font-size: 26px;
  color: #1f3c88;
  margin-bottom: 15px;
}

.content-paragraph {
  font-size: 15px;
  text-align: justify;
}

/* ========== EXTRA PARAGRAPH ========== */
.additional-paragraph {
  margin-top: 25px;
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-size: 14px;
  text-align: justify;
}

/* ========== FOOTER ========== */
/* ========== ELITE FOOTER ========== */
.footer-elite {
  position: relative;
  background: linear-gradient(135deg, #0f172a, #1f3c88);
  color: #ffffff;
  overflow: hidden;
  margin-top: 70px;
}

/* WAVE */
.footer-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}

.footer-wave path {
  fill: #ffffff;
}

/* CONTAINER */
.footer-elite-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px 40px;
  text-align: center;
}

/* BRAND */
.footer-brand h2 {
  font-size: 36px;
  letter-spacing: 3px;
  color: #f4a261;
}

.footer-brand span {
  display: block;
  font-size: 14px;
  letter-spacing: 4px;
  opacity: 0.8;
  margin-bottom: 15px;
}

.footer-brand p {
  max-width: 650px;
  margin: auto;
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.7;
}

/* CARDS */
.footer-cards {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.footer-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.35s ease;
}

.footer-card i {
  font-size: 30px;
  color: #f4a261;
  margin-bottom: 12px;
}

.footer-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.footer-card p {
  font-size: 14px;
  opacity: 0.85;
}

.footer-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.14);
}

/* LINKS */
.footer-links-elite {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links-elite a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
  opacity: 0.75;
  transition: all 0.3s ease;
}

.footer-links-elite a:hover {
  opacity: 1;
  color: #f4a261;
}

/* BOTTOM */
.footer-elite-bottom {
  background: rgba(0,0,0,0.4);
  padding: 14px;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.6px;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-brand h2 {
    font-size: 30px;
  }
}


/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}

.modal-content {
  background: #fff;
  margin: 12% auto;
  padding: 22px;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {

  .box-image {
    width: 100%;
  }

  .menu-list {
    flex-direction: column;
    gap: 8px;
  }

  .new-box {
    flex-direction: column;
  }

  .contact-box {
    width: 100%;
  }
}






  /* =====================================================
   HOME PAGE LEFT RIGHT SLIDER
===================================================== */

.image-slider-container{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:25px;
    width:100%;
    margin-bottom:30px;
}

.slider-wrapper{
    width:49%;
}

.slider-heading{
    text-align:center;
    font-size:22px;
    font-weight:800;
    color:#1f3c88;
    margin-bottom:15px;
}

.slider{
    position:relative;
    width:100%;
    height:450px;
    overflow:hidden;
    border-radius:15px;
    background:#fff;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    background:#fff;
}

.slide.active{
    opacity:1;
    z-index:1;
}

/* MOBILE */

@media(max-width:768px){

    .image-slider-container{
        flex-direction:column;
    }

    .slider-wrapper{
        width:100%;
    }

    .slider{
        height:240px;
    }

}


.footer-social{
    margin-top:30px;
    text-align:center;
}

.footer-social h4{
    margin-bottom:15px;
    color:#f4a261;
}

.footer-social a{
    display:inline-block;
    margin:0 12px;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.footer-social a:hover{
    color:#f4a261;
}

.footer-social i{
    margin-right:6px;
    font-size:18px;
}
