@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
html{
    scroll-behavior: smooth;
    display: flex;
    justify-content: center;
    font-size: 110%;
}
body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}
:root{
    --blue : rgb(24, 186, 6);
}
a{
    text-decoration: none;
    color: black;
}
.btn-a{
    background-color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 0.9rem;
}
h1{
    font-size: 5rem;
}


/* NAVBAR SECTION */
#navbar{
    width: 100%;
    position: fixed;
    top: 0%;
    z-index: 999;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
}
.nav-logo-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: white;
}
.nav-logo-box img{
    width: 30px;
}
#navbar .btn-a{
    background-color: var(--blue);
    color: white;
    transition: 0.4s;
}
#navbar .btn-a:hover{
    background-color: white;
    color: black;
}


/* LANDING SECTION */
.landing-section{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 3rem 3rem;
    margin-top: 5rem;
}
.landing-btn-box{
    margin-top: 2rem;
}
.landing-btn-box .btn-a{
    border: 2px solid var(--blue);
}
.landing-btn-box .btn-a:hover{
    background-color:var(--blue);
    color: white;
}
.landing-section-left{
    max-width: 600px;
}
.landing-section-left p{
    font-size: 14px;
}
.landing-section-left h1 span{
    color: var(--blue);
}
.landing-section-right img{
    width: 400px;
}


/* ABOUT SECTION */
.about-section{
    margin-top: 0rem;
    background-color: rgb(240, 240, 240);
}
.about-section-left img{
    width: 400px;
}
.about-section-right{
    max-width: 500px;
}
.about-section-right .nav-logo-box{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2rem;
    color: black;
}
.about-section-right p{
    font-size: 14px;
    margin-top: 1rem;
}


/* EXTRA SECTION */
.extra-section{
    margin-top: 3rem;
    width: 100%;
    background: linear-gradient(-45deg, #52ee6c, #09920e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 5s ease infinite;
    padding: 4rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.extra-section h2{
    max-width: 700px;
}

/* CONTACT SECTION */
.contact-section{
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 3rem;
}
.contact-form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form h2{
    font-size: 2rem;
}
.input-field{
    outline: none;
    border: 1px solid var(--blue);
    padding: 0.4rem 0.7rem;
    width: 400px;
    font-size: 16px;
}
textarea{
    height: 100px;
    resize: none;
}
.contact-form .btn-a{
    border: 2px solid var(--blue);
    background-color:var(--blue);
    color: white;
    cursor: pointer;
}
.contact-form .btn-a:hover{
    border: 2px solid var(--blue);
    background-color:white;
    color: var(--blue);
}

/* FOOTER SECTION */
#footer{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    background-color: black;
    color: white;
    padding: 2rem 2rem;
}
#footer .col{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.first-col{
    justify-content: center;
    align-items: center;
}
.first-col img{
    width: 100px;
}
.second-col a{
    color: white;
}
.third-col{
    max-width: 400px;
}
.third-col p{
    font-size: 14px;
}
.third-col .btn-a{
    width: 150px;
    text-align: center;
    font-size: 14px;
}



/* RESPONSIVENESS */
@media screen and (max-width:1150px){
    .landing-section-left h1{
        font-size: 3rem;
    }
    .landing-section-left{
        max-width: 400px;
    }
    .landing-section-right img{
        width: 300px;
    }
}
@media screen and (max-width:850px){
    .landing-section-left{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0.7rem;
        width: 100%;
    }
    .landing-section-right img{
        width: 400px;
    }
}
@media screen and (max-width:700px){
    .landing-section-right img{
        width: 300px;
    }
    .about-section-left img{
        width: 300px;
    }
    .extra-section h2{
        font-size: 1.3rem;
    }
}

@media screen and (max-width:550px) {
    .about-section-right p{
        font-size: 10px;
    }
    .about-section-right{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width:450px) {
    .input-field{
        width: 300px;
        font-size: 14px;
    }
    .landing-section-right img{
        width: 240px;
    }
    .about-section-left img{
        width: 240px;
    }
}
@media screen and (max-width:400px) {
    .landing-section h1{
        font-size: 2rem;
    }
    #navbar .btn-a{
        font-size: 12px;
    }
    #navbar .nav-logo-box{
        gap: 0.3rem;
    }
    .extra-section h2{
        font-size: 1rem;
    }
}