/* Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Playfair Display */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body
{
    min-height: 100%;
    
    margin: auto;
}
html
{
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body
{
    font-family: 'Poppins', sans-serif; 
    
}


nav
{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    margin-top: 1rem;
    
    
}

.information
{
    
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 80px;
    

}
img
{
    display: block;
}
#logo img
{
    width: auto;
    height: 60px;
    border-radius: 50%;
   
    
}
#name h1
{
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 0.85;
    font-family: "Playfair Display", serif;
    
    
    

}
.center-nav{
    flex: 1;
    display: flex;
    justify-content: center;
    
}

.center-nav ul
{
    
    
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    
}
.center-nav ul li a{
    
    
    position: relative;
    display: inline-block;      
    padding: 8px 0;
    transition: transform 0.25s ease, color 0.25s ease;
}


.center-nav ul li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: orangered;
    transition: width 0.25s ease-in-out;

}

.center-nav ul li a:hover{
    transform: translateY(-6px);
    color: #370F2D;
}

.center-nav ul li a:hover::after{
    width: 100%;
}

ul
{
    list-style-type: none;
}
.rightside-nav
{
    display: flex;
    align-items: center;
}
.rightside-nav button
{
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0.7rem 1.2rem;
   font-size: 1.2rem;
   background-color: orangered;
   color: white;
   border: none;
   cursor: pointer;
   border-radius: 10px;
   font-family: 'Poppins', sans-serif;
}

a
{
    text-decoration: none;
}

ul a
{
    color: #6A3556;
}

#name a
{
    color: #6A3556;
}

