@font-face {
    font-family: 'Myriad Pro Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Regular'), url('../fonts/MYRIADPRO-REGULAR.woff') format('woff');
}

@font-face {
    font-family: 'Myriad Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Bold'), url('../fonts/MYRIADPRO-BOLD.woff') format('woff');
}

@font-face {
    font-family: 'Myriad Pro Semibold';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Semibold'), url('../fonts/MYRIADPRO-SEMIBOLD.woff') format('woff');
}


/***************** Loader *******************/

.Loader div {
    position: absolute;
    border: 4px solid #000000;
    opacity: 1;
    border-radius: 50%;
    animation: Loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.LoaderOuter {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    color: #ffffff;
    background-color: #ffc107;
    z-index: 999;
    top: 0;
}

.Loader {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0px auto;
    top: calc(50% - 32px);
}

.Loader div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes Loader {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/***************** Loader Ends *******************/

body {
    color: #ffffff;

    overflow-y: auto;
    margin: 0;
    font-family: 'Myriad Pro Regular', sans-serif;
    /* font-size: 16px; */
    transition: padding-top 0.7s ease-in-out;
    /* Smooth transition for padding */

}

/* #mobile_rotate {
    display: none;
} */

/* Adjust the content area when the navbar expands */
.section-expanded {
    padding-top: 150px;
    /* Space for the expanded navbar */
}


/******************* Navbar section *************************/

.header {
    /* position: absolute; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    /* height: 150px; */

    /* Initial height */
    z-index: 100;
    overflow: visible;

    /* opacity: 0;
    animation: fadeUp 3s ease-out forwards; */

    /* #04006C with 50% opacity */
    /* top: 0; */

    /* height: 20vh; */
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 40%, 0 100%);
    display: flex;
    justify-content: flex-end; */
    /* padding: 10px 20px; */
    /* overflow: hidden; */

    /* transition: height 0.3s ease-in-out; */

    /* height: 100px; */
    /* Initial height */
}






.navbar-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background-color: #ffc107;
    clip-path: polygon(0 0, 100% 0, 100% 110px, 50% 70px, 0 110px);
    transition: height 0.7s ease-in-out, clip-path 0.7s ease-in-out;
    z-index: 1;
}

.navbar-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #ff3f00;
    clip-path: polygon(0 0, 100% 0, 100% 120px, 50% 80px, 0 120px);
    transition: height 0.7s ease-in-out, clip-path 0.7s ease-in-out;
    z-index: 0;
}

.navbar-background.active {
    height: 280px;
    /* Expanded height */
    clip-path: polygon(0 0, 100% 0, 100% 280px, 50% 230px, 0 280px);
    /* Adjusted shape */
}

.navbar-border.active {
    height: 290px;
    /* Expanded height */
    clip-path: polygon(0 0, 100% 0, 100% 290px, 50% 240px, 0 290px);
    /* Adjusted shape */
}


/* Fade-up animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.navbar {
    position: relative;
    padding: 10px 20px 0px 20px;
    z-index: 2;
}

.navbar-brand {
    width: 80px;
}

.navbar-brand img {
    /* margin-top: 10px; */
    width: 100%;
}

.navbarNav {



    margin-left: auto;
    /* display: flex;
    justify-content: flex-end ; */
    gap: 20px;

    /* opacity: 1; */

    /* transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; */
}


/* Show menu when navbar background is expanded */
/* .navbar-background.active+.navbar .navbarNav { */
/* .navbar-background.active #navbarNav {
    opacity: 1;
   
    transform: translateY(0);
} */





.navbarNav a {
    transition: color 0.3s;
    font-size: 1.21em;
    color: #011d8a !important;
    overflow: hidden;
    display: inline-block !important;
}

.navbar-collapse a:hover {
    color: #000;
}

/* Logo styling */

