﻿/*======================================
GALLERY HERO
=======================================*/

.gallery-hero{

padding:120px 0;

background:

linear-gradient(rgba(8,25,63,.90),

rgba(8,25,63,.90)),

url('../images/gallery/gallery-bg.jpg');

background-size:cover;

background-position:center;

}

.gallery-hero h1{

color:#fff;

font-size:62px;

font-weight:800;

}

.gallery-hero h1 span{

display:block;

color:#F97316;

}

.gallery-hero p{

color:#ddd;

font-size:18px;

line-height:1.9;

margin:25px 0;

}

.gallery-filter{

padding:30px 0;

background:#fff;

}

.gallery-filter button{

padding:14px 30px;

margin:8px;

border:none;

border-radius:35px;

background:#EEF5FF;

color:#0B4F9C;

font-weight:600;

transition:.4s;

}

.gallery-filter button:hover,

.gallery-filter button.active{

background:#F97316;

color:#fff;

}

/*====================================
PREMIUM GALLERY
====================================*/

.premium-gallery{

    padding:100px 0;

    background:#F8FBFF;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;

}

.gallery-item.large img{

    height:500px;

}

.gallery-item.wide img{

    height:500px;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    top:0;

    background:linear-gradient(

    rgba(11,79,156,.15),

    rgba(11,79,156,.92));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    align-items:center;

    opacity:0;

    transition:.5s;

    padding:35px;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay h4{

    color:#fff;

    font-size:28px;

    margin-bottom:20px;

    font-weight:700;

}

.gallery-overlay a{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#F97316;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:22px;

    transition:.4s;

}

.gallery-overlay a:hover{

    background:#fff;

    color:#0B4F9C;

}

/*======================================
VIDEO GALLERY
=======================================*/

.video-gallery{

    padding:110px 0;

    background:#ffffff;

}

.video-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

    transition:.4s;

}

.video-card:hover{

    transform:translateY(-10px);

}

.video-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.video-card:hover img{

    transform:scale(1.08);

}

.video-play{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:90px;

    height:90px;

    border-radius:50%;

    background:#F97316;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:30px;

    transition:.4s;

}

.video-play:hover{

    background:#fff;

    color:#0B4F9C;

    transform:translate(-50%,-50%) scale(1.1);

}

.video-content{

    background:#fff;

    padding:25px;

}

.video-content h4{

    color:#0B4F9C;

    font-weight:700;

    margin-bottom:10px;

}

.video-content p{

    color:#666;

    line-height:1.7;

}

/*====================================
STUDENT LIFE
====================================*/

.student-life{

    padding:110px 0;

    background:#F8FBFF;

}

.life-card{

    background:#fff;

    padding:45px 35px;

    text-align:center;

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.life-card:hover{

    transform:translateY(-12px);

    background:#0B4F9C;

}

.life-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#EEF5FF;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    transition:.4s;

}

.life-icon i{

    font-size:40px;

    color:#F97316;

}

.life-card h4{

    color:#0B4F9C;

    font-weight:700;

    margin-bottom:18px;

}

.life-card p{

    color:#666;

    line-height:1.9;

}

.life-card:hover h4,

.life-card:hover p{

    color:#fff;

}

.life-card:hover .life-icon{

    background:#fff;

}

.life-card:hover .life-icon i{

    color:#0B4F9C;

}

/*====================================
FINAL CTA
====================================*/

.gallery-cta{

    padding:110px 0;

    background:#ffffff;

}

.cta-wrapper{

    background:linear-gradient(135deg,#0B4F9C,#1B5DBF,#F97316);

    border-radius:30px;

    padding:70px;

    color:#fff;

    position:relative;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

/* Decorative Circles */

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

    top:-120px;

    right:-120px;

}

.cta-wrapper::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    left:-80px;

    bottom:-80px;

}

.cta-badge{

    display:inline-block;

    background:#fff;

    color:#F97316;

    padding:10px 25px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}