.header
{
    height: auto;
    margin: 1rem 1rem;
    gap: 1rem;
    border-radius: 8px;
    display: flex; 
    justify-content: center;
    align-items: center;  
}
.centre-intro
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: rgba(55, 15, 45, 0.14);
    border-radius: 20px;
    
    
}
#heading
{
    margin-top: 4rem;
    width: 100%;
   text-align: center;
   font-size: 4rem;
   font-weight: 600;
   color: #370F2D;
   font-family: "Playfair Display", serif;
    letter-spacing: 0.02em;
}
#team-image
{
    background-image: url(./Images/About-us.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden; 
    height: 37.5rem;
    width: 91.25rem;    
    border-radius: 20px;
    margin-bottom: 2rem;
}

#trust-name
{
    margin-top: 4rem;
    width: 100%;
    color: orangered;
    font-style: italic;
}
#description
{
    width: 50%;
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    color: #942a7a;
    
}
#info-button
{
    display: flex;
    gap: 1rem;
}
#why-choose-us
{
    font-size: 1.3rem;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    background-color: orangered;
    color: white;
    border: none;
}
#contact-us
{
    font-size: 1.3rem;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: #370F2D;
}
.information-related-to-trust
{
    display: flex;
    gap: 1rem;
    flex-direction: column;
    background: linear-gradient(
    135deg,#370F2D,#5A1E4A);
    margin: 1rem 1rem;
    padding: 1rem;
    border-radius: 8px;
    
    
}
#stats
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;   
}
.subsection-stats
{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    border: 2px solid orangered;
    padding: 2rem;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: white;
    transition: transform 0.9s ease, opacity 0.9s ease, box-shadow 0.35s ease;
    margin: 5rem 0 5rem 0;
}
.subsection-stats.show:hover
{
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
/* Initial hidden state */
.subsection-stats{
    opacity: 0;
    transition:
    transform 0.9s ease,
    opacity 0.9s ease,
    box-shadow 0.35s ease;
}

/* First circle */
.subsection-stats:nth-child(1){
    transform: translateX(-120px);
}

/* Second circle */
.subsection-stats:nth-child(2){
    transform: translateY(120px);
}

/* Third circle */
.subsection-stats:nth-child(3){
    transform: translateX(120px);
}
.subsection-stats:nth-child(4){
    transform: translateY(-120px);
}

/* Final state */
.subsection-stats.show{
    opacity: 1;
    transform: translate(0,0);
}
.stats-icon
{
    font-size: 3rem;
    color: white;
    background-color: #370F2D; 
    border-radius: 30px; 
    padding: 0.3rem;
    
}
.stats-heading
{
    font-size: 2rem;
    font-weight: 800;
    background-color: #370F2D; 
    color: white;
    padding: 0.5rem;
    border-radius: 20px;
}
.stats-description
{
    font-size:1.2rem; 
    color: #370F2D;
    padding: 0.7rem;
    border-radius: 20px;
    font-weight: 600;
}

#organization-history
{
    color: orangered;
    font-size: 1.2rem;
    padding-left: 4rem;
    
}
.info-card
{
    display: flex;
    justify-content:center ;
    align-items: center;
    background-color: white;
    gap: 5rem;
    padding: 3rem;
    border-radius: 20px;
    color: #5A1E4A;
    margin: 2rem 4rem;

    
}

.card-image
{
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    
    
}
.info-card-information
{
    margin-left: 3rem;
}
.info-card-information-heading
{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color:#5A1E4A;
    width: 100%;
}
.info-card-information-heading-span
{
    color: orangered;
    font-style: italic;
}

.info-card-information-description-upper-para
{
    margin-bottom: 1rem;
    
}
.info-card-information-description-list
{
    margin: 1rem;
    
}
#contents
{
    display: flex;
    justify-content: space-around;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 1rem;
}

#contents button
{
    background: transparent;
    border: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

#contents button.active
{
    color: orangered;
}

#tab-indicator
{
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 33.33%;
    height: 3px;
    background-color: orangered;
    transition: transform 0.4s ease;
}

#mission-btn,#vision-btn,#history-btn
{
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
    background-color:#5A1E4A;
    border: none;
    cursor: pointer;
}

#our-mission
{
    display: flex;
}
#our-vision
{
    display: none;
}
#our-history
{
    display: none;
}

/* Our team */
.our_team_container
{
    display: flex;
    gap: 1rem;
    flex-direction: column;
    border-radius: 20px;
    margin: 5rem 1rem;
    padding: 1rem;
    
}
#team_heading
{
    color: orangered;
    font-size: 1.2rem;
    padding-left: 4rem;
}
.our_team_container_grid
{
    width: 100%;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    
}
.our_team
{
    height: 100%;
    width: 100%;
    border-radius: 1em;
    display: flex;
    flex-direction: column;
    background-color: white;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.our_team:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}
.our_team:hover .person-details{
    background: orangered;
}
.our_team:hover .person-name,
.our_team:hover .position{
    color: white;
}
.person-image
{
    height: 350px;
    width: 100%;
    position: relative;
    overflow: hidden;
    object-fit:contain;
}
.person-image img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    
}
.person-image:hover img
{
    transform: scale(1.06);
}
.person-details
{
    background: white;
    transition: background-color 0.35s ease;
}
.person-name
{
    margin-top: 1em;
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    transition: color 0.35s ease;
    color: #370F2D;
}
.position
{
    text-align: center;
    margin-bottom: 1rem;
    transition: color 0.35s ease;
    color: #370F2D;
}
.content
{
    height: 100%;
    width: 100%;
    /* border:1px solid rgb(0, 0, 0); */
    border-radius: 0.7rem;
    display: flex;
    flex-direction: column;
    background-color: white;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    
    
        
}
.donation_utilization
{
    display: flex;
    gap: 1rem;
    flex-direction: column;
    background: rgba(55, 15, 45, 0.14);
    margin: 1rem 1rem;
    padding: 1rem;
    border-radius: 8px;
    color: #370F2D;
}
#donation_utilization-heading
{
    color: #370F2D;
    font-size: 1.6rem;
    padding-left: 4rem;
    margin-top: 4em;
    font-weight: 600;
    margin-bottom: 3rem;
    
   
    
}
.donation_utilization-subheading
{
    display:flex;
    justify-content:center;
    gap:2rem;
    flex-wrap:wrap;
    margin-bottom:2rem;
    
}
#money,#group,#heart
{
    font-size: 2.4rem;
}
.donation-card{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    width:240px;
    height:140px;

    background:white;
    border-radius:12px;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

    transition:0.35s ease;
}
.donation-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}
.amount_received
{
    font-size: 1.5rem;
    font-weight: 500;
    color: #370F2D;
}
.amount
{
    font-weight: 600;
    color: orangered;
    font-size: 1.4rem;
    
}

.donation-chart-container{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    margin-top:2rem;
    
}
.chart-card{
    background:#fff;
    border-radius:1rem;
    padding:1.5rem;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
}
.chart{
    width:900px;
    height:500px;
}
.chart-footer{
    border-top:1px solid #ececec;
    margin-top:1rem;
    padding-top:0.9rem;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:0.5rem;

    color: #370F2D;
    font-size:0.95rem;
    font-style:italic;
}

.chart-footer i{
    color:orangered;
}

.donation_footer_heading
{
    font-size: 1.5rem;
    padding-left: 4rem;
    margin-top: 2rem;
    font-weight: 600;
}
.donation_footer_subheading
{
    font-size: 1.2rem;
    padding-left: 4rem;
    margin-bottom: 3rem;
    font-weight: 500;
    
}
.campaigns-homepage
{
    display: grid;
    height: auto;
    gap: 1rem;
    margin: 2rem 1rem;
    background-color: rgba(55, 15, 45, 0.14);
    border-radius: 8px;
    
}
#donation_utilization_description
{
    padding-left: 4rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom:2.5rem;
}
/* Official Documents */
.official_registration
{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: rgba(55, 15, 45, 0.14);
    border-radius: 8px;
    margin: 5rem 1rem;
    padding: 1rem;

}
#official_registration_header
{
    background-color: white;
    border-radius: 2rem;
}
#official_registration_heading
{
    padding-left: 4rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 5rem 0 2rem 0;
    color: #370F2D;
}
#official_registration_subheading
{
    padding-left: 4rem;
    font-size: 1.2rem;
    width: 60%;
    margin-bottom: 3rem;
    font-weight: 500;
    color: #370F2D;
}
.official_registration_container
{
    display: flex;
    gap: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.official_registration_leftside
{
    
    width: 50%;
    border: 1px solid rgba(255,255,255,.15);
    background-color:#5A1E4A;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.trust_registration_heading
{
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #370F2D;
    background-color: white;
}
.trust_registration_img
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.trust_registration_img img
{
    height: 700px;
    width: 100%;
    object-fit: contain;
    
}
.first_page_preview
{
    font-size: 1.2rem;
    color: white;
    margin-bottom: 3px;
    
}
.official_registration_rightside
{
    width: 50%;
    border: 1px solid black;
    background-color:#5A1E4A;
    border-radius: 1rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    border: 1px solid rgba(255,255,255,.15);
}
.trust_registration_description
{
    font-size: 1.2rem;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}
.pdf_view
{
    text-align: center;
    margin-bottom: 3rem;
    
}
.view-btn
{
    margin-top: 1rem;
    font-size: 1.3rem;
    color: white;
    background-color: orangered;
    padding:0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    
}

footer
{
    background:#0F3057;
    color:#EAF4FF;
}
.top-footer
{
    margin:0 1rem;
    display: flex;
    gap: 2rem;
    
    border-bottom: 1px solid #EAF4FF;
    /* background-color: rgba(55, 15, 45, 0.14);
    border-radius: 8px; */
}
.leftside-top
{
    display:flex ;
    flex-direction: column;
    padding: 5rem 4rem;
    width: 50%;
    border: none;
}

.header-leftside-top
{
    display: flex;
    gap: 1rem;
    
    
    
}
.icon-header-leftside-top img
{
    width: auto;
    height: 60px;
    border-radius: 50%;
}

.title-header-leftside-top p
{
    font-size: 2.4rem;
    font-weight: 600;
    font-family: "Playfair Display", serif;
}
#subscribe-button {
    background-color: orangered;
    color: white;
    border: none;
    padding: 0.7rem 1.6rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 18px rgba(255, 69, 0, 0.25);
}

#subscribe-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(255, 69, 0, 0.4);
}
.description-header-leftside-top
{
    font-size: 1.2rem;
    margin-top: 1.2rem;
    width: 100%;
}
.social-media
{
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}
#facebook,#instagram,#x,#youtube
{
    border: 1px solid #EAF4FF;
    border-radius: 50%;
    padding: 0.4rem 0.7rem;
    
}
#facebook>a,#instagram>a,#x>a,#youtube>a
{
    color:#EAF4FF;
}
#facebook,
#instagram,
#x,
#youtube{
    transition: transform 0.8s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

#facebook:hover,
#instagram:hover,
#x:hover,
#youtube:hover{
    transform: rotate(360deg) scale(1.15);
    background-color: orangered;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
#facebook:hover a,
#instagram:hover a,
#x:hover a,
#youtube:hover a{
    color: white;
}

