@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&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 {
    --main-color: #1B191C;
    --second-color: #0077F4;
    --title-color: #F0FE9A;
    --hover-color: #2f9ce0;
    --text-color: #fbf6f6;
    --continue-btn: #4440e2;
    --card-gradient: #F4F5FE;
}

body {
    /* height: 3000px; */
    margin: 0;
}

* {
    font-family: "Poppins";
}

.container {
    margin-left: auto;
    margin-right: auto;
    /* border: red 1px solid; */
    position: relative;
}



/* -------Aside bar Styling--------- */
aside nav a {
    text-decoration: none;
}

aside {
    display: none;
    width: 250px;
    min-height: calc(100vh - 60px);
    background-color: var(--text-color);
    transition: 0.3s all ease-in-out;
}

nav ul li a ,aside * {
    list-style: none;
    margin: 0;
    text-decoration: none;
    color: var(--main-color);
    
}

aside nav {
    gap: 23px;
    padding: 90px 40px;
    display: flex;
    flex-direction: column;
}

.active {
    margin-top: 96px;
    box-sizing: border-box;
    transition: 0.3s all ease-in-out;
    left: 0;
    position: fixed;
    display: block;
}













/* -------Header Styling--------- */
header {
    background-color: var(--text-color);
    width: 100%;
    gap: 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    top: 0;
    box-sizing: border-box;
}

ul {

    display: flex;
    gap: 30px;
}

header nav li {
    transition: 0.3s ease-in-out;
    list-style: none;
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;

}

header nav li::after {
    border-radius: 5px;
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    width: 0;
    padding: 2px;
    height: 0px;
    background-color: var(--second-color);
    transition: width 0.3s ease-in-out;
}

header nav li:hover {
    scale: 1.1;
}

header nav li:hover::after {
    border-radius: 0%;
    width: 100%;
}

header nav li:active {
    scale: 2;
}

header .login {
    color: whitesmoke;
    padding: 10px;
    background: var(--second-color);
    border-radius: 4px;
    border: none;
    box-sizing: border-box;
    width: 6rem;
    transition: 0.3s all ease-in-out;
}

header .login:hover {
    scale: 1.1;
}

header .login:active {
    scale: 0.9;
}

.menu-toggle {
    display: none;
    padding-left: 40px;
    font-size: 40px;
    background: none;
    border: none;
    box-sizing: border-box;
    scale: 0.9;
    transition: 0.3s all ease-in-out;
}

.menu-toggle:active {
    scale: 1.1;
}


header img {
    width: 100px;
    /* height: 160px; */
}

nav {
    display: flex;
}




/* -------------Hero section -------- */

.hero-section .images img {
    width: 100px;
    height: auto;
    padding-left: 5px;
}

.hero-section .image img {
    background: url("../images/gradient.png");
    width: 100%;

}

.hero-section {
    margin-top: 13rem;
    display: flex;
    padding: 0 100px;
}

.hero-section .content .buttons button {
    padding: 8px 20px;
    background-color: var(--second-color);
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
    border-radius: 5px;
    border: none;
    transition: 0.3s all ease-in-out;
}

.content h1 {
    font-size: 70px;
}

.content .des {
    font-size: 20px;
}

.hero-section .content .buttons button:last-child {
    margin-left: 7px;
    background-color: var(--text-color);
    color: var(--hover-color);
}

.content .buttons button:active {
    scale: 1.2;
}

.trusted {
    margin-top: 40px;
    color: #757474;
}

/* ------------ Main Section --------------  */
main h2,
main p {
    display: flex;
    align-items: center;
    justify-content: center;

}

main h2 {
    font-size: 40px;
}

main {
    margin-top: 150px;
}

.services-section {
    margin-top: 100px;
    padding: 0px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    padding: 208px;
}

.service-card .content-srv {
    display: flex;
    flex-direction: column;

}

.service-card .image-srv img {
    width: 260px;
    height: 260px;
    border-radius: 50%;

}

