div{
    color:black;
}

.myrishistory-content a{
    color:#FF0000;
}

.contact input{
    color: black !important;
    border-radius: 10px !important;
    font-size: 16px !important !important;
}

.banner {
    background: url('https://images.unsplash.com/photo-1758691461935-202e2ef6b69f?q=80&w=2232&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    height: 100vh;
    width: 100%;
    background-size: cover;
}

.banner-in {
    background: linear-gradient(90deg, black, rgba(0, 0, 0, 0.799), rgba(0, 0, 0, 0.214));
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.banner-logo {
    margin: 2%;
}

.banner-logo img {
    height: 50px;
    border-radius: 300px;
}

.banner-content {
    border-left: 4px solid #FF0000;
    border-radius: 30px;
}

.banner-in h1 {
    color: white;
    font-size: 100px;
    font-family: 'Metropolis';
    /* src: url('fonts/Metropolis-Bold.woff2') format('woff2'), url('fonts/Metropolis-Bold.woff') format('woff'); */
    font-weight: bold;
    font-style: normal;
}



/* MY RISHI STORY */
.myrishistory h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    font-size: 34px;
}

.myrishistory-content {
    font-size: 22px;
}


.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.6);
    /* Semi-transparent black */
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    z-index: 10;
}

.play-button:hover {
    background-color: rgba(255, 0, 0, 0.8);
    /* Turns red on hover */
    transform: scale(1.1);
}

.play-icon {
    color: white;
    font-size: 40px;
    margin-left: 5px;
    /* Centers the triangle visually */
}


/* ADVERTISE */
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 210px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slides-container {
    display: flex;
    width: 300%;
    /* 3 slides = 300% width */
    height: 100%;
    /* The animation: 9s total (3s per slide), infinite loop */
    animation: slideAnimation 9s infinite;
}

.slides-container-mobile{
    width: 300%;
    /* 3 slides = 300% width */
    height: 100%;
    /* The animation: 9s total (3s per slide), infinite loop */
    animation: slideAnimation 9s infinite;
    display: none;
}

.slide {
    width: 100.33%;
    /* Each slide takes up 1/3 of the container */
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- SLIDE MOVEMENT --- */
@keyframes slideAnimation {

    /* 0% to 25%: Show Slide 1 */
    0%,
    25% {
        transform: translateX(0);
    }

    /* 33% to 58%: Show Slide 2 */
    33%,
    58% {
        transform: translateX(-33.33%);
    }

    /* 66% to 91%: Show Slide 3 */
    66%,
    91% {
        transform: translateX(-66.66%);
    }

    /* 100%: Loop back to Slide 1 */
    100% {
        transform: translateX(0);
    }
}

/* --- DOTS ANIMATION --- */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

/* Each dot lights up when its slide is active */
.active-dot-1 {
    animation: dot1 9s infinite;
}

.active-dot-2 {
    animation: dot2 9s infinite;
}

.active-dot-3 {
    animation: dot3 9s infinite;
}

@keyframes dot1 {

    0%,
    25%,
    100% {
        background: #fff;
        scale: 1.2;
    }

    33%,
    91% {
        background: rgba(255, 255, 255, 0.4);
        scale: 1;
    }
}

@keyframes dot2 {

    33%,
    58% {
        background: #fff;
        scale: 1.2;
    }

    0%,
    32%,
    66%,
    100% {
        background: rgba(255, 255, 255, 0.4);
        scale: 1;
    }
}

@keyframes dot3 {

    66%,
    91% {
        background: #fff;
        scale: 1.2;
    }

    0%,
    65%,
    100% {
        background: rgba(255, 255, 255, 0.4);
        scale: 1;
    }
}




/* OUR PROJECTS */

.brands {
    animation: scroll 15s linear infinite;
    display: flex;
}

.brandList {
    overflow-x: scroll;
}

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

.brandimg {
    height: 180px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

    /* Scroll to the left by 100% of the content width */
}

.OurProjects {
    margin-top: 7%;
}



/* REAL PEOPLE STORIES */

.realStories h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    font-size: 34px;
}

.video-slider {
    width: 100%;
    margin: auto;
    overflow-x: auto;
    /* Enables sliding/scrolling */
    scroll-snap-type: x mandatory;
    /* Makes it feel like a professional slider */
    scrollbar-width: none;
    /* Hides scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.video-slider::-webkit-scrollbar {
    display: none;
}

.video-track {
    display: flex;
}

.video-card {
    flex: 0 0 50%;
    /* This ensures exactly 2 videos fit the screen */
    box-sizing: border-box;
    padding: 10px;
    /* Space between the two videos */
    scroll-snap-align: start;
    /* Snaps video to the edge when sliding */
}

.video-card iframe {
    width: 100%;
    height: 40vh;
    border-radius: 10px;
    background: #000;
    /* Placeholder background */
}




/* TALK WITH MYRISHI */


.contact h4 {
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
    font-size: 25px;
    font-weight: 600;
}

.contact {
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 1px 1px 4px rgb(216, 216, 216);
}


@media (max-width: 768px) {

    .banner {
        height: 50vh;
    }

    .banner-in {
        height: 50vh;
    }

    .banner-logo {
        margin: 5%;
        margin-bottom: 0;
        margin-top: 3%;
    }


    .banner-logo img {
        height: 30px;
    }

    .banner-in h1 {
        font-size: 40px;
    }

    .myrishistory-content {
        font-size: 18px;
    }

    .slider-wrapper {
        height: auto;
    }

    .slides-container{
        display: none;
    }

    .slides-container-mobile{
        display: flex;
    }

    .video-card {
        flex: 0 0 100%;
    }

    .video-card iframe {
        height: 30vh;
    }
    


    .realStories h1 {
        font-size: 24px;
    }

}