*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    font-family:poppins;
}
.container{
    max-width:1250px;
    margin:auto;
}
h2{
    font-size:2.2rem;
    margin-bottom: 20px;
}
/*Header section*/
/* Navbar Container */
.navbar {
  color: white;
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color:#0d3354;
  padding:0px 0px;
}

/* Logo */
.logo img {
    width:85px;
    height:auto;
}

/* Menu Links */
.nav-menu .navitems {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-bottom:0;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.dropdown-menu.show {
  display: block;
  background: black;
}
.dropdown-item:hover {

  background-color:#333;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ffcc00;
}

/* Button */
.nav-menu .btn-primary {
  background: #ffcc00;
  color: #000;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #fff;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: black;
  transition: 0.3s;
}
.rightside{
    display:flex;
    column-gap:30px;
    align-items:center;
}
.rightside a{
    font-weight:600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    

  .nav-menu {
    position: fixed;
    top: 70px;
    right: 0;
    flex-direction: column;
    width: 50%;
    height:50vh;
    padding: 20px;
    background-color:black;
    border-radius:15px;
    transform: translateX(100%); 
    transition: transform 350ms cubic-bezier(.2,.8,.2,1);
    will-change: transform;
    z-index: 999; 
  }
  .nav-menu .active{
      color:#ffd633!important;
  }
  .nav-menu a{
      color:white;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }
 

  .nav-menu.show {
    transform: translateX(0); 
  }

  .menu-toggle {
    display: flex;
  }

   .rightside{
    flex-direction: column;
    justify-content:center;
    align-items:center;
    gap: 15px; 
}
   .btn-primary {
  background: #fff;
  color:black!important;
}
  .rightside ul{
     display:flex;
     flex-direction:column;
     justify-content:center;
     align-items:flex-start;
   }
	
 } 

/*hero section*/
.hero-sec{
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url("../img/bg1.png") no-repeat center/cover;
    width:100%;
    height:100vh;
}
.hero-text{
    position:absolute;
    top:40%;
    left:5%;

}
.hero-text h2 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 800px;
}

.hero-text .butn{
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration:none;
}

.hero-text .butn:hover {
    background-color: #ffaa00;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text button {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}

/*Who are we*/
.about-sec {
    padding: 60px 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
}
 span{
    color:#ffc624;
}

.about-container {
    max-width: 950px;
    text-align: center;
}

.about-container h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #222;
}

.about-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-container button {
    margin-top: 15px;
    padding: 10px 24px;
    font-size: 0.95rem;
    border: none;
    border-radius: 25px;
    background-color: #ffcc00;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}

.about-container button:hover {
    background-color: #ffaa00;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container h2 {
        font-size: 1.8rem;
    }

    .about-container p {
        font-size: 0.95rem;
    }
	
}

/*impact section*/
.impact-sec {
    padding: 20px 20px;
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    text-align: center;
}

.impact-container {
    max-width: 1100px;
    margin: auto;
}

.impact-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
}

.impact-subtext {
    color: #666;
    margin-bottom: 50px;
    font-size: 1rem;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    background: #fff;
}

.impact-card {
    padding: 30px 20px;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.icon {
    margin-bottom: 10px;
}

.icon-svg {
    width: 45px;
    height: 45px;
    stroke: #065192;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.impact-card h3 {
    font-size: 2.3rem;
    color: #002d6e;
    margin: 10px 0;
}

.impact-card p {
    color: #444;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .impact-container h2 {
        font-size: 2rem;
    }
}


/*what we do*/
.programs-sec {
    padding: 50px 20px;
    background: #0a2d4b;
    text-align: center;
}

.programs-container {
    max-width: 1100px;
    margin: auto;
}

.programs-container h2 {
    font-size: 2rem;
    margin-bottom:40px;
    color:#fff;
}

.programs-subtext {
    color: #666;
    margin-bottom: 50px;
}

.programs-tabs {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 20px;
}

/* Tabs */
.tabs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tab-btn {
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background: #f9f9f9;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgb(253, 242, 198);
}

.tab-btn.active {
    background: #ffcc00;
    color: #000;
    border-color: #ffcc00;
}

