@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --firstColor: #162ba1;
    --secondColor: #ffff;
    --thirdColor: #BF2222;
    --title: "Alfa Slab One", Sans-serif;
    --paragraph: "Bebas Neue", Sans-serif;
}


.container {
     width: 90%;/* Adjusts based on screen size */
    max-width:768px; /* Prevents oversized elements */
    margin: 0 auto;  /* Centers the content */
    padding: 0 20px; /* Adds some padding for smaller screens */
}

@media (max-width: 900px) {
    .container {
        width: 100%; /* Fits smaller screens perfectly */
    }
}



section {
    min-height: 100vh;
    width: 100%;
    padding: 120px 0;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.row .col-2 {
    flex-basis: 47%;
}

.row .col-3 {
    flex-basis: 30%;
}

.btn-primary {
    background: var(--thirdColor);
    border: 1px solid var(--thirdColor);
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 30px;
    font-family: var(--paragraph);
    letter-spacing: .8px;
    cursor: pointer;
}


.section-title h4 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-family: var(--paragraph);
    color: var(--firstColor);
}

.section-title h1 {
    font-size: 35px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-family: var(--title);
    color: var(--firstColor);
}

.section-title p {
    font-size: 16px;
    color: (--firstColor);
    font-family: sans-serif;
    letter-spacing: .8px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}


/* CUSTOM CLASSES RESPONSIVE */
@media (max-width:900px) {
    .row .col-2 {
        flex-basis: 100%;
        margin-bottom: 40px;
    }

    .row .col-3 {
        flex-basis: 47%;
        margin-bottom: 40px;
    }
}

@media (max-width:600px) {
    .section-title h1 {
        font-size: 30px;
    }

    .row .col-3 {
        flex-basis: 100%;
    }
}

/* NAVBAR STYLES*/
.navbar {
    height: 100px;
    background-color: var(--secondColor);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    transition: all .3s ease-in-out;
}

.navbar.active-bg {
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 85%;
    margin: 0 auto;
    height: 100%;
}

.navbar .container .logo img {
    width: 140px;
}

.navbar .container .links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .container .links li {
    list-style: none;
}

.navbar .container .links li a {
    text-decoration: none;
    font-size: 17px;
    padding: 0 10px;
    color: var(--firstColor);
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--paragraph);
    letter-spacing: 2.6px;
    transition: color .3s ease-in-out;
}

.navbar .container .links li a:hover {
    color: #f76c09;
}

/* TOGGLE MENU  */
.navbar .container .toggle-menu-btn {
    border: none;
    background: #fff;
    padding: 4px 8px;
    cursor: pointer;
    display: none;
}

.navbar .container .toggle-menu-btn i {
    font-size: 22px;
    color: #000;
}


/* NAVBAR RESPONSIVE */
@media (max-width:900px) {
    .navbar .container .links {
        position: absolute;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 3;
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        transform: translateX(100%);
        transition: transform .3s ease-in-out;
    }

    .navbar .container .links.show {
        transform: translateX(0);
    }

    .navbar .container .links li a {
        color: #fff;
    }

    .navbar .container .toggle-menu-btn {
        display: block;
        z-index: 4;
    }
}

/* Navigation Links Styling */
.navbar .navbar-links {
    height: 100%;
    line-height: 70px;
  }
  
  /* Links Container */
  .navbar .links {
    display: flex;
  }
  
  /* Individual Links */
  .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
  }
  
  /* Links Anchor Tag Styling */
  .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
  }
  


/* SUBMENU STYLES */
/* Submenu Arrow Styling */ 
.navbar .links li .htmlcss-arrow,
.navbar .links li .js-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

/* Submenu Container */
.links li {
  position: relative;
}

.sub-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  padding: 10px;
  list-style: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.links li:hover .sub-menu {
  display: block;
}


/* Submenu Arrow Hover Effect */
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

/* Arrow Icon Styling */
 .navbar .links li .arrow {
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}

/* Submenu Styling */
.navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}

/* Show Submenu on Hover */
 .navbar .links li:hover .htmlCss-sub-menu,
 .navbar .links li:hover .js-sub-menu {
  display: block;
}

/* Submenu List Item Styling */
.navbar .links li .sub-menu li {
    position: relative;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Submenu Anchor Styling */
.navbar .links li .sub-menu a {
  color: #1f48d0;
  font-size: 15px;
  font-weight: 500;
}

/* Sidebar Menu */
.navbar .navbar-links .sidebar-logo {
  display: none;
}

/* Sub Menu Background */
.navbar .links li .our-mission li {
    background-image: url(''); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
    color: white;
  }
  
  

/* Mobile Menu Icon */
.navbar .bx-menu {
  display: none;
}


/* HERO  */
.hero {
    background: url("IMG_7115.JPG");
    background-position: center;
    background-size: cover;
    padding-top: 200px;
    animation: changeBackground 45s infinite alternate;
}



@keyframes changeBackground {
    25% {
        background-image: url("IMG_7124.JPG");
    }
    50% {
        background-image: url("background 1.jpg");
    }
    100% {
        background-image: url("IMG_7088.JPG");
    }
}

@media (max-width: 768px) {
    .home-image {
        width: 50%;
    }

    .text-container {
        font-size: 16px; /* Ensures text is readable */
    }
}



.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 85%;
    margin: 0 auto;
    height: 100%;
    padding-top: 60px;
    flex-wrap: wrap;
}

