*{
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
}

:root{
    --primary-text-color: #000;
    --secondary-text-color: #999999;
    --bg-color: #fff;
    --btn-bg-color: #222222;
}

body{
    font-family: poppins, sans-serif;
    color: var(--primary-text-color);
    /* background-color: #000; */
}

body p{
    color: var(--secondary-text-color);
}

.container{
    max-width: 1280px;
    margin: 0 auto;
}

/* Header css start */

.navbar{
    width: 100%;
    padding: 16px 50px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 1;
}

.navbar a{
    width: 120px;
}

.navbar img{
    width: 100%;
    cursor: pointer;
}

.nav-btn{
    padding: 10px 20px;
    font-weight: 600;
    background-color: var(--primary-text-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.nav-btn:hover{
    transform: scale(1.1);
    cursor: pointer;
}

.nav-links{
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links li a{
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

#menuOpen, #menuClose{
    display: none;
}

/* Header css end */

/* Hero section */

.testimonial-hero{
    padding: 120px 0px 60px 0px;
}

.hero-content{
    text-align: center;
    padding: 40px;
}

.hero-content h6{
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-text-color);
}

.hero-content h1{
    font-size: 46px;
    margin: 10px 0px;
    font-weight: 700;
}

.reviews{
    padding: 8px 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.fa-star{
    font-size: 12px;
}

/* Testimonials-slider css */

.testimonials{
    text-align: center;
    padding: 40px 20px;
}

.testimonials h6{
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-text-color);
}

.testimonials h2{
    font-size: 32px;
    font-weight: 600;
    margin: 5px 0px;
}

.testimonial-card{
    width: 32%;
    padding: 20px 40px;
    border: 1px solid #5F617540;
    border-radius: 20px;
    text-align: left;
}   

.author{
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.author img{
    width: 50px;
    border-radius: 50px;
}

.testimonial-card p{
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-text-color);
    line-height: 1.5;
}

.testimonial-slider{
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;

}

/* Achievement section */

.achievement{
    display: flex;
    /* padding: 40px 0px; */
    justify-content: center;
    align-items: center;
}

.achievement hr{
    height: 60px;
}

.achievement-card{
    padding: 40px 80px;
    text-align: center;
}

.achievement-card i{
    font-size: 22px;
}

.achievement-card h3{
    font-size: 24px;
    padding: 5px 0px;
}

/* cta-section */

.cta-section{
    padding: 0px 20px;
}

.cta{
    background-color: var(--accent-dark-color);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    height: 150px;
    gap: 20px;
    margin: 0px auto 40px auto;
    border: 1px solid var(--secondary-text-color);
    align-content: center;
}

.cta img{
    width: 100px;
    margin: 5px;
}

.cta-txt{
    width: 75%;
}

.cta-txt h3{
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-text-color);
}

.cta-txt p{
    color: var(--secondary-text-color);
    margin-top: 10px;
    font-size: 14px;
}

.cta button{
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    color: #fff;
    background-color: var(--btn-bg-color);
    font-weight: 600;
    transition: transform 0.3s ease; 
}

.cta button:hover{
    transform: scale(1.1);
    cursor: pointer;
}

/* Footer css start */

.foot{
    background-color: var(--primary-text-color);
    padding: 40px;
}

.footer-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
}

.social-col{
    width: 20%;
    padding: 0px;
    color: var(--bg-color);
}

.inner-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 70%;
    align-items: flex-start;
}

.footer-logo{
    width: 30%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.col p{
    color: var(--secondary-text-color);
}

.social-icons{
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a{
    color: #fff;
    font-size: 14px;
    background-color: var(--btn-bg-color);
    padding: 8px;
    border-radius: 50%;
}

.col{
    width: 20%;
    padding: 20px;
}

.col h4{
    color: #fff;
    margin-bottom: 15px;
}

.col ul{
    list-style: none;  
}

.col ul li{
    margin-bottom: 8px;
}

.col ul li a{
    text-decoration: none;
    color: var(--secondary-text-color);
    font-weight: 500;
}

.col ul li a:hover{
    color: #fff;
}

hr{
    border: 1px solid var(--secondary-text-color);
    margin: 20px 0px;
}

.footer-bottom{
    display: flex;
    color: var(--secondary-text-color);
    justify-content: space-between;
    font-weight: 600;
}

.footer-bottom ul{
    display: flex;
    list-style: none;
    gap: 20px;
    text-decoration: none;
}

.footer-bottom ul li a{
    text-decoration: none;
    color: var(--secondary-text-color);
    font-weight: 500;
}

.footer-bottom ul li a:hover{
    color: #fff;
}

/* Footer css end */

/* Responsive-css */

@media  screen and (max-width: 1024px) {
    
    /* Achievement section */

    .achievement-card{
        padding: 40px 60px;
        text-align: center;
    }
}

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

    /* Header */
    
    .nav-links{
        position: absolute;
        top: 50px;
        background: #000;
        width: 100%;
        left: 0;
        padding: 20px 40px;
        flex-direction: column;
        display: none;
        text-align: center;
        color: #fff;
    }

    .nav-links li{
        margin-top: 15px;
    }

    .nav-links li a{
        color: #fff;
    }

    .nav-btn{
        display: none;
    }

    #menuOpen{
        display: block;
    }

    /* cta section responsive */

    .cta{
        margin: 0px 20px 20px 20px;
    }

    /* feature-service section */

    .feature-service-cards{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-service-card{
        width: 100%;
    }

    /* footer-responsive*/

    .inner-row{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .col{
        width: 100%;
    }
}

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

    /* Header */

    .navbar a{
    width: 100px;
    }

    /* Achievement section */

    .achievement{
        display: flex;
        flex-wrap: wrap;
    }

    /* cta section rresponsive */

    .cta{
        margin: 0px 20px 20px 20px;
    }

    /* footer-responsive*/
    
    .inner-row{
        grid-template-columns: repeat(2, 1fr);
    }

    .col{
        width: 100%;
    }
}

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

    /* Client testimonial section */

    .testimonial-slider{
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card{
        width: 100%;
    }
    
    /* achievement section */

    .achievement{
        display: grid;
    }

    .achievement hr{
        height: 0px;
    }
    
    /* footer-responsive */
    
    .footer-row{
        flex-direction: column;
        align-items: center;
    }
    .social-col{
        width: 100%;
        text-align: center;
    }
    .social-icons{
        justify-content: center;
    }

    .inner-row{
        margin-top: 15px;
    }

    .col {
        width: 100%;
        text-align: center;
    }

}

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

    /* Header */

    .navbar{
        padding: 16px 25px;
    }

    .navbar a{
        width: 80px;
    }

    /* footer-responsive */

    .inner-row{
        margin-top: 15px;
        grid-template-columns: repeat(1, 1fr);
    }

    /* cta section responsive */

    .cta{
        justify-content: center;
        flex-wrap: wrap;
        height: 350px;
        text-align: center;
    }

    .cta-txt{
        width: 100%;
        text-align: center;
    }
    
    .cta img{
        width: 70px;
    }
}