/* header */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fullscreen Background Video */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Banner Section */
.banner {
    position: relative;
    /* Fixed issue */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

/* Slider Container */
.slider-container {
    text-align: center;
}

/* Slide Content */
.slide-content {
    display: none;
}

.slide-content.active {
    display: block;
}

.slide-content p {
    font-size: 20px;
    font-family: "Cerapro_bold", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.Primary-btn,
.contact-home {
    padding: 12px 28px;
}

/* Social Icons */
.social-icons {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff007a;
}

/* progress nav */
.progress-nav {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
}

.progress-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.progress-line {
    width: 3px;
    height: 150px;
    background: gray;
    position: relative;
    overflow: hidden;
}

.progress-indicator {
    width: 100%;
    background: linear-gradient(to top, #ff007a, purple);
    position: absolute;
    transition: height 0.5s ease-in-out;
    top: 0;
    height: 0%;
}

/* ========================================================================================== */

/* Marquee Section */
.marquee-container {
    position: relative;
    /* Fixed visibility issue */
    width: 100%;
    overflow: hidden;
    background: white;
}

.marquee {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee-scroll 10s linear infinite;
    padding: 10px 0;
    background: white;
}

.marquee span {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    padding: 0 30px;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ================================================================================== */


/* portfolio
.portfolio {
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.marquee .marquee-content {
    display: flex;
    gap: 20px;
    animation: scroll 10s linear infinite;
    width: max-content;
}

.marquee img {
    height: 150px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee.reverse .marquee-content {
    animation-direction: reverse;
} */

/* ======================================================================================= */
/* ================================================================================== */

/* About Section */
.about-section {
    position: relative;
    /* Fixed visibility issue */
    z-index: 2;
    background: #0c0c14;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}

.about-text {
    flex: 1;
    padding-right: 40px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-text h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: white;
    margin-top: 5px;
}

.about-text p {
    font-family: "Cerapro_Medium", sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 500px;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .about-image img {
        max-width: 100%;
    }
    .index .team__title{
        text-align: center;
    }
}

/* video css */
.showreel__section {
    height: 100%;
    width: 100%;
    /* padding-top: var(--r200);
    padding-bottom: var(--r100); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.showreel__section video {
    z-index: 1;
    width: 98%;
    aspect-ratio: 16/9;
    border-radius: 25px !important;
    -webkit-border-radius: 25px !important;
    -moz-border-radius: 25px !important;
    -ms-border-radius: 25px !important;
    -o-border-radius: 25px !important;
}

/* services section css start */

.services-btn {
    display: block;
    text-align: center;
}

.index .team__title {
    color: white !important;
    font-family: "Recoleta_Bold";
    font-size: 50px;
    margin-bottom: 55px;
}

/* end */


/* Testimonial Section */

body {
    color: #fff;
}

.testimonial {
    padding: 50px 20px;
}

.testimonial__title {

    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.testimonial__title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: white;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.testimonial__slider {
    padding-bottom: 60px;
    /* Adds space below cards for pagination */
}

.testimonial__card-wrapper {
    position: relative;
    padding-top: 50px;
    height: 100%;
}

.testimonial__img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;
}

.testimonial__card {
    background: linear-gradient(to right, #00c6ff, #ff4e98);
    border-radius: 20px;
    padding: 60px 20px 30px;
    color: #fff;
    text-align: center;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonial__name {
    font-size: 25px;
    font-family: "Recoleta_Bold";
    color: white !important;
    margin-top: 10px;
}

.testimonial__text {
    font-size: 18px;
    font-family: "Cerapro_Medium";
}

.testimonial__stars {
    color: yellow;
    margin-top: auto;
}

.swiper-pagination {
    position: absolute;
    bottom: 0;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* marquee portfolio */

section.home-marquee-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    gap: 10%;
}

.home-marquee {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    display: block;
    transform-origin: 50% 100%;
    transition: transform 0.25s;
}

.home-marquee .home-inner {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    color: white;
    font-size: 8rem;
    white-space: nowrap;
}

.home-marquee .home-inner>* {
    padding: 0 1rem;
}

img.portfolio__img {
    width: 250px;
    height: auto;
}





/* =========================latest updates */
.latest-updates {
    padding: 30px 20px;
}

.section-title {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #FE218B;
    margin-top: 5px;
}

.update-card {
    border-radius: 10px;
    overflow: hidden;
}

.update-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: 0.3s;
}

.update-card img:hover {
    transform: scale(1.05);
}

.update-card .update-text {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}


/* Contact Box with Gradient Border */
.contact-box {
    background: #000;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.contact-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 12px;
    background: linear-gradient(260.1deg, #FE218B 1.13%, #9366C3 50%, #21B0FE 98.87%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
}

h5 {
    background: linear-gradient(260.1deg, #FE218B 1.13%, #9366C3 50%, #21B0FE 98.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: Cera Pro;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.bottom-heading {
    font-family: Cera Pro;
    font-weight: 700;
    font-size: 27px;
}

/* Subscribe Newsletter Section */
.subscribe-heading {
    background: linear-gradient(260.1deg, #FE218B 1.13%, #9366C3 50%, #21B0FE 98.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Cera Pro;
    font-weight: 700;
    font-size: 20px;
    text-align: left;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
    display: flex;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: white;
    border: 1px solid #2E2E2E;
    color: #BEBDBD;
    font-weight: 700;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(260.1deg, #FE218B 1.13%, #9366C3 50%, #21B0FE 98.87%);
    border-radius: 8px;
    padding: 16px 18px;
    border: 1px solid #ff5e14;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-form button img {
    width: 22px;
    height: auto;
}


.custom-btn {
    padding: 14px 36px;
    font-size: 20px;
    font-family: "Cerapro_bold", sans-serif;
    background: linear-gradient(260.1deg, #FE218B 1.13%, #9366C3 50%, #21B0FE 98.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   

}