@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html {
    scroll-behavior: smooth;
    overflow-y: auto;
}



:root {
    --color-primary: #fff;
    --color-secondary: #5e3bee;
    --color-white: #FFFFFF;
    --light-text-color: #444;
    --section-padding: 80px;
    --transition-1: 0.25s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    color: #1c1e53;
    transition: color 0.3s ease;
}

a:hover {
    color: #5e3bee !important;
}

h5 {
    font-size: 20px;
}

li {
    list-style: none;
}

nav {
    background-color: #fff;
    position: sticky;
    top: 0;
    padding: 0 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    box-shadow: 0 5px 80px rgba(0, 0, 0, 0.1);
    z-index:999; 
}

nav .logo,
footer .logo {
    display: flex;
    align-items: center;
}

nav .logo a,
footer .logo a {
    margin-left: 8px;
    font-weight: bold;
    font-size: 20px;
}

nav .logo img,
footer .logo img {
    width: 40px;
    height: 40px;
}

nav ul,
footer .top ul {
    display: flex;
    gap: 40px;
}

nav button {
    color: #1c1e53;
    background-color: transparent;
    padding: 12px 16px;
    border-radius: 5px;
    border: 1px solid #1c1e53;
    cursor: pointer;
    transition: all 0.3s ease;
}

nav button:hover {
    background-color: #5e3bee;
    border-color: #5e3bee;
    color: #fff;
}

nav button#menuButton {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 7px;
}

.main {
    background-color: #deebee;
    padding: 90px 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.main .left {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.main .left h3 {
    margin-top: 10px;
    font-weight: bold;
    font-size: 46px;
}

.main .left h3 span {
    color: #5e3bee;
}

.main .left p {
    color: #1c1e53;
    font-size: 22px;
    margin-top: 20px;
}

.main .left button {
    margin-top: 40px;
    color: #fff;
    cursor: pointer;
    background-color: #5e3bee;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.main .right img {
    width: 500px;
}

.skills {
    padding: 110px 85px 0;
}

.skills h3,
.about .right h3,
.projects .header h3,
.contactpg h3,
.feedback h3 {
    font-size: 40px;
    margin-top: 20px;
}

.skills .skill-items {
    display: flex;
    margin-top: 70px;
    gap: 30px;
}

.skills .skill-items .item {
    background-color: #deebee;
    width: 25%;
    border-radius: 10px;
    padding: 32px;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skills .skill-items .item:hover {
    border-color: #5e3bee;
}

.skills .skill-items .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    margin-bottom: 22px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.skills .skill-items .item .icon i {
    font-size: 26px;
    color: #006b6a;
}

.skills .skill-items .item h4,
.projects .projects-items .item .info h4 {
    font-size: 18px;
}

.skills .skill-items .item p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 22px;
    color: #1c1e53;
}

.about {
    padding: 110px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about .left {
    background-color: #deebee;
    border-radius: 10px 10px 0 0;
}

.about .left img {
    width: 440px;
}

.about .right p {
    font-size: 16px;
    margin-top: 30px;
}

.projects {
    background-color: #deebee;
    padding: 110px 85px;
}

.projects .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.projects .header button {
    background-color: #E1306C;
    padding: 10px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    border: none;
    border-radius: 10px;
}

.projects .header button i {
    font-size: 26px;
}

.projects .projects-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.projects .projects-items .item {
    width: 30%;
    background-color: #fff;
    border-radius: 10px;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    box-shadow: 0 5px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.projects .projects-items .item:hover {
    border-color: #5e3bee;
}

.projects .projects-items .item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px 10px 20px 20px;
}

.projects .projects-items .item .info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 32px 42px;
}

.projects .projects-items .item .info p {
    font-size: 13px;
}

.projects .projects-items .item .info a {
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-color: #5e3bee;
}

.projects .projects-items .item .info a i {
    margin-left: 2px;
    font-size: 16px;
}


.r_customer {

    overflow: hidden;
}

 .r_customer-list {

    display: flex;
    align-items: center;
    height: max-content;
    width: 4000px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 55px;
    margin: 0 -2000px;
    padding: 0px;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 25px;
    overflow-x: auto;
    flex-wrap: nowrap;
    will-change: transform;
    animation: scroll-list 25s linear infinite;
    animation-delay: 1s;

}

.r_customer-item img  {
    width: 100%;
    filter: grayscale(1);
    transition: var(--transition-1);
}

.r_customer-item img:hover {
    filter: grayscale(0);
}

@keyframes scroll-list {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-35%);
    }
}