/* Content */
.tab-content {
    background: #0a2d4b;
    padding: 30px;
    border-radius: 16px;
    min-height: 180px;
    text-align: left;
    border:1px solid white; 
}

.content {
    display: none;
}

.content.active {
    display: block;
}

.tab-content h3 {
    margin-bottom: 10px;
    color: #fff;
}

.tab-content p {
    color: #fff;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .programs-tabs {
        grid-template-columns: 1fr;
    }

    .tabs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/*why matters section*/
.problem-sec {
    padding: 100px 20px;
    background: #fff;
    text-align: center;
}

.problem-container {
    max-width: 1100px;
    margin: auto;
}

.problem-container h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.problem-subtext {
    color: #666;
    margin-bottom: 50px;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.problem-card {
    background: #ffcc000d;
    padding: 10px;
    border-radius: 14px;
    transition: 0.3s;
    border: 1px solid #ddd;
    text-align:start;

}

.problem-card:hover {
    transform: translateY(-6px);
}

.problem-card h3 {
    color: #cb0000;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.problem-card p {
    color: #555;
    font-size: 0.95rem;
}
.problem-card img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}


/*section*/
.joy-sec {
    padding: 10px 20px 50px;
    background: #fff;
}

.joy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Image */
.joy-image img {
    width: 100%;
    border-radius: 16px;
}

/* Content */
.joy-content h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #222;
}

.joy-content h3 {
    font-size: 2.3rem;
    color: #cb0000;
    margin-bottom: 15px;
}

.joy-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .joy-container {
        grid-template-columns: 1fr;
    }
}



/*donate section*/
.cta-sec {
    padding: 100px 20px;
    background: #fc0;
    color: #fff;
    text-align: center;
    position:relative;
}

.cta-container {
    max-width: 800px;
    margin: auto;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #000;
}

.cta-container p {
    margin-bottom: 30px;
    font-size: 1rem;
    color: #050505;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-btn {
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

/* Button styles */
.primary {
    background: #fff;
    color: #000;
}

.primary:hover {
   background: rgb(13, 51, 84);
  color: #fff;
}


.outline {
    border: 1px solid #292929;
    color: #111;
}

.outline:hover {
    background: #fff;
    color: #cb0000;
    border:1px solid transparent;
}
.child{
    width:20vw;
    height: auto;
    position: absolute;
  top: 20%;
  left: 0;
}
.child img{
    width:100%;
    height: 100%;
}

/*about section*/
.about-sec {
    padding: 100px 20px;
    background: #f9f9f9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Content */
.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.about-content h3 {
    color: #cb0000;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Mission & Vision */
.about-points {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.about-points h4 {
    color: #222;
    margin-bottom: 5px;
}

/* Image */
.about-image img {
    width: 100%;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-points {
        flex-direction: column;
    }
	.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
}

/*contact page*/
.contact-sec {
    padding: 100px 20px;
    background: #0d335412;
    text-align: center;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
}

.contact-subtext {
    color: #666;
    margin-bottom: 50px;
}

/* Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Contact Info */
.contact-info {
    text-align: left;
}

.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-box i {
    font-size: 20px;
    color: #fc0;
    margin-top: 5px;
}

.info-box h4 {
    margin-bottom: 5px;
}

.info-box p {
    color: #555;
    font-size: 0.95rem;
}

/* Highlight box */
.info-box.highlight {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

/* Form */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form .button {
    width: 100%;
    padding: 12px;
    background: #cb0000;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.contact-form .button:hover {
    background: #a80000;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/*Footer section*/
.footer-section a:hover {
  color: #ffd633;
  text-decoration: underline;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section hr {
  opacity: 0.2;
}
.contact-list a{
    text-decoration:none;
    color:#fff;
}
.ftco-footer-social{
    display:flex;
    gap:10px;
    padding:0;
    list-style:none;

}

.ftco-footer-social li a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    background:#000;
    color:#fc0;
    border-radius:50%;
    text-decoration:none;
    transition:0.3s;
}

/* Hover effect */
.ftco-footer-social li a:hover{
    background:#fc0;
    transform:translateY(-3px);
    color:#000;
    text-decoration:none;
}