*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Roboto", Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    font-size: 16px;
}
:root{
    --main-color:#da8e00;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Source Sans 3", Tahoma, Geneva, Verdana, sans-serif;
}
h2{
    font-size: 40px;
    color: #333333;
    font-weight: 600;
    text-transform: capitalize;
}
section{
    scroll-margin-top: 50px;
}

    /* start header section */
header{
    position: relative;
    min-height: 100svh;
    background-image: linear-gradient(rgb( 0, 0, 0, 0.85) , rgba(0, 0, 0, 0.85)) , url(../images/background-img.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
header .navbar{
    transition: 0.6s;
    padding: 10px;
}
header .navbar.scrolled{
    background-color: rgb(0, 0, 0);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 5px;
}
header .navbar .logo{
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: bold;
}
header nav ul li{
    padding: 6px;
}
/* header nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}
header nav ul li a.active{ 
    color: var(--main-color);
}
header nav ul li a:hover{
    color: #da8e00c8;
} */
header .header-info{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    width: 100%;
}
header .header-info h1{
    font-size: 4.375rem;
    margin-bottom: 10px;
    font-weight: bolder;
    color: var(--main-color);
}
header .header-info h3{
    font-size: 1.5rem;
}
header .header-info .job-title{
    font-size: 1.625rem;
    font-family: 'Source Sans 3', Tahoma, Geneva, Verdana, sans-serif;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
#typing{
    font-size: 1.625rem;
    font-family: 'Source Sans 3', Tahoma, Geneva, Verdana, sans-serif;
}
#typing::after {
    content: "|";
    margin-left: 3px;
    animation: blink 0.7s infinite;
}


/* ===== Typing Animation ===== */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* end header section */

/* =========================================================== End Header Section =========================================================== */

/* start main section */


/* self info */

main #about{
    padding: 60px 20px 100px;
    margin: auto;
    display: flex;
    justify-content: center;
    max-width: 1300px;
}
main #about .box{
    width: 40%; 
    position: relative;
}
main #about .box .box-border{
    max-width: 360px;
    height: 360px;
    border: 8px solid #555555c1;
    border-radius: 8px;
}
main #about .box .box-img{
    width: 100%;
    max-width: 360px;
    height: 360px;
    overflow: hidden;
    border-radius: 8px;
    position: absolute;
    top: 20px;
    left: 20px;
}
main #about .box .box-img img{
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
main #about .box .box-img .cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000099;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateY(400px);
    opacity: 0;
    transition: all 0.5s ease-out;
}
main #about .box .box-img .cover i{
    color: #fff;
    font-size: 1.125rem;
    cursor: pointer;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s;
}
main #about .box .box-img:hover .cover{
    transform: translateY(0);
    opacity: 1;
}
main #about .box .box-img:hover .cover i{
    transform: translateY(0);
    opacity: 1;
}
main #about .box .box-img .cover i:hover{
    color: var(--main-color);
}
main #about .info{
    width: 55%;
}
main #about .info h2{
    font-size: 2.125rem;
    margin-bottom: 10px;
    font-weight: 500;
}
main #about .info h2::before{
    content: "";
    width: 4px;
    height: 22px;
    background-color: var(--main-color);
    display: inline-block;
    margin-right: 10px;
}
main #about .info p{
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555555;
    padding-bottom: 25px;
}
main #about .info hr{
    border: none;
    border-top: 1px dashed #ccc;
    margin-bottom: 20px;
}
main #about .info .summary{
    display: flex;
    gap: 50px;
}
main #about .info .summary ul{
    list-style: none;
    padding-left: 0;
}
main #about .info .summary ul li{
    font-size: 1rem;
    color: #555555;
    margin-bottom: 20px;
}
main #about .info .summary ul li span{
    color: #333333;
    font-weight: 600;
}
main #about .info .summary ul li a{
    text-decoration: none;
    color: #7e7e7e;
}
main #about .info .btns{
    margin-top: 25px;
}
main #about .info .btns a{
    font-size: 1rem;
    color: #fff;
    background-color: var(--main-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 15px;
    transition: 0.4s;
}
main #about .info .btns a:hover{
    background-color: #b77600;
}

/* ========================= End About Section ========================= */