.feedback {
    padding: 110px 85px;
}

.feedback .customers {
    margin-top: 50px;
    display: flex;
    gap: 40px;
}

.feedback .customers .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid #006b6a;
    border-radius: 10px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback .customers .item .rating {
    color: #006b6a;
    font-size: 22px;
}

.feedback .customers .item:hover {
    border-color: #5e3bee;
}

.feedback .customers .item p {
    line-height: 22px;
    font-size: 14px;
}

.feedback .customers .item .user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback .customers .item .user img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.feedback .customers .item .user h5 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
}

.feedback .customers .item .user p {
    font-size: 12px;
}

.blogs {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    margin-top: 3rem;
    
}

.blogs .blog {

    position: relative;
    background-color: var(--color-grey-5);
    border-radius: 5px;
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
    
}

.blogs .blog:hover {
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
    transition: all 0.4s ease-in-out;
}

.blogs .blog:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
    

}

.blogs .blog img {

    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    filter: grayscale(100%);
    transition: all 0.4s ease-in-out;
}

.blogs .blog .blog-text {
    margin-top: -7px;
    padding: 1.1rem;
    border-top: 8px solid var(--color-secondary);
    
}

.blogs .blog .blog-text h4 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.blogs .blog .blog-text h4:hover {
    color: var(--color-secondary);
}

.blogs .blog .blog-text p {
    color: var(--color-grey-2);
    line-height: 2rem;
    padding-bottom: 1rem;
}


.contactpg {
    padding: 110px 85px 0;
}

.hero-tag {
    margin-top: 50px;
    text-align: left;

}

.contact-hero {
    margin-top: 50px;
    font-size: 3.5em;
}

.hero-des {

    text-align: left;
    /* font-weight: 800; */

}

.input-container {
    padding: 50px 0 0;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: inline-block;
    margin-bottom: 100px;
    padding: 110px 0 0 100px;
}

.form-control {
    height: calc(2.25rem + 2px);
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    color: #006b6a;
    background: none;
    border: none;
    border-bottom: 2px solid #006b6a;
    border-radius: 0rem;
    transition: all .5s ease-in-out;
    outline: none;
    
}

.form-control:focus {
    outline: none;
    border-bottom: 2px solid blue;
    box-shadow: none;
}

.form-control:hover {
    background: whitesmoke;
}


.form-control-msg {
    height: calc(2.25rem + 90px);
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background: none;
    border: none;
    border-bottom: 2px solid #006b6a;
    border-radius: 0rem;
    transition: all .5s ease-in-out;
    outline: none;
    resize: none;

}


.form-control-msg:focus {
    outline: none;
    border-bottom: 2px solid blue;
    box-shadow: none;
}

.form-control-msg:hover {
    background: whitesmoke;
}



/* input:focus, textarea:focus, select:focus{
    outline: none;
} */


.contact-des a {
    text-decoration: none;

    transition: color 1s;
}

.contact-des a:hover {
    color: blue;
}

.contact-btn {
    margin-left: 6px;
    padding: 5px 10px;
    color: var(--light-text-color);
    background: none;
    border: 2px solid var(--light-text-color);
    transition: all 1s;
}

.contact-btn:hover {
    color: blue;
    border: 2px solid blue;
}

#hero-img {
    margin-top: 50px;
    width: 50%;
    padding-right: 50px;
}


#logo {
    margin-top: 5px;
    height: 80%;
    padding: 6px;
    border: 4px solid #444;
    border-radius: 50%;
}

/* .nav-items{
    color:black;
    float:right;
} */
ul {
    float: right;
    /* color:white; */
    list-style: none;
    padding: 30px 0px;
}

