 /* General Reset */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 header {
     font-family: Arial, sans-serif;
 }
 
 /* Top Bar */
 .top-bar {
     background: #005c99;
     color: white;
     padding: 10px 20px;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-around;
     align-items: center;
     font-size: 14px;
 }
 
 .top-bar span {
     margin-right: 15px;
 }
 
 .top-bar .social-icons a {
     margin-left: 10px;
     color: white;
     text-decoration: none;
 }
 
 /* Navigation */
 nav {
 
     background-color: #fff;
     display: flex;
     align-items: center;
     justify-content: space-around;
     flex-wrap: wrap;
     padding: 15px 20px;
     border-bottom: 1px solid #ddd;
 }
 
 .logo img {
     max-height: 60px;
 }
 
 .menu {
     display: flex;
     list-style: none;
     gap: 20px;
 }
 
 .menu li a {
     text-decoration: none;
     color: #333;
     font-weight: bold;
     transition: color 0.3s;
 }
 
 .menu li a:hover {
     color: #0073e6;
 }
 
 /* Donate Button */
 /*.donate-btn {*/
 /*    background-color: #ff6600;*/
 /*    border: none;*/
 /*    padding: 10px 20px;*/
 /*    border-radius: 25px;*/
 /*    cursor: pointer;*/
 /*}*/
 
 /*.donate-btn a {*/
 /*    color: white;*/
 /*    text-decoration: none;*/
 /*    font-weight: bold;*/
 /*}*/
 
 /* Toggle Button */
 .toggle_btn {
     display: none;
     cursor: pointer;
     font-size: 18px;
     margin-left: auto;
 }
 
 @media (max-width: 768px) {
     .menu {
         display: none;
         flex-direction: column;
         background-color: #fff;
         width: 100%;
         padding: 20px;
         position: absolute;
         top: 100px;
         left: 0;
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
         z-index: 99;
     }
 
     .menu.active {
         display: flex;
     }
 
     .toggle_btn {
         display: block;
     }
 
     .donate-btn {
         display: none;
     }
 
     .social-icons {
         display: none;
     }
 
     span .top-bars {
         flex-direction: row;
         justify-content: space-between;
         align-items: center;
         width: 100%;
         padding: 10px 20px;
     }
 
     .top-bar span {
         margin: 0;
         padding: 5px 0;
     }
 
 }
 
/* HERO SECTION */

 .hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #f9c74f, #f94144);
    color: white;
     padding: 0 2rem;
 }
 
 .hero-content {
     max-width: 50%;
 }
 
 .hero-content h1 {
     font-size: 3rem;
     font-weight: bold;
     margin-bottom: 1rem;
 }
 
 .hero-content p {
     font-size: 1.2rem;
     margin-bottom: 1.5rem;
 }
 
 .hero-content .btn {
     padding: 10px 20px;
     font-size: 1.2rem;
     background-color: #0066cc;
     color: white;
     text-decoration: none;
     border-radius: 5px;
     transition: background-color 0.3s ease;
 }
 
 .hero-content .btn:hover {
     background-color: #004a99;
 }
 
 /* Hero Image Styles */
 .hero-image img {
     width: 100%;
     max-width: 600px;
     border-radius: 10px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }
 
 /* Responsive Design */
 @media (max-width: 768px) {
     .hero-section {
         flex-direction: column;
         text-align: center;
     }
     .hero-content {
         max-width: 100%;
         margin-bottom: 2rem;
     }
     .hero-content h1 {
         font-size: 2.5rem;
     }
     .hero-content p {
         font-size: 1rem;
     }
 }
 
     
 /* About Section */
 .about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.about-content {
    flex: 1 1 400px;
    max-width: 500px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    background-color: #f4c430;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background-color: #e0b323;
}

