/*==================================
COMMON INNER PAGE HERO
==================================*/

.inner-page-hero{
    background:linear-gradient(
        135deg,
        #0A2E6D 0%,
        #123f92 100%
    );

    padding:140px 0 120px;

    position:relative;

    overflow:hidden;
}

/* Left Circle */

.inner-page-hero::before{
    content:'';

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-180px;
    left:-180px;
}

/* Right Circle */

.inner-page-hero::after{
    content:'';

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    bottom:-150px;
    right:-120px;
}

/* Hero Content */

.inner-page-content{
    max-width:900px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

/* Hero Badge */

.inner-page-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:rgba(255,255,255,.12);

    color:#fff;

    padding:12px 24px;

    border-radius:50px;

    margin-bottom:25px;

    backdrop-filter:blur(10px);

    font-size:15px;

    font-weight:500;
}

.inner-page-badge i{
    color:#ff7a00;
}

/* Hero Heading */

.inner-page-hero h1{
    font-family:'Playfair Display', serif;

    font-size:72px;

    font-weight:700;

    line-height:1.1;

    color:#fff;

    margin-bottom:25px;
}

.inner-page-hero h1 span{
    color:#ff7a00;
}

/* Orange Divider */

.inner-page-hero h1::after{
    content:'';

    display:block;

    width:100px;

    height:4px;

    background:#ff7a00;

    margin:25px auto 0;

    border-radius:50px;
}

/* Hero Description */

.inner-page-hero p{
    max-width:750px;

    margin:auto;

    color:rgba(255,255,255,.85);

    font-size:18px;

    line-height:1.9;
}

/*==================================
TABLET
==================================*/

@media(max-width:991px){

    .inner-page-hero{
        padding:120px 0 100px;
    }

    .inner-page-hero h1{
        font-size:56px;
    }

}

/*==================================
MOBILE
==================================*/

@media(max-width:768px){

    .inner-page-hero{
        padding:90px 0 80px;
    }

    .inner-page-hero h1{
        font-size:40px;
    }

    .inner-page-hero p{
        font-size:16px;
    }

    .inner-page-badge{
        font-size:14px;
        padding:10px 20px;
    }

}
/*==================================
GALLERY INTRO SECTION
==================================*/

.gallery-intro{
    padding:100px 0 50px;
}

.section-desc{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
    line-height:1.8;
}


/*==================================
GALLERY GRID SECTION
==================================*/

.gallery-grid{
    padding-bottom:100px;
}

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    cursor:pointer;

    background:#fff;
}

.gallery-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;
}

.gallery-card:hover img{

    transform:scale(1.08);
}

.gallery-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        to top,
        rgba(10,46,109,.75),
        transparent
    );

    opacity:0;

    transition:.4s;

    z-index:1;
}

.gallery-card:hover::before{

    opacity:1;
}


/*==================================
FACILITIES SECTION
==================================*/

.facilities-section{

    background:#f8f9fc;

    padding:100px 0;
}

.facility-card{

    background:#fff;

    padding:40px 25px;

    border-radius:25px;

    text-align:center;

    height:100%;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;
}

.facility-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#ff7a00;

    transform:scaleX(0);

    transition:.4s;
}

.facility-card:hover::before{

    transform:scaleX(1);
}

.facility-card:hover{

    background:#0A2E6D;

    transform:translateY(-10px);
}

.facility-card i{

    font-size:45px;

    color:#ff7a00;

    margin-bottom:20px;
}

.facility-card h5{

    color:#0A2E6D;

    transition:.3s;

    margin-bottom:0;
}

.facility-card:hover h5{

    color:#fff;
}


/*==================================
GALLERY CTA SECTION
==================================*/

.gallery-cta{

    padding:100px 0;
}

.cta-box{

    background:linear-gradient(
        135deg,
        #0A2E6D,
        #123f92
    );

    padding:80px 40px;

    border-radius:35px;

    text-align:center;

    color:#fff;

    position:relative;

    overflow:hidden;
}

.cta-box::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-120px;
    right:-100px;
}

.cta-box h2{

    font-size:48px;

    margin-bottom:20px;

    position:relative;

    z-index:2;
}

.cta-box p{

    color:rgba(255,255,255,.85);

    position:relative;

    z-index:2;
}

.cta-btn{

    display:inline-block;

    margin-top:25px;

    background:#ff7a00;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    position:relative;

    z-index:2;

    transition:.3s;
}

.cta-btn:hover{

    background:#fff;

    color:#0A2E6D;
}


/*==================================
MOBILE RESPONSIVE
==================================*/

@media(max-width:768px){

    .gallery-card img{
        height:250px;
    }

    .cta-box{
        padding:50px 25px;
    }

    .cta-box h2{
        font-size:32px;
    }

}


/*==================================
FACILITIES SECTION
==================================*/

.facilities-section{

    background:#f8f9fc;

    padding:100px 0;
}

.facility-card{

    background:#fff;

    padding:40px 25px;

    text-align:center;

    border-radius:25px;

    height:100%;

    transition:.4s;

    position:relative;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.facility-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#ff7a00;

    transform:scaleX(0);

    transition:.4s;
}

.facility-card:hover::before{

    transform:scaleX(1);
}

.facility-card:hover{

    background:#0A2E6D;

    transform:translateY(-10px);
}

.facility-card i{

    font-size:45px;

    color:#ff7a00;

    margin-bottom:20px;
}

.facility-card h5{

    color:#0A2E6D;

    transition:.3s;

    margin-bottom:0;
}

.facility-card:hover h5{

    color:#fff;
}


/*==================================
GALLERY CTA SECTION
==================================*/

.gallery-cta{

    padding:100px 0;
}

.cta-box{

    background:linear-gradient(
        135deg,
        #0A2E6D,
        #123f92
    );

    border-radius:35px;

    padding:80px 40px;

    text-align:center;

    color:#fff;

    position:relative;

    overflow:hidden;
}

.cta-box::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-120px;
    right:-100px;
}

.cta-box h2{

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;

    position:relative;

    z-index:2;
}

.cta-box p{

    color:rgba(255,255,255,.85);

    font-size:18px;

    position:relative;

    z-index:2;
}

.cta-btn{

    display:inline-block;

    margin-top:25px;

    background:#ff7a00;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

    position:relative;

    z-index:2;
}

.cta-btn:hover{

    background:#fff;

    color:#0A2E6D;
}


/*==================================
MOBILE RESPONSIVE
==================================*/

@media(max-width:768px){

    .gallery-card img{

        height:250px;
    }

    .cta-box{

        padding:50px 25px;
    }

    .cta-box h2{

        font-size:32px;
    }

    .cta-box p{

        font-size:16px;
    }

}