.cta-wrapper h2{

    font-size:48px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:20px;

}

.cta-wrapper h2 span{

    color:#FFD54F;

}

.cta-wrapper p{

    color:#f1f1f1;

    line-height:1.9;

    font-size:17px;

}

.cta-features{

    margin-top:30px;

}

.cta-features span{

    display:inline-block;

    margin:12px 20px 12px 0;

    font-weight:600;

}

.cta-features i{

    color:#FFD54F;

    margin-right:8px;

}

/* Right Box */

.admission-box{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.2);

    border-radius:25px;

    padding:40px 30px;

    text-align:center;

}

.admission-box i.fa-user-graduate{

    width:90px;

    height:90px;

    line-height:90px;

    border-radius:50%;

    background:#fff;

    color:#F97316;

    font-size:40px;

    margin-bottom:20px;

}

.admission-box h3{

    color:#fff;

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

}

.admission-box p{

    color:#f8f8f8;

    margin-bottom:30px;

}

.btn-admission,

.btn-call,

.btn-whatsapp{

    display:block;

    text-decoration:none;

    padding:15px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:15px;

    transition:.4s;

}

.btn-admission{

    background:#F97316;

    color:#fff;

}

.btn-admission:hover{

    background:#fff;

    color:#0B4F9C;

}

.btn-call{

    border:2px solid #fff;

    color:#fff;

}

.btn-call:hover{

    background:#fff;

    color:#0B4F9C;

}

.btn-whatsapp{

    background:#25D366;

    color:#fff;

}

.btn-whatsapp:hover{

    background:#fff;

    color:#25D366;

}

/* Responsive */

@media(max-width:991px){

.cta-wrapper{

padding:40px;

text-align:center;

}

.cta-wrapper h2{

font-size:34px;

}

.admission-box{

margin-top:40px;

}

}

    /*==========================================
GALLERY STATISTICS
==========================================*/

.gallery-stats {

    padding: 90px 0;

    background: linear-gradient(135deg,#0B4F9C,#173B8F);

    position: relative;

    overflow: hidden;

}

/* Decorative Shapes */

.gallery-stats::before{

    content:'';

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

    top:-120px;

    left:-120px;

}

.gallery-stats::after{

    content:'';

    position:absolute;

    width:250px;

    height:250px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    right:-100px;

    bottom:-100px;

}

.gallery-stat{

    text-align:center;

    padding:40px 25px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:25px;

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.gallery-stat:hover{

    transform:translateY(-12px);

    background:#ffffff;

}

.gallery-stat i{

    width:90px;

    height:90px;

    line-height:90px;

    border-radius:50%;

    background:#ffffff;

    color:#F97316;

    font-size:38px;

    margin-bottom:25px;

    transition:.4s;

}

.gallery-stat h2{

    font-size:50px;

    font-weight:800;

    color:#ffffff;

    margin-bottom:10px;

    transition:.4s;

}

.gallery-stat p{

    color:#f2f2f2;

    font-size:18px;

    font-weight:500;

    margin:0;

    transition:.4s;

}

.gallery-stat:hover h2{

    color:#0B4F9C;

}

.gallery-stat:hover p{

    color:#555;

}

.gallery-stat:hover i{

    background:#F97316;

    color:#fff;

    transform:rotate(10deg) scale(1.08);

}

/* Floating Effect */

.gallery-stat::before{

    content:"";

    position:absolute;

    width:150px;

    height:150px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

    top:-60px;

    right:-60px;

}

/* Responsive */

@media(max-width:991px){

.gallery-stat{

margin-bottom:25px;

}

}

@media(max-width:576px){

.gallery-stat{

padding:30px 20px;

}

.gallery-stat h2{

font-size:38px;

}

.gallery-stat i{

width:75px;

height:75px;

line-height:75px;

font-size:30px;

}

}