.navbar .hamburgerMenu {

    margin-right: 20px;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;


    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.navbar .hamburgerMenu .icon {



    cursor: pointer;
    /* margin-left: 20px; */


    /* width: 100%; */
    transition: width 0.9s ease, opacity 0.5s ease, transform 0.5s ease;
}



.icon.fade-in {
    opacity: 1;
    transform: translateY(0);
    /* Move the logo up when it fades in */
}

.icon.fade-out {
    opacity: 1;
    transform: translateY(-10px);
    /* Optionally move it up a bit as it fades out */
}





/* Expanded Navbar */
/* Content section below navbar */
.section {
    transition: margin-top 0.7s ease-in-out;

}


.navbar-background.active~.section {
    margin-top: 200px;

}




.navbar-expand-lg .navbar-nav .nav-link {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
}





.nav-item:active {
    color: #011d8a !important;
}

.nav-link.active {
    color: #011d8a !important;
    pointer-events: none;
}

.nav-link.active::before,
.nav-link.active::after {
    opacity: 1;

    width: 100%;

    transition: all 0.3s;
    /* Smooth transition */
}

.nav-link.active:hover::before,
.nav-link.active:hover::after {
    opacity: 1;

    width: 100%;

}

.nav-link.active:hover {
    /* text-decoration: underline; */
    color: #0122ad !important;

}


.dropdown-menu {
    position: absolute;
    z-index: 1000;
    /* display: none; */



    background-color: transparent !important;
    /* background-clip: padding-box; */
    border: none !important;
    margin-top: -20px;
    margin-left: 30px;
    width: min-content;
    min-width: auto;

    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.7s, opacity 0.3s ease-in-out 0.7s;

}

.dropdown-menu a {
    color: #011d8a !important;
    text-align: left;
}


.dropdown-item {
    display: block;
    /* width: 100%; */
    font-size: 1em !important;
    /* clear: both; */
    color: #011d8a !important;
    /* text-align: inherit; */
    text-decoration: none;
    padding: 0;
    /* transition: background-color 0.3s ease; */
    background-color: transparent;
    /* Ensure no background color */
}

.nav-item:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 0.10s ease-in-out 0s;

}

/* .nav-link:hover{
    color: #0122ad !important;
} */

.dropdown-item:hover {
    color: #0122ad !important;
    text-decoration: underline !important;
    text-decoration-color: white !important;
    background-color: transparent !important;
    /* Show dropdown on hover */
}

#filmsSubmenu {
    display: none;
    flex-direction: column;
    position: absolute;
    /* top: 50px; */
    left: 100px;
    z-index: 1000;
    line-height: 1.9em;
    margin-top: 60px;
}

#filmsSubmenu a {
    text-decoration: none;
    color: #011d8a;
}

.films-arrow {
    pointer-events: auto !important;
    z-index: 10;
    position: relative;
}



/*******************  Header ends hear ***********************/


/****************** About css start *********************/


.section {

    /*background: url("../images/header/home_bg.jpg") #016ABD;
    background-position: center top;
    background-size: cover;
    width: 100%;*/


    /* background-repeat: no-repeat; */
    /* overflow: hidden; */
    /* background-color: #092ab2; */
    /* position: fixed; */
    /* height: 100%; */
    /* background-size: cover;
    background-position: center; */
    /* transition: section 0.5s ease, opacity 0.5s ease; */

    /* opacity: 0.5; */
    position: relative;

    /* transition: background-image 0.5s ease, opacity 0.5s ease; */

    z-index: -1;
    /* opacity: 0.5; */
    overflow: hidden;
    /* Dynamically overridden by JavaScript */
    /* margin-top: 4vh; */
    /* padding-bottom: 70px; */


}

.background-container {

    background: url("../images/home/home-page-bg-mobile.jpg") #016ABD;
    background-position: center top;

    background-size: cover;

    width: 100%;
    overflow: hidden;




}




.aboutSection {
    width: 60%;
    display: flex;
    flex-direction: column;
    padding-top: 7em;
}



.aboutimg img {
    width: 25%;
    height: auto;

    /* max-width: 220px; */
}

/* @keyframes headerLogoAnimation {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
} */

/* @keyframes headerLogoAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
       
    }

    100% {
        opacity: 1;
        transform: translateY(0);
       
    }
} */

