/* RESET - SABHI BROWSERS KA DEFAULT SPACING HATA RAHE HAIN */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 } 

body {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    color: #1A2E1A;
}

/* HEADER STYLING */
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #C8E6C9;
}

    .logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 58px;
    height: 58px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    font-family: 'poppins' , sans-serif;
    letter-spacing:0.5px;
}

.tagline {
    font-size: 20px;
    color: #4C6B4C;
    font-weight: 600;
}



nav a {
    color : #1A2E1A;
    text-decoration: none;
    margin-left: 30px;
    font-size: 16px;
    font-weight: 600;
}

nav a:hover {
    color : #2E7D32;
}
/* HERO SECTION STYLING */
.hero-image {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
    position: relative;
}

.hero-quote-bar {
    background-color: #C8E6C9;
    padding: 20px;
    text-align: center;
}

.hero-quote {
    color: #2E7D32;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}



.btn{
    display: inline-block;
    background-color: #2E7D32;
    color: #FFFFFF;
    padding: 18px 65px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}
.btn:hover {
 
     background-color: #1B5E20;

}

/* About & Contact Section */
.about, .contact {
    padding : 80px 50px;
}

.about h1, .contact h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p, .contact p {
    color: #4C6B4C;
    font-size: 36px;
    margin-bottom: 20px;
}

/* Form Styling */
form{
    display : flex;
    flex-direction: column;
    max-width: 500px;
    margin-top: 30px;
    gap: 15px;

}

form input {
    padding: 16px 18px;
    border-radius: 6px;
    border: none;
    background-color: #F1F8F2;
    color: #1A2E1A;
    font-size: 18px;
    border: 1px solid #C8E6C9;
}

form input::placeholder {
    color : #4C6B4C;
}

form button {
    border: none;
    cursor: pointer;
    width: fit-content;
}

.thankyou {
    padding: 100px 50px;
    text-align: center;
}

.admin {
    padding: 60px 50px;

}

.admin h1 {
    font-size: 32 px;
    margin-bottom: 30px;
}
.admin .btn {
    display: inline-block;
    margin-bottom: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td { 
    padding: 12px 15px;
    text-align : left;
    border-bottom: 1px solid #C8E6C9;
}

th{
    background-color: #C8E6C9;
    color : #2E7D32;
}

td{
    color : #4C6B4C;
}

.login{
    padding: 100px 50px ;
    max-width: 500px ;
    margin: 0 auto;
    text-align: center;
}

.login h1 {
    font-size : 36px;
    margin-bottom : 30px;
}

.login form {
    display: flex; 
    flex-direction: column;
    gap: 15px;
    text-align : left;
}

.login form button {
    padding: 16px 35px;
    font-size: 17px;
}
.error {
    color : #2E7D32;
    margin-bottom: 15px;
}
 @media (max-width : 600px) {
    .login{
    padding: 60px 25px; 
    max-width: 100%;
    }
    .login h1{
        font-size: 28px;
    }
    .about, .contact {
    padding: 40px 20px;
}

.about h1, .contact h1 {
    font-size: 26px;
}

form {
    max-width: 100%;
}
.benefit-block p {
    font-size: 16px;
    padding: 0 10px;
}

.benefits-hero h1 {
    font-size: 22px;
}
 }

 .password-wrapper {
    position: relative;
 }
 .password-wrapper input {
    width: 100%;
 }

 .benefits {
    padding: 50px 30px;
    text-align: center;
}

.benefits h2 {
    font-size: 24px;
    color: #1A2E1A;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.benefits h2::before,
.benefits h2::after {
    content: "";
    flex: 1;
    height: 4px;
    background-color: #C8E6C9;;

}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E8F5E9;
}

.benefit-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.benefit-card p {
    padding: 12px;
    font-size: 15px;
    font-weight: bold;
    color: #1A2E1A;
    background-color: #C8E6C9;
    margin: 0;
}


.home-quote {
    padding: 50px 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.home-quote h2 {
    font-size: 30px;
    color: #1A2E1A;
    margin-bottom: 12px;
    display:flex;
    align-items: center;
    gap: 15px;
}
.home-quote h2::before,
.home-quote h2::after{

    content:"";
    flex: 1;
    height:4px;
    background-color: #C8E6C9;;
}
.home-quote > p {
    color: #4C6B4C;
    margin-bottom: 28px;
    font-size: 18px;
}

.home-quote form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    margin: 0 auto;
}
.home-quote form button {
    align-self: center;
}



.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #4C6B4C;
}

.checkbox-row a {
    color: #2E7D32;
    font-weight: bold;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 40px 30px;
    background-color: #F1F8F2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 30px;
    width: 32px;
    display: inline-block;
    text-align: center;
    flex-shrink: 0;
}

.feature-item p {
    color: #1A2E1A;
    font-weight:  bold;
    font-size: 17px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #C8E6C9;
}

.footer-name {
    font-size: 16px;
    font-weight: bold;
    color: #1A2E1A;
    margin-bottom: 5px;
}

.footer-address {
    font-size: 13px;
    color: #4C6B4C;
    margin-bottom: 15px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-socials a {
    color: #2E7D32;
    font-size: 20px;
}
.benefits-hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #E8F5E9;
}

.benefits-hero h1 {
    font-size: 26px;
    color: #1A2E1A;
    font-weight: bold;
}

.benefit-block {
    padding: 40px 25px;
    text-align: center;
}



.benefit-block p {
    font-size: 18px;
    font-weight: bold;
    max-width: 500px;
    margin: 0 auto;
}

.block-1 {
    background-color: #a5f0b0;
}
.block-1 p {
    color: #1A2E1A;
}

.block-2 {
    background-color: #2E7D32;
}
.block-2 p {
    color: #FFFFFF;
}

.block-3 {
    background-color: #C8E6C9;
}
.block-3 p {
    color: #1A2E1A;
}

.block-4 {
    background-color: #1B5E20;
}
.block-4 p {
    color: #FFFFFF;
}

.block-5 {
    background-color: #9df7a5;
}
.block-5 p {
    color: #1A2E1A;
}

.feedback {
    padding: 50px 30px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.feedback h2 {
    font-size: 22px;
    color: #1A2E1A;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 15px
}
.feedback h2::before,
.feedback h2::after {
    content: "";
    flex:1;
    height: 4px;
    background-color: #C8E6C9;
}

.feedback > p {
    color: #4C6B4C;
    margin-bottom: 20px;
}

.feedback form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}
.feedback form button {
    align-self: center;
}

.hidden-input {
    display: none;
}

.upload-box {
    border: 2px dashed #C8E6C9;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    color: #4C6B4C;
    font-size: 14px;
}

.upload-box:hover {
    background-color: #F1F8F2;
}

.upload-icon {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.stat-box {
    background-color: #E8F5E9;
    border-radius: 10px;
    padding: 25px 35px;
    text-align: center;
}

.stat-number, .stat-plus {
    font-size: 32px;
    font-weight: bold;
    color: #1A2E1A;
}

.stat-box p {
    font-size: 14px;
    font-weight: bold;
    color: #2E7D32;
    margin-top: 5px;
}
@media (max-width: 768px) {

    nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .home-quote, .feedback {
        padding: 40px 20px;
    }

}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
}

@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    nav#navMenu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 15px;
        padding-top: 15px;
    }

    nav#navMenu.active {
        display: flex;
    }

    header {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 15px 20px;
    }

}