@import url('bootstrap-icons.min.css');
@import url('font.css');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: #fff;
            color: #333;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            /* height: 60vh; */
            background: url('../images/project-index/banner.jpg') center center / cover no-repeat;
            /* display: flex; */
            /* align-items: center; */
            /* justify-content: center; */
            padding-top: 180px;
            /* overflow: hidden; */
            /* margin-bottom: -350px; */
                aspect-ratio: 1366 / 501;

        }
        .banner-slider-section{
            position: relative;
    bottom: -38px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.23) 22.86%, rgba(0, 0, 0, 0.805638) 45.43%, #000000 100%),
linear-gradient(360deg, rgba(0, 0, 0, 0) 78.42%, #000000 100%);

            /* background:
                linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%),
                linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%); */
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
        }

        .hero-content h1 {
        font-size: 25px;
            font-family:ElmsSans-Semibold ;
            /* font-weight: 700; */
            letter-spacing: 1.80px;
            text-transform: uppercase;
            color: #fff;
        }

         @media (max-width:560px){
            .hero-section {
                      padding-top: 102px;
            }

         }
        /* Logo */
        .logo {
            position: absolute;
            top: 30px;
            left: 50px;
            z-index: 100;
        }

        .logo img {
            height: 80px;
        }

        /* Menu Button */
        .menu-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            z-index: 100;
            color: #333;
            padding: 10px 25px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

      

        @media (max-width:560px){
                        .logo img {
    height: 44px;
}
.menu-btn{
        padding: 3px 18px;
            top: 18px;
                right: 15px;
}
.logo{
    top: 18px;
    left: 25px;
}
        }

        /* Featured Project Banner */
/* ⭐ FULL-WIDTH FEATURED SLIDER — [BLURRED] [FOCUSED+BIG] [BLURRED] ⭐ */
.featured-slider {
    width: 100%;
    /* padding: 175px 0 80px; */
    position: relative;
    background: transparent;
    /* overflow: visible; */
    z-index: 20;
}

/* Proper alignment */
.swiper-wrapper {
    align-items: center;
}

/* Default slide style - all slides that are not active */
.featured-slider .swiper-slide {
    /* width: 600px;
    height: 380px; */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    /* filter: blur(2px) brightness(0.75);
    transform: scale(0.85); */
}

/* Dark overlay for non-active slides */
.featured-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 5;
    transition: opacity 0.5s ease;
}

.featured-slider .swiper-slide{
    width: 520px;
    aspect-ratio: 520 / 294;
}
/* Active slide center - FOCUSED + BIG */
.featured-slider .swiper-slide-active {
    /* width: 900px !important;
    height: 500px !important; */
    opacity: 1 !important;
    filter: blur(0px) brightness(1) !important;
    transform: scale(1) !important;
    z-index: 10;
}

/* Remove overlay from active slide */
.featured-slider .swiper-slide-active::before {
    /* opacity: 0; */
}

/* Adjacent slides (prev & next) - slightly less blurred, more visible */
.featured-slider .swiper-slide-prev,
.featured-slider .swiper-slide-next {
    opacity: 1;
    filter: blur(1.5px) brightness(0.8);
    transform: scale(0.9);
}

/* Image style */
.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-slider .swiper-slide-active::before{
 display: none;
}



    /* --- PROJECT NAV TABS (FINAL DESIGN MATCHING YOUR REFERENCE) --- */
/* Tabs Container */
.project-nav {
    position: relative;
    background: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    justify-content: center;
}

/* Black top and bottom lines */
.project-nav::before,
.project-nav::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 75%; /* adjust width to match design */
    height: 2px;
    background: #000;
}

.project-nav::before {
    top: 0;
}
/* Bottom line */
.project-nav::after {
    bottom: 0;
    height: 2px; /* thicker to match red bar thickness */
    background: #000;
}

/* Active red bar merged with bottom line */
.custom-tab.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -7px; /* slight overlap to merge perfectly */
    width: 120px;
    height: 7px;
    background-color: #E0352B;
    border-radius: 2px;
    z-index: 3;
    color: #E0352B;
    font-weight: 700; /* Bold active tab */
}


