+
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --color-white: #fff;
    --color-red:#f52d5f;
    --color-black: #000;
    --color-yellow: #ffc107;
} 
body{
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black); 
    background-color: var(--color-white);
}
h1{
    font-family: 'Cinzel', serif;
    font-size: 3.5rem; /* Approx. 40px */
    font-weight: 700;
} 
h2{
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
}
p{
    font-family: 'Cinzel', serif;
    font-size: 1rem; /* 16px */
}  
.btn{
    font-family: 'Cinzel', serif;
    font-size: 1rem; /* 16px */
}
.section-padding{
    padding: 3% 0%;
}

/* Responsive Adjustments */ 
@media(max-width: 767px) 
{
    h1{
        font-size: 2.5rem; /* 32px */
    }
    h2{
        font-size: 2rem; /* 28px */
    }
    p, .btn{
        font-size: 1rem; /* 14px */
    }
    .section-padding{
        padding: 9% 2%;
    }

    #carouselExampleFade {
        height: 70vh; 
        background-color: var(--color-black);
    }
    .carousel-inner, .carousel-item {
        height: 100%;
    }
}
@media(min-width: 768px)and(max-width: 991px) 
{
    h1{
        font-size: 2.75rem; /* 44px */
    }
    h2{
        font-size: 2.25rem; /* 36px */
    }
    p, .btn{
        font-size: 0.9375rem; /* 15px */
    }
    .section-padding{
        padding: 7% 0;
    }
}
/* --------------------------------------------------------------- */
.navbar {
    background-color: var(--color-black); 
    transition: all 0.3s ease; 
    padding: 1rem 1rem; 
    height: 150px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0 4px 12px -2px var(--color-red);
    font-family: 'Cinzel', serif;
}
.navbar.shrink {
    padding: 0.5rem 1rem; 
}
.navbar-brand img {
    height: 100px; 
    transition: all 0.3s ease; 
}
.navbar.shrink .navbar-brand img {
    height: 100px; /* Smaller logo on scroll */
}
.nav-link {
    color: var(--color-white) !important; 
    position: relative;
    font-size: 1rem; 
    font-weight: 500;
    transition: all 0.3s ease; 
}
.navbar.shrink .nav-link {
    font-size: 0.9rem; 
    font-weight: 500;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-red); /* Red overlay color */
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-link:hover::after {
    transform: scaleX(1);
}
.social-icons a {
    color: var(--color-white); 
    margin-left: 10px;
    font-size: 1.2rem; 
    transition: all 0.3s ease; 
}
.navbar.shrink .social-icons a {
    font-size: 1rem; 
}
.social-icons a:hover {
    color: var(--color-red); /* Red color on hover */
}
.navbar-collapse {
    background-color: rgba(0, 0, 0, 0.85); 
    padding: 10px;
    border-radius: 10px; 
}
.navbar-nav .nav-link {
    color: var(--color-white) !important; 
}

/* tab */
/* Custom CSS for centered tabs */
.nav-tabs {
    display: flex;
    justify-content: center; /* Center the tabs */
    border: none; /* Remove default border */
}
.nav-tabs .nav-item {
    margin: 0 10px; /* Add spacing between tabs */
}
.nav-tabs .nav-link {
    background-color: var(--color-red); 
    color: var(--color-white); 
    border: none; 
    border-radius: 10px 10px 0px 0px !important; 
    padding: 10px 20px; 
    transition: all 0.3s ease; 
}
.nav-tabs .nav-link:hover {
    background-color: var(--color-red); /* Darker red on hover */
}
.nav-tabs .nav-link.active {
    background-color: var(--color-red); /* Darker red for active tab */
    color: white; /* White text for active tab */
}
.tab-content {
    margin-top: 20px; /* Add spacing below tabs */
}
.navbar-toggler-icon{
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    /* background-color: #fff; */
}


/* Section 1 */
 /* Custom CSS for slideshow */
