@import url('https://fonts.googleapis.com/css2?family=Work+Sans: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');
*{ padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Work Sans;
}
:root{
    --primary-color:#3559C7;
    --secondary-color: #F9995D;
    --section-color:#F6F8F7;
    --black-color:#292E3D;
    --border-radius: 5px;
    --border-radius2px : 2px;
    --box-shadow: 0px 0px 37px -2px rgba(17, 24, 39, 0.1);
}
*{
    font-family: Work Sans;
}
.mt{
    margin-top: 40px;
}
.section-p1{
    padding: 40px 10px;
}
p{
    font-size: 20px;
    font-weight: 400;
    color:#525B7A;
}
.heading{
    text-align: center;
    /* Heading/4 */
    font-size: 36px;
    font-weight: 700;
}
/* =============================================
                Header Style start here
================================================ */
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 80px;
    background-color: #fff;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.06);
    z-index: 999;
    position: sticky;
    top: 0%;
    left: 0%;
}
.header .logo{
    max-width: 38px;
    height: 47.5px;
}
.logo-text{
    font-size: 30px ;
    text-decoration: none;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 1rem;
    color: var(--primary-color);
}
#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar li{
    list-style: none;
    padding: 0px 20px; 
    position: relative;
}
#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.1s ease;
}
#navbar li a:hover,#navbar li a.active{
    color: var(--secondary-color);
}
#navbar li a.active::after,#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -4px;
    left: 20px;
}
#mobile,#close{
    display: none;
}
/* =============================================
                Header Style ends here
================================================ */
/* =============================================
                Hero Style start here
================================================ */
.hero{
    background-image: url("../images/hero.png");
    height: 90vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    position: relative;
}
.hero h1{
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    color: var(--black-color);
}
.hero .feature-products{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    width: 416px;
    padding: 20px 0px 0px 0px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: var(--border-radius2px);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.hero .feature-products p{
    color: #fff;
}
.feature-products h3{
    font-size: 25px;
}
.feature-products-btns{
    display: flex;
}
.feature-product-btn{
    display: flex;
    height: 40px;
    gap: 1rem;
    width: 208px;
    padding: 4px 10px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: var(--black-color);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid var(--primary-color);
}
/* =============================================
                Hero Style ends here
================================================ */

/* =============================================
                Feature Style ends here
================================================ */
#feature{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin: 50px 0px;
}
#feature .boxes{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
}
#feature .fe-box{
    display: flex;
    width: 292px;
    padding: 20px 20px 40px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    border-radius: var(--border-radius);
    border: 1.4px solid var(--neutral-100, #E0E3EB);
    background: #FFF;
    box-shadow: var(--box-shadow);
}
.fe-box:hover{
    box-shadow: 10px 10px 54px rgba(70,62,221,0.1);
}
#feature .fe-box img{
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}
#feature .fe-box h6{
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    color: var(--black-color);
}
.fe-box p{
    font-size: 16px;
    font-weight: 400;
}
/* =============================================
                Feature Style ends here
================================================ */
/* =============================================
               About Style start here
================================================ */
.about{
    display: flex;
    position: relative;
    margin-bottom: 50px;
    padding-left:180px;
}
.about .about-img{
    background-image: url("../images/about.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 669px;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about .about-content{
    width: 488px;
    height: 523px;
    border-radius: var(--border-radius2px);
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 2rem;
    position: absolute;
    right: 12%;
}
.about-content h2{
    font-size: 36px;
    font-weight: 700;
}
.about-content p{
    color: #fff;
}
.about-content .about-btn{
    margin-top: 50px;
    width: 230px;
    display: inline-flex;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: var(--border-radius2px);
    border: 2px solid var(--primary-color);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}
/* =============================================
                 About Style ends here
================================================ */
/* =============================================
                 Services Style start here
================================================ */
.services{
    background-color: var(--section-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding: 70px 10px;
}
.services .boxes{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
}
.services .fe-box{
    width: 271px;
    height: 181px;
    align-items: center;
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow)
}
.services .fe-box-white{
    background: #FFF;
    color: var(--primary-color);
}
.services .fe-box-blue{
    background: var(--primary-color);
    color: #fff;
}
.services .fe-box h6{
    font-size: 20px;
    font-weight: 600;
}
.services .fe-box img{
    border-bottom: 2px dotted #ccc;
    padding-bottom: 10px; 
}
/* =============================================
                 Services Style ends here
================================================ */
/* =============================================
                works Style start here
================================================ */
.work{
    height: 723px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding: 20px;
}
.work-content{
    display: flex;
    position: relative;
}
.work .work-count{
    position: relative;
}
.work .p-box{
    display: flex;
    width: 280px;
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    border-radius: var(--border-radius);
    border: 1px solid #fff;
    background-color: #fff;
    position: absolute;
    /* Shadow 2 */
    box-shadow: 0px 4px 6px -2px rgba(17, 24, 39, 0.05), 0px 12px 16px -4px rgba(17, 24, 39, 0.10);
}
.work .p-box img{
    width: 97px;
    height: 97px;
    position: absolute;
}
.work .p-box h2{
    font-size: 72px;
    font-weight: 600;
}
.work .p-box p{
    border-left: 7px solid var(--secondary-color);
    padding-left: 10px;
    margin-left: 10px;
}
.happy-client{
    right: 0px;
    top: -270px;
    z-index: 3;
}
.happy-client img{
    top: -15px;
    right: -30px;
}
.projects-completed{
    left: -500px;
    top: -150px;
    z-index: 1;
}
.projects-completed img{
    left: -40px;
    top: -60px;
}
.awards-win{
    right: 0px;
    top: -0px;
    z-index: 3;
}
.awards-win img{
    top: -20px;
    right: -20px;
}
.Years-business{
    top: 150px;
    left: -500px;
}
.Years-business img{
    right: -40px;
    bottom: -60px;
}
.experience{
    position: absolute;
    left: 200px;
    top: -200px;
}
.experience h1{
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}
.work-btn{
    font-size: 18px;
    font-weight: 600;
    display: flex;
    width: 176px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: var(--border-radius2px);
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    margin-top: 50px;
}
/* =============================================
                 Work Style ends here
================================================ */
/* =============================================
                 newsletter Style start here
================================================ */
.news-letter{
    height: 300px;
    background-image: url("../images/newsletter.png");
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    margin-top: 50px;
}
.news-letter .newsletter-text h2{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;

} 
.news-letter p{
    color: #fff;
}
.news-letter .transparent-btn{
    background: transparent;
    padding: 16px 20px;
    font-size: 18px;
    color: #fff;
    border-radius: var(--border-radius2px);
    border: 2px solid  #FFF;
}
/* =============================================
                newsletter Style end here
================================================ */
/* =============================================
                Projects Style start here
================================================ */
.projects{
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}
.project-categories h1{
    text-align: left;
    margin-bottom: 20px;
}
.navbar{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
}
.navbar li{
    list-style: none;
    padding: 0px 20px; 
    position: relative;
    margin-bottom: 10px;
}
.navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: grey;
    transition: 0.1s ease;
}
.navbar li a:hover,.navbar li a.active{
    color: var(--primary-color);
}
.navbar li a.active::after,.navbar li a:hover::after{
    content: "";
    width: 3px;
    height: 15px;
    background: var(--primary-color);
    position: absolute;
    bottom: 0px;
    left: 10px;
}
.projects-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.card{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: var(--border-radius2px);
}
.card .card-img{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 247px;
    align-self: stretch;
    border-radius: var(--border-radius2px);
    border-bottom-left-radius:0px;
    border-bottom-right-radius:0px;
}
.card .card1{
    background-image: url("../images/projects/p1.png");
}
.card .card2{
    background-image: url("../images/projects/p2.png");
}
.card .card3{
    background-image: url("../images/projects/p3.png");
}
.card .card4{
    background-image: url("../images/projects/p4.png");
}
.card-body{
    padding:5px 10px;
}
.card-body h2{
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    margin-top: 5px;
}
.card-body p{
    margin-top: 10px;
    color: #fff;
}
.projects-btns{
    gap: 1rem;
    grid-column: 1 / -1; 
    justify-content: space-between;
    justify-self: center;
}
.projects-btn{
    width: 295px;
}
.pagination-dots {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: .8rem;
}
.pagination-dots li {
    width: 16px;
    height: 16px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
}
.pagination-dots li.active {
    background-color: var(--primary-color);
}
/* =============================================
                Projects Style end here
================================================ */
/* =============================================
                Contact Style start here
================================================ */
.contact{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--section-color);
    text-align: center;
    padding: 40px 20px;
}
.contact form{
    margin-top: 50px;
    text-align: center;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.form-input,.form-select,
.form-textarea {
    width: 100%;
    flex: 1;
    display: flex;
    padding: 10px 8px;
    align-items: center;
    border-radius: var(--border-radius);
    outline: none;
    border: 1px solid var(--section-color);
    background: #FFF;
    font-size: 18px;
    font-weight: 400;
}
.form-textarea {
    resize: none;
}
.message{
    font-size: 16px;
    color: #667299;
    font-weight: 400;
    text-align: left;
    margin-top: -15px;
}
.form-btn{
       display: flex;
       align-items: center;
       justify-content: center; 
}
.contact-btn{
    display: flex;
    width: 271px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: var(--border-radius2px);
    border: 1px solid var(--primary-color);
    margin-top: 40px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
}
/* =============================================
                Contact Style end here
================================================ */
/* =============================================
                Footer Style start here
================================================ */
.footer{
    position: relative;
    padding: 80px 20px;
}
.footer-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.footer-row .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}
.footer-row h4{
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    font-variant: all-small-caps;
}
.footer-row p{
    margin: 0 0 8px 0;
    margin-bottom: 32px;
}
.footer-row p strong{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    font-variant: all-small-caps;
    margin-right: 10px;
}
.footer-btn{
    display: flex;
    width: 136px;
    height: 41px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: var(--secondary-color);
    color: #fff;
    border-radius: var(--border-radius2px);
    border: 1px solid var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
}
.footer-row .social{
    margin-top: 20px;
}
.icons{
    display: flex;
    gap: 1rem;
}
footer .copyright{
    width: 100%;
    height: 70px;
    padding: 0px 1010px 0px 112px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-shrink: 0;
    background-color: var(--primary-color);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}
.copyright p{
    color: #fff;
    font-size: 16px;
}
/* =============================================
                Footer Style ends here
================================================ */