*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f4f9f4;

    color:#222;

    min-height:100vh;

}

/* ==========================
        School-Logo
========================== */

.school-logo{

    width:120px;

    height:120px;

    object-fit:contain;

    margin-bottom:20px;

    border-radius:50%;

    background:white;

    padding:10px;

    box-shadow:0 5px 15px rgba(0,0,0,.2);

}

/* ==========================
        Header
========================== */

header{

    background:#2e7d32;

    color:white;

    text-align:center;

    padding:35px 20px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

header h1{

    font-size:2rem;

    margin-bottom:10px;

}

header p{

    opacity:.9;

    line-height:1.6;

}

.back-btn{

    display:inline-block;

    margin-top:18px;

    color:white;

    text-decoration:none;

    font-weight:600;

    padding:10px 18px;

    border:2px solid white;

    border-radius:8px;

    transition:.3s;

}

.back-btn:hover{

    background:white;

    color:#2e7d32;

}

/* ==========================
         Main
========================== */

main{

    width:90%;

    max-width:1100px;

    margin:auto;

    padding:40px 0;

}

/* ==========================
        Hero
========================== */

.hero{

    text-align:center;

    margin-bottom:40px;

}

.hero h2{

    font-size:2rem;

    margin-bottom:15px;

    color:#2e7d32;

}

.hero p{

    color:#666;

    font-size:1.05rem;

}

/* ==========================
      Search
========================== */

.search-box{

    display:flex;

    gap:15px;

    justify-content:center;

    margin-bottom:40px;

    flex-wrap:wrap;

}

.search-box input{

    width:400px;

    max-width:100%;

    padding:15px;

    border-radius:10px;

    border:2px solid #ddd;

    font-size:16px;

}

.search-box input:focus{

    outline:none;

    border-color:#2e7d32;

}

.search-box button{

    background:#2e7d32;

    color:white;

    border:none;

    border-radius:10px;

    padding:15px 30px;

    cursor:pointer;

    font-size:16px;

    transition:.3s;

}

.search-box button:hover{

    background:#1b5e20;

}

/* ==========================
      Quick Buttons
========================== */

.quick-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:40px;

    flex-wrap:wrap;

}

.quick-buttons button{

    padding:14px 25px;

    border:none;

    border-radius:10px;

    background:#4caf50;

    color:white;

    cursor:pointer;

    font-size:15px;

    transition:.3s;

}

.quick-buttons button:hover{

    transform:translateY(-3px);

    background:#388e3c;

}

/* ==========================
         Stats
========================== */

.stats{

    display:flex;

    justify-content:center;

    margin-bottom:40px;

}

.card{

    background:white;

    width:220px;

    text-align:center;

    border-radius:15px;

    padding:30px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.card h2{

    color:#2e7d32;

    font-size:2.3rem;

}

/* ==========================
      Search Results
========================== */

#results{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

    margin-top:25px;

}

.result-card{

    background:white;

    border-radius:15px;

    padding:20px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    cursor:pointer;

    transition:.3s;

}

.result-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.result-card h3{

    color:#2e7d32;

    margin-bottom:10px;

}

.result-card p{

    color:#555;

    margin:5px 0;

}

/* ==========================
      Tree Card
========================== */

.tree-card{

    background:white;

    border-radius:20px;

    padding:40px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.tree-card h2{

    text-align:center;

    color:#2e7d32;

    margin-bottom:25px;

}

/* ==========================
      Tree Image
========================== */

.tree-image{

    text-align:center;

    margin-bottom:30px;

}

.tree-image img{

    width:100%;

    max-width:500px;

    border-radius:15px;

    border:4px solid #2e7d32;

}

/* ==========================
        Info
========================== */

.info-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid #eee;

}

.info-row span{

    font-weight:600;

    color:#2e7d32;

}

.info-row p{

    text-align:right;

    max-width:60%;

}

/* ==========================
      Navigation
========================== */

.navigation{

    display:flex;

    justify-content:space-between;

    margin-top:40px;

    gap:20px;

}

.navigation button{

    flex:1;

    padding:15px;

    border:none;

    border-radius:10px;

    background:#2e7d32;

    color:white;

    cursor:pointer;

    font-size:16px;

    transition:.3s;

}

.navigation button:hover{

    background:#1b5e20;

}

/* ==========================
        Footer
========================== */

footer{

    margin-top:60px;

    padding:25px;

    background:#2e7d32;

    color:white;

    text-align:center;

}

/* ==========================
      Responsive
========================== */

@media(max-width:768px){

    header h1{

        font-size:1.6rem;

    }

    .hero h2{

        font-size:1.5rem;

    }

    .info-row{

        flex-direction:column;

        align-items:flex-start;

        gap:8px;

    }

    .info-row p{

        max-width:100%;

        text-align:left;

    }

    .navigation{

        flex-direction:column;

    }

}



/* ==========================
        BIVAS NATH
========================== */