.aboutimg {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    margin-top: 2em;
    /* Fade-up animation */
    /* opacity: 0; */
    /* animation: fadeUp 5s ease-out forwards; */
}


.about {
    width: 80%;
    padding: 1.2em;
    color: #ffffff;
    /* width: 50%; */
    /* text-align: left; */
    margin: auto;
    /* Fade-up animation */
    /* opacity: 0; */
    /* animation: fadeUp 4s ease-out forwards; */


}

/* Fade-up animation */
@keyframes fadeUp {
    0% {
        opacity: 0;

    }



    50% {
        opacity: 0.5;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;

    }
}


.about p {

    font-size: 20px;

}





/* About Us CSS End */


/* footer section start */
.footer {
    /* margin-top: 20px; */

    background-color: #fec400;
    padding-top: 10px;
    color: #011d8a;

    /* border-top: 2px solid white; */
}


footer p,
a {
    font-size: 0.9em;

}




.footer-top {
    display: flex;
    justify-content: space-between;

    /* gap: 20px; */
    padding-top: 10px;
    align-items: center;
    width: 94%;
    margin: 0 auto;
}

.footer .copyright,
.shieldField {
    display: flex;
    gap: 10px;
    /* align-items: center;
    justify-content: center; */
}

.footer .shieldImg {
    width: 44px;
}

.footer .copyright img {
    width: 1.8em;
    vertical-align: baseline;
}

.instagram{
    margin-top: 2px;
}
.footer .legal {
    margin: auto;
    color: #011d8a !important;

}

.footer .followUs {
    margin: auto;
    color: #011d8a !important;
     
}

.footer .footer-bottom {
    background-color: #fec400;
    /* color: #011d8a; */
    /* display: flex;
    justify-content: center; */
    margin-top: 5px;
    padding-bottom: 20px;
}


.footer .privacy {
    display: flex;
    justify-content: center;
    gap: 35px;
    text-transform: uppercase;
}

.footer .privacy a {
    text-decoration: none;
    color: #011d8a !important;
    /* position: relative;
    display: inline-block; */
}


/* .footer .footer-top .privacy p {
    margin: 0px;
} */





/************ Footer Section end here *********/


/*********** Responsive Design *****************/





/******** Medium Devices (Tablets in Landscape, Small Laptops) **********/

@media (max-width: 1366px) {

    /*.section {
        background-position: right top;
    }*/

    .dropdown-menu {
        position: absolute !important;
    }

    .aboutSection {
        width: 70%;
    }

}


@media (max-width: 992px) {

    .section-expanded {
        padding-top: 190px;
    }

    .navbar .hamburgerMenu {
        display: block;
        margin-top: 15px;
        margin-right: 0px;
    }

    .navbar {


        height: 110px;

        align-items: start;

    }

    .navbarNav {
        opacity: 0;

        margin-right: auto;
        margin-left: inherit;
        transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
        margin-top: 60px;

        visibility: hidden;
        pointer-events: none;
        transform: translateY(-210px);
    }


    .navbarNav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0px);
        /* Enable clicks when visible */

    }

    /* #filmsSubmenu {
        display: block;

    } */


    .navbar-expand-lg .navbar-nav .nav-link {
        margin-right: 0px;
        margin-left: 10px;
        padding: 0px;
    }

    .navbar-background.active {
        height: 300px;
        clip-path: polygon(0 0, 100% 0, 100% 295px, 50% 275px, 0 295px);
    }

    .navbar-border.active {
        height: 310px;
        clip-path: polygon(0 0, 100% 0, 100% 310px, 50% 290px, 0 310px);
    }



    .dropdown-menu {
        position: absolute !important;
        margin-left: 23px;
    }

    .aboutimg {
        height: auto;
        width: 60%;
        margin: auto;
    }



    .aboutSection {
        width: 100%;
        display: flex;
        justify-content: center;

    }

    .aboutimg img {
        width: 30%;
    }


    .about p {
        font-size: 18px;
    }


}






