/* MADE BY ABBHI ARORA */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&family=Questrial&display=swap');

*, *:after, *:before {
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #30ff59;
    --bg-color: #fff;
    --black-color: black;
    --linear-gradient: linear-gradient(to right, #30ff59, #15f815);
    --red-color: red;
    --blue-color: blue;
    --orange-color: orange;
    --secondary-color: fuchsia;
}

header {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 30px 150px;
    z-index: 1000;
    transition: all 0.5s ease;
}

header .logo {
    width: 150px;
    height: 50px;
    background-size: cover;
}

header .navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

header ul {
    display: inline-block;
}

header ul li a {
    color: var(--bg-color);
    padding: 6px 15px;
    font-size: 18px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

header.sticky,
header.sticky ul li a {
    color: var(--black-color);
}

header.sticky {
    background-color: var(--bg-color);
    padding: 10px 150px;
}

header .navbar #btn1:hover{
    color: var(--bg-color);
    background-color: var(--primary-color);
}

header .navbar #btn2:hover{
    color: var(--bg-color);
    background-color: var(--blue-color);
}

header .navbar #btn3:hover{
    color: var(--bg-color);
    background-color: var(--black-color);
}

header .navbar #btn4:hover{
    color: var(--bg-color);
    background-color: var(--secondary-color);
}

header .navbar #btn5:hover{
    color: var(--bg-color);
    background-color: var(--red-color);
}

html {
    height: 100%;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
}

section {
    position: relative;
    width: 100%;
    padding: 0 5%;
}

.whatsapp-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.wrapper {
    min-height: 100vh;
}

.wrapper #home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* background-image: url(../images/background.jpg); */
    background: url("../images/background.jpg") no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.wrapper #home h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
}

.wrapper #home p {
    color: #fff;
    font-size: 16px;
    line-height: 1.4rem;
    width: 450px;
}

.wrapper #home .btns {
    display: inline-block;
    margin-top: 25px;
}

.wrapper #home .btns a {
    font-weight: 500;
    text-align: center;
    padding: 15px;
    font-size: 24px;
    transition: all 0.5 ease;
}

.wrapper #home .btns .btn-1 {
    color: var(--bg-color);
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.wrapper #home .btns .btn-1:hover {
    color: var(--primary-color);
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
}

.wrapper #home .btns .btn-2 {
    color: var(--primary-color);
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
}

.wrapper #home .btns .btn-2:hover {
    color: var(--bg-color);
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

#about-us .content h1 {
    text-align: center;
    font-size: 60px;
}

#about-us .content p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 6px;
    margin-bottom: 6px;
}

#about-us .content span {
    color: var(--red-color);
}

#about-us .content ul {
    font-size: 16px;
}

#about-us .content ul li{
    list-style: circle;
    margin-left: 50px;
    line-height: 2.3rem;
}

#about-us .content img {
    height: 280px;
    width: 500px;
}

#about-us .content .subcontent {
    display: flex;
    gap: 350px;
}

.content .about-2 {
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 100%;
    gap: 30px;
    background: rgb(245, 245, 245);
    margin-top: 15px;
}

.content .about-2 h3 {
    text-align: center;
    font-size: 25px;
}

.content .about-2 p {
    font-size: 20px;
    color: #646464;
}

.content .about-2 ul li {
    list-style: disc;
    color: #646464;
}

.content .about-2 .box {
    width: 460px;
    height: 400px;
}

.content .about-2 .box #text-1 {
    color: var(--orange-color);
}

.content .about-2 .box #text-2 {
    color: #fff;
}

.content .about-2 .box #text-3 {
    color: var(--primary-color);
}

#products {
    background: var(--black-color);
    min-height: 100vh;
    width: 100%;
    padding: 20px 40px;
}

#products h1 {
    color: #fff;
    text-align: center;
    font-size: 60px;
    padding: 15px 25px;
}

#products .box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 15px 20px 45px 15px;
    padding: 35px 50px;
}

#products .box .card h2 {
    color: #fff;
    font-size: 40px;
}

#products .box .card span {
    color: var(--red-color);
}

#products .box .card p {
    color: #fff;
    font-size: 18px;
    width: 500px;
    line-height: 1.6rem;
}

#products .box .img img {
    height: 300px;
    width: 400px;
}

#services {
    width: 100%;
    min-height: 70vh;
    padding: 20px 40px;
}

#services h1 {
    text-align: center;
    font-size: 60px;
    padding: 15px 25px;
}

#services .box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 10px 20px;
}

#services .box .card {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15) 0 15px 25px rgba(0, 0, 0, 0.15);
}

#services .box .card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