.rightside-top
{
    width: 50%;
    padding: 5rem 4rem;
    
}
.header-rightside-top p
{
    font-size: 2rem;
    display: flex;
    justify-content: center;
    font-weight: 600;
    font-family: "Playfair Display", serif;
}
.newsletter
{
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}
#mail-for-subscribe
{
    font-size: 1.3rem;
    text-align: center;
    padding: 0.4rem 2rem;
    border-radius: 5px;
    flex: 1;
}
#subscribe-button
{
    padding: 0.5rem 2rem;
    font-size: 1.3rem;
    cursor: pointer;
    background-color: orangered;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    flex: 1;
}

.middle-footer
{
    margin: 1rem;
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid #EAF4FF;
}
.quick-links,.account,.platform,.location
{
    display: flex;
    flex-direction: column;
    padding: 5rem 4rem;
    gap: 1rem;
}

.quick-links p,.account p,.platform p,.location span
{
    
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
}
.quick-links a,.account a,.platform a
{
    font-size: 1.1rem;
    
    color:#a1a2a4;
}
.address
{
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    color:#a1a2a4;
    

}
#heading-address,.mail-id>p
{
    font-size: 1.1rem;
    font-weight: 500;
}

.mail-id
{
    display: flex;
    gap: 1rem;
    color:#a1a2a4;
}
.mail-id a
{
    text-decoration: none;
    color:#a1a2a4;
    
    font-weight: 500;
    
    
    
}
.bottom-footer
{
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem;
    
}