/* Our Services */

main #services{
    background-color: #F1F1F1;
}
main #services .container .title-box{
    position: relative;
    margin-bottom: 64px;
}
main #services .container .title-box span{
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 70px;
    height: 1px;
    background-color: var(--main-color);
}
main #services .container .title-box::before{
    content: "";
    width: 70px;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
main #services .container .title-box::after{
    content: "";
    width: 160px;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    
}
main #services .card h3{
    margin-left: -24px;
    margin-right: -24px;
}
main #services .circle{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 100px;
    height: 100px;
    border: 9px solid var(--main-color);
    border-radius: 50%;
        transition: all 0.6s;
}
main #services .circle i{
    font-size: 2rem;
}
main #services .card:hover .circle{
    background-color: var(--main-color);
    border-color: rgb(209, 202, 194);
    color: white;
}

/* ========================= End Services Section ========================= */

/* our portfolio */

main .our-portfolio{
    padding: 60px 40px;
    max-width: 1300px;
    margin: auto;
}
main .our-portfolio .our-portfolio-header span{
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 70px;
    height: 1px;
    background-color: var(--main-color);
}
main .our-portfolio .our-portfolio-header::before{
    content: "";
    width: 70px;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    
}
main .our-portfolio .our-portfolio-header::after{
    content: "";
    width: 160px;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    
}
main .our-portfolio .our-portfolio-header{
    position: relative;
    text-align: center;
}
main .our-portfolio .our-portfolio-header h2{
    margin-bottom: 60px;
}
main .our-portfolio .projects .project{
    display: flex;
    margin: 20px 0;
    overflow: hidden;
}
main .our-portfolio .projects .project .project-img {
    max-width: 45%;
}
main .our-portfolio .projects .project .project-img img {
    width: 100%;
    transition: 0.4s ease-in-out;
}
main .our-portfolio .projects .project .project-img img:hover {
    transform: scale(1.01);
    box-shadow: 5px 5px 5px #00000020;
}
main .our-portfolio .projects .project .project-description{
    max-width: 55%;
    padding: 40px;
}
main .our-portfolio .projects .project .project-description h3{
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #333333;
    font-weight: 600;
}
main .our-portfolio .projects .project .project-description .github{
    margin-top: 20px;
}
main .our-portfolio .projects .project .project-description .technical-skills{
    margin-top: 40px;
}
main .our-portfolio .projects .project .project-description .technical-skills span{
    background-color: #555555;
    padding: 3px 10px;
    font-size: 0.75rem;
    border-radius: 12px;
    color: white;
}

/* ========================= End Portfolio Section ========================= */

/* Our Work */

main .work{
    background-color: #F1F1F1;
}
main .our-work{
    padding: 90px 40px;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
}
main .our-work i{
    font-size: 1.5rem;
    color: var(--main-color);
    margin-bottom: 15px;
}
main .our-work h3{
    font-size: 1.5rem;
    margin-bottom: 10px;
}
main .our-work h4{
    font-size: 1rem;
    color: #555555;
}

/* ========================= End Work Section ========================= */

/* Client Feedback Section */



main #testimonials{
    padding: 90px 40px;
    max-width: 850px;
    margin: auto;
    text-align: center;
}
main #testimonials .client-feedback-header{
    position: relative;
}
main #testimonials .client-feedback-header span{
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 70px;
    height: 1px;
    background-color: var(--main-color);
}
main #testimonials .client-feedback-header::before{
    content: "";
    width: 70px;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    
}
main #testimonials .client-feedback-header::after{
    content: "";
    width: 160px;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    
}
main #testimonials .client-feedback-header h2{
    margin-bottom: 90px;
}
main #testimonials .swiper ul{
    display: flex;
    gap: 20px;
}
main #testimonials .swiper ul li{
    max-width: 98%;
    padding: 40px;
    margin: auto;
    text-align: left;
    background-image: linear-gradient(135deg, var(--main-color) 0% 20%, #f1f1f1 20% 100%);
    border-radius: 8px;
    display: flex;
    gap: 50px;
}
main #testimonials .swiper ul li .feedback-img img{
    border-radius: 50%;
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin-top: 30px;
}
main #testimonials .swiper ul li .feedback-info h3{
    font-size: 1.5rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 5px;
}
main #testimonials .swiper ul li .feedback-info .location{
    display: flex;
    align-items: center;
    color: #555555;
    text-transform: capitalize;
    margin-bottom: 8px;
}
main #testimonials .swiper ul li .feedback-info .location h4{
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
}
main #testimonials .swiper ul li .feedback-info p{
    font-size: 1rem;
    color: #333333;
    margin-top: 15px;
    opacity: 0.9;
    line-height: 1.6rem;
    font-style: italic;
    margin-bottom: 10px;
}
.swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background-color: var(--main-color);
}

