*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#222;
}

img{
    max-width:100%;
}

section{
    padding:80px 0;
}

.container{
    max-width:1200px;
}

a{
    text-decoration:none;
}

.btn-primary{
    background:#4567d8;
    border:none;
    padding:12px 30px;
    border-radius:30px;
}

.btn-primary:hover{
    background:#2e55d4;
}
/*==========================
HEADER
==========================*/

.header-area{
    background:#ffffff;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.3s;
    z-index:999;
}

.logo{
    height:55px;
}

.navbar{
    padding:18px 0;
}

.navbar-nav .nav-item{
    margin:0 10px;
}

.navbar-nav .nav-link{
    color:#23395d;
    font-size:15px;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#4567d8;
}

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:#4567d8;
    bottom:-5px;
    left:0;
    transition:.4s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width:100%;
}

.btn-contact{
    background:#4567d8;
    color:#fff;
    border-radius:30px;
    padding:12px 28px;
    font-weight:500;
    transition:.3s;
}

.btn-contact:hover{
    background:#2f55d4;
    color:#fff;
    transform:translateY(-2px);
}

.navbar-toggler{
    font-size:28px;
    color:#4567d8;
}

@media(max-width:991px){

    .navbar-collapse{
        background:#fff;
        padding:25px;
        margin-top:15px;
        border-radius:12px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .navbar-nav{
        margin-bottom:20px;
    }

    .navbar-nav .nav-item{
        margin:10px 0;
    }

    .btn-contact{
        width:100%;
        text-align:center;
    }

}
/*==================================
Hero Section
==================================*/

.hero-section{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:

   linear-gradient(rgb(49 49 52 / 51%), rgb(38 38 39 / 63%)),

    url('../images/hero-bg.jpg');

    background-size:cover;

    background-position:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

  

}

.hero-content{

    position:relative;

    z-index:2;

}

.hero-subtitle{

    display:inline-block;

    padding:8px 20px;

    background:#e9efff;

    color:#4567d8;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

    letter-spacing:1px;

}

.hero-content h1{

    font-size:60px;

    line-height:1.2;

    font-weight:700;

        color: #ffffff;

    margin-bottom:25px;

}

.hero-content p{

    font-size:18px;
    color: #ffffff;

    max-width:550px;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-btns{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary-custom{

    background:#4567d8;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-primary-custom:hover{

    background:#274bbf;

    color:#fff;

    transform:translateY(-3px);

}

.btn-outline-custom{

    border:2px solid #4567d8;

    color:#4567d8;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-outline-custom:hover{

    background:#4567d8;

    color:#fff;

}

.hero-image{

    position:relative;

    z-index:2;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=====================
Responsive
======================*/

@media(max-width:991px){

.hero-section{

padding:120px 0 80px;

text-align:center;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

margin:auto;

margin-bottom:35px;

}

.hero-btns{

justify-content:center;

margin-bottom:40px;

}

.hero-image{

margin-top:20px;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:34px;

}

.hero-content p{

font-size:16px;

}

.btn-primary-custom,

.btn-outline-custom{

width:100%;

}

}
/*====================================
About Section
====================================*/

.about-section{
    padding:100px 0;
    background:#fff;
}

.section-title span{
    color:#4567d8;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#1d3557;
    margin:15px 0;
}

.section-title p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/* Card */

.service-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;
}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.service-image{

    overflow:hidden;

}

.service-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.service-card:hover .service-image img{

    transform:scale(1.08);

}

.service-content{

    padding:30px;

    text-align:center;

}

.service-icon{

    width:70px;

    height:70px;

    background:#eef3ff;

    color:#4567d8;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:28px;

    margin-bottom:20px;

}

.service-content h3{

    font-size:28px;

    font-weight:600;

    margin-bottom:15px;

    color:#1d3557;

}

.service-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.learn-btn{

    color:#4567d8;

    font-weight:600;

    transition:.3s;

}

.learn-btn i{

    margin-left:8px;

    transition:.3s;

}

.learn-btn:hover{

    color:#274bbf;

}

.learn-btn:hover i{

    margin-left:15px;

}

/*==================================
Why Choose Us
==================================*/

.why-us{
    background:#f6f8fd;
    padding:100px 0;
}

.feature-box{
    background:#fff;
    padding:45px 30px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
    height:100%;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border-top:4px solid transparent;
}

.feature-box:hover{
    transform:translateY(-10px);
    border-top:4px solid #4567d8;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.feature-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#eef3ff;
    color:#4567d8;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:36px;
    transition:.4s;
}

.feature-box:hover .feature-icon{
    background:#4567d8;
    color:#fff;
    transform:rotateY(180deg);
}

.feature-box h3{
    font-size:24px;
    font-weight:600;
    margin-bottom:18px;
    color:#1d3557;
}

.feature-box p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/*====================================
CTA Section
====================================*/

.cta-section{

    position:relative;

    padding:100px 0;

    background:

    linear-gradient(rgba(22,35,67,.92),

    rgba(22,35,67,.92)),

    url('../images/cta-bg.jpg');

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(135deg,

    rgba(39,76,190,.2),

    transparent);

}

.cta-content{

    position:relative;

    z-index:2;

    color:#fff;

}

.cta-content span{

    display:inline-block;

    background:rgba(255,255,255,.12);

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:20px;

}

.cta-content h2{

    font-size:46px;

    font-weight:700;

    margin-bottom:20px;

}

.cta-content p{

    font-size:17px;

    line-height:1.8;

    color:#d8d8d8;

}

.cta-list{

    list-style:none;

    padding:0;

}

.cta-list li{

    margin-bottom:18px;

    font-size:17px;

}

.cta-list i{

    color:#6ec6ff;

    margin-right:10px;

}

.cta-btn{

    background:#ffffff;

    color:#274bbf;

    padding:15px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.cta-btn:hover{

    background:#4567d8;

    color:#fff;

}

.cta-image{

    position:relative;

    z-index:2;

    text-align:center;

}

.cta-image img{

    max-width:450px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

/* Responsive */

@media(max-width:991px){

.cta-section{

text-align:center;

}

.cta-content{

margin-bottom:50px;

}

.cta-content h2{

font-size:36px;

}

.cta-list{

margin-bottom:0;

}

}
/*==================================
Footer
==================================*/

.footer{

    background:#0d1b3d;

    color:#fff;

    padding:80px 0 25px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-text{

    color:#c9d0e4;

    line-height:1.9;

    margin-bottom:25px;

}

.footer h4{

    font-size:22px;

    margin-bottom:25px;

    position:relative;

}

.footer h4::after{

    content:"";

    width:45px;

    height:3px;

    background:#4a78d3;

    position:absolute;

    left:0;

    bottom:-10px;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:15px;

}

.footer ul li a{

    color:#c9d0e4;

    transition:.3s;

}

.footer ul li a:hover{

    color:#fff;

    padding-left:8px;

}

.contact-list li{

    color:#c9d0e4;

    line-height:1.8;

}

.contact-list i{

    color:#4a78d3;

    width:25px;

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#1a2d63;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.social-links a:hover{

    background:#4a78d3;

    transform:translateY(-5px);

}

.footer hr{

    margin:50px 0 25px;

    border-color:rgba(255,255,255,.15);

}

.copyright{

    text-align:center;

}

.copyright p{

    margin:0;

    color:#c9d0e4;

}

/*==================================
Back To Top
==================================*/

#topBtn{

    position:fixed;

    bottom:25px;

    right:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#4a78d3;

    color:#fff;

    display:none;

    cursor:pointer;

    z-index:999;

    transition:.3s;

}

#topBtn:hover{

    transform:translateY(-5px);

}

.page-banner{

    background:linear-gradient(rgba(20,35,65,.85),rgba(20,35,65,.85)),
    url('../images/banner.jpg');

    background-size:cover;

    background-position:center;

    padding:120px 0;

    color:#fff;

}

.page-banner h1{

    font-size:52px;

    font-weight:700;

}

.page-banner nav{

    margin-top:15px;

}

.page-banner nav a{

    color:#fff;

}

.page-banner span{

    margin:0 10px;

}
.company-story{
    padding:100px 0;
}

.section-tag{
    display:inline-block;
    background:#4567d8;
    color:#ffff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.company-story h2{
    font-size:42px;
    font-weight:700;
    color:#1d3557;
    margin-bottom:25px;
}

.company-story p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}
.mission-box{

background:#fff;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.3s;

height:100%;

}

.mission-box:hover{

transform:translateY(-8px);

}

.mission-box i{

font-size:55px;

color:#4567d8;

margin-bottom:20px;

}

.mission-box h3{

margin-bottom:20px;

font-weight:700;

}

.mission-box p{

color:#666;

line-height:1.8;

}
.counter-section{

padding:90px 0;

background:#4567d8;

color:#fff;

}

.counter-section h2{

font-size:55px;

font-weight:700;

}

.counter-section p{

font-size:18px;

margin-top:10px;

}
/*==================================
Team Section
===================================*/

.team-section{
    padding:100px 0;
    background:#fff;
}

.team-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-image{
    position:relative;
    overflow:hidden;
}

.team-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.4s;
}

.team-card:hover .team-image img{
    transform:scale(1.08);
}

.team-social{
    position:absolute;
    bottom:-60px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    transition:.4s;
}

.team-card:hover .team-social{
    bottom:20px;
}

.team-social a{
    width:40px;
    height:40px;
    background:#4567d8;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.team-social a:hover{
    background:#1d3557;
}

.team-content{
    padding:25px;
    text-align:center;
}

.team-content h4{
    margin-bottom:8px;
    font-weight:700;
    color:#1d3557;
}

.team-content span{
    color:#777;
    font-size:15px;
}
/*=================================
Core Values
==================================*/

.values-section{
    padding:100px 0;
    background:#f7f9fc;
}

.value-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    height:100%;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.value-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

.value-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    background:#eef3ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#4567d8;
    transition:.35s;
}

.value-card:hover .value-icon{
    background:#4567d8;
    color:#fff;
    transform:rotateY(180deg);
}

.value-card h4{
    font-size:24px;
    font-weight:700;
    color:#1d3557;
    margin-bottom:15px;
}

.value-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}
/*=================================
Timeline
==================================*/

