*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}
html,body{
    height: 100%;
    width: 100%;
}
body{
    background-color: rgb(0, 126, 109);
    overflow-x: hidden;
}
.heady{
    height: 100vh;
    width: 100vw;
    background: url(hero-bg.png);
}
.navbar{
    height: 6rem;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    z-index: 100;
    background-color: (0, 0, 0, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar img{
    height: 2rem;
    width: 2rem;
    /* position: relative;
    left: 14rem; */
    margin-left: 1rem;
}
.navbar h1{
    color: white;
    font-size: 2rem;
    margin-left: 1rem;
}
.list{
    display: flex;
    align-items: center;
    gap: 2rem;
}
.list .items{
    list-style-type: none;
    font-size: large;
    font-size: 1rem;
}
.items a{
    text-decoration: none;
    color: white;
    padding-left: 3rem;
    transition: color 0.3s;
}
.items a:hover{
    color: rgb(15,172,151);
}
.but1{
    height: 3rem;
    width: 10rem;
    color: white;
    background-color: rgb(15, 172, 151);
    border: none;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.3s;
    margin-right:10rem;
    border-radius: 5px;
}
.but1 a{
    text-decoration: none;
    color: white;
} 
.but1:hover{
    transform: scale(1.1);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        padding: 1rem;
    }

    .navbar img {
        height: 1.5rem;
        width: 1.5rem;
    }

    .navbar h1 {
        font-size: 1.25rem;
    }

    .list {
        flex-direction: column; /* Stack navigation links vertically */
        gap: 1rem;
        margin-top: 1rem;
    }

    .items a {
        font-size: 0.9rem;
    }

    .but1 {
        width: 8rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar h1 {
        font-size: 1rem;
        text-align: center;
    }

    .list {
        gap: 0.5rem;
    }

    .items a {
        font-size: 0.8rem;
    }

    .but1 {
        height: 2.5rem;
        width: 7rem;
        font-size: 0.9rem;
    }
}

.flex1{
    position: relative;
    top: 5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem 5rem;
    gap: 2rem;
}
.leftbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
}
.head .welcome{
    position: relative;
    top: 1rem;
    font-size: 1.2rem;
    color: white;
}
.head p{
    color: white;
    margin-bottom: 2rem;
    font-size: large;
}
.leftbox h1{
    font-size: 6rem;
    color: white;
    line-height: 1.2;
}
.box1{
    height: auto;
    height: 8.5rem;
    width: 100%;
    max-width: 40rem;
    color: grey;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: white;
    padding-top: 1rem;
    padding-left: 1rem;
    margin-top: 2rem;
    position: relative;
    left:2rem;
    border-radius: 15px;
    font-size: large;
    padding-right: 1rem;
    color: grey;
}
.subbox1 {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}
.subbox1 .subbox2{
    height:3rem;
    position: absolute;
    /* width: 70%; */
    /* margin-top: 0.5rem; */
    /* margin-bottom: 1rem; */
    width:25rem;
    padding-left: 1rem;
    font-size: large;
    border:none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ri-map-pin-line{
    /* position: relative;
    right:3rem */
    font-size: 1.5rem;
    color: grey;
}
.but2{
    position: absolute;
    left: 26.5rem;
    bottom: 0.5rem;
    cursor: pointer;
    height: 3rem;
    width:auto;
    padding: 0 1.5rem;
    transition: transform 0.3s;
    color:white;
    font-size: 1rem;
    background-color: rgb(15, 172, 151);
    border:none;
    border-radius: 5px;
}
/* .but2:hover{
    transform: scale(1.1);
} */
.rightbox{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}
.rightbox img{
    position: relative;
    top: 4rem;
}

/* Tablet Screens (Max Width: 768px) */
@media (max-width: 768px) {
    .flex1 {
        flex-direction: column; /* Stack vertically */
        align-items: center;
        padding: 3rem 2rem;
        gap: 3rem;
    }

    .leftbox {
        align-items: center;
        text-align: center;
    }

    .leftbox h1 {
        font-size: 3rem;
    }

    .box1 {
        width: 90%;
        padding: 1.5rem;
    }

    .subbox1 .subbox2 {
        width: 100%;
    }

    .but2 {
        width: 100%;
        text-align: center;
    }

    .rightbox img {
        max-width: 80%;
        position: relative;
        top: 0;
    }
}

/* Mobile Screens (Max Width: 480px) */
@media (max-width: 480px) {
    .leftbox h1 {
        font-size: 2rem;
    }

    .head .welcome {
        font-size: 1rem;
    }

    .box1 {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .subbox1 .subbox2 {
        font-size: 0.9rem;
    }

    .but2 {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .rightbox img {
        max-width: 90%;
    }
}

main{
    background-color: white;
    height: 100vh;
    width: 100vw;
}
.box2{
    position: relative;
    top: 7.5rem;
    bottom: 3rem;
    margin: 0px auto;
    height: 20rem;
    width: 80%;
    display: grid;
    grid-template-rows: repeat(1 1fr);
    grid-template-columns: repeat(4 1fr);
    gap: 1rem;
    /* padding-left: 8rem; */
    padding: 2rem;
    /* padding-right: 10rem; */
    background-color: white;
    box-shadow: 0px 1px 8px black;
    border-radius: 15px;
}
.one,.two,.three,.four{
    margin-top: 2rem;
    text-align: center;
    column-gap: 1rem;
    transition: transform 0.3s ease;
}
.one{
    grid-column-start: 1;
    grid-column-end: 2;
    height: 7rem;
    width: 14rem;
}
.two{
    grid-column-start: 2;
    grid-column-end: 3;
    height: 7rem;
    width: 14rem;
}
.three{
    grid-column-start: 3;
    grid-column-end: 4;
    height: 7rem;
    width: 14rem;
}
.four{
    grid-column-start: 4;
    grid-column-end: 5;
    height: 7rem;
    width: 14rem;
}
.one:hover,.two:hover,.three:hover,.four:hover{
    transform: scale(1.1);
}
/* .arrow a{
    text-decoration: none;
    color: rgb(15, 172, 151);
    font-size: large;
    transition: background-color 0.3s, color 0.3s;
}
.arrow a:hover{
    background-color: rgb(15, 172, 151);
    color: white;
    border-radius: 50%;
    padding: 1rem;
    display: inline-block;
    text-align: center;
} */

/* Tablet Screens (Max Width: 768px) */
@media (max-width: 768px) {
    .box2 {
        grid-template-columns: repeat(2, 1fr); /* Adjust to 2 columns */
        width: 90%; /* Narrower width */
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .one, .two, .three, .four {
        margin-top: 1.5rem;
        width: 100%;
    }
}

/* Mobile Screens (Max Width: 480px) */
@media (max-width: 480px) {
    .box2 {
        grid-template-columns: 1fr; /* Stack all in one column */
        width: 95%; /* Use almost full width */
        padding: 1rem;
        gap: 1rem;
    }

    .one, .two, .three, .four {
        margin-top: 1rem;
        width: 100%;
    }

    .arrow a {
        font-size: medium;
        padding: 0.8rem;
    }
}


.part2{
    margin-top: 10rem;
    background-color: #ffffff;
    /* padding-bottom: 10rem; */
}
.container{
    display:flex;
    justify-content: space-around;
    padding-left: 15rem;
    padding-right: 15rem;
}
.rightbox2 {
    width: 60%;
}
.leftbox2{
    display: flex;
    justify-content: center;
    flex-direction: column;
   margin-bottom: 4rem;
}
.leftbox2 h1{
    font-size: 3rem;
    color: rgb(0, 94, 42);
    padding-bottom: 1rem;
}
.leftbox2 p,h2{
    color: grey;
    padding-bottom: 1rem;
}
.leftbox2 p{
    line-height: 1.6rem;
    font-size: larger;
}
.buttons .ONE,.TWO,.THREE{
    height: 3rem;
    width: 10rem;
    /* display: inline;  color: rgb(0, 94, 42); */
    border-radius: 5px;
    font-size: 1.3rem;
    margin-left: 1rem;
    font-weight: 900;
    position: relative;
    right: 1rem;
    margin-bottom: 1rem;
}
.ONE{
    background-color: rgb(15, 172, 151);
    color: white;
    border: none;
}
.TWO ,.THREE{
    color: rgb(0, 94, 42);
    border: none;
}
.grid2{
    margin-top: 1rem;
    display:grid;
    grid-template-columns: repeat(2 1fr);
    grid-template-rows: repeat(2 1fr);
    gap: 0.5rem;
    font-size: larger;
}
.oney{
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
}
.twoy,.threey{
    grid-column-start: 2;
    grid-column-end: 3;
}
.threey{
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
}
.part3{
    height: 100vh;
    width: 100vw;
}
.container2{
    background-color: beige;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    padding-top: 15rem;
}
.caption{
    position: relative;
    right: 36rem;
    top: 5rem;
    font-size: 2rem;
    color: grey;
}
.theading{
    height: 5rem;
    width: 50rem;
    font-size: 5rem;
    color: rgb(0, 104, 81);
    position: relative;
    right: 10rem;
}
.data1{
    height: 8rem;
    display: flex;
    width: 15rem;
    padding: 1.2rem;
    border: 1px solid rgb(0, 104, 81);
    box-shadow: 0px 2px 10px rgb(0, 104, 81);
    border-radius: 10px;
    position: relative;
    top: 4rem;
    right: 11rem;
}
.data1 a,.data2 a,.data3 a,.data4 a,.data5 a,.data6 a{
    text-decoration: none;
    color: rgb(0, 104, 81);
}
.data2{
    height: 8rem;
    display: flex;
    width: 15rem;
    padding: 1.7rem;
    border: 1px solid rgb(0, 104, 81);
    box-shadow: 0px 2px 10px rgb(0, 104, 81);
    border-radius: 10px;
    position: relative;
    /* left: 12rem; */
    left: 6rem;
    bottom: 4rem;  
}
.data3{
    height: 8rem;
    display: flex;
    width: 18rem;
    padding: 1rem;
    border: 1px solid rgb(0, 104, 81);
    box-shadow: 0px 2px 10px rgb(0, 104, 81);
    border-radius: 10px;
    position: relative;
    right: 4rem;
}
.data4{
    height: 8rem;
    display: flex;
    width: 18rem;
    padding: 1rem;
    border: 1px solid rgb(0, 104, 81);
    box-shadow: 0px 2px 10px rgb(0, 104, 81);
    border-radius: 10px;
    position: relative;
    bottom: 8rem;
    left: 16rem;
}
.data5{
    height: 8rem;
    display: flex;
    width: 18rem;
    padding: 1rem;
    border: 1px solid rgb(0, 104, 81);
    box-shadow: 0px 2px 10px rgb(0, 104, 81);
    border-radius: 10px;
    position: relative;
    bottom: 16rem;
    left: 36rem;
}
.data6{
    height: 8rem;
    display: flex;
    width: 16rem;
    padding: 1rem;
    border: 1px solid rgb(0, 104, 81);
    box-shadow: 0px 2px 10px rgb(0, 104, 81);
    border-radius: 10px;
    position: relative;
    bottom: 24rem;
    left: 56rem;
}
.data1:hover,.data2:hover,.data3:hover,.data4:hover,.data5:hover,.data6:hover{
    border: 4px solid rgb(0, 104, 81);
}
.part4{
    position: relative;
    bottom: 8rem;
    height: 60vh;
    width: 100vw;
    background-color: beige;
}
.para4{
    text-align: center;
    color: grey;
    font-size: 2.5rem;
}
.heading4{
    font-size: 5rem;
    color: rgb(0, 104, 81);
    font-weight: 800;
    text-align: center;
}
.container3{
    padding-top: 5rem;
    display: flex;
    justify-content: space-evenly;
}
.ONEY,.TWOY,.THREEY{
    height: 30rem;
    width: 30rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    padding-left: 4rem;
    padding-right: 4rem;
}
.ONEY h2,p{
    padding-bottom: 2rem;
}
.TWOY h2,p{
    padding-bottom: 2rem;
}
.TWOY .read{
    padding-top: 4rem;
}
.THREEY h2,p{
    padding-bottom: 2rem;
}
.ONEY h2,.TWOY h2,.THREEY h2{
    color: rgb(0, 104, 81);
}
.ONEY p,.TWOY p,.THREEY p{
    color: grey;
    font-weight: 900;
    font-size: large;
}
.icons{
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
    color: grey;
    font-weight: 900;
}
.footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    color: #333;
    font-family: 'Arial', sans-serif;
    position: relative; /* Ensure it stays in the normal flow */
    display: block;
    width: 100%; /* Makes sure it spans the full width */
    top: 120rem; /* Pushes footer to the bottom if using flexbox */
    
    
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
}

.footer-logo {
    width: 100px;
    margin-bottom: 1rem;
}

.footer-socials a {
    font-size: 1.2rem;
    color: #333;
    margin-right: 0.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #007bff;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #007bff;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #0056b3;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #ccc;
    margin-top: 1rem;
    font-size: 0.9rem;
}