/* ========================= End Feedback Section ========================= */

/* Our Blog Section */

main .blog{
    background-color: #F1F1F1;
    display: flex;
    justify-content: center;
}
main .our-blog{
    padding: 90px 40px;
    max-width: 1170px;
    text-align: center;
}
main .our-blog .our-blog-header{
    position: relative;
}
main .our-blog .our-blog-header span{
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 70px;
    height: 1px;
    background-color: var(--main-color);
}
main .our-blog .our-blog-header::before{
    content: "";
    width: 70px;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    
}
main .our-blog .our-blog-header::after{
    content: "";
    width: 160px;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    
}
main .our-blog .our-blog-header h2{
    margin-bottom: 60px;
}
main .our-blog .blog-posts{
    display: flex;
    gap: 30px;
    justify-content: center;
}
main .our-blog .blog-posts .post{
    background-color: #fff;
    width: 33%;
    text-align: left;
}
main .our-blog .blog-posts .post iframe{
    width: 100%;
}
main .our-blog .blog-posts .post .post-img img{
    width: 100%;
}
main .our-blog .blog-posts .post .post-info{
    padding: 12px;
}
main .our-blog .blog-posts .post .post-info p:first-child{
    font-size: 1rem;
    color: #555555;
    margin: 15px 0;
}
main .our-blog .blog-posts .post .post-info h3{
    font-size: 1.5rem;
    color: #333333;
    margin: 15px 0;
}
main .our-blog .blog-posts .post .post-info p:nth-child(3){
    font-size: 1rem;
    color: #555555;
    margin: 15px 0;
    line-height: 1.6rem;
}
main .our-blog .blog-posts .post .post-info a{
    text-decoration: none;
    color: #333333;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
}

/* ========================= End Blog Section ========================= */

/* Contact Us Section */