.timeline-section{
    padding:100px 0;
    background:#fff;
}

.timeline{
    position:relative;
    margin-top:60px;
}

.timeline::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:#4567d8;
    transform:translateX(-50%);
}

.timeline-item{
    width:50%;
    padding:20px 40px;
    position:relative;
}

.timeline-item.left{
    left:0;
    text-align:right;
}

.timeline-item.right{
    left:50%;
}

.timeline-content{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    position:relative;
}

.timeline-content::before{
    content:'';
    position:absolute;
    top:35px;
    width:18px;
    height:18px;
    background:#4567d8;
    border-radius:50%;
}

.timeline-item.left .timeline-content::before{
    right:-50px;
}

.timeline-item.right .timeline-content::before{
    left:-50px;
}

.year{
    display:inline-block;
    background:#4567d8;
    color:#fff;
    padding:6px 15px;
    border-radius:30px;
    margin-bottom:15px;
    font-weight:600;
}

.timeline-content h4{
    color:#1d3557;
    font-weight:700;
    margin-bottom:15px;
}

.timeline-content p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

.timeline::before{
    left:20px;
}

.timeline-item{
    width:100%;
    left:0 !important;
    padding-left:60px;
    padding-right:0;
    text-align:left;
}

.timeline-item.left .timeline-content::before,
.timeline-item.right .timeline-content::before{
    left:-48px;
}

}