.about-video {
    flex: 1 1 400px;
    max-width: 500px;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.about-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* About Section Responsive */
@media screen and (max-width: 768px) {
    .about-info {
        flex-direction: column;
    }

    .about-text {
        width: 100%;
        margin-bottom: 1em;
    }

    .about-img {
        width: 100%;
    }
}

/*skill porgram */


    body {

        margin: 0;

        font-family: Arial, sans-serif;

        background-color: #f4f9fc;

    }

    .skill-section {

        display: flex;

        align-items: center;

        justify-content: center;

        padding: 60px 10%;

        background: #ffffff;

    }

    .skill-image {

        flex: 1;

        padding: 20px;

    }

    .skill-image img {

        width: 100%;

        border-radius: 10px;

        box-shadow: 0 5px 20px rgba(0,0,0,0.1);

    }

    .skill-content {

        flex: 1;

        padding: 20px;

    }

    .skill-content h2 {

        font-size: 32px;

        color: #0a4d8c;

        margin-bottom: 20px;

    }

    .skill-content p {

        font-size: 18px;

        color: #555;

        line-height: 1.6;

        margin-bottom: 20px;

    }

    .skill-content ul {

        padding-left: 20px;

        margin-bottom: 25px;

    }

    .skill-content ul li {

        margin-bottom: 10px;

        font-size: 17px;

        color: #333;

    }

    .btn {

        display: inline-block;

        padding: 12px 25px;

        background-color: #0a4d8c;

        color: #fff;

        text-decoration: none;

        border-radius: 5px;

        font-weight: bold;

        transition: 0.3s;

    }

    .btn:hover {

        background-color: #06345f;

    }

    /* Responsive Design */

    @media (max-width: 768px) {

        .skill-section {

            flex-direction: column;

            text-align: center;

        }

        .skill-content h2 {

            font-size: 24px;

        }

    }

/* Services Section */
.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em 1em;
    justify-content: center;
    /* background: #f4f4f4; */
    padding: 2em 1em;
    text-align: center;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-top: 1em;
}

.service {
    background: #fff;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
}

/* Donate Section */
.cases {
    background-image: url(https://charity.websitelayout.net/img/bg/bg-1.jpg);
    padding: 2em 1em;
    text-align: center;
    display: flex;
}

.donate {
    padding: 2em 1em;
    text-align: center;
    color: #fff;
}

.donate form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donate input {
    padding: 0.5em;
    margin: 0.5em 0;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.donate .btn {
    background: #f04e23;
    color: #fff;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.donate .btn:hover {
    background: #c63e1d;
}

.donate-img {
    width: 50%;
    margin-right: 1em;
}

.donate-img img {
    width: 100%;
    border-radius: 50px;
    margin-right: -200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 4.1)
}


/* Contact Section */
.cont {
    /* background-image: url(https://charity.websitelayout.net/img/event/event-1.jpg); */
    background-color: #f4f4f4;
    padding: 2em 1em;
    text-align: center;
    justify-content: space-around;
    display: flex;
}

.con {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    gap: 1em;
    width: 30%;
}

.con img {
    width: 95%;
    /* height: 260px; */
    padding: 1rem;
}

.cont form {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
}

.contact input,
.contact textarea {
    padding: 0.5em;
    margin: 0.5em 0;
    width: 300px;
    border: 3px solid #000000;
    border-radius: 5px;
}

.contact .btn {
    background: #f04e23;
    color: #fff;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact .btn:hover {
    background: #c63e1d;
}


/* footer */

footer {
    background-color: #616164;
    color: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 1rem 2rem;
}



.footer-logo__img {
    width: 170px;
    height: 70px;
    border-radius: 50%;
}

.foter-ab {
    display: flex;
    margin: 1rem;
    align-items: center;
}

.foter__social a {
    color: #b93565;
    font-size: 2cap;
    margin: 0.7rem;
    text-decoration: none;
}

.footer-link {
    align-items: center;
    margin: 1rem;

}

.semi-title {
    color: #ffbf00;
    font-size: 2rem;
    font-weight: 600;
    margin: 0.5rem;
    align-items: Start;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.782);

}

.mb-20 {
    align-items: center;
    margin-bottom: 20px;
}

.fot-list {
    list-style: none;
    align-items: center;
}

.footer-link a {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 1.5rem;
    text-decoration: none;
    line-height: 1.5rem;

}

.footer-link a:hover {
    color: #f39c12;
}

.footer__contact {
    margin: 1rem;
}

.footer__contact a {
    color: #ffffff;
    font-size: 1rem;
    margin: 0.5rem;
    text-decoration: none;
    line-height: 2rem;
}

.copyright {
    padding: 10px;
    align-items: center;
}

/* Responsive Styles */
.page-title {
    color: #ffcc00;
    margin-bottom: 10px;
    font: 2.6em serif;
    font-weight: 600;
    text-shadow: 2px 6px 1px rgba(0, 0, 0, 0.2);
}

/* About page==============================About us */

#newsletter {
    background-color: #f4f4f4;
    padding: 15px;
    text-align: center;
}

#newsletter h1 {
    margin-bottom: 10px;
}

#newsletter form {
    display: flex;
    justify-content: center;
    align-items: center;
}

#newsletter input[type="email"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 30px;
}

#newsletter input[type="submit"] {
    padding: 10px 20px;
    background-color: #020202;
    color: #fff;
    border: none;
    cursor: pointer;
}