main .contact-us{
    padding: 90px 40px;
    max-width: 1200px;
    text-align: center;
    margin: auto;
}
main .contact-us .contact-us-header{
    position: relative;
}
main .contact-us .contact-us-header span{
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 70px;
    height: 1px;
    background-color: var(--main-color);
}
main .contact-us .contact-us-header::before{
    content: "";
    width: 70px;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    
}
main .contact-us .contact-us-header::after{
    content: "";
    width: 160px;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    
}
main .contact-us .contact-us-header h2{
    margin-bottom: 60px;
}
main .contact-us form{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    margin: auto;
}
main .contact-us form input:first-child, main .contact-us form input[type="email"]{
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    width: calc(50% - 10px);
}
main .contact-us form input:nth-child(3){
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}
main .contact-us form::placeholder{
    color: #999999;
}
main .contact-us form input:focus ,main .contact-us form textarea:focus{
    border-color: var(--main-color);
}
main .contact-us form textarea{
    width: 100%;
    height: 150px;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    resize: none;
    margin-bottom: 20px;
}
main .contact-us form button{
    width: 150px;
    padding: 12px 0;
    font-size: 1rem;
    color: #fff;
    background-color: var(--main-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.4s;
}
main .contact-us form button:hover{
    background-color: #b77600;
}

/* ========================= End Contact Us Section ========================= */

/* end main section */

/* =========================================================== End Main Section =========================================================== */

/* start footer section */

footer{
    background-color: #333333;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}
footer .icon{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9375rem;
    cursor: pointer;
}
footer .icon a{
    color: #fff;
}
footer p{
    font-size: 1rem;
}
footer p span{
    color: var(--main-color);
}
/* end footer section */

/* =========================================================== End Footer Section =========================================================== */

/* Media Query */

@media screen and (max-width:1199px){
    main #about{
        max-width: 1000px;
    }
    main #about .box .box-border{
        width: 300px;
        height: 300px;
    }
    main #about .box .box-img{
        width: 300px;
        height: 300px;
    }
    main .our-portfolio{
        max-width: 1050px;
    }
    main .our-portfolio .products .product{
        max-width: 300px;
    }
    main .our-blog{
        max-width: 1000px;
    }
    main .our-blog iframe{
        height: 161px;
    }
    main .contact-us form{
        max-width: 700px;
    }
}
@media screen and (max-width:991px){
    main #about{
        max-width: 800px;
        gap: 30px;
    }
    main #about .box .box-border{
        display: none;
    }
    main #about .box .box-img{
        position: relative;
        top: 0;
        left: 0;
        width: 300px;
        height: auto;
    }
    main #about .info{
        width: 75%;
    }
    main #about .info .summary{
        gap: 20px;
    }
    main #about .info .summary ul li{
        margin-bottom: 15px;
        font-size: 0.875rem;
    }
    main .our-portfolio .products{
        gap: 20px;
    }
    main .our-blog{
        max-width: 850px;
    }
    main .our-blog iframe{
        height: 123px;
    }
    main .our-blog .blog-posts .post .post-info h3{
        font-size: 1.1875rem;
        font-weight: 500;
    }
}
@media screen and (max-width:963px){
    main .our-portfolio{
        max-width: 800px;
    }
    main .our-portfolio .projects .project{
        flex-direction: column;
        margin-bottom: 20px;
    }   
    main .our-portfolio .projects .project .project-img , main .our-portfolio .projects .project .project-description{
        margin: auto;
        padding: 12px 0;
        max-width: 700px;
    }
}
@media screen and (max-width:767px){
    h2{
        font-size: 2rem;
    }
    header .header-info h1{
        font-size: 2.375rem;
        margin-bottom: 10px;
    }
    header .header-info h3{
        font-size: 1.375rem;
    }
    header .header-info .job-title, #typing{
        font-size: 1.125rem;
    }   
    main #about{
        padding: 60px 10px;
        flex-direction: column;
        max-width: 450px;
    }
    main #about .box{
        width: 100%;
    }
    main #about .box .box-img{
        width: 100%;
        margin: auto;
        border-radius: 0;
    }
    main #about .box .box-img img{
        width: 100%;
        border-radius: 2px;
    }
    main #about .info{
        width: 100%;
    }
    main #about .info .summary{
        flex-direction: column;
        gap: 0;
    }
    main #about .info .summary ul{
        margin: 0;
    }
    main #about .info .btns a{
        padding: 10px;
    }
    main .our-portfolio .products{
        flex-direction: column;
    }
    main .our-portfolio .products .product{
        margin: auto;
        max-width: 420px;
    }
    main .work .our-work{
        padding: 60px 0 30px;
        flex-direction: column;
    }
    main .work .our-work div{
        max-width: 420px;
        padding: 20px;
        margin: auto;
    }
    main .work .our-work div h3{
        font-size: 1.625rem;
        margin-bottom: 0;
    }
    main #testimonials{
        max-width: 600px;
    }
    main #testimonials .swiper ul li{
        max-width: 98%;
        flex-direction: column;
        text-align: center;
        background-image: linear-gradient(135deg, var(--main-color) 0% 27%, #f1f1f1 27% 100%);
    }
    main #testimonials .swiper ul li .feedback-img img{
        width: 120px;
        height: 120px;
    }
    main #testimonials .swiper ul li .feedback-info{
        text-align: left;
    } 
    main .our-blog{
        padding: 20px;
    }
    main .our-blog .blog-posts{
        flex-direction: column;
        max-width: 420px;
    }
    main .our-blog .blog-posts .post{
        margin: auto;
        width: 100%;
    }
    main .our-blog .blog-posts .post .post-info{
        padding: 20px;
    }
    main .our-blog iframe{
        height: 235px;
    }
    main .contact-us form{
        flex-direction: column;
        max-width: 420px;
        margin: auto;
    }
    main .contact-us form input:first-child, main .contact-us form input[type="email"]{
        width: 100%;
    }
    main .contact-us form textarea{
        height: 95px;
    }
}