/*==================================
Film Hero
==================================*/

.film-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(rgb(6 15 35 / 0%), rgba(6, 15, 35, .82)),
    url('../images/film/hero-bg.jpg');

    background-size:cover;

    background-position:center;

}

.film-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(69,103,216,.35),
    transparent 40%);

}

.film-content{

    position:relative;

    z-index:2;

    color:#fff;

}

.film-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.12);

    padding:10px 20px;

    border-radius:50px;

    font-size:15px;

    letter-spacing:1px;

    margin-bottom:25px;

}

.film-content h1{

    font-size:68px;

    font-weight:700;

    line-height:1.1;

    margin-bottom:25px;

}

.film-content p{

    font-size:18px;

    color:#ddd;

    line-height:1.9;

    max-width:600px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.film-btn{

    background:#4567d8;

    color:#fff;

    padding:15px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.film-btn:hover{

    background:#fff;

    color:#4567d8;

}

.film-outline-btn{

    border:2px solid #fff;

    color:#fff;

    padding:15px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.film-outline-btn:hover{

    background:#fff;

    color:#222;

}

.film-image{

    text-align:center;

    position:relative;

    z-index:2;

}

.film-image img{

    max-width:520px;

    animation:floatFilm 5s ease-in-out infinite;

    filter:drop-shadow(0 20px 40px rgba(0,0,0,.4));

}

@keyframes floatFilm{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}
/*==================================
Responsive
==================================*/

@media(max-width:991px){

    .film-hero{
    
    padding:140px 0 80px;
    
    text-align:center;
    
    }
    
    .film-content h1{
    
    font-size:48px;
    
    }
    
    .hero-buttons{
    
    justify-content:center;
    
    }
    
    .film-image{
    
    margin-top:50px;
    
    }
    
    }
    
    @media(max-width:576px){
    
    .film-content h1{
    
    font-size:36px;
    
    }
    
    .film-content p{
    
    font-size:16px;
    
    }
    
    .hero-buttons .btn{
    
    width:100%;
    
    }
    
    }

    /*==================================
About Film Division
===================================*/

.film-about{
    padding:100px 0;
    background:#fff;
}

.film-about-image{
    position:relative;
}

.film-about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.experience-box{
    position:absolute;
    right:-20px;
    bottom:30px;
    background:#4567d8;
    color:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    min-width:170px;
    box-shadow:0 15px 35px rgba(69,103,216,.35);
}

.experience-box h2{
    font-size:42px;
    font-weight:700;
    margin:0;
}

.experience-box span{
    font-size:15px;
}

.section-heading{
    font-size:44px;
    font-weight:700;
    color:#1d3557;
    margin:20px 0;
}

.section-description{
    color:#555;
}

.film-about p{
    color:#666;
    line-height:1.9;
}

.about-feature{
    display:flex;
    align-items:center;
    margin-bottom:18px;
    font-weight:600;
}

.about-feature i{
    color:#4567d8;
    margin-right:12px;
    font-size:20px;
}
/*==================================
Film Statistics
===================================*/

.film-stats{
    background:#0d1b3d;
    padding:80px 0;
}

.stat-box h2{
    color:#fff;
    font-size:50px;
    font-weight:700;
}

.stat-box p{
    color:#d8d8d8;
    margin-top:10px;
    font-size:17px;
}

@media(max-width:991px){

    .experience-box{
        position:static;
        margin-top:25px;
        display:inline-block;
    }

    .section-heading{
        font-size:34px;
    }

}
/*==================================
Film Services
===================================*/

.film-services{
    background:#f8f9fc;
    padding:100px 0;
}

.service-subtitle{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
    font-size:17px;
}

.film-service-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    height:100%;

    transition:.4s;

    border:1px solid #ececec;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.film-service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.service-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#4567d8;

    color:#fff;

    font-size:32px;

    margin-bottom:25px;

    transition:.3s;

}

.film-service-card:hover .service-icon{

    transform:rotate(360deg);

}

.film-service-card h4{

    font-size:24px;

    margin-bottom:18px;

    color:#1d3557;

    font-weight:700;

}

.film-service-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:768px){

    .film-service-card{
        padding:30px 25px;
    }

    .service-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

}
/*==================================
Why Choose Film
===================================*/

.why-film{

    padding:100px 0;

    background:#fff;

}

.why-film-image{

    position:relative;

}

.why-film-image img{

    border-radius:25px;

    width:100%;

}

.play-box{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:90px;

    height:90px;

    background:#4567d8;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    cursor:pointer;

    box-shadow:0 20px 40px rgba(69,103,216,.35);

    transition:.3s;

}

.play-box:hover{

    transform:translate(-50%,-50%) scale(1.1);

}

.why-feature{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:30px;

    padding-bottom:25px;

    border-bottom:1px solid #ececec;

}

.why-icon{

    width:65px;

    height:65px;

    min-width:65px;

    border-radius:15px;

    background:#4567d8;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:24px;

}

.why-feature h5{

    font-weight:700;

    color:#1d3557;

    margin-bottom:8px;

}

.why-feature p{

    color:#666;

    margin:0;

    line-height:1.8;

}

@media(max-width:991px){

.play-box{

width:75px;

height:75px;

font-size:24px;

}

.why-feature{

align-items:flex-start;

}

}
/*==================================
Production Process
===================================*/

.production-process{
    padding:100px 0;
    background:#f8f9fc;
}

.process-subtitle{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
}

.process-card{

    background:#fff;

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    height:100%;

    position:relative;

    transition:.35s;

    border:1px solid #e8e8e8;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.process-number{

    position:absolute;

    top:15px;

    right:20px;

    font-size:14px;

    font-weight:700;

    color:#4567d8;

}

.process-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#4567d8;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

    transition:.3s;

}