#newsletter input[type="submit"]:hover {
    background-color: #444;
}

#newsletter button {
    padding: 10px 20px;
    background-color: #161616;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

#newsletter button:hover {
    background-color: #444;
}

#main {
    display: flex;
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

#main h1 {
    color: #ffcc00;
    margin-bottom: 10px;
    font: 2.6em serif;
    font-weight: 600;
    text-shadow: 2px 6px 1px rgba(0, 0, 0, 0.2);
}

#main p {
    margin-bottom: 10px;
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.img-container img {
    width: 40%;
    height: 20%;
    border-radius: 10px;
}

.img-container p {
    margin-top: 10px;
    font-size: 1.2em;
    text-align: left;
    padding: 2rem;
}

/* Cases page==============================Cases */
.caces {
    background: #f4f4f4;
    padding: 2em 1em;
    text-align: center;
}

.cases-title {
    color: #17111194;
    font-size: 2em;
    margin: 1em;
    text-align: center;
}

.cases-grid {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-top: 1em;
}

.cases__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
    margin: 1em;
    background: #bb5353;
    padding: 1em;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 4;
}

.cases__card {
    background: #fff;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);   
    flex: 1;
    text-align: center;
}

.gallery__card {
    background: #8a7575;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
}

/* Gallery section styling */
.gallery {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

/* Grid layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual image styling */
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Donation Section */

    .donation-section {
      max-width: 600px;
      margin: 50px auto;
      background-color: #ffffff;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      text-align: center;
    }

    .donation-section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #333;
    }

    .donation-section p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 30px;
    }

    .donate-btn {
      background-color: #e91e63;
      color: #fff;
      border: none;
      padding: 15px 30px;
      font-size: 1rem;
      cursor: pointer;
      border-radius: 8px;
      transition: background 0.3s;
    }

    .donate-btn:hover {
      background-color: #c2185b;
    }

    /* Payment Modal */
    .payment-modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .payment-content {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      max-width: 400px;
      width: 90%;
    }

    .payment-content img {
      width: 200px;
      max-width: 100%;
      margin-bottom: 15px;
    }

    .payment-content .upi-id {
      font-size: 1rem;
      color: #333;
      margin-bottom: 20px;
    }

    .payment-content button {
      background-color: #4caf50;
      color: white;
      padding: 10px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    /* Thank You Popup */
    .thank-you-popup {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
      z-index: 1100;
    }

    .thank-you-content {
      background: #fff;
      padding: 40px 30px;
      border-radius: 10px;
      text-align: center;
      max-width: 350px;
    }

    .thank-you-content h3 {
      color: #4caf50;
      font-size: 1.5rem;
    }

    @media (max-width: 500px) {
      .donation-section {
        padding: 20px;
      }

      .donation-section h2 {
        font-size: 1.5rem;
      }

      .donate-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
      }
      
    }

/* Campaigns Section  */
.campaigns {
    background: #ababab;
    padding: 2em 1em;
    text-align: center;
}

.heading {
    color: #595656;
    font-size: 2em;
    margin: 1em;
    text-align: center;

}

.box-container {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-top: 1em;
}

.box {
    background: #fff;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
}

/* contact Section  */
.contact {
    background: #f4f4f4;
    padding: 2em 1em;
    text-align: center;
}

.googlemap {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-top: 1em;
}

.map {
    height: 400px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hero{
        max-width: 400;
    background: url('/Img/skill banner') no-repeat center center/cover;
    }

    .hero h1 {
        font-size: 1.5em;
    }

    .hero p {
        gap: 0.5em;
        font-size: 1em;
    }

    .about-info {
        flex-direction: column;
    }

    .about-text {
        width: 100%;
        margin-bottom: 1em;
    }

    .about-img {
        width: 100%;
    }

    .services-grid {
        flex-direction: column;
    }

    .service {
        margin-bottom: 1em;
    }

    .cases-grid {
        flex-direction: column;
    }

    .cases__card {
        margin-bottom: 1em;
    }

    .gallery__container {
        flex-direction: column;
    }

    .gallery__card {
        margin-bottom: 1em;
    }

    .box-container {
        flex-direction: column;
    }

    .box {
        margin-bottom: 1em;
    }

    .googlemap {
        flex-direction: column;
    }

    .map {
        margin-bottom: 1em;
    }

    .footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .cont {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .con {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    }
/* 
    .btn {
        padding: 1rem 3rem;
        text-decoration: none;
        border-radius: 10px;
        font-size: 1em;
    } */
}

/* Responsive Styles */