#services .box .card .card-text {
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    position: absolute;
    backdrop-filter: blur(5px);
    display: grid;
    place-items: center;
    transition: all 0.50s ease;
}

#services .box .card:hover .card-text {
    right: 0;
}

#services .box .card .card-text h5 {
    color: #fff;
    font-size: 28px;
    text-align: center;
}

#contact_us {
    width: 100%;
    min-height: 70vh;
    background: #ff4545;
    color: #fff;
}

#contact_us h1 {
    font-size: 60px;
    text-align: center;
    padding: 20px 40px;
}

#contact_us .content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
}

#contact_us .content .box {
    width: 450px;
    height: 400px;
}

#contact_us .content .box h3 {
    font-size: 25px;
    font-weight: 600;
}

#contact_us .content .box p {
    line-height: 1.6rem;
}

#contact_us .content .box #icon {
    fill: #fff;
}

#contact_us .content .box .text {
    display: flex;
    gap: 5px;
}

footer {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 30px 150px;
}

footer .main {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 5rem;
}

footer .main .box {
    height: 350px;
    width: 400px;
}

footer .main .box h3 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

footer .main .box p {
    line-height: 1.5rem;
    font-size: 15px;
}

.main .box .links {
    display: grid;
}

.main .box .links a {
    color: var(--black-color);
}

.main .box .links a:hover {
    color: var(--red-color);
}

.main .box .sub-box {
    display: flex;
    gap: 5px;
    margin: 5px 10px;
}

/* Pages Styling */
/* Biodiesel, biofuel, bioethanol, biocng Page */
.container {
    background: var(--black-color);
    display: grid;
    place-items: center;
    min-height: 250vh;
    width: 100%;
    padding: 30px 50px;
}

.container h1 {
    color: #fff;
    text-align: center;
    font-size: 70px;
    font-weight: 600;
}

.container h1 span {
    color: var(--red-color);
    font-size: 70px;
}

.container p {
    color: #fff;
    font-size: 20px;
}

.container span {
    color: var(--red-color);
    font-size: 18px;
}

.container .text {
    width: 800px;
}

.container .box {
    display: grid;
    place-items: center;
    position: relative;
    top: 100px;
    right: 0;
    padding: 30px 50px;
}

.container .box img {
    width: 500px;
    height: 350px;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    margin: 20px auto;
    padding: 20px 30px;
}

.box .info {
    padding: 20px 50px;
    margin-bottom: 20px;
}

.box .info h3 {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
}

.box .info ul {
    padding: 10px 30px;
    margin-left: 20px;
}

.box .info ul li {
    list-style: circle;
    color: var(--red-color);
    font-size: 18px;
}

/* contact us page */

.background {
    width: 100%;
    height: 100px;
    background-color: var(--black-color);
}

#main {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 70vh;
    background: #f1f1f1;
}
#main h1 {
    font-size: 60px;
}

#flexbox {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    gap: 5rem;
}

#flexbox h3 {
    font-size: 35px;
}

#flexbox .content {
    display: grid;
}

#flexbox .content .subcontent {
    display: grid;
    padding: 10px 20px;
}

#flexbox .content .subcontent .text {
    display: flex;
}

form {
    width: 500px;
}

form .input-field #input-box {
    width: 100%;
    height: 100%;
    outline: none;
    padding: 6px;
    border: 2px solid var(--black-color);
    padding-left: 10px;
}

form .input-field #message-box {
    width: 100%;
    height: 200px;
    max-height: 250px;
    outline: none;
    padding: 6px;
    border: 2px solid var(--black-color);
    padding-left: 10px;
    resize: none;
}

form input[type=number]::-webkit-inner-spin-button, 
form input[type=button]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

form button {
    height: 40px;
    width: 100px;
    border-radius: 20px;
    border: none;
    outline: none;
    background-color: #23e8e8;
    color: var(--bg-color);
    transition: all 0.50s ease;
    font-size: 16px;
    margin: 5px 0 5px 0;
}

form button:hover {
    transform: scale(1.05);
    cursor: pointer;
    background-color: #31f4f4;
}

/* about page */
#main {
    display: block;
    padding: 10px 30px;
}

#main h1 {
    font-size: 60px;
    text-align: center;
}

#main #body {
    display: grid;
    margin: 5px auto;
}

#main #body .img {
    display: flex;
    align-items: center;
    justify-content: center;
}

#main #body p {
    font-size: 18px;
}

#main #body p span {
    color: var(--red-color);
    font-weight: 500;
}

#main h2 {
    font-size: 28px;
}

#main h2 span {
    font-family: "Questrial", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

#main #body ul {
    margin-left: 50px;
}

#main #body ul li {
    list-style: disc;
}

