/* Custom CSS */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --white: #fff;
    --black: #000;
}

@import url('https://fonts.googleapis.com/css2?family=Anton&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');

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

#logo-mobile {
    display: none;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
}

.carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.carousel-caption {
    bottom: 30%;
}

.video-card {
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 50px;
    opacity: 0.8;
    transition: all 0.3s;
}

.video-card:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.download-btn {
    background-color: var(--primary-color);
    border: none;
    transition: all 0.3s;
}

.download-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.video-container {
    width: 100%;
    height: auto;
    position: relative;
}

video,
#videoPoster {
    width: 100%;
    height: 397px;
    object-fit: cover;
    cursor: pointer;
}

video {
    display: none;
}

.videoPoster {
    width: 100%;
}
.singername{
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    padding: 15px 18px 10px;
    display: flex;
    justify-content: center;
    width:100%;
    background-color: #db2c1d;
    color: #fff;
    text-align: center;
}
.controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #823c94;
}

.controls a {
    color: #fff;
    text-decoration: none;
    padding-top: 10px;
    padding-right: 10px;
}

.controls a:hover {
    color: #fff;
    padding-top: 10px;
    padding-right: 10px;
    text-decoration: none;
}

#stopBtn {
    background: #823c94;
    color: #fff;
}

button,
a.download-btn {
    padding: 10px 16px;
    font-size: 16px;
    background: #823c94;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}

button:hover,
a.download-btn:hover {
    background: #0056b3;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 2rem;
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
    color: #db2c1d;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #db2c1d;
}

.card-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    color: #db2c1d;
}

.card-text {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: #0a4693;
}

h2 {
    font-family: "Poppins", sans-serif;
    font-size: 0.5rem;
}

footer {
    background-color: #c0c0c0;
    color: black;
    padding: 30px 0;
    border-top: 1px solid #000;
}

.footer-logo {
    width: 40%;
    text-align: center;
}

.footer-eventimg{
    width: 70%;
}

.social-icons a i {
    color: #000;
}

.list-unstyled li a {
    color: #000;
}

.mangeshd {
    height: 250px;
}

.mangeshd2 {
    height: 395px;
}

#tagline h1 {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    color: #f00;
    text-align: center;
    margin: 20px 0px;
}

#tagline h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    color: #000;
    text-align: center;
    margin: 20px 0px;
}

.caption {
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding: 5px;
    font-size: 1rem;
    position: absolute;
    bottom: 0px;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 90%;
    font-weight: 600;
  }
  
  /* Customize lightbox caption */
  .lightbox .lb-caption {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  /* Thumbnail hover effect */
  .img-thumbnail {
    transition: transform 0.3s;
  }
  .img-thumbnail:hover {
    transform: scale(1.03);
  }
#singersgallery{
  overflow-x: hidden;
}
#mobileviewers{
    display: none;
}
#desktopviewers{
    display: flex;
}
#viewCount{
    margin-left: 5px;
}

@media (max-width: 768px) {
    #logo-mobile {
        display: block;
    }

    #logo-desktop {
        display: none;
    }

    .carousel-item {
        height: 300px;
    }

    .carousel-caption h3 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
    #desktopviewers{
        display: none;
    }
    #mobileviewers{
        display: flex;
        position: absolute;
        top: 24px;
        left: 36%;
    }
    #viewCount{
        margin-left: 5px;
    }
}

#gotoTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
}

#contact a {
    color: #000;
}

#contact a:hover {
    text-decoration: none;
}

.marqueesection {
    background-color: #db2c1d;
    padding: 20px 0px;
}

.marqueesection marquee {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    font-style: normal;
}

.photo-gallery {
    color: #313437;
    background-color: #fff;
}

.photo-gallery p {
    color: #7d8285;
}

.photo-gallery h2 {
    font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: inherit;
    text-align: center;
}

@media (max-width:767px) {
    .photo-gallery h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px;
    }
}

.photo-gallery .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.photo-gallery .intro p {
    margin-bottom: 0;
}

.photo-gallery .photos {
    padding-bottom: 20px;
}

.photos .item {
    margin-bottom: 30px;
}

.collage-gallery {
    column-count: 3;
    column-gap: 1rem;
}

#ourteam .card-body{
    padding: 1.25rem 0.5rem;
    min-height: 120px;
}

#advtgallery{
    margin-top: 50px;
}

@media (max-width: 992px) {
    .collage-gallery {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .collage-gallery {
        column-count: 1;
    }
}

.collage-gallery .item {
    display: inline-block;
    margin-bottom: 1rem;
    width: 100%;
}

.collage-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.collage-gallery img:hover {
    transform: scale(1.03);
}

.img-sunitar{
    height: 395px !important;
}