/* ********** FONT ************ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --nav-color: #2C1616;
    --primary-web-color: #854AF6;
    --secondary-web-color: #52C5FB;
    --third-web-color: #F75C6A;
    --font-btn-color: #1C1C1F;
    --footer-color: #161616;
    --secondary-font-color: #DADEF7;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    font-size: 16px;
}

html{
    scroll-behavior: smooth;
}

body{
    width: 100dvw;
    height: 100dvh;
    overflow-x: hidden;
}

.main-container{
    max-width: 1200px;
    padding-left: 25px;
    padding-right: 25px;
    margin: 0 auto;
}

.row{
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-basis: 50%; */
}

/* ************ NAVBAR START ************* */
#navbar{
    padding-block: 25px;
    background-color: #fff;
    /* position: fixed;
    top: 0; */
    z-index: 9;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
}

nav .logo{
    font-size: 22px;
    color: var(--font-btn-color);
    font-weight: 600;
}

nav .logo span{
    color: var(--primary-web-color);
    margin-right: 5px;
    font-size: 22px;
}

nav .list-and-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

nav ul li{
    margin-right: 25px;
    cursor: pointer;
}

nav ul li a{
    color: var(--nav-color);
    transition: all 0.15s ease;
}

nav ul li a:hover{
    color: var(--primary-web-color);
}

nav .list-and-btn .ide-btn{
    padding: 10px 32px;
    border: none;
    font-size: 16px;
    background-color: var(--primary-web-color);
    font-weight: 500;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s ease;
}

nav .list-and-btn .ide-btn:hover{
    background-color: #681df3;
}

nav .list-and-btn .ide-btn:active{
    transform: scale(0.9);
}
/* ************ NAVBAR END ************* */

/* ************* HERO SECTION START *************** */
#hero{
    background: linear-gradient(to bottom right, var(--primary-web-color), var(--secondary-web-color));
    padding-block: 50px;
}

.hero-div .hero-info-div h1{
    font-size: 50px;
    color: #fff;
    line-height: 3.5rem;
    margin-bottom: 20px;
}

.hero-div .hero-info-div p{
    color: var(--secondary-font-color);
    margin-bottom: 40px;
    font-size: 17px;
    font-weight: 500;
    width: 500px;
}

.hero-div .hero-info-div p span{
    color: #fff;
    font-weight: 700;
    font-style: italic;
}

.hero-div .hero-info-div a{
    padding: 15px 40px;
    background-color: var(--font-btn-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.hero-div .hero-info-div a:hover{
    color: var(--font-btn-color);
    background-color: #fff;
}

.hero-div .hero-img-div{
    width: 600px;
}

.hero-div .hero-img-div img{
    width: 100%;
    position: relative;
    top: 2rem;
}
/* ************* HERO SECTION END *************** */

/* *************** FEATURES SECTION START ************* */
#features{
    text-align: center;
    padding-block: 80px;
}

#features .features-div h2{
    font-size: 30px;
    margin-bottom: 15px;
}

#features .features-div p{
    width: 920px;
    margin: 0 auto 50px;
    color: var(--font-btn-color);
}

#features .features-div .row .col .feature-img-div{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-inline: 50px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

#features .features-div .row .col .feature-img-div:hover{
    transform: scale(1.2);
}

#features .features-div .row .col .feature-img-div img{
    width: 100%;
    height: 100%;
}
/* *************** FEATURES SECTION END *************** */


/* ************* ABOUT SECTION START ************** */
#about{
    background: linear-gradient(to bottom right, var(--primary-web-color), var(--third-web-color));
    padding-block: 80px;
}

#about .about-section .col h2{
    font-size: 50px;
    color: #fff;
}

#about .about-section>.col p{
    color: var(--secondary-font-color);
    width: 500px;
}

#about .about-section>.col p>span{
    color: #fff;
    font-weight: 600;
    font-style: italic;
}

#about .about-section .about-img{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--font-btn-color);
    margin-inline: 80px;
}

#about .about-section .about-img img{
    width: 100%;
    height: 100%;
}
/* ************* ABOUT SECTION END ************** */


/* ************** TESTIMONIAL SECTION START ************ */
#testimonials{
    padding-block: 80px;
}

#testimonials h2{
    font-size: 50px;
    color: var(--font-btn-color);
    text-align: center;
    margin-bottom: 50px;
}

#testimonials .testimonials-section .rev-div{
    margin-inline: 20px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px 0 50px 0;
    padding: 20px 30px;
    transition: all 0.5s ease;
}

#testimonials .testimonials-section .rev-div:hover{
    transform: translateY(-20px);
}

#testimonials .testimonials-section .rev-div .cus-img-info{
    margin-inline: 10px;
}

#testimonials .testimonials-section .cus-img{
    width: 200px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}

#testimonials .testimonials-section .cus-img img{
    width: 100%;
    height: 100%;
}

#testimonials .testimonials-section .cus-rev p{
    font-size: 13px;
    line-height: 1.1rem;
    font-style: italic;
    color: var(--font-btn-color);
}

#testimonials .testimonials-section .cus-rev p span{
    font-weight: 600;
    font-size: 13px;
}
/* ************** TESTIMONIAL SECTION END ************ */


/* ************* FOOTER START ************** */
footer{
    background-color: var(--footer-color);
    padding-block: 80px;
    text-align: center;
    color: #fff;
}

footer .footer-section h2{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

footer .footer-section h2 span{
    font-size: 22px;
    color: var(--primary-web-color);
}

footer .footer-section p{
    width: 800px;
    margin: 0 auto 50px;
    color: #B4B4BA;
    font-size: 15px;
}

footer .footer-section a{
    display: block;
    width: 400px;
    margin: 0 auto 80px;
    padding: 10px 32px;
    border: none;
    font-size: 16px;
    background-color: var(--primary-web-color);
    font-weight: 500;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s ease;
}

footer .footer-section a:hover{
    background-color: #681df3;
}

footer .footer-section a:active{
    transform: scale(0.9);
}

footer .footer-section hr{
    height: 1px;
    border: none;
    background-color: #494949;
    margin-bottom: 50px;
}

footer .footer-section hr + p{
    font-size: 13px;
    color: #7a7a7a;
}
/* ************* FOOTER END ************** */