#main #flexbox {
    display: inline-flex;
    padding: 0px;
}

/* readme, faqs, pp page styling */
#container-box {
    display: block;
    padding: 20px 50px;
}

#container-box h1{
    text-align: center;
    font-size: 60px;
}

#container-box h3 {
    font-size: 24px;
}

#container-box #body ul {
    margin-left: 50px;
}

#container-box #body ul li {
    list-style: disc;
}

#container-box #body a {
    color: #23e8e8;
    transition: all 0.5s ease;
}

#container-box #body a:hover {
    color: var(--blue-color);
}

/* responsive styling */
@media screen and (min-width:1024px){
    html, body {
        height: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    header {
        padding: 20px 100px;
    }
    header.sticky {
        padding: 10px 100px;
    }
     header .navbar {
        gap: 10px;
    }
    header ul li a {
        padding: 5px 10px;
    }
    .mobile-nav-toggle {
        display: none;
    } 
}

@media screen and (min-width:768px) and (max-width:1023px) {
    html, body {
        width: 100%;
        box-sizing: border-box;
    }
    header {
        padding: 20px 70px;
    }
    header.sticky {
        padding: 10px 70px;
    }
    header .navbar {
        gap: 10px;
    }
    header ul li a {
        padding: 5px 5px;
        font-size: 18px;
    }
    .mobile-nav-toggle {
        display: none;
    }
    section {
        width: 1023px;
    }
    #about-us .content ul li{
        margin-left: 50px;
        line-height: 30px;
    }
    #about-us .content img {
        height: 250px;
        width: 350px;
    }
    #products {
        width: 1023px;
        padding: 10px 30px;
    }
    #products .box {
        margin: 10px 15px 40px 10px;
        padding: 20px 40px;
    }
    #products .box .card p {
        width: 400px;
        line-height: 20px;
    }
    #products .box .img img {
        height: 250px;
        width: 350px;
    }
    #services {
        width: 1023px;
        min-height: 150px;
        padding: 10px 30px;
    }
    #services .box {
        gap: 30px;
    }
    #services .box .card img {
        width: 300px;
        height: 300px;
    }
    #contact_us {
        width: 1023px;
        min-height: 100px;
    }    
    #contact_us .content {
        gap: 40px;
    }
    #contact_us .content .box {
        width: 400px;
        height: 350px;
    }
    #contact_us .content .box p {
        line-height: 25px;
    }
    footer {
        padding: 20px 50px;
    }
    footer .main {
        gap: 15px;
    }
    footer .main .box {
        height: 100px;
        width: 300px;
    }
    footer .main .box p {
        font-size: 15px;
        line-height: 20px;
    }
    
    /* Pages Styling */
    /* Biodiesel, biofuel, bioethanol, biocng Page */
    .container {
        min-height: 250vh;
        padding: 10px 20px;
    }  
    .container .text {
        width: 600px;
    }
    .box .info {
        padding: 5px 10px;
    }
    .box .info ul {
        padding: 10px 30px;
        margin-left: 20px;
    }
    
    /* contact us page */
    form {
        width: 250px;
    }    
    
    /* about page */
    #main {
        padding: 10px 20px;
    }
    #main #flexbox #box {
        display: block;
    }
    #main #flexbox img {
        height: 250px;
        width: 400px;
    }
}

