@import url('https://fonts.googleapis.com/css2?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 */
:root {
    ---red: #0ca5f4;
    ---black: #222222;
    ---white: #ffffff;
    ---grey: #737171;
    ---light: #d9d9d9;
    ---back: #fbfbfb;
    --yellow: #ffae00;
    --footer: #4c4c4c;
}

/* Root */

/* Body */
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 0px;
    background-image: url(img/back.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;

}

#smooth-wrapper {
    position: fixed;
    /* 👈 wrapper ko fixed rakho */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#smooth-content {
    will-change: transform;
    width: 100%;
}

::-webkit-scrollbar {
    display: none;
}


section {
    padding: 10px 150px;
}



/*Animation*/
/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    /* fully opaque black */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 2s ease;
    /* removed opacity transition */
}

#loader #logoloader {
    width: 400px;
    animation: pulse 5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Slide out to top */
#loader.slide-out {
    transform: translateY(-100%);
    /* only sliding, no fading */
    /* no opacity change */
}

/*Animation*/


/*body*/

/*Header*/
.header {
    background-color: transparent;
}

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

.header .container #logo {
    width: 400px;

}

.header .container img {
    width: 100%;
}

.header .container .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .container .icon i {
    font-size: 20px;
    color: var(---black);
    padding-left: 20px;
    cursor: pointer;
}

.header .container .icon i:hover {
    color: var(---red);
}

/*Header*/

/*portfolio*/
.port {
    margin-top: 50px;
}

.port .container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.port .container .box {
    width: 380px;
    height: auto;
    background-color: var(---white);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.158);
    border-radius: 16px;
}

.port .container .box .image {
    height: auto;
    width: 100%;
}

.port .container .box .image img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.port .container .box .text {
    text-align: center;
    padding: 20px 0px;
}

.port .container .box .text h1 {
    font-size: 20px;
    color: var(---black);
    font-weight: 600;
}

.port .container .box .text p {
    font-size: 12px;
    font-weight: 500;
    color: var(---grey);
    line-height: 25px;
    margin: 10px 0px;
}

.port .container .box .text .button {
    margin-top: 20px;
}

.port .container .box .text button {
    width: 320px;
    height: 60px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    margin: 0px auto;
    margin-top: 10px;
    cursor: pointer;
}

.port .container .box .text button:hover {
    color: var(---white);
    background-color: var(---red);
    transition: 0.2s all linear;
    transform: scale(1.1);
}

.port #col-2 {
    margin-top: 30px;
}

/*portfolio*/

/*Footer*/
.footer {
    background-color: var(---white);
    margin-top: 120px;
    box-shadow: 0px -10px 30px #0ca7f41f;
}

.footer .container #footerlogo {
    width: 400px;
}

.footer .container {
    text-align: center;
}

.footer .container .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .container .icon i {
    color: var(---black);
    font-size: 25px;
    margin: 0px 15px;
}

.footer .container .icon i:hover {
    color: var(---red);
}

.footer .container p {
    color: var(---black);
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    border-top: 2px solid var(---grey);
    padding-top: 10px;
}

/*Footer*/















/* media quries */

@media (max-width:1772px) {
    section {
        padding: 20px 100px;
    }

    .port .container .box {
        width: 360px;
    }

    .port .container .box .text p {
        font-size: 10px;
    }
}

@media (max-width:1674px) {
    section {
        padding: 20px 80px;
    }

}

@media (max-width:1590px) {
    section {
        padding: 20px 60px;
    }

    .port .container .box {
        width: 340px;
    }

    .port .container .box .text p {
        font-size: 10px;
    }

    .port .container .box .text button {
        width: 290px;
        height: 55px;
    }
}

@media (max-width:1488px) {
    .port .container .box {
        width: 300px;
    }

    .port .container .box .text p {
        font-size: 10px;
    }

    .port .container .box .text button {
        width: 250px;
        height: 50px;
    }
}

@media (max-width:1390px) {
    section {
        padding: 20px 40px;
    }
}

@media (max-width:1280px) {

    html {
        font-size: 80%;
    }

    section {
        padding: 20px 20px;
    }

    .port .container .box {
        width: 280px;
    }

    .port .container .box .text p {
        font-size: 9px;
        line-height: 20px;
    }

    .port .container .box .text button {
        width: 250px;
        height: 50px;
        font-size: 14px;
    }

    .port .container .box .text h1 {
        font-size: 18px;
    }

    .port {
        margin-top: 100px;
    }

    .footer {
        margin-top: 100px;
    }
}

@media (max-width:1170px) {
    .port .container .box {
        width: 260px;
        border-radius: 10px;
    }

    .port .container .box .image img {
        border-radius: 10px;
    }

    .port .container .box .text {
        text-align: center;
        padding: 10px 0px;
    }

    .port .container .box .text p {
        font-size: 8px;
        line-height: 20px;
        margin: 5px 0px;
    }

    .port .container .box .text button {
        width: 220px;
        height: 40px;
        font-size: 12px;
        margin-top: 10px;
    }

    .port .container .box .text h1 {
        font-size: 18px;
    }
}

@media (max-width:1080px) {
    section {
        padding: 20px 15px;
    }

    .port {
        margin-top: 80px;
    }

    .port .container .box {
        width: 240px;
        border-radius: 10px;
    }

    .port .container .box .image img {
        border-radius: 10px;
    }

    .port .container .box .text {
        text-align: center;
        padding: 10px 0px;
    }

    .port .container .box .text p {
        font-size: 8px;
        line-height: 20px;
        margin: 5px 0px;
    }

    .port .container .box .text button {
        width: 220px;
        height: 40px;
        font-size: 12px;
        margin-top: 10px;
    }

    .port .container .box .text h1 {
        font-size: 18px;
    }

    .footer {
        margin-top: 80px;
    }
}