.hero .container .text {
    flex-basis: 45%;
}

.hero .container .text p {
    font-size: 15px;
    font-weight: 700;
    margin: 20px 0;
    letter-spacing: .8px;
    color: #ffffff;
    line-height: 1.5;
}

.star-divider {
  margin: 20px auto;
  text-align: center;
}

.star-divider i {
  color: #f6a400; /* Gold tone */
  font-size: 1.5rem;
  margin: 0 5px;
  transition: transform 0.3s ease;
}

.star-divider i:hover {
  transform: scale(1.2);
  color: #f76c09; /* Accent on hover */
}

.hero .container .text h1 {
  font-size: 4rem; /* Big and bold */
  font-family: 'Playfair Display', serif; /* Elegant and classy */
  font-style: italic;
  font-weight: 700; /* Bold for emphasis */
  color: #071fd3; /* Semi-transparent white for readability */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.3;
  margin-bottom: 20px;
  z-index: 2;
}

.hero h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #fdbf41;
  margin: 15px auto 0;
  border-radius: 2px;
}



/* HERO RESPONSIVE */
@media (max-width:900px) {

    .hero .container .text{
        width: 100%;
    }
    .hero .container .text h1 {
        font-size: 50px;
    }
  }

@media (max-width:600px) {
    .hero .container .text h1 {
        font-size: 30px;
    }
}

/* MENU STYLES  */
.menu .container {
    padding-top: 50px;
}

.menu .container .row .col-2 {
    flex-basis: 49%;
}

.menu .container .menu-1 {
    background: url('');
    background-position: center;
    background-size: cover;
    height: 400px;
    border-radius: 10px;
    padding: 20px;
}

.menu .container .menu-2 {
    background: url('');
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    height: 190px;
    padding: 20px;
}

.menu .container .menu-3 {
    background: url('');
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    margin-top: 20px;
    height: 190px;
    padding: 20px;
}

.menu .container .col-2 span,
.menu .container .col-2 p {
    color: #fff;
    text-transform: uppercase;
    font-family: var(--paragraph);
    letter-spacing: .8px;
}

.menu .container .col-2 span {
    font-size: 20px;
}

.menu .container .col-2 p {
    font-size: 28px;
    margin-top: 10px;
}

.menu .container .btn-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.menu .container .btn-center .btn-primary {
    background: var(--secondColor);
    border-color: var(--secondColor);
    color: var(--firstColor);
    font-size: 20px;
}

/* MENU RESPONSIVE */
@media (max-width:900px) {
    .menu .container .row .col-2 {
        flex-basis: 100%;
    }
}

@media (max-width:500px) {
    .menu .container .menu-1 {
        height: 300px;
    }
}