.carousel-item img {
    object-fit: cover; 
    height: 100%;
    width: 100%;
}
@media(max-width: 767px) 
{   
    #carouselExampleFade {
        height: 70vh; 
        background-color: var(--color-black);
    }
    .carousel-inner, .carousel-item {
        height: 100%;
    }
}
@media(min-width: 768px)and(max-width: 991px) 
{
}


/* Section 2 */
.nav-tabs .nav-item {
    font-size: 50px; 
    padding: 2px 5px; 
}
.nav-tabs .nav-link {
    font-size: 20px; 
    padding: 10px 20px; 
    background-color: var(--color-black);
    /* border: 1px solid var(--color-red); */
    color: var(--color-black);
    transition: all 0.3s ease;
}
.nav-tabs .nav-link.active {
    background-color: var(--color-red) !important; 
    color: var(--color-white) !important; 
    transition: all 0.3s ease;
}
.custom-tab {
    font-family: 'Cinzel', serif;
    font-size: 50px; 
    font-weight: 500;
    padding: 6px 12px; 
}
.section-title {
    font-size: 30px; 
    font-weight: bold;
    text-align: center; 
    margin-bottom: 15px; 
}
.custom_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}
.img_wrapper:hover .custom_img{
    /* transform: scale(1.1); */
}
#section2 .btn{
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
}
#section2 .btn:hover{
    background-color: transparent;
    color: var(--color-red);
    font-weight: 500;
    border-radius: 20px;
    border: 2px solid var(--color-red);
    transform: scale(1.1);
}


/* Ongoing Production */
#ongoing-production{
    /* background-color: #cf7a7a; */
    background: url("Images/OnGoing Production/bgimg.jpg");
    border-radius: 20px 20px 0px 0px;
    margin-bottom: -10px;
}
#ongoing-production h2{
    font-size: 3rem;
    font-weight: 700;
}
#ongoing-production .left-img {
    height: 400px;
    object-fit: cover;
    /* transform: rotate(-5deg);  */
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
}
#ongoing-production .right-img {
    height: 400px;
    object-fit: cover;
    /* transform: rotate(5deg); */ 
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;

}
#ongoing-production img:hover {
    /* transform: rotate(0deg); */
    transform: scale(1.05);
}
@media(max-width: 767px) 
{   
    #ongoing-production h2{
        font-size: 2.3rem;
        font-weight: 700;
    }
    .img_col{
        padding-bottom: 50px;
    }
}
@media(min-width: 768px)and(max-width: 991px) 
{
}




/* News and Events */
#section4{
    background-color: var(--color-red);
    border-radius: 20px 20px 0px 0px;
    font-weight: 700 !important;
}
#section4 h2{
    font-family: 'Cinzel', serif;
    font-weight: 700 !important;
    color: var(--color-white);
}
.scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}
.scroll-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 10s linear infinite;
}
.reverse .scroll-content {
    animation: scroll-right 10s linear infinite;
}
.scroll-content img{
    display: inline-block;
    margin: 0 5px; 
    width: 300px; 
    height: auto;
    border-radius: 10px;
}
.scroll-container:hover .scroll-content {
    animation-play-state: paused;
}
.c1
{
    background-color: var(--color-white);
    color: var(--color-red);
    border-radius: 10px;
}

/* Left to Right Scroll */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Move left */
}

/* Right to Left Scroll */
@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); } /* Move right */
}
@media(max-width: 767px) 
{   
    #section4 h2{
        font-size: 2.3rem !important;
    }
}
@media(min-width: 768px)and(max-width: 991px) 
{
}