/* Improve text readability on large screens */
.rightside-about p,
#subtagline,
.description-campaigns-homepage-grid,
.description-header-why-choose-us,
.subsection-description,
.description-header-leftside-top p {
    max-width: 65ch;
}
/* =========================================================
   RESPONSIVE + HAMBURGER MENU
   Add this at the VERY END of about-style.css
   ========================================================= */


/* ---------- HAMBURGER DEFAULT ---------- */

.hamburger {
    display: none;

    border: none;
    background: transparent;

    color: #370F2D;

    font-size: 2rem;

    cursor: pointer;

    padding: 0.3rem;

    align-items: center;
    justify-content: center;
}


/* =========================================================
   TABLETS
   iPad Mini / iPad Air / Surface Pro etc.
   ========================================================= */

@media (max-width: 1100px) {

    /* ---------- NAVBAR ---------- */

    nav {
        height: 75px;

        padding: 0 1.5rem;

        margin-top: 0.5rem;

        position: relative;
    }

    #logo img {
        height: 52px;
    }

    #name h1 {
        font-size: 2rem;
    }

    .center-nav {
        display: none;
    }

    .rightside-nav {
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .rightside-nav button {
        font-size: 0.95rem;
        padding: 0.65rem 1rem;
    }

    .hamburger {
        display: flex;
    }


    /* ---------- MOBILE MENU ---------- */

    .center-nav.mobile-menu {
        display: flex;

        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        background: white;

        z-index: 9999;

        padding: 1rem 0;

        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

    .center-nav.mobile-menu ul {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 0.5rem;

        font-size: 1rem;
    }

    .center-nav.mobile-menu ul li {
        width: 100%;

        text-align: center;
    }

    .center-nav.mobile-menu ul li a {
        display: block;

        width: 100%;

        padding: 0.8rem 1rem;
    }


    /* ---------- ABOUT HEADER ---------- */

    .header {
        margin: 1rem 0.7rem;
    }

    .centre-intro {
        width: 100%;

        padding: 2rem 1.5rem;

        gap: 1.5rem;

        overflow: hidden;
    }

    #heading {
        margin-top: 1rem;

        font-size: 3.2rem;

        width: 100%;

        text-align: center;

        line-height: 1.1;

        overflow-wrap: break-word;
    }

    #description {
        width: 85%;

        font-size: 1rem;

        line-height: 1.7;
    }

    #team-image {
        width: 100%;

        height: 400px;

        max-width: 900px;

        margin-bottom: 0;

        background-size: cover;

        background-position: center;
    }


    /* ---------- BUTTONS ---------- */

    #info-button {
        justify-content: center;

        flex-wrap: wrap;
    }

    #why-choose-us,
    #contact-us {
        font-size: 1rem;

        padding: 0.7rem 1rem;
    }


    /* ---------- STATS ---------- */

    #stats {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        justify-items: center;

        align-items: center;

        gap: 2rem;
    }

    .subsection-stats {
        width: 230px;
        height: 230px;

        min-width: 230px;
        min-height: 230px;

        max-width: 230px;
        max-height: 230px;

        padding: 1rem;

        margin: 2rem 0;

        overflow: hidden;
    }

    .stats-icon {
        font-size: 2.2rem;

        padding: 0.35rem;

        border-radius: 20px;

        display: flex;

        align-items: center;
        justify-content: center;
    }

    .stats-heading {
        font-size: 1.7rem;

        padding: 0.4rem 0.7rem;

        border-radius: 15px;
    }

    .stats-description {
        font-size: 1rem;

        padding: 0.3rem;

        text-align: center;
    }


    /* ---------- ORGANIZATION CONTENT ---------- */

    #organization-history {
        padding-left: 1.5rem;

        font-size: 1.1rem;
    }

    .info-card {
        margin: 1.5rem;

        padding: 2rem;

        gap: 2rem;

        flex-direction: column;
    }

    .info-card > div {
        width: 100%;
    }

    .info-card-image {
        display: flex;

        justify-content: center;
    }

    .card-image {
        width: 100%;
        max-width: 400px;

        height: 350px;

        object-fit: cover;
    }

    .info-card-information {
        margin-left: 0;

        width: 100%;
    }

    .info-card-information-heading {
        font-size: 1.6rem;

        text-align: center;
    }

    .info-card-information-description {
        font-size: 0.95rem;

        line-height: 1.7;
    }


    /* ---------- TABS ---------- */

    #contents {
        width: 100%;

        gap: 0;

        padding-bottom: 0.8rem;
    }

    #contents button {
        width: 33.33%;

        font-size: 1rem;

        padding: 0.5rem;
    }


    /* ---------- TEAM ---------- */

    .our_team_container {
        margin: 3rem 0.7rem;
    }

    #team_heading {
        padding-left: 1rem;
    }

    .our_team_container_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 1.5rem;
    }

    .person-image {
        height: 300px;
    }


    /* ---------- DONATION CARDS ---------- */

    .donation_utilization {
        margin: 1rem 0.7rem;
    }

    #donation_utilization-heading,
    .donation_footer_heading,
    .donation_footer_subheading,
    #donation_utilization_description {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .donation_utilization-subheading {
        gap: 1rem;
    }

    .donation-card {
        width: 220px;
    }


    /* ---------- CHART ---------- */

    .donation-chart-container {
        width: 100%;

        overflow: hidden;
    }

    .chart-card {
        width: 100%;

        max-width: 900px;

        overflow: hidden;
    }

    .chart {
        width: 100% !important;

        max-width: 100% !important;

        height: 450px !important;
    }


    /* ---------- DOCUMENTS ---------- */

    .official_registration {
        margin: 3rem 0.7rem;
    }

    .official_registration_container {
        flex-direction: column;

        padding: 1.5rem;
    }

    .official_registration_leftside,
    .official_registration_rightside {
        width: 100%;
    }

    .trust_registration_img img {
        height: auto;

        max-height: 700px;

        width: 100%;

        object-fit: contain;
    }

    #official_registration_heading,
    #official_registration_subheading {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    #official_registration_subheading {
        width: 90%;
    }


    /* ---------- FOOTER ---------- */

    .top-footer {
        flex-direction: column;

        margin: 0;

        gap: 0;

        padding: 0 1rem;
    }

    .leftside-top,
    .rightside-top {
        width: 100%;

        padding: 3rem 1.5rem;
    }

    .middle-footer {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 1rem;

        margin: 0;

        padding: 1rem;
    }

    .quick-links,
    .account,
    .platform,
    .location {
        padding: 2rem 1rem;

        min-width: 0;
    }

    .address {
        display: grid;

        grid-template-columns: 75px minmax(0, 1fr);

        gap: 0.5rem;

        width: 100%;
    }

    #address-details {
        overflow-wrap: anywhere;

        word-break: break-word;
    }

    .mail-id {
        display: grid;

        grid-template-columns: 55px minmax(0, 1fr);

        gap: 0.5rem;

        width: 100%;
    }

    .mail-id a {
        overflow-wrap: anywhere;

        word-break: break-word;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    html,
    body {
        width: 100%;

        max-width: 100%;

        overflow-x: hidden;
    }


    /* ---------- NAVBAR ---------- */

    nav {
        height: 70px;

        padding: 0 0.7rem;

        margin-top: 0;
    }

    .information {
        height: 70px;

        gap: 0.5rem;

        min-width: 0;
    }

    #logo img {
        height: 48px;
    }

    #name {
        min-width: 0;
    }

    #name h1 {
        font-size: 1.65rem;

        white-space: nowrap;
    }

    .rightside-nav {
        margin-left: auto;

        margin-right: 0.2rem;
    }

    .rightside-nav button {
        font-size: 0.8rem;

        padding: 0.6rem 0.75rem;

        border-radius: 8px;

        white-space: nowrap;
    }

    .hamburger {
        display: flex;

        font-size: 1.8rem;

        flex-shrink: 0;
    }


    /* ---------- MOBILE MENU ---------- */

    .center-nav.mobile-menu {
        top: 70px;

        left: 0;

        width: 100%;

        padding: 0.5rem 0 1rem;

        background: white;

        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .center-nav.mobile-menu ul {
        gap: 0;
    }

    .center-nav.mobile-menu ul li a {
        padding: 0.7rem;

        font-size: 1rem;
    }


    /* ---------- HEADER ---------- */

    .header {
        margin: 0.7rem 0.5rem;

        width: calc(100% - 1rem);
    }

    .centre-intro {
        width: 100%;

        padding: 1.5rem 0.8rem;

        border-radius: 16px;

        gap: 1.2rem;
    }

    #heading {
        width: 100%;

        margin-top: 0.5rem;

        font-size: 2.4rem;

        line-height: 1.1;

        text-align: center;

        white-space: normal;

        overflow-wrap: anywhere;
    }

    #description {
        width: 100%;

        padding: 0 0.5rem;

        font-size: 0.9rem;

        line-height: 1.65;
    }

    #info-button {
        width: 100%;

        display: flex;

        justify-content: center;

        align-items: center;

        flex-wrap: wrap;

        gap: 0.7rem;
    }

    #why-choose-us,
    #contact-us {
        font-size: 0.9rem;

        padding: 0.65rem 0.9rem;
    }

    /* IMPORTANT:
       Removes the old fixed 91.25rem width */
    #team-image {
        width: 100%;

        max-width: 100%;

        height: 280px;

        background-size: cover;

        background-position: center;

        border-radius: 16px;

        margin: 0;
    }


    /* ---------- STATS ---------- */

    #stats {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 1rem;
    }

    .subsection-stats {
        width: 210px;

        height: 210px;

        min-width: 210px;
        min-height: 210px;

        max-width: 210px;
        max-height: 210px;

        padding: 1rem;

        margin: 1rem 0;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        overflow: hidden;

        flex-shrink: 0;
    }

    /* Stop animation from pushing circles outside viewport */

    .subsection-stats:nth-child(1),
    .subsection-stats:nth-child(2),
    .subsection-stats:nth-child(3),
    .subsection-stats:nth-child(4) {
        transform: translateY(30px);

        opacity: 0;
    }

    .subsection-stats.show {
        transform: translateY(0);

        opacity: 1;
    }

    .stats-icon {
        font-size: 1.8rem;

        width: 50px;
        height: 50px;

        display: flex;

        justify-content: center;
        align-items: center;

        padding: 0;

        border-radius: 16px;

        flex-shrink: 0;
    }

    .stats-heading {
        font-size: 1.5rem;

        line-height: 1;

        padding: 0.45rem 0.7rem;

        border-radius: 15px;

        flex-shrink: 0;
    }

    .stats-description {
        font-size: 0.9rem;

        line-height: 1.3;

        padding: 0.2rem;

        max-width: 130px;

        text-align: center;

        word-break: normal;

        overflow-wrap: break-word;

        flex-shrink: 0;
    }


    /* ---------- ORGANIZATION ---------- */

    #organization-history {
        padding-left: 0.8rem;

        font-size: 1rem;
    }

    .info-card {
        display: flex;
        flex-direction: column;

        width: calc(100% - 1rem);
        margin: 1rem 0.5rem;

        padding: 1rem;

        gap: 1.5rem;

        align-items: stretch;

        overflow: hidden;
    }

    /* Each Mission / Vision / History section */
    #our-mission,
    #our-vision,
    #our-history {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 1.5rem;
    }

    /* Image comes first */
    .info-card-image {
        width: 100%;

        display: flex;
        justify-content: center;
        align-items: center;

        margin: 0;
    }

    .card-image {
        width: 100%;
        max-width: 100%;

        height: 280px;

        object-fit: cover;

        border-radius: 16px;

        display: block;
    }

    /* Content goes below image */
    .info-card-information {
        width: 100%;

        margin: 0;

        padding: 0;

        display: flex;
        flex-direction: column;

        min-width: 0;
    }

    /* Heading */
    .info-card-information-heading {
        width: 100%;

        margin: 0 0 1rem;

        font-size: 1.35rem;

        line-height: 1.4;

        text-align: center;

        overflow-wrap: break-word;
        word-break: normal;
    }

    /* Description */
    .info-card-information-description {
        width: 100%;

        font-size: 0.9rem;

        line-height: 1.7;

        overflow-wrap: break-word;
        word-break: normal;
    }

    .info-card-information-description-upper-para,
    .info-card-information-description-lower-para {
        width: 100%;

        margin-bottom: 1rem;
    }

    /* List */
    .info-card-information-description-list {
        width: 100%;

        margin: 1rem 0;

        padding-left: 0.5rem;
    }

    .info-card-information-description-list li {
        margin-bottom: 0.8rem;

        line-height: 1.6;
    }

    /* Tab buttons */
    #contents {
        width: 100%;

        display: flex;

        justify-content: space-between;

        overflow: hidden;
    }

    #contents button {
        width: 33.33%;

        font-size: 0.75rem;

        padding: 0.6rem 0.2rem;

        white-space: nowrap;
    }

    #tab-indicator {
        width: 33.33%;
    }


    /* ---------- TEAM ---------- */

    .our_team_container {
        margin: 2.5rem 0.5rem;

        padding: 0.5rem;

        width: calc(100% - 1rem);
    }

    #team_heading {
        padding-left: 0.5rem;

        font-size: 1rem;
    }

    .our_team_container_grid {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 1rem;
    }

    .our_team {
        width: 100%;

        min-width: 0;
    }

    .person-image {
        height: 320px;

        width: 100%;
    }


    /* ---------- DONATION ---------- */

    .donation_utilization {
        margin: 1rem 0.5rem;

        padding: 0.8rem;

        width: calc(100% - 1rem);
    }

    #donation_utilization-heading {
        padding: 0;

        margin-top: 2rem;

        margin-bottom: 1.5rem;

        font-size: 1.2rem;

        text-align: center;
    }

    .donation_utilization-subheading {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 1rem;
    }

    .donation-card {
        width: 100%;

        max-width: 280px;

        height: 130px;
    }

    .amount_received {
        font-size: 1.1rem;
    }

    .amount {
        font-size: 1.1rem;
    }

    #donation_utilization_description {
        padding: 0;

        font-size: 0.9rem;

        line-height: 1.6;
    }

    .donation_footer_heading,
    .donation_footer_subheading {
        padding: 0;

        text-align: center;
    }

    .donation_footer_heading {
        font-size: 1.2rem;
    }

    .donation_footer_subheading {
        font-size: 0.9rem;

        line-height: 1.6;
    }


    /* ---------- CHART ---------- */

    .donation-chart-container {
        width: 100%;

        overflow: hidden;
    }

    .chart-card {
        width: 100%;

        padding: 0.5rem;

        overflow: hidden;
    }

    .chart {
        width: 100% !important;

        height: 350px !important;

        max-width: 100% !important;
    }


    /* ---------- OFFICIAL DOCUMENTS ---------- */

    .official_registration {
        margin: 2.5rem 0.5rem;

        padding: 0.7rem;

        width: calc(100% - 1rem);
    }

    #official_registration_heading {
        padding: 0;

        margin: 2rem 0 1rem;

        font-size: 1.15rem;

        text-align: center;
    }

    #official_registration_subheading {
        width: 100%;

        padding: 0 0.7rem;

        font-size: 0.85rem;

        line-height: 1.6;

        text-align: center;
    }

    .official_registration_container {
        padding: 0.7rem;

        gap: 1rem;

        flex-direction: column;
    }

    .official_registration_leftside,
    .official_registration_rightside {
        width: 100%;

        min-width: 0;
    }

    .trust_registration_heading {
        font-size: 1rem;

        padding: 0.5rem;

        margin-top: 1rem;

        margin-bottom: 1rem;
    }

    .trust_registration_img img {
        width: 100%;

        height: auto;

        max-height: none;

        object-fit: contain;
    }

    .trust_registration_description {
        font-size: 0.9rem;

        padding: 0 0.7rem;

        line-height: 1.5;
    }

    .view-btn {
        font-size: 1rem;

        padding: 0.5rem 0.9rem;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    footer {
        width: 100%;

        max-width: 100%;

        overflow: hidden;
    }

    .top-footer {
        width: 100%;

        margin: 0;

        padding: 0;

        display: flex;

        flex-direction: column;
    }

    .leftside-top,
    .rightside-top {
        width: 100%;

        padding: 2.5rem 1.2rem;

        min-width: 0;
    }

    .header-leftside-top {
        align-items: center;

        gap: 0.6rem;
    }

    .icon-header-leftside-top img {
        height: 50px;
    }

    .title-header-leftside-top p {
        font-size: 1.7rem;

        white-space: normal;
    }

    .description-header-leftside-top {
        width: 100%;

        font-size: 0.9rem;

        line-height: 1.6;
    }

    .social-media {
        flex-wrap: wrap;

        gap: 0.7rem;
    }

    #facebook,
    #instagram,
    #x,
    #youtube {
        padding: 0.45rem 0.65rem;

        flex-shrink: 0;
    }

    .rightside-top {
        padding-top: 1rem;
    }

    .header-rightside-top p {
        font-size: 1.4rem;

        text-align: center;
    }

    .newsletter {
        width: 100%;

        margin-top: 1rem;
    }

    .newsletter-form {
        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 0.7rem;
    }

    #mail-for-subscribe,
    #subscribe-button {
        width: 100%;

        min-width: 0;

        flex: none;

        font-size: 1rem;

        padding: 0.7rem;
    }


    /* ---------- FOOTER MIDDLE ---------- */

    .middle-footer {
        width: 100%;

        margin: 0;

        padding: 1.5rem 0.7rem;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 0.5rem;

        overflow: hidden;
    }

    .quick-links,
    .account,
    .platform,
    .location {
        width: 100%;

        min-width: 0;

        padding: 1.5rem 0.7rem;

        gap: 0.7rem;
    }

    .quick-links p,
    .account p,
    .platform p,
    .location span {
        font-size: 1rem;

        margin-bottom: 0.5rem;
    }

    .quick-links a,
    .account a,
    .platform a {
        font-size: 0.85rem;

        overflow-wrap: anywhere;
    }


    /* ---------- ADDRESS ---------- */

    .address {
        display: flex;

        flex-direction: column;

        gap: 0.2rem;

        margin-bottom: 1.2rem;

        width: 100%;
    }

    #heading-address {
        font-size: 0.9rem;
    }

    #address-details {
        width: 100%;

        font-size: 0.85rem;

        line-height: 1.5;

        overflow-wrap: anywhere;

        word-break: break-word;
    }


    /* ---------- EMAIL ---------- */

    .mail-id {
        display: flex;

        flex-direction: column;

        gap: 0.2rem;

        width: 100%;
    }

    .mail-id > p {
        font-size: 0.9rem;
    }

    .mail-id a {
        width: 100%;

        font-size: 0.8rem;

        line-height: 1.5;

        overflow-wrap: anywhere;

        word-break: break-word;
    }


    /* ---------- COPYRIGHT ---------- */

    .bottom-footer {
        width: 100%;

        padding: 1rem 0.5rem;

        font-size: 0.8rem;

        line-height: 1.5;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    #logo img {
        height: 43px;
    }

    #name h1 {
        font-size: 1.45rem;
    }

    .rightside-nav button {
        font-size: 0.72rem;

        padding: 0.55rem 0.6rem;
    }

    .hamburger {
        font-size: 1.6rem;
    }

    #heading {
        font-size: 2rem;
    }

    #description {
        font-size: 0.82rem;
    }

    #why-choose-us,
    #contact-us {
        font-size: 0.8rem;
    }

    .subsection-stats {
        width: 200px;

        height: 200px;

        min-width: 200px;
        min-height: 200px;

        max-width: 200px;
        max-height: 200px;
    }

    .middle-footer {
        grid-template-columns: 1fr;
    }
    .info-card {
        padding: 0.7rem;

        gap: 1.2rem;
    }

    .card-image {
        height: 230px;
    }

    .info-card-information-heading {
        font-size: 1.2rem;
    }

    .info-card-information-description {
        font-size: 0.82rem;

        line-height: 1.65;
    }

    .info-card-information-description-list {
        padding-left: 0.3rem;
    }

    .info-card-information-description-list li {
        font-size: 0.82rem;
    }

}
/* =========================================
   COMMON NEWSLETTER STYLE
   Same size on every page
========================================= */