li {
    /* text-transform: uppercase; */
    display: inline;

    letter-spacing: 0.1;
    padding: 0px 15px;
}

.social-icons {
    margin-top: 30%;
}


footer {
    background-color: #deebee;
    padding: 85px;
    display: flex;
    flex-direction: column;
}


footer .bottom {
    display:inline-flex;
    align-items: center;
    justify-content: space-between;
}

footer .top {    
    display:inline-flex;
    align-items: center;
    justify-content: space-between;
}

footer .top .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    z-index:999; 
}

footer .separator {
    width: 100%;
    height: 1px;
    background-color: #282938;
    margin: 30px 0 20px;
}

footer .bottom p {
    font-size: 12px;
}

footer .bottom .links a {
    font-size: 12px;
    margin-left: 14px;
}

@media screen and (max-width: 1200px) {

    .main .left h5 {
        font-size: 18px;
    }

    .main .left h3 {
        font-size: 36px;
    }

    .main .left p {
        font-size: 18px;
    }

    .main .right img {
        width: 380px;
    }

    .skills .skill-items {
        gap: 10px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .skills .skill-items .item {
        width: 49%;
    }

    .about .left img {
        width: 370px;
    }

    .skills h3,
    .about .right h3,
    .projects .header h3,
    .feedback h3 {
        font-size: 32px;
    }

    .about .right p {
        font-size: 15px;
    }

    .feedback .customers .item .rating {
        font-size: 20px;
    }

    .feedback .customers .item p {
        font-size: 13px;
    }

    .blogs {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 6rem;
    }

    footer .top ul {
        gap: 20px;
    }

}

@media screen and (max-width: 992px) {

    nav button {
        display: none;
    }

    nav ul {
        gap: 20px;
    }

    nav ul li a {
        font-size: 15px;
    }

    .main {
        flex-direction: column;
    }

    .about {
        flex-direction: column;
        justify-content: center;
    }

    .projects .projects-items {
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .projects .projects-items .item {
        width: 48%;
    }

    .feedback .customers {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feedback .customers .item {
        width: 48%;
    }

    footer .top ul {
        font-size: 14px;
        display: inline-table;
        text-align: center;
        line-height:150%;
    }

}

@media screen and (max-width: 768px) {

    nav {
        justify-content: space-between;
        padding: 0 42px;
    }

    nav ul {
        display: none;
        
    }

    nav.open .logo {
        display: none;
    }

    nav.open ul {
        display: contents;
        
    }

    nav button#menuButton {
        display: flex;
    }

    .main {
        padding: 42px;
    }

    .skills {
        padding: 85px 42px 0;
    }


    .skills .skill-items {
        gap: 8px;
    }

    .about {
        padding: 85px 42px;
    }

    .projects {
        padding: 60px 42px;
    }

    .projects .projects-items {
        gap: 18px;
    }

    .feedback {
        padding: 85px 42px;
    }

    .contactpg {
        padding: 85px 42px ;
    }

    footer {
        padding: 85px 42px;
    }

    footer .bottom {
        flex-direction: column-reverse;
        gap: 14px;
    }
    
    footer .top ul {
        font-size: 14px;
        display: inline;
        text-align: center;
        line-height:150%;
    }

    .blogs {
        grid-template-columns: repeat(1, 1fr);
    }

}

@media screen and (max-width: 540px) {

    nav ul li a {
        font-size: 12px;
    }

    nav li {
        /* text-transform: uppercase; */
        display: inline;
        padding: 0px 0px 0px 0px;
        line-height:80%;
        top: 0; 
        bottom: 0;
        left: 0; 
        right: 0;
        margin: auto;
        align-items: center;
    }

    nav .logo a {
        font-size: 18px;
    }

    .main .left h3 {
        font-size: 32px;
    }

    .main .left p {
        font-size: 16px;
    }

    .main .left button {
        width: 100%;
    }

    .skills .skill-items .item {
        width: 100%;
    }

    .projects .header button {
        font-size: 12px;
        padding: 8px 14px;
    }

    .projects .projects-items .item {
        width: 80%;
    }

    .feedback .customers .item {
        width: 100%;
    }

    .blogs {
        grid-template-columns: repeat(1, 1fr);
        padding-bottom: 6rem;
    }

    footer .top ul {
        font-size: 12px;
        display: inline-grid;
        text-align: center;
        line-height:150%;
    }

}


@media screen and (max-width: 320px) {

    nav ul li a {
        font-size: 10px;
    }

    nav li {
        /* text-transform: uppercase; */
        display: inline;
        padding: 0px 0px 0px 0px;
        line-height:80%;
        top: 0; 
        bottom: 0;
        left: 0; 
        right: 0;
        margin: auto;

    }

    nav .logo a {
        font-size: 10px;
    }

    .main .left h3 {
        font-size: 30px;
    }

    .main .left p {
        font-size: 10px;
    }

    .main .left button {
        width: 50%;
    }

    .main .right img {
        width: 280px;
    }

    .skills .skill-items .item {
        width: 100%;
    }

    .projects .header button {
        background-color: #5e3bee;
        padding: 0px 0px;
        color: #fff;
        display: flex;
        align-items: center;
        cursor: pointer;
        gap: 0px;
        border: none;
        border-radius: 10px;
        font-size: 0;

    }
    
    .projects .header button i {
        font-size: 30px;
        
    }

    .projects .projects-items .item {
        width: 80%;
    }

    .feedback .customers .item {
        width: 100%;
    }

    .about .left img {
        width: 280px;
    }

    .blogs {
        grid-template-columns: repeat(1, 1fr);
        padding-bottom: 6rem;
    }

    footer .top ul {
        font-size: 12px;
        display: inline-grid;
        text-align: center;
        line-height:150%;
    }


}



.legal-links {
    text-decoration: none;
    font-weight: bold;
    transition: all 1s;
}

.legal-links:hover {
    text-decoration: none;
    color: blue;
}

.legal a,
.legal a:hover,
.legal a:active {
    color: #444;
    text-decoration: none;
}

.privacy-policy h1 {
    font-size: 2.5em;
    /* font-family: 'CircularStd'; */
  
    letter-spacing: 0.1rem;
}

.privacy-policy h2 {
    font-size: 25px;
   
    /* letter-spacing: 0.1rem; */
}

.legal-des {
    text-align: justify;
    font-size: 15px;
}

.legal-des strong {
    /* font-size: 1.1em; */
    font-weight: bold;
}

.legal-des-in {
    text-align: justify;
    font-size: 15px;
    line-height: 1; 
    padding-left: 40px;
}

.privacy-policy p {

    letter-spacing: 0.8px;
}

#legal-hero {
    margin-top: 5vh !important;
    text-align: left;
}

#legal-hero-des {
    padding-right: 10px;
    text-align: left;
    font-size: 0.8em;
}

.legal {
    position: relative;
    bottom: 25px;
    right: 25px;
}

.comingsoon h1 {
    font-size: 3em;
}

.comingsoon {
    position: absolute;
    margin: auto;
    top: 0;
    /* background: white; */
    text-align: center;
    right: 0;
    bottom: 0;
    left: 0;
    /* width: 40em; */
    height: 10em;
    animation: opac 0.1s ease-in-out 5;
}

.comingsoon a {
    color: #444;
    font-weight: bold;
    text-decoration: none;
    transition: font-size 1s;
}

.comingsoon a:hover {
    color: blue;
    font-size: 1.5em;
}

/* contact */

.social-icons a {
    color: var(--light-text-color);
    text-decoration: none;
    transition: all 1s;
    color: #006b6a;
}

.social-icons a:hover {
    color: blue;
}

#contact-social {
    margin-top: 10%;
}

.social-icons i {
    font-size: 2em;
    /* font-weight: 100; */
    padding: 0px 5px;
}


.learn-btn {
    color: #006b6a;
    background-color: transparent;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid #006b6a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-btn:hover {
    background-color: #5e3bee;
    border-color: #5e3bee;
    color: #fff;
}