/* Section 5: Movie Trailer*/
#section5{
    border-radius: 0px 0px 15px 15px;
}
#section5 h2{
    font-size: 2.5rem; 
    font-weight: 500;
}
.section5 {
    background-image: url('bg2.jpg');
    background-attachment: fixed;
    background-size: cover;
    color: var(--color-white);
}
.scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: transparent;
    padding: 20px 0;
}
.scroll-content {
    display: flex;
    gap: 15px; 
    animation: scroll-left 8s linear infinite;
}
.scroll-content iframe{
    width: 100%;
    height: 100%;
    flex: 1;
    border: none;
    border-radius: 10px;
}
.scroll-content > div {
    width: 300px; 
    height: auto; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* Infinite scrolling keyframes */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Styling for iframes */
.scroll-content iframe {
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
@media(max-width: 767px) 
{   
    #section5 h2{
        font-size: 2.3rem; 
        font-weight: 500;
    }
}
@media(min-width: 768px)and(max-width: 991px) 
{
}


/* Section 10 - Vishal Rana */

.section10 img {
    /* border: 5px solid --color-red;  */
    width: auto;
    height: 80%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}
.section10 h1 {
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2);
}
.section10 p {
    font-size: 1.1rem;
    line-height: 1.7;
}
.section10 .fw-bold {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--color-black); 
}
.section10 .Echelon{
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-black);
}
.red-shadow {
    box-shadow: 0 50px 50px rgba(255, 0, 0, 1);
    border-radius: 10px; 
    transition: transform 0.3s ease-in-out; 
}
.red-shadow:hover {
    transform: scale(1.05); 
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.8); 
}
@media(max-width: 767px) 
{   
    .section10 .Echelon{
        margin-top: 1.5rem !important;
    }
}
@media(min-width: 768px)and(max-width: 991px) 
{
}



/* Section 9 - Social Media Posts */
.section9 {
    background: linear-gradient(135deg, #222, #333);
    color: white;
}
.section9 h2 {
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
}
.card {
    border-radius: 10px !important;
    background-color: #474242 !important;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: scale(1.02);
    /* box-shadow: 0px 8px 10px rgba(255, 255, 255, 0.2); */
}
hr {
    border-top: 2px solid;
}
.instagram-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.youtube-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.instagram-media, .ratio iframe {
    border-radius: 10px !important;
    overflow: hidden; 
}



/* Contact Section */
.section11 .contact-card h4{
    font-family: 'Cinzel', serif;
    color: var(--color-black);
}
.section11 h2 {
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
} 
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.2);
}
/* .btn-warning {
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 18px;
}
hr {
    border-top: 2px solid;
} */

.map-container {
    position: relative;
    width: 100%;
    height: 70vh; 
}
.google-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: 20px 20px 0% 0%;
}
.contact-card {
    position: absolute;
    top: 50%;
    right: 5%; 
    transform: translateY(-50%); 
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    max-width: 350px;
    z-index: 10;
}
#section11 .contact-button {
    width: 100%;
    background-color: var(--color-yellow);
    border-radius: 5px;
    font-weight: 700;
}
.contact-button:hover {
    background-color: var(--color-white)!;
    border: 1px solid;
    border-color: var(--color-yellow);
}



/* Footer */
#footer{
    background-color: var(--color-black);
}
#footer .btn-group-vertical a {
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
#footer .btn-group-vertical a:hover {
    color: var(--color-white); 
    background-color: var(--color-red);
    border-color: var(--color-red);
    transition: all 0.3s ease;
}
#footer .address{
    font-weight: 500;
}
#footer .address p:hover{
    font-weight: 500;
    color: var(--color-red);
}
#footer h4:hover{
    font-weight: 500;
    color: var(--color-red);
}
#footer .social-icons-footer a {
    color: inherit !important;
    text-decoration: none;
}
/* Ensure the icon itself changes color */
#footer .social-icons-footer a {
    font-size: 40px;
    font-weight: 500;
    margin: 0 15px;
    color: var(--color-white) !important; /* Default Yellow */
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
/* Force color change on hover */
#footer .social-icons-footer a:hover {
    transform: scale(1.2);
    color: var(--color-red) !important; /* Change to Red */
}