.process-card:hover .process-icon{

    transform:rotateY(180deg);

}

.process-card h5{

    font-weight:700;

    margin-bottom:15px;

    color:#1d3557;

}

.process-card p{

    color:#666;

    font-size:15px;

    line-height:1.8;

    margin:0;

}

@media(max-width:991px){

.process-card{

margin-bottom:20px;

}

}
/*==================================
Featured Projects
===================================*/

.featured-projects{
    background:#fff;
    padding:100px 0;
}

.project-subtitle{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    height:420px;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.project-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.project-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    background:linear-gradient(to top,
        rgba(0,0,0,.90),
        rgba(0,0,0,.15));

    color:#fff;

    transition:.4s;

}

.project-overlay span{

    display:inline-block;

    width:max-content;

    background:#4567d8;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:15px;

}

.project-overlay h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:12px;

}

.project-overlay p{

    color:#ddd;

    margin-bottom:20px;

    line-height:1.7;

}

.project-btn{

    display:inline-block;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.project-btn:hover{

    color:#6d8cff;

}

.project-card:hover img{

    transform:scale(1.12);

}

.project-card:hover .project-overlay{

    background:linear-gradient(to top,
        rgba(9,25,70,.92),
        rgba(9,25,70,.30));

}

@media(max-width:768px){

.project-card{

height:360px;

}

.project-overlay h4{

font-size:24px;

}

}

/*==================================
Film CTA
===================================*/

.film-cta{

    position:relative;

    padding:120px 0;

    background:
    linear-gradient(rgb(6 15 35 / 27%), rgb(6 15 35 / 68%)),
    url('../images/film/cta-bg.jpg');

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at center,
    rgba(69,103,216,.25),
    transparent 70%);

}