.services-section .service-card {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 13%;
    padding: 40px;
    border-radius: 200px 0 0 200px;
    background-image: linear-gradient(to right, var(--card-gradient), #fff);
}

.services-section .service-card .learn-more-btn {
    border: none;
    background: none;
    padding: 12px 20px;
    border-radius: 10px;
    width: 150px;
    color: var(--text-color);
    background-color: var(--continue-btn);
}

.service-card.reverse {
    border-radius: 0 200px 200px 0;
    background-image: linear-gradient(to left, var(--card-gradient), #fff);


}

.more-srv{
    margin-left:25% ;
    width: 50%;
    padding: 20px;border-radius: 8px;
    background: none;
    background-color: var(--text-color);
    border: none;
    color: var(--continue-btn);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}
.more-srv a{
    color: var(--continue-btn);
    text-decoration: none;
}

.more-srv a:visited{
    color: var(--continue-btn) ;
}
.more-srv:hover{
    scale: 1.1;
}
.more-srv:active{
    scale: 1.2;
}


/* -------------Testimonials Responsive -------- */

.testimonials {
    background-color: var(--text-color);
    margin-top: 180px;
}

.testimonials .tem-content {
    display: grid;
    gap: 20px;
    padding: 40px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.small-card .image img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.description h4,
.description p {
    padding: 0;
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

.small-card .image {
    display: flex;
    align-items: center;
}

.small-card img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 10px;
    background-color: #ffffff;
}

.small-card>img {
    border: #c8c7c7 solid 1px;
    /* background-color: #c8c7c7; */
}

.small-card {
    letter-spacing: 1.2px;
    line-height: 33px;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    /* border: 1px solid var(--main-color); */
    border-radius: 16px;
    box-shadow: 12px 10px 80px #0001;
}

.testimonials h2 {
    display: flex;
    justify-content: center;

    align-items: center;
    padding: 30px;
    font-size: 40px;
}

hr {
    border-color: #c9c9c95f;
}

b {
    color: #f5793b;
}

.description p {
    font-size: 10px;
    color: #969494;
}

/* -------------Footer Design -------- */
footer {
    padding: 90px 0 0 0;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background-color: #111111;
    color: var(--text-color);

}

footer * {
    letter-spacing: 1.5px;
}

footer .links a {
    text-decoration: none;
    color: #999999;

}

footer .images img {

    width: 40px;
    background-color: #ffffffd6;
    border-radius: 50%;
}

footer .images {
    display: flex;
    gap: 14px;
}

footer .links {
    display: flex;
    gap: 24px;
}

footer .copyrights {
    /* border-color:; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    height: 60px;
    word-break: break-all;
}

.copyrights span {
    color: #c8c7c7;
    text-transform: uppercase;
    text-decoration: underline;
}
header,aside{
    z-index: 999;
}

/* -------------Design Responsive -------- */
@media screen and (max-width: 800px) {
    header button {
        display: none;
    }

    nav {
        display: none;
    }

    header {
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .hero-section {
        flex-direction: column;
        gap: 30px;
        padding: 30px 50px 30px 30px;
        margin-top: 80px;
    }

    .buttons button:last-child {
        margin-left: 0 !important;
        margin: 0;
        margin-top: 16px;
    }

    header img {
        width: 100px;
        height: 100px;
    }

    .active {
        margin-top: 0;
    }

    .services-section .service-card {
        flex-direction: column;
    }

    .services-section .service-card {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: 13%;
        padding: 40px;
        border-radius: 13px;
        min-height: 100vh;
        background-image: linear-gradient(to right, var(--card-gradient), #fafafa);
    }

    .services-section .service-card.reverse {
        flex-direction: column-reverse;
    }

    .content h1 {
        font-size: 50px;
    }


    .service-card .content-srv {
        justify-content: center;
        align-items: center
    }

    footer .links {
        flex-direction: column;
    }

    .testimonials .tem-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .small-card {
        border-radius: 10px;
    }
}