@media (max-width:1000px) {
    .port .container .box {
        width: 220px;
        border-radius: 10px;
    }

    .port .container .box .text {
        text-align: center;
        padding: 10px 0px;
    }

    .port .container .box .text p {
        font-size: 7px;
        line-height: 18px;
        margin: 5px 0px;
    }

    .port .container .box .text button {
        width: 190px;
        height: 40px;
        font-size: 11px;
        margin-top: 10px;
    }

    .port .container .box .text h1 {
        font-size: 16px;
    }
}

@media (max-width:950px) {
    .port {
        margin-top: 60px;
    }

    .port .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .port .container .box {
        margin: 10px;
    }

    .port .container .box {
        width: 340px;
    }

    .port .container .box .text p {
        font-size: 10px;
    }

    .port .container .box .text button {
        width: 290px;
        height: 55px;
        font-size: 16px;
    }


    .port #col-2 {
        margin-top: 15px;
    }

    .footer {
        margin-top: 60px;
    }
}

@media (max-width:760px) {

    section {
        padding: 20px 10px;
    }

    .port .container .box {
        width: 300px;
        margin: 10px;
    }

    .port .container .box .text p {
        font-size: 9px;
    }

    .port .container .box .text button {
        width: 250px;
        height: 55px;
        font-size: 16px;
    }

    .port .container .box .text .button {
        margin-top: 10px;
    }
}

@media (max-width:690px) {
    .port .container .box {
        width: 240px;
    }

    .port .container .box .text p {
        font-size: 8px;
    }

    .port .container .box .text button {
        width: 220px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width:550px) {
    .port {
        margin-top: 30px;
    }

    .port .container .box {
        width: 220px;
    }

    .port .container .box .text p {
        font-size: 7px;
    }

    .port .container .box .text button {
        width: 180px;
        height: 40px;
        font-size: 12px;
        padding: 0px 10px;
    }
}

@media (max-width:500px) {
    .port .container .box {
        width: 200px;
    }

    .port .container .box .text h1 {
        font-size: 14px;
        color: var(---black);
        font-weight: 600;
    }

    .port .container .box .text p {
        font-size: 6px;
        line-height: 16px;
    }

    .port .container .box .text button {
        width: 160px;
        height: 30px;
        font-size: 10px;
        padding: 0px 10px;
    }

    .port #col-2 {
        margin-top: 10px;
    }
}

@media (max-width:460px) {
    #loader #logoloader {
        width: 350px;
    }

    .footer .container #footerlogo {
        width: 350px;
    }

    .port .container .box {
        width: 180px;
        margin: 5px;
        border-radius: 5px;
    }

    .port .container .box .text h1 {
        font-size: 12px;
    }

    .port .container .box .text p {
        font-size: 5px;
        line-height: 14px;
    }

    .port .container .box .text button {
        width: 140px;
        height: 30px;
        font-size: 8px;
        padding: 0px 10px;
    }

    .header .container .icon i {
        font-size: 16px;
        color: var(---black);
        padding-left: 15px;
        cursor: pointer;
    }
}

@media (max-width:400px) {
    .header .container .icon i {
        font-size: 16px;
        color: var(---black);
        padding-left: 10px;
        cursor: pointer;
    }

    .header .container #logo {
        width: 200px;

    }
        #loader #logoloader {
        width: 300px;
    }


    .port {
        margin-top: 10px;
    }

    .footer {
        margin-top: 10px;
    }

    .footer .container #footerlogo {
        width: 300px;
    }

    .footer .container .icon i {
        color: var(---black);
        font-size: 20px;
        margin: 0px 10px;
    }

    .footer .container p {
        color: var(---black);
        font-size: 13px;
        font-weight: 500;
        margin-top: 15px;
        border-top: 2px solid var(---grey);
        padding-top: 10px;
    }

    .port .container .box {
        width: 160px;
        margin: 10px;
        border-radius: 5px;
    }

    .port .container .box .image img {
        border-radius: 5px;
    }

    .port .container .box .text h1 {
        font-size: 10px;
    }

    .port .container .box .text p {
        font-size: 5px;
        line-height: 14px;
        margin: 5px 0px;
    }

    .port .container .box .text button {
        width: 140px;
        height: 30px;
        font-size: 8px;
        padding: 0px 10px;
    }

    .port .container .box .text .button {
        margin-top: 5px;
    }

    .port #col-2 {
        margin-top: 10px;
    }
}

@media (max-width:375px) {
    .port .container .box {
        width: 100%;
        height: auto;
        background-color: var(---white);
        box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.158);
        border-radius: 16px;
    }

    .port .container .box .image {
        height: auto;
        width: 100%;
    }

    .port .container .box .text {
        text-align: center;
        padding: 20px 0px;
    }

    .port .container .box .text h1 {
        font-size: 20px;
        color: var(---black);
        font-weight: 600;
    }

    .port .container .box .text p {
        font-size: 10px;
        font-weight: 500;
        color: var(---grey);
        line-height: 25px;
        margin: 10px 0px;
    }

    .port .container .box .text button {
        width: 80%;
        height: 50px;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 20px;
        margin: 0px auto;
        margin-top: 20px;
        cursor: pointer;
    }
}

/* media quries */