*{
    margin: 0;
    padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;

}
#header{
    background: #ffffff;
    padding: 20px 0;
}
#header .container{
    width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* logo */
#logo{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #263238;
}
#logo img{
    width: 32px;
}
/* nav-list */
nav ul{
    list-style: none;
    display: flex;
    gap: 30px;
}
nav ul li a{
    text-decoration: none;
    color:#4d4d4d;
    font-size: 16px;

}
nav ul li a:hover{
    color:  #4caf4f;
}
/* button */
.nav-btn{
    background-color:  #4caf4f;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    cursor: pointer;
}
/* hide menu-icon */
.menu-icon{
    display: none;
}
@media(max-width:600px){
    nav{
        display: none;

    }
    .nav-btn{
        display: none;

    }
    .menu-icon{
        display: block;
    }
    #header .container{
          width: 95%;

    }
      
    
}
/* hero section */
#hero{
    width: 100%;
    background-color: #f5f7fa;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
}
#hero .container{
    max-width: 1100px;
}
#content{
    width: 50%;
}
#content h1{
    font-size: 48px;
    font-weight: 700;
    color: #263238;
    line-height: 1.2;
}
#content p{
    margin: 20px 0;
    color: #717171;
    font-size: 16px;
}
#content button{
    background: #4caf4f;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}
#hero img{
    width: 420px;
}
/* client section */
#client{
    width: 1100px;
    margin: auto;
    text-align: center;
    padding: 60px 0;
}
#our-client h2{
    font-size: 32px;
    color: #263238;
    margin-bottom: 40px;
    line-height: 1.3;
}
#our-client p{
    color: #717171;
    margin-bottom: 40px;
    line-height: 1.6;
}
#client #client-logos{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#client-logos  img{
    width: 50px;
}
/* hero section responsive */
@media(max-width:600px){
    #hero{
        width: 100%;
        padding: 40px 0;

    }
    #hero .container{
        flex-direction: column;
        text-align: center;
        width: 95%;
        margin: auto;
    }
    #content{
        width: 100%;
    }
    #content h1{
        font-size: 28px;
        line-height: 1.3;
    }
    #content p{
        font-size: 14px;
        line-height: 1.6;
        margin: 15px 0;
    }
    #content button{
        padding: 10px 20px;
        font-size: 14px;
    }
    #hero img{
        width: 250px;
        margin-top: 20px;
 
    }
    /* client section responsive */
    #client{
        width: 95%;
        padding: 40px 0;
    }
    #our-client h2{
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    #our-client p{
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 1.6;

    }
    #client-logos{
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    #client-logos img{
        width: 40px;
        margin: 5px;
    }


}
/* community section */
.community{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 100px 0;

    text-align: center;
    
}
#community-content{
    
    margin-bottom: 60px;
}
#community-content h2{
    font-size: 36px;
    color: #263238;
    line-height: 1.3;
    margin-bottom: 15px;
}
#community-content p{
    font-size: 16px;
    color: #717171;
    line-height: 1.6;
    margin-bottom: 15px;
}
#community-cards{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
}
#icon-one, #icon-two, #icon-three{
    flex: 1;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}
#icon-one img, #icon-two img, #icon-three img{
    width: 50px;
    margin-bottom: 15px;

}


#icon-one h2, #icon-two h2, #icon-three h2{
    font-size: 20px;
    color: #263238;
    margin-bottom: 10px;
    line-height: 1.3;
}
#icon-one p, #icon-two p , #icon-three p{
    font-size: 14px;
    color: #717171;
    line-height: 1.3;
}
@media(max-width:600px){
    .community {
        padding: 50px 0;
    }

    #community-content h2 {
        font-size: 24px;
    }

    #community-content p {
        font-size: 14px;
    }

    .community-cards {
        flex-direction: column; /* stack cards */
        gap: 20px;
    }

    #icon-one, #icon-two, #icon-three {
        width: 100%;
        padding: 20px;
    }

    #icon-one img, #icon-two img, #icon-three img {
        width: 40px;
    }

    #icon-one h2, #icon-two h2, #icon-three h2 {
        font-size: 18px;
    }

    #icon-one p, #icon-two p, #icon-three p {
        font-size: 14px;
    }
}
/* pixel grade */
/* .pixel{
    width: 1100px;
    max-width: 95%;
    margin: auto;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.pixel-top{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;


}
#p-img{
   width: 48%;
   min-width: 300px;
}
#p-img img{
    width: 100%;
    border-radius: 12px;
}
#pixel-content{
   
    width: 48%;
    min-width: 300px;
}
#pixel-content h2{
    font-size: 28px;
    color: #263238;
    line-height: 1.3;
    margin-bottom: 20px;

}
#pixel-content p{
    font-size: 16px;
    color: #717171;
    line-height: 1.6;
    margin-bottom: 20px;

}
#p-btn{
    padding: 12px 28px;
    background: #4caf4f;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

 #p-content{
    width: 100%;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
 }
 #p-content h2{
    font-size: 24px;
    color: #263238;
    margin-bottom: 10px;
    line-height: 1.3;
 }
 #p-content p{
    font-size: 16px;
    color: #717171;
    line-height: 1.5;
 }
 #images{
    display: flex;
    justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
 }

#mem, #club, #event, #payment{
    flex: 1 1 45%;
    min-width: 250px;

    
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

    
    display: flex;
    align-items: center;
    gap: 15px;
}
#mem img, #club img, #event img, #payment img{
    width: 40px;
    
}
#mem h2, #club h2, #event h2,  #payment h2{
    font-size: 20px;
    color: #263238;
    margin: 0;



}
#mem p, #club p, #event p, #payment p{
    font-size: 14px;
    color: #717171;
    margin: 0;

} */
/* ===== PIXELGRADE SECTION ===== */
.pixel{
    width: 1100px;
    max-width: 95%;
    margin: auto;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* TOP ROW: Image + Main Content + Helping Local box */
.pixel-top{
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* align top */
    flex-wrap: wrap;
    gap: 20px;
}

/* Image */
#p-img{
    flex: 1 1 30%;
    min-width: 250px;
}
#p-img img{
    width: 100%;
    border-radius: 12px;
}

