* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: black;
}

/*----contact banner start----*/
.banner {
    height: 630px;
    width: 100%;
    background: #82c6c5;
    position: relative;
    /* margin-top: 100px; */
}

.banner .heading {
    height: 300px;
    width: 100%;
    /* border: 1px solid white; */
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    /* padding-top: 140px; */
}

.banner img {
    height: 630px;
    width: 100%;
}

.banner .heading h1 {
    color: black;
    font-size: 80px;
    letter-spacing: 4px;
    font-family: "Righteous", sans-serif;
}

.banner .heading p {
    color: black;
    font-family: "Roboto", sans-serif;
    margin-top: 7px;
}

.banner .heading p a {
    letter-spacing: 2px;
    text-decoration: none;
    color: black;
}

/* Mobile devices (up to 767px) */
@media (max-width: 767px) {

    .banner {
        height: 180px;
        width: 100%;
        background: #82c6c5;
    }

    .banner img {
        height: 180px;
        width: 100%;
    }

    .banner .heading {
        padding-top: 5px;
    }

    .banner .heading h1 {
        color: black;
        font-size: 33px;
    }

    .banner .heading p a {
        font-size: 13px;
        letter-spacing: 1px;
    }


}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .banner {
        height: 370px;
        width: 100%;
        background: #82c6c5;
    }

    .banner img {
        height: 370px;
        width: 100%;
    }

    .banner .heading {
        padding-top: 40px;
    }

    .banner .heading h1 {
        color: black;
        font-size: 55px;
    }
}

/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    .banner {
        height: 550px;
        width: 100%;
        background: #82c6c5;
        position: relative;

    }

    .banner img {
        height: 550px;
        width: 100%;
    }

    .banner .heading {
        height: 300px;
        width: 100%;
        padding-top: 100px;
    }

}

/*----contact banner close----*/


/*==================portfolio part start=======================*/

.portfolio {
    /*border: 1px solid white;*/
    padding-top: 50px;
}

.portfolio .head-port {
    padding: 50px 0 50px 0;
    text-align: center;
}

.portfolio .head-port h1 {
    color: #82c6c5;
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-size: 50px;
    letter-spacing: 2px;
    display: inline-block;
    border-bottom: 2px solid #f7d40c;
}

.portfolio .inner-port {
    padding: 0 100px 0 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio .inner-port .img-port {
    height: 300px;
    width: 32%;
    overflow: hidden;
    border: 3px double #f7d40c;
}

.img-port {
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.img-port.visible {
    transform: scale(1);
    opacity: 1;
}

.portfolio .inner-port .other {
    height: 330px;
    width: 32%;
    overflow: hidden;
    border: 3px double #f7d40c;
    text-align: center;
    color: #f7d40c;
}

.portfolio .inner-port .other img {
    height: 300px;
    width: 100%;
}


.portfolio .inner-port .img-port:hover img {
    transform: scale(1.2);

}

.portfolio .inner-port .img-port img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 1s;
}

.portfolio .inner-port .banner {
    height: 200px;
}

.portfolio .inner-port .banner img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.portfolio .inner-port .poster {
    height: 500px;
}

.portfolio .inner-port .poster img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.portfolio .inner-port .insta {
    height: 400px;
}

.portfolio .inner-port .insta img {
    height: 100%;
    width: 100%;
    object-fit: scale-down;
}



/* Popup styles */
.image-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.popup-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin: 50px 0 50px 0;
}

.popup-content img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border: 3px solid #fff;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 28px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
    .portfolio .inner-port {
        padding: 0 0px 0 0px;
    }

    .portfolio .inner-port .img-port {
        height: 250px;
        width: 100%;
        border: 3px double #f7d40c;
    }

    .portfolio .inner-port .banner {
        height: 180px;
    }
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .portfolio .inner-port {
        padding: 0 0px 0 0px;
    }

    .portfolio .inner-port .img-port {
        height: 150px;
        width: 31%;
        border: 3px double #f7d40c;
    }

    .portfolio .inner-port .banner {
        height: 100px;
    }
}

/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    .portfolio .inner-port {
        padding: 0 30px 0 30px;
    }

    .portfolio .inner-port .img-port {
        height: 280px;
        width: 32%;
        border: 3px double #f7d40c;
    }

    .portfolio .inner-port .banner {
        height: 200px;
    }
}

/*==================portfolio part close=======================*/






/*----------------------Scroll Button------------------------*/
.scroll-button {
    position: fixed;
    bottom: 10px;
    right: 20px;
    padding: 15px 15px;
    font-size: 35px;
    background-color: #82c6c5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.715);
}

.scroll-button:hover {
    background-color: #f7d40c;
}

/*Cursor part start*/
.cursor {
    position: fixed;
    width: 13px;
    height: 13px;
    background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

/*Cursor part close*/