.newsletter {
    width: 100%;
    margin-top: 2rem;
}

.newsletter-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;

    display: flex;
    align-items: stretch;
    gap: 0;
}

/* Email box */
#mail-for-subscribe {
    flex: 1 1 auto;

    width: 100%;
    height: 52px;

    padding: 0 1rem;

    border: 1px solid #d8d8d8;
    border-right: none;

    border-radius: 7px 0 0 7px;

    background-color: white;
    color: #370F2D;

    font-family: 'Poppins', sans-serif;
    font-size: 1rem;

    outline: none;
}

/* Subscribe button */
#subscribe-button {
    flex: 0 0 140px;

    width: 140px;
    height: 52px;

    padding: 0 1rem;

    border: none;
    border-radius: 0 7px 7px 0;

    background-color: orangered;
    color: white;

    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.25s ease;
}

#subscribe-button:hover {
    background-color: #e63f00;
    transform: none;
    box-shadow: 0 6px 15px rgba(255, 69, 0, 0.25);
}

#mail-for-subscribe:focus {
    border-color: orangered;
    box-shadow: 0 0 0 2px rgba(255, 69, 0, 0.12);
}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 900px) {

    .newsletter-form {
        max-width: 520px;
    }

    #mail-for-subscribe {
        height: 50px;
        font-size: 0.95rem;
    }

    #subscribe-button {
        height: 50px;
        flex-basis: 130px;
        width: 130px;
        font-size: 0.95rem;
    }
}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 600px) {

    .newsletter {
        width: 100%;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;

        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    #mail-for-subscribe {
        width: 100%;
        height: 50px;

        border: 1px solid #d8d8d8;
        border-radius: 7px;

        font-size: 0.9rem;
    }

    #subscribe-button {
        width: 100%;
        height: 50px;

        flex: none;

        border-radius: 7px;

        font-size: 0.95rem;
    }
}