.quote-spotlight {
  background-color: #fdfdfd;
  padding: 40px 20px 20px;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.quote-spotlight blockquote {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 10px;
  font-style: italic;
}

.quote-author {
  font-size: 1rem;
  color: #777;
  margin-bottom: 30px;
}

.gallery-link h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.bridge-quote {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.gallery-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.gallery-button:hover {
  background-color: #0056b3;
}


/* LEADERSHIP STRUCTURE */
.chart {
    display: flex;
    flex-wrap: wrap; /* Allows multiple images in a row */
    justify-content: flex-end; /* Aligns images to the right */
    gap: 20px;
}

.leadership-structure {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.position-group {
  margin-bottom: 50px;
}

.position-group h3 {
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 20px;
}

.leader {
  display: inline-block;
  max-width: 220px;
  margin: 10px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.leader:hover {
  transform: scale(1.03);
}

.leader img {
  width: 100%;
  border-radius: 8px;
}

.title {
  font-weight: bold;
  margin-top: 10px;
}

.position {
  font-size: 0.9rem;
  color: #555;
}

/* LEADERSHIP STRUCTURE RESPONSIVE */
.leader img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.leader img:hover {
    transform: scale(1.2); /* Enlarges the image slightly on hover */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.leader {
    animation: fadeIn 1s ease-in-out;
}

.title, .position {
    transition: color 0.3s ease-in-out;
}

.leader:hover .title {
    color: #162ba1; /* Highlights the name */
}

.leader:hover .position {
    color: lightblue; /* Changes the position color */
}



.our-mission {
    line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
}

.vision {
    line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
}




/* GALLERY SECTION STYLES  */
.gallery-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.gallery-header h1, .gallery-header h2 {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.gallery-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item img:hover {
  opacity: 0.95;
  transform: scale(1.02);
  transition: transform 0.3s ease, opacity 0.3s ease;
}



.event-meta {
  padding: 15px;
  font-size: 0.95rem;
}

/* ABOUT US STYLES  */
.about-us {
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  color: #fff;
  animation: changeBackground 45s infinite alternate;
  text-align: center;

}

.about-us .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 85%;
  margin: 0 auto;
}

.about-us .container .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: var(--title);
  color: #000000b3; 
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}


.about-us .container .row .col-2 {
  flex-basis: 45%;
}

.about-us .container .row .col-2 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.about-us .container .row .col-2 h1 {
  font-size: 50px;
  font-family: var(--title);
  color: #fff;
  margin-bottom: 20px;
}

.about-us .container .row .col-2 p {
  font-size: 18px;
  color: #fff;
  font-family: var(--paragraph);
  letter-spacing: .8px;
}

.about-us .container .row .col-2 span {
  font-size: 20px;
  color: #fff;
  font-family: var(--paragraph);
  letter-spacing: .8px;
}

.about-us .container .row .col-2 span i {
  color: #fdbf41;
  font-size: 30px;
  margin-right: 10px;
}

.about-us .container .row .col-2 span i:hover {
  color: #f76c09;
}

.about-us .container .row .col-2 span:hover {
  color: #f76c09;
}

.about-us .container .row .col-2 span:hover i {
  color: #f76c09;
}

.about-us .container .row .col-2 span:hover i {
  color: #f76c09;
}

.about-us .container .row .col-2 span:hover {
  color: #f76c09;
}

.about-us .container .row .col-2 span:hover i {
  color: #f76c09;
}

.about-us .container .row .col-2 span:hover {
  color: #f76c09;
}

.about-submenu {
  margin-top: 30px;
  text-align: center;
}

.about-submenu h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.about-submenu ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about-submenu ul li a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #007bff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.about-submenu ul li a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/*WHAT WE DO  */
.what-we-do {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-title h1 {
  font-size: 2rem;
  color: #333;
  text-align: center;
}

.section-title p {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
}

.what-we-do .container {
  max-width: 1200px;
  margin: 0 auto;
}
.what-we-do .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/*OUR IMPACT  */
.our-impact {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.our-impact h1 {
    text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.our-impact p {
  line-height: 1.8;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: justify;
}

.our-impact .container {
  max-width: 1200px;
  margin: 0 auto;
}

.our-impact h2 {
  text-align: center;
  margin-top: 40px;
  font-size: 1.8rem;
  color: #007bff;
}

.our-impact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* CONTACT US & CONTRIBUTE STYLES  */
/* CONTACT SECTION */
.contact-section {
  padding: 40px 20px 30px; /* Reduced bottom padding */
  background-color: #f9f9f9;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.contact-details {
  margin-top: 20px;
}

.contact-details a {
  display: inline-block;
  margin: 5px 0;
  color: #007bff;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* CONTRIBUTION SECTION */
.contribute-section {
  padding: 30px 20px 40px; /* Reduced top padding */
  background-color: #ffffff;
  text-align: center;
}

.contribute-section h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.contribute-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.contribution-banner {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
}

.contribution-details {
  margin-top: 10px;
}

/*Smooth Transition Between Sections */
.contact-section + .contribute-section {
  margin-top: -10px; /* Visually pulls them closer */
}

.volunteer-signup h2, .donation-tiers h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}


form {
  max-width: 600px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  background-color: #0056b3;
}

.contribution-banner {
  display: block;
  max-width: 100%;
  margin: 30px auto;
  border-radius: 8px;
}

.tier-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.tier-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 250px;
  text-align: center;
}


/* REVIEWS STYLES  */
.about .row {
    margin-top: 100px;
}

.about .row .about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: linear-gradient(-35deg, #f2709c 0%, #fe8f75 100%);
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.about .row .about .about-icon {
    margin-top: 30px;
}

.about .row .about .about-icon i {
    font-size: 60px;
    cursor: pointer;
    color: #7A7A7A;
}

.about .row .about p {
    text-align: center;
    color: #fff;
}

.about .row .about .stars {
    margin-bottom: 50px;
}

.about .row .about .stars i {
    color: #fff;
}

.about .row .about .about-img {
    position: absolute;
    bottom: -18%;
}

.about .row .about .about-img img {
    height: 80px;
    width: 80px;
    border: 1px solid #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border-radius: 50%;
}

.about .about-info {
    margin-top: 50px;
}

.about .about-info h4 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 5px;
    font-family: sans-serif;
}

.about .about-info p {
    text-align: center;
    color: #7A7A7A;
    font-size: 14px;
    font-family: sans-serif;
}



form {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #007FFF;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

button:hover {
    background: #0055cc;
}

.our-mission {
    line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.vision {
    line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}



/* FOOTER STYLES  */
footer {
  background-color: #007bff;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #ddd;
}

.footer-banner h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-banner p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000fc;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


.footer-content {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #ffffff;
  display: flex;
}

.footer-icons {
  margin-top: 20px;
}

.footer-icons a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-icons a:hover {
  color: #007bff;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

/* Responsive Adjustment */
    @media (max-width: 768px) {
}
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

.footer-links {
    justify-content: center;
}