/******* 768 width  *******/
@media (max-width: 768px) {
    .about p {
        font-size: 16px;
    }

    /* #filmsSubmenu {
        display: block;

    } */


    .footer-top{
        flex-direction: column;
        gap: 5px;
    }
    .footer .shieldImg{
        width: 35px;
    }
    
    .footer .footer-bottom {
        margin-top: 10px;
        /* flex-direction: column;
        align-items: center; */
    }

    .footer .privacy{
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }


}

/************** Mobile Phone Devices ************/
@media (max-width: 480px) {

    /* .section-expanded {
        padding-top: 190px;
    } */

    /*.section {
        margin-top: 2em;
    }*/

    .background-container {
        background: none;
        /* Removes background */
    }

    .background-container::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background-image: url('../images/home/home-page-bg-mobile.jpg');
        background-size: cover;
        background-position: center;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        /* Places it behind content */
    }

    .aboutimg img {
        width: 50%;
    }

    .about {
        width: 95%;
    }

    .about p {
        font-size: 14px;
    }
    /* #filmsSubmenu {
        display: block;

    } */



    .navbar-background {
        clip-path: polygon(0 0, 100% 0, 100% 90px, 50% 70px, 0 90px);
    }

    .navbar-background.active {
        height: 300px;
        clip-path: polygon(0 0, 100% 0, 100% 295px, 50% 282px, 0 295px);
    }

    .navbar-border {
        clip-path: polygon(0 0, 100% 0, 100% 100px, 50% 80px, 0 100px);
    }

    .navbar-border.active {
        height: 310px;
        clip-path: polygon(0 0, 100% 0, 100% 300px, 50% 290px, 0 300px);
    }

    .bar1,
    .bar2,
    .bar3 {
        width: 30px;
        height: 3px;
        border-radius: 8px;
    }

    .change .bar3 {
        transform: translate(0, -8px) rotate(45deg);
    }

    .navbar-nav {
        flex-direction: column;
    }

    .navbar {

        height: 80px;

        /* align-items: start; */

    }

    .navbar-brand {
        width: 55px;
    }

    .navbar .hamburgerMenu {
        margin-top: 5px;
        margin-right: 0px
    }




    /******* Footer Section  *******/

    .footer-top{
        flex-direction: column;
        gap: 5px;
    }
    .footer .shieldImg{
        width: 35px;
    }
    
    .footer .footer-bottom {
        margin-top: 10px;
        /* flex-direction: column;
        align-items: center; */
    }

    .footer .privacy{
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .footer p,a {
        font-size: 0.7em;
    }

    /* .footer  .legal {
        margin-top: 1px;
        font-size: 0.6em;
    } */

   


}


/* Media query for hamburger for mobile only */
@media (min-width: 992px) {
    .navbar .hamburgerMenu {
        display: none;
    }

    .navbarNav {
        margin-left: auto;

        gap: 20px;
        opacity: 1;
        /* Initially hide the menu */

        /* transform: translateY(-100px); */

        /* Slightly move the menu up */
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

}

/* @media screen and (max-width: 450px),
screen and (max-height: 310px) and (orientation:landscape) {
    #mobile_rotate {
        display: none;
    }
} */


/* @media only screen and (max-width: 767px) and (orientation: landscape),
screen and (max-device-height: 450px) and (min-device-width: 740px) and (orientation: landscape),
screen and (device-width: 414px) and (device-height: 896px) and (orientation: landscape),
screen and (max-device-width: 500px) and (max-device-height: 1023px) and (orientation: landscape),
screen and (max-height:450px) and (orientation: landscape),
screen and (max-height: 500px) and (max-width: 1023px) and (orientation: landscape) {
    body {
        overflow: hidden !important;
        background: #000000;
    }

    #mobile_rotate {
        width: 100%;
        height: 100%;
        background-color: #fff;
        background-image: url("../images/rotate_device.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 8999;
        display: block;
    }
} */

.noScroll {
    overflow: hidden !important;
}

#mobile_rotate {
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-image: url("../images/rotate_device.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8999;
    display: none;
}