.film-cta .container{

    position:relative;

    z-index:2;

}

.film-cta h2{

    color:#fff;

    font-size:52px;

    font-weight:700;

    margin:25px 0;

}

.film-cta p{

    color:#d8d8d8;

    font-size:18px;

    line-height:1.9;

    max-width:760px;

    margin:auto;

}

.cta-buttons{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-primary{

    background:#4567d8;

    color:#fff;

    padding:16px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.cta-primary:hover{

    background:#fff;

    color:#4567d8;

}

.cta-outline{

    border:2px solid #fff;

    color:#fff;

    padding:16px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.cta-outline:hover{

    background:#fff;

    color:#111;

}

@media(max-width:768px){

.film-cta{

padding:80px 0;

}

.film-cta h2{

font-size:36px;

}

.film-cta p{

font-size:16px;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

.cta-buttons .btn{

width:100%;
max-width:320px;

}

}

.contact-banner{

    padding:160px 0 100px;

    background:
    linear-gradient(rgb(6 15 35 / 45%), rgb(6 15 35 / 51%)),
    url('../images/contact/contact.png');

    background-size:cover;

    background-position:center;

    color:#fff;

    text-align:center;

}

.contact-banner h1{

    font-size:60px;

    font-weight:700;

    margin:20px 0;

}

.contact-banner p{

    max-width:700px;

    margin:auto;

    color:#ddd;

    font-size:18px;

}
.contact-info{

    margin-top:-70px;

    position:relative;

    z-index:10;

}

.contact-card{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;

}

.contact-card:hover{

    transform:translateY(-10px);

}

.contact-card i{

    width:70px;

    height:70px;

    line-height:70px;

    border-radius:50%;

    background:#4567d8;

    color:#fff;

    font-size:28px;

    margin-bottom:20px;

}

.contact-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.contact-card p{

    color:#666;

    margin:0;

}

/*==================================
Contact Form
===================================*/

.contact-section{

    padding:100px 0;

    background:#f8f9fc;

}

.office-info{

    margin-top:40px;

}

.office-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.office-icon{

    width:65px;

    height:65px;

    background:#4567d8;

    color:#fff;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    min-width:65px;

}

.office-item h5{

    font-weight:700;

    margin-bottom:6px;

}

.office-item p{

    margin:0;

    color:#666;

    line-height:1.7;

}

.contact-form-box{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form-box h3{

    font-weight:700;

    color:#1d3557;

}

.contact-form-box .form-control,
.contact-form-box .form-select{

    height:58px;

    border-radius:12px;

    border:1px solid #ddd;

    padding:15px;

    box-shadow:none;

}

.contact-form-box textarea{

    height:auto !important;

    resize:none;

}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus{

    border-color:#4567d8;

    box-shadow:0 0 0 .15rem rgba(69,103,216,.15);

}

.contact-btn{

    background:#4567d8;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.contact-btn:hover{

    background:#1d3557;

    color:#fff;

}

@media(max-width:991px){

.contact-form-box{

margin-top:30px;

padding:30px;

}

}
/*==================================
FAQ & Map
===================================*/

.contact-faq{

    padding:100px 0;

    background:#fff;

}

.accordion-item{

    border:none;

    margin-bottom:18px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.accordion-button{

    font-weight:600;

    padding:22px;

    background:#fff;

    box-shadow:none !important;

}

.accordion-button:not(.collapsed){

    background:#4567d8;

    color:#fff;

}

.accordion-body{

    color:#666;

    line-height:1.8;

}

.map-box{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    height:100%;

    min-height:520px;

}

.map-box iframe{

    width:100%;

    height:100%;

    border:0;

}
/*==================================
Contact CTA
===================================*/

.contact-cta{

    position:relative;

    padding:120px 0;

    background:
    linear-gradient(rgba(8,20,55,.88),
    rgba(8,20,55,.88)),
    url('../images/contact/cta-bg.jpg');

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.cta-shape{

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(69,103,216,.15);

    top:-150px;

    right:-150px;

    filter:blur(50px);

}

.cta-content{

    position:relative;

    z-index:2;

}

.contact-cta h2{

    color:#fff;

    font-size:52px;

    font-weight:700;

    margin:25px 0;

}

.contact-cta p{

    color:#ddd;

    font-size:18px;

    line-height:1.9;

    max-width:760px;

    margin:auto;

}

.cta-btns{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary-custom{

    background:#4567d8;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-primary-custom:hover{

    background:#fff;

    color:#4567d8;

}

.btn-outline-light{

    border:2px solid #fff;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    transition:.35s;

}

.btn-outline-light:hover{

    background:#fff;

    color:#111;

}

@media(max-width:991px){

.contact-cta{

padding:90px 0;

}

.contact-cta h2{

font-size:38px;

}

.contact-cta p{

font-size:16px;

}

}

@media(max-width:576px){

.cta-btns{

flex-direction:column;

align-items:center;

}

.cta-btns .btn{

width:100%;

max-width:300px;

}

}


.event-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.event-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.event-image{

    position:relative;

    overflow:hidden;

}

.event-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.event-card:hover img{

    transform:scale(1.08);

}

.event-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:#ff3d57;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.event-body{

    padding:25px;

}

.event-body h4{

    font-size:24px;

    font-weight:700;

    color:#1d3557;

    margin-bottom:15px;

}

.rating{

    color:#ffc107;

    margin-bottom:20px;

}

.rating span{

    color:#777;

    margin-left:10px;

}

.event-meta{

    list-style:none;

    padding:0;

    margin:0 0 25px;

}

.event-meta li{

    margin-bottom:12px;

    color:#666;

}

.event-meta i{

    color:#ff3d57;

    width:22px;

}

.event-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid #eee;

    padding-top:20px;

}

.event-footer small{

    color:#888;

}

.event-footer h5{

    color:#ff3d57;

    font-size:28px;

    margin:0;

    font-weight:700;

}

.btn-book{

    background:#ff3d57;

    color:#fff;

    padding:12px 24px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-book:hover{

    background:#1d3557;

    color:#fff;

}
.event-banner{

    background:#fff;

}

.banner-img{

    height:520px;

    object-fit:cover;

    border-radius:20px;

}

.event-title{

    font-size:42px;

    font-weight:700;

    color:#1d1d1d;

}

.event-info p{

    margin-bottom:10px;

    color:#555;

}

.event-info i{

    width:24px;

    color:#ff3d57;

}

.ticket-card{

    background:#fff;

    padding:30px;

    border-radius:15px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    border:1px solid #eee;

}

.ticket-card h3{

    font-size:42px;

    font-weight:700;

    color:#ff3d57;

}

.ticket-card small{

    color:#888;

}

.btn-ticket{

    background:#ff5a1f;

    color:#fff;

    padding:12px;

    font-weight:600;

    border-radius:10px;

}

.btn-ticket:hover{

    background:#d94b18;

    color:#fff;

}

.section-title{

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

}

.overview-text{

    line-height:1.9;

    color:#666;

}

@media(max-width:991px){

.banner-img{

    height:300px;

}

.ticket-card{

    margin-top:30px;

}

.event-title{

    font-size:32px;

}

}
/*==================================
Good To Know
==================================*/

.good-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.3s;

    height:100%;

}

.good-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.good-icon{

    width:70px;

    height:70px;

    background:#fff2f0;

    color:#ff5a1f;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:20px;

}

.good-card h5{

    font-weight:700;

}

.good-card p{

    color:#666;

    margin-bottom:0;

}


/*==================================
Gallery
==================================*/

.gallery-img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:18px;

    transition:.35s;

    cursor:pointer;

}

.gallery-img:hover{

    transform:scale(1.05);

}


/*==================================
Venue
==================================*/

.venue-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.venue-image{

    width:100%;

    height:350px;

    object-fit:cover;

}

.venue-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.venue-card p{

    color:#666;

}

.venue-list{

    list-style:none;

    padding:0;

    margin:25px 0;

}

.venue-list li{

    margin-bottom:15px;

}

.venue-list i{

    color:#ff5a1f;

    width:28px;

}


.ticket-sticky{
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.ticket-card{
    background:#fff;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}
.ticket-option{

    border:2px solid #4567d8;

    border-radius:15px;

    padding:25px;

}

.quantity-box{

    display:flex;

    align-items:center;

    gap:10px;

}

.qty-btn{

    width:35px;

    height:35px;

    border:none;

    background:#4567d8;

    color:#fff;

    border-radius:8px;

    font-size:18px;

}

.quantity-box input{

    width:45px;

    border:none;

    text-align:center;

    font-weight:700;

    background:transparent;

}

.modal-xl{

    max-width:1100px;

}