/* Centered tabs */
.custom-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-tab {
    background: none;
    border: none;
    font-size: 17px;
       font-family:ElmsSans-Light ;
   
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000;
    padding: 8px 0;
    cursor: pointer;
    position: relative;
}
.custom-tab.active {
    color: #000000;
      font-family:ElmsSans-Semibold ;
  
}



/* Hover */
.custom-tab:hover {
    color: #E0352B;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .custom-tabs {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .custom-tab {
        font-size: 11px;
        font-family: GoogleSansFlex;
        padding: 6px 0;
        white-space: nowrap;
    }

    .custom-tab.active::after {
        width: 50px;
        height: 5px;
        bottom: -8px;
    }

    .project-nav {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .project-nav::before,
    .project-nav::after {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .custom-tabs {
        gap: 10px;
        flex-wrap: wrap;
    }

    .custom-tab {
        font-size: 9px;
        padding: 5px 0;
    }

    .custom-tab.active::after {
        width: 40px;
        height: 4px;
        bottom: -6px;
    }
}




        /* Project Grid */
        .project-grid {
            padding: 15px 0;
        }

        .project-card {
            position: relative;
             margin-bottom: 8px; 
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
              aspect-ratio: 4 / 4;
            height: auto;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        .project-overlay {
            /* position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
            padding: 25px 20px;
            transition: all 0.3s;
            display: flex;
            align-items: flex-end; */
        }

        /* .project-card:hover .project-overlay {
            background: linear-gradient(to top, rgba(231,76,60,0.9) 0%, rgba(231,76,60,0.5) 60%, rgba(0,0,0,0.3) 100%);
        } */

        .project-title {
            font-size: 15px;
        font-family:ElmsSans-Semibold ;
   
            text-transform: uppercase;
            letter-spacing: 0.80px;
            margin: 0;
            color: #000;
            /* text-align: center; */
            width: 100%;
            text-decoration: none;
        }
     a{
            text-decoration: none;
        }

        /* Ribbon Badge Styling */
        .ribbon {
            position: absolute;
            top: 12px;
            left: 12px;
            background-color: #E0352B;
            color: #fff;
            padding: 6px 16px;
            font-size: 11px;
          font-family:ElmsSans-Medium ;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 4px;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            text-align: center;
        }
        .featured-slider .ribbon{
             position: absolute;
            top: 20px;
            left: -29px;
      
            padding: 6px 36px;
          
            transform: rotate(323deg);
        }
        .project-card .ribbon{
            top: 0px;
            left: 50%;
            font-size: 13px;
            transform: translateX(-50%);
            border-bottom-left-radius: 2px;
            border-bottom-right-radius: 2px;
            border-top-left-radius: 0px;
            border-top-right-radius: 0px;
            text-transform: capitalize;
        }

        @media (max-width:560px){
                   .project-card .ribbon{
                      font-size: 10px;
                      padding: 6px 13px;
                   }
        }
        @media (max-width:400px){
            .project-card .ribbon{
                padding-left: 8px;
                padding-right: 8px;
                min-width:80%;
            }
        }

        /* Section Headings */
        .section-heading {
            margin: 20px 0 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-heading i {
            color: #e74c3c;
            font-size: 24px;
            font-family: GoogleSansFlex-bold;
        }



        .section-heading h2 {
            font-size: 16px;
            font-weight: 600;
            font-family: GoogleSansFlex-bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 0;
        }

        .section-description {
            color: #1d1c1c;
            margin-bottom: 10px;
            font-size: 15px;
            font-family: ElmsSans;
        }

        /* Video Grid */
        .video-grid {
            margin-bottom: 40px;
        }

        .video-card {
            position: relative;
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 16/9;
            height: auto;
        }

        .video-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .video-card:hover img {
            transform: scale(1.1);
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .video-card:hover .video-overlay {
            background: rgba(0,0,0,0.5);
        }

        .play-icon {
            width: 80px;
            height: auto;
            opacity: 0.95;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
        }


.contact-details-text {
    color: #060606;
    font-family:sen ;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 25.2px */
    letter-spacing: 0.42px;
    text-decoration: none;
}

.number-line::after {
 position: absolute;
    width: 1px;
    height: 63%;
    background: red;
    left: 0;
    top: 18%;
    content: "";
}

.number-line::before {
   position: absolute;
    width: 1px;
    height: 63%;
    background: red;
    right: 0;
    top: 18%;
    content: "";
}


.logo-line::after {
    position: absolute;
    content: "";
    width: 35%;
    height: 1px;
    background-color: #9D9D9D;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

/* footer start  */

.footer-bottom {
    background-color: #000;
}

.footer-content {
    color: #FFF;
 font-family:ElmsSans ;
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: 18.651px; /* 143.472% */
text-decoration: none;
}
        .video-card:hover .play-icon {
            opacity: 1;
            transform: scale(1.15);
            filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
        }

        /* Character Carousel */
        .character-carousel {
            margin: 40px 0;
            margin-left: 7%;
            position: relative;
        }
          .character-carousel::after {
             content: '';
             width: 30%;
             height: 100%;top: 0px;
            position: absolute;
            left: -3px;
            background: #FFF;
background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgb(255 255 255 / 2%) 50%);
z-index: 1;
        }

        .character-item {
            text-align: center;
            padding: 0 15px;
        }

        .character-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            /*border: 3px solid #e74c3c;*/
            margin-bottom: 15px;
        }

      
   

        /* Music Videos Slider */
        .song-slider h2 {
            color: #000;
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%;
            letter-spacing: 0.48px;
            text-transform: uppercase;
        }

        .youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

        .img-scroll-wrapper {
            overflow: hidden;
            width: 100%;
        }

        .img-scroll {
            display: flex;
            gap: 20px;
            animation: scroll-left 20s linear infinite;
        }

        .img-scroll img {
            width: 300px;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
        }

        /* Animation */
        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .custom-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Modal Styling */
        .modal-content {
            background: #fff;
            border: 1px solid #ddd;
        }

        .modal-header {
            border-bottom: 1px solid #ddd;
        }

        .modal-body {
            color: #333;
        }

    

        .modal-title {
            color: #333;
        }

        .btn-close {
            filter: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 1.5rem;
                letter-spacing: 5px;
            }

            .project-nav .nav-link {
                padding: 10px 15px;
                font-size: 12px;
            }

            .project-card {
                aspect-ratio: 4/4;
                margin-bottom: 20px;
            }

          
            .youtube img{
                width: 35px;
            }
        }

        @media (max-width: 576px) {
            .project-card {
                aspect-ratio: 4/4;
                margin-bottom: 15px;
            }

          
        }

        @media (max-width: 480px) {
            .project-card {
                aspect-ratio: 3/4;
                margin-bottom: 15px;
            }
        }

        /* Ensure video cards also maintain aspect ratio */
        .video-card {
            aspect-ratio: 16/9;
            height: auto;
        }

.tabSwiper-next,.tabSwiper-prev{
    position: absolute;
    width: 25px;
    height: 25px;
    color: #000;
    border-radius: 50px;
    padding: 14px;
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 1px solid #767373;
    background: #000;
    color: #fff;

    
}

/* .tabSwiper-prev{
        right: 20px;
    left: auto;
}
.tabSwiper-next{
        right: auto;
    left: 20px;
} */

.tabSwiper-next i,.tabSwiper-prev i{
        transform: rotate(180deg);
}
.tabSwiper-next::after,.tabSwiper-prev::after{
display: none;
}
.tabs-content-section{
        padding-left: 1%;
    }
@media(min-width:1200px){
    .tabs-content-section{
        padding-left: 5%;
    }
}
.tabs-content-section{
    position: relative;
}

.tabSwiper::after {
    content: '';
    width: 4%;
    height: 100%;
    top: 0px;
    position: absolute;
    right: 0px;
    background: #FFF;
    background: linear-gradient(271deg, rgba(255, 255, 255, 1) 0%, rgb(255 255 255 / 2%) 50%);
    z-index: 1;
}

.tabSwiper  .swiper-slide{
    margin-bottom: 14px;
}
.tabSwiper {
    width: 100%;
}

.project-title::before{
    content: '';
    background-image: url(../images/project-index/movienametag.svg);
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
    margin-right: 9px;
}

.no-slider {
    padding-right: 5%;
}