@media screen and (max-width:767px) {
    html, body {
        max-width: 767px;
        box-sizing: border-box;
    }
    header {
        padding: 10px;
    }
    header.sticky {
        padding: 10px 15px;
    }
    header ul li a {
        color: var(--black-color);
    }
    .navbar {
        position: fixed;
        flex-direction: column;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        align-items: center;
        justify-content: center;
        background: var(--bg-color);
        margin-right: -100%;
        transition: all 0.5s ease;
    }
    .mobile-menu {
        margin-right: 0%;
    }
    .mobile-nav-toggle {
        display: block;
        position: absolute;
        background: url(../svg/menu\ icon.svg);
        background-repeat: no-repeat;
        padding: 10px 20px;
        top: 20px;
        bottom: 0;
        right: 30px;
        border: 0;
        z-index: 2000;
        transition: all 0.5s ease;
    }
    section {
        position: relative;
        width: calc(100vh-80px);
        padding: 0 5%;
    }  
    .wrapper {
        min-height: 100vh;
    }
    .wrapper #home {
        background-size: cover;
    }
    .wrapper #home h1 {
        font-size: 28px;
    }
    .wrapper #home p {
        font-size: 14px;
        line-height: 1.2rem;
        width: 250px;
    }    
    .wrapper #home .btns {
        display: inline-block;
    }
    #about-us .content h1 {
        font-size: 28px;
    }
    #about-us .content p {
        font-size: 14px;
    }    
    #about-us .content ul {
        font-size: 14px;
    }
    
    #about-us .content ul li{
        margin-left: 20px;
        line-height: 20px;
    }
    
    #about-us .content img {
        height: 100px;
        width: 140px;
    }
    
    #about-us .content .subcontent {
        gap: 10px;
    }
    .content .about-2 {
        flex-direction: column;
        padding: 10px;
        gap: 0px;
        margin-top: 15px;
    }
    .content .about-2 h3 {
        font-size: 18px;
    }
    .content .about-2 p {
        font-size: 10px;
    }
    .content .about-2 .box {
        width: 320px;
        height: 160px;
    }
    .content .about-2 #box3 {
        height: 210px;
    }
    #products {
        padding: 20px 40px;
    }
    #products h1 {
        font-size: 28px;
        padding: 10px 20px;
    }
    #products .box {
        flex-direction: column;
        margin: 5px 10px 20px 10px;
        padding: 10px 20px;
        gap: 2px;
    }
    #products .box .card h2 {
        text-align: center;
        font-size: 20px;
    }
    #products .box .card p {
        font-size: 14px;
        width: 300px;
        line-height: 20px;
    }
    #products .box .img img {
        height: 150px;
        width: 230px;
    }
    #services {
        padding: 10px 30px;
    }
    #services h1 {
        font-size: 28px;
    }    
    #services .box {
        flex-direction: column;
        gap: 20px;
    }    
    #services .box .card img {
        width: 300px;
        height: 280px;
        object-fit: cover;
    }
    #contact_us h1 {
        font-size: 28px;
        padding: 10px 30px;
    }
    #contact_us .content {
        flex-direction: column;
        gap: 10px;
    }
    #contact_us .content .box {
        width: 300px;
        height: 160px;
    }
    #contact_us .content .box h3 {
        font-size: 20px;
        text-align: center;
    }
    #contact_us .content .box p {
        font-size: 14px;
        line-height: 20px;
    }
    footer {
        padding: 10px 100px;
    }
    footer .main {
        flex-direction: column;
        gap: 10px;
    }
    footer .main .box {
        height: 200px;
        width: 300px;
    }    
    footer .main .box h3 {
        font-size: 20px;
    }
    footer .main .box p {
        line-height: 20px;
        font-size: 14px;
    }    
    .main .box .links {
        place-items: center;
    }
    .container {
        min-height: 200vh;
        /* width: 100%; */
        padding: 10px 30px;
    }
    .container h1 {
        font-size: 28px;
    }    
    .container h1 span {
        font-size: 28px;
    }
    .container p {
        font-size: 14px;
    }
    .container span {
        font-size: 12px;
    }
    .container .text {
        width: 300px;
    }    
    .container .box {
        display: grid;
        place-items: center;
        position: relative;
        top: 100px;
        right: 0;
        padding: 5px 10px;
    }
    .container .box img {
        width: 230px;
        height: 150px;
        background-size: cover;
        background-position: center;
        /* object-fit: cover; */
        margin: 5px auto;
        padding: 20px 30px;
    }
    .box .info {
        padding: 5px 10px;
        margin-bottom: 20px;
    }
    .box .info h3 {
        font-size: 20px;
    }
    .box .info ul {
        padding: 5px 30px;
        margin-left: 10px;
    }
    .box .info ul li {
        font-size: 12px;
    }
    .background {
        height: 100px;
    }    
    #main h1 {
        font-size: 28px;
    }
    #flexbox {
        flex-direction: column;
        padding: 10px 20px;
        gap: 10px;
    }
    #flexbox .content h3 {
        font-size: 20px;
    }
    #flexbox .content .subcontent {
        padding: 5px 15px;
    }
    #flexbox .content .subcontent .text {
        gap: 5px;
    }    
    form {
        width: 350px;
    }
    form .btn {
        display: grid;
        place-content: center;
    }
    #main {
        display: block;
        padding: 10px 20px;
    }
    #main h1 {
        font-size: 28px;
    }
    #main h2 {
        font-size: 20px;
    }    
    #main h2 span {
        font-size: 16px;
    }
    #main #body {
        display: grid;
    }
    #main #body img {
        height: 100px;
        width: 300px;
    }
    #main #body p {
        font-size: 12px;
    }
    #main #flexbox {
        display: block;
        padding: 0px;
    }
    #main #flexbox img {
        width: 350px;
        height: 200px;
    }
    #container-box {
        padding: 5px 20px;
    }
    #container-box h1{
        font-size: 28px;
        padding: 10px;
    }    
    #container-box h3 {
        font-size: 20px;
    }
}