/* Main content */
#pixel-content{
    flex: 1 1 35%;
    min-width: 250px;
}
#pixel-content h2{
    font-size: 28px;
    color: #263238;
    line-height: 1.3;
    margin-bottom: 20px;
}
#pixel-content p{
    font-size: 16px;
    color: #717171;
    line-height: 1.6;
    margin-bottom: 20px;
}
#p-btn{
    padding: 12px 28px;
    background: #4caf4f;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

/* Helping a local box */
#p-content{
    flex: 1 1 48%;
    min-width: 300px;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}
#p-content h2{
    font-size: 24px;
    color: #263238;
    margin-bottom: 10px;
    line-height: 1.3;
}
#p-content p{
    font-size: 16px;
    color: #717171;
    line-height: 1.5;
}

/* STATS boxes */
#images{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
#mem, #club, #event, #payment{
    flex: 1 1 45%;
    min-width: 250px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}
#mem img, #club img, #event img, #payment img{
    width: 40px;
}
#mem h2, #club h2, #event h2,  #payment h2{
    font-size: 20px;
    color: #263238;
    margin: 0;
}
#mem p, #club p, #event p, #payment p{
    font-size: 14px;
    color: #717171;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 900px){
    .pixel-top{
        flex-direction: column;
        gap: 30px;
    }
    #p-img, #pixel-content, #p-content{
        width: 100%;
    }
}
@media(max-width:600px){
    #pixel-content h2{
        font-size: 24px;
    }
    #pixel-content p{
        font-size: 14px;
    }
    #p-content h2{
        font-size: 20px;
    }
    #p-content p{
        font-size: 14px;
    }
    #mem, #club, #event, #payment{
        flex: 1 1 100%;
    }
}
/* ===== CTA SECTION ===== */
.cta {
    width: 100%;
    background-color: #f5f7fa;
    padding: 80px 0;
    text-align: center;
    color: #263238;
}

.cta h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta button {
    padding: 14px 28px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background-color: #ffffff;
    color: #4caf4f;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.cta button i {
    margin-left: 10px;
}

.cta button:hover {
    background-color: #e0e0e0;
}

/* ===== FOOTER ===== */
.footer {
    width: 100%;
    background-color: #263238;
    color: #ffffff;
    padding: 60px 0;
}

.footer-container {
    max-width: 1200px;
    width: 95%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-left {
    flex: 1 1 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 32px;
}


.footer-left p {
    font-size: 14
}
/* ===== RESPONSIVE FOR SCREENS macwidth 900px ===== */
@media(max-width: 900px){

    /* ===== HEADER / NAVBAR ===== */
    #header .container{
        width: 95%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    nav ul{
        gap: 15px;
    }
    .nav-btn{
        padding: 10px 20px;
        font-size: 14px;
    }

    /* ===== HERO SECTION ===== */
    #hero{
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 60px 20px;
    }
    #content{
        width: 100%;
        margin-bottom: 20px;
    }
    #content h1{
        font-size: 32px;
    }
    #content p{
        font-size: 14px;
    }
    #content button{
        padding: 10px 22px;
        font-size: 14px;
    }
    #hero img{
        width: 280px;
        margin-top: 15px;
    }

    /* ===== CLIENT SECTION ===== */
    #client{
        width: 95%;
        padding: 40px 0;
    }
    #our-client h2{
        font-size: 28px;
        margin-bottom: 20px;
    }
    #our-client p{
        font-size: 14px;
        margin-bottom: 30px;
    }
    #client-logos{
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    #client-logos img{
        width: 40px;
    }

    /* ===== COMMUNITY SECTION ===== */
    #community-cards{
        flex-direction: column;
        gap: 20px;
    }
    #icon-one, #icon-two, #icon-three{
        width: 100%;
    }
    #community-content h2{
        font-size: 28px;
    }
    #community-content p{
        font-size: 14px;
    }
    #icon-one h2, #icon-two h2, #icon-three h2{
        font-size: 18px;
    }
    #icon-one p, #icon-two p, #icon-three p{
        font-size: 14px;
    }

    /* ===== PIXELGRADE SECTION ===== */
    .pixel-top{
        flex-direction: column;
        gap: 30px;
    }
    #p-img, #pixel-content, #p-content{
        width: 100%;
        flex: 1 1 100%;
    }
    #p-img img{
        width: 100%;
        height: auto;
    }
    #pixel-content h2{
        font-size: 24px;
    }
    #pixel-content p{
        font-size: 14px;}
    }


