/* ===========================
RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/*==================================
TOP BAR
==================================*/

.top-bar{
    background:#002147;
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-bar i{
    color:#FFD700;
    margin-right:8px;
}

/*==================================
HEADER
==================================*/

#header{
    position:fixed;
    top:40px;
    left:0;
    width:100%;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

#header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

nav{
    display:flex;
    align-items:center;
}

/*==================================
LOGO
==================================*/

.logo img{
    height:75px;
    transition:.4s;
}

.logo img:hover{
    transform:scale(1.05);
}

/*==================================
NAVIGATION
==================================*/

nav ul{
    list-style:none;
    display:flex;
    gap:35px;
}

nav ul li a{
    text-decoration:none;
    color:#002147;
    font-weight:600;
    transition:.3s;
    position:relative;
}

nav ul li a:hover{
    color:#FFD700;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#FFD700;
    transition:.3s;
}

nav ul li a:hover::after{
    width:100%;
}

/*==================================
ADMISSION BUTTON
==================================*/

.btn-admission{
    background:#FFD700;
    color:#002147;
    padding:12px 28px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn-admission:hover{
    background:#002147;
    color:#fff;
}





/* ===========================
HERO
=========================== */
.hero{
    margin-top:110px;
}

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

#heroVideo{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,18,60,.55);
    z-index:2;
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    z-index:3;
    color:#fff;
    max-width:700px;
}

.hero-content h1{
    font-family:'Cinzel',serif;
    font-size:4.5rem;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.3rem;
    line-height:1.7;
    margin-bottom:30px;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    margin-right:15px;
    font-weight:bold;
}

.btn-primary{
    background:#f4c542;
    color:#002147;
}

.btn-secondary{
    border:2px solid white;
    color:white;
}


/*==================================
WELCOME SECTION
==================================*/

.welcome-section{
    padding:100px 0;
    background:#ffffff;
}

.welcome-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

.welcome-image{
    flex:1;
    text-align:center;
}

.welcome-image img{
    width:100%;
    max-width:450px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    transition:.5s;
}

.welcome-image img:hover{
    transform:scale(1.03);
}

.welcome-content{
    flex:1;
}

.section-tag{
    display:inline-block;
    background:#FFD700;
    color:#002147;
    padding:8px 20px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:20px;
    font-size:14px;
    letter-spacing:1px;
}

.welcome-content h2{
    font-family:'Cinzel',serif;
    font-size:52px;
    color:#002147;
    margin-bottom:25px;
    line-height:1.2;
}

.welcome-content p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.welcome-buttons{
    margin-top:35px;
}

.btn-outline{
    display:inline-block;
    padding:15px 35px;
    border:2px solid #002147;
    border-radius:40px;
    text-decoration:none;
    color:#002147;
    font-weight:bold;
    margin-left:15px;
    transition:.4s;
}

.btn-outline:hover{
    background:#002147;
    color:#fff;
}
/*==================================
WHY CHOOSE US
==================================*/

.why-us{
    padding:100px 0;
    background:#f8f9fb;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#FFD700;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    font-size:48px;
    color:#002147;
    margin:15px 0;
    font-family:'Cinzel',serif;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:40px 30px;
    border-radius:2px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:55px;
    color:#FFD700;
    margin-bottom:20px;
}

.card h3{
    color:#002147;
    margin-bottom:15px;
    font-size:24px;
}

.card p{
    color:#666;
    line-height:1.8;
}




/*==================================
DIGITAL ECOSYSTEM
==================================*/

.ecosystem{
    padding:120px 0;
    background:#ffffff;
}

.ecosystem-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    flex-wrap:wrap;
}

.ecosystem-text{
    flex:1;
}

.digital-content{
    color:#f5a105;
}

.ecosystem-text h2{
    font-family:'Cinzel',serif;
    font-size:56px;
    color:#002147;
    margin:20px 0;
    line-height:1.2;
}

.ecosystem-text p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:30px;
}

.ecosystem-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;
}

.feature{
    background:#f8f9fb;
    padding:18px 20px;
    border-radius:15px;
    font-weight:600;
    color:#002147;
    display:flex;
    align-items:center;
    padding:30px;
    gap:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s ease;
}
.feature:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.feature i{
    color:#FFD700;
    font-size:22px;
}

.ecosystem-image video{
    flex:1;
    text-align:center;
    width:100%;
    max-width:550px;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    
}

.ecosystem-image video{
    transition:.5s;
}

.ecosystem-image video:hover{
    transform:scale(1.03);
}

.feature{
    transition:.4s;
}

.feature:hover{
    transform:translateY(-10px);
}





/* Responsive */

@media(max-width:992px){

.ecosystem-features{
    grid-template-columns:1fr;
}

.ecosystem-text h2{
    font-size:38px;
}

}



/*==================================
FOUNDER
==================================*/

.founder{
    padding:120px 0;
    background:#ffffff;
}

.founder-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    flex-wrap:wrap;
}

.founder-image{
    flex:1;
    text-align:center;
}

.founder-image img{
    width:100%;
    max-width:430px;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    transition:.4s;
}

.founder-image img:hover{
    transform:scale(1.03);
}

.founder-content{
    flex:1;
}

.founder-content h2{
    font-family:'Cinzel',serif;
    font-size:52px;
    color:#002147;
    margin:20px 0;
}

.founder-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
    font-size:18px;
}

/*==================================
ACADEMIC DASHBOARD
==================================*/

.dashboard{

padding:120px 0;

background:#002147;

}

.dashboard .section-title{

text-align:center;

margin-bottom:70px;

}

.dashboard .section-title span{

color:#FFD700;

font-weight:bold;

letter-spacing:2px;

}

.dashboard .section-title h2{

font-family:'Cinzel',serif;

font-size:55px;

color:white;

margin:20px 0;

}

.dashboard .section-title p{

color:#ddd;

font-size:18px;

max-width:750px;

margin:auto;

}

.dashboard-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.dashboard-card{

background:white;

padding:40px 25px;

border-radius:20px;

text-align:center;

transition:.4s;

box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.dashboard-card:hover{

transform:translateY(-12px);

}

.dashboard-card i{

font-size:60px;

color:#FFD700;

margin-bottom:20px;

}

.dashboard-card h3{

font-size:35px;

color:#002147;

margin-bottom:15px;

font-family:'Cinzel',serif;

}

.dashboard-card p{

color:#666;

line-height:1.8;

}

/*==================================
GOVERNANCE
==================================*/

.governance{

padding:120px 0;

background:#f7f9fc;

}

.governance-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

gap:35px;

}

.gov-card{

position:relative;

height:420px;

overflow:hidden;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.15);

cursor:pointer;

}

.gov-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.7s;

}

.gov-card:hover img{

transform:scale(1.12);

}

.gov-overlay{

position:absolute;

left:0;

bottom:0;

width:100%;

padding:35px;

background:linear-gradient(

transparent,

rgba(0,33,71,.95)

);

color:white;

}

.gov-overlay h3{

font-family:'Cinzel',serif;

font-size:30px;

margin-bottom:15px;

}

.gov-overlay p{

line-height:1.8;

margin-bottom:25px;

}

.gov-overlay a{

display:inline-block;

padding:14px 28px;

background:#FFD700;

color:#002147;

text-decoration:none;

border-radius:40px;

font-weight:bold;

transition:.3s;

}

.gov-overlay a:hover{

background:white;

}

/*==================================
EXPERIENCE GENIAL LAUREL
==================================*/

.gallery{

    padding:120px 0;

    background:#ffffff;

}

.gallery-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin:50px 0;

}

.gallery-filter button{

    padding:12px 28px;

    border:none;

    border-radius:40px;

    background:#f3f5f8;

    color:#002147;

    cursor:pointer;

    font-weight:600;

    transition:.4s;

}

.gallery-filter button:hover,
.gallery-filter .active{

    background:#FFD700;

    color:#002147;

}

/*============================*/

.gallery-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

grid-auto-rows:260px;

gap:20px;

}

/*============================*/

.gallery-item{

position:relative;

overflow:hidden;

border-radius:25px;

cursor:pointer;

box-shadow:0 15px 35px rgba(0,0,0,.12);

}

/*============================*/

.gallery-item.large{

grid-column:span 2;

grid-row:span 2;

}

/*============================*/

.gallery-item img{

width:100%;

height:100%;

object-fit:cover;

transition:.7s;

}

/*============================*/

.gallery-item:hover img{

transform:scale(1.12);

}

/*============================*/

.gallery-overlay{

position:absolute;

left:0;

bottom:0;

width:100%;

padding:30px;

background:linear-gradient(

transparent,

rgba(0,33,71,.95)

);

color:white;

opacity:0;

transition:.5s;

}

/*============================*/

.gallery-item:hover .gallery-overlay{

opacity:1;

}

/*============================*/

.gallery-overlay h3{

font-family:'Cinzel',serif;

font-size:28px;

margin-bottom:10px;

}

.gallery-overlay p{

font-size:16px;

line-height:1.7;

}

/*============================*/

.gallery-button{

text-align:center;

margin-top:60px;

}

.gallery-button a{

display:inline-block;

padding:16px 40px;

background:#002147;

color:white;

text-decoration:none;

border-radius:50px;

font-weight:700;

transition:.4s;

}

.gallery-button a:hover{

background:#FFD700;

color:#002147;

transform:translateY(-5px);

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:992px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-item.large{

grid-column:span 2;

}

}

@media(max-width:768px){

.gallery{

padding:80px 20px;

}

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-item.large{

grid-column:span 1;

grid-row:span 1;

}

.gallery-filter{

gap:10px;

}

.gallery-filter button{

padding:10px 20px;

font-size:14px;

}

}

/*=====================================
A DAY AT GENIAL LAUREL
=====================================*/

.student-life{

    padding:110px 0;

    background:#f7f9fc;

}

.student-life .section-title{

    text-align:center;

    margin-bottom:70px;

}

.student-life .section-title span{

    display:inline-block;

    background:#FFD700;

    color:#002147;

    padding:8px 20px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.student-life .section-title h2{

    font-family:'Cinzel',serif;

    font-size:52px;

    color:#002147;

    margin-bottom:20px;

}

.student-life .section-title p{

    max-width:750px;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:1.9;

}

/*============================*/

.life-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

    gap:40px;

}

/*============================*/

.life-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.10);

    transition:.45s;

}

.life-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.18);

}

.life-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.life-card:hover img{

    transform:scale(1.08);

}

/*============================*/

.life-content{

    padding:30px;

}

.day-tag{

    display:inline-block;

    background:#FFD700;

    color:#002147;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.life-content h3{

    font-family:'Cinzel',serif;

    color:#002147;

    font-size:30px;

    margin-bottom:15px;

}

.life-content p{

    color:#666;

    line-height:1.8;

    font-size:17px;

}

/*============================*/

.life-card::after{

content:"";

display:block;

width:100%;

height:6px;

background:linear-gradient(to right,#002147,#FFD700);

}

/*============================*/

@media(max-width:991px){

.life-grid{

grid-template-columns:1fr;

}

.student-life .section-title h2{

font-size:38px;

}

.life-card img{

height:240px;

}

}

@media(max-width:600px){

.student-life{

padding:80px 0;

}

.student-life .section-title h2{

font-size:30px;

}

.student-life .section-title p{

font-size:16px;

}

.life-content{

padding:22px;

}

.life-content h3{

font-size:24px;

}

}
/*=========================================
OUR LEARNING ENVIRONMENT
=========================================*/

.learning-environment{
    padding:110px 0;
    background:#f8fbff;
}

.environment-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
    margin-top:60px;
}

/*=========================================
CARD
=========================================*/

.environment-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.10);

    transition:.45s;

    position:relative;

}

.environment-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.18);

}

/* Gold line */

.environment-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(90deg,#002147,#FFD700);

    z-index:2;

}

/*=========================================
IMAGE
=========================================*/

.environment-card img{

    width:100%;

    height:270px;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.environment-card:hover img{

    transform:scale(1.08);

}

/*=========================================
CONTENT
=========================================*/

.environment-content{

    padding:30px;

}

.environment-content h3{

    font-family:'Cinzel',serif;

    font-size:28px;

    color:#002147;

    margin-bottom:18px;

}

.environment-content p{

    color:#666;

    font-size:17px;

    line-height:1.8;

}

/*=========================================
BOTTOM CTA
=========================================*/

.environment-bottom{

    margin-top:80px;

    text-align:center;

    background:#002147;

    color:#fff;

    padding:60px;

    border-radius:30px;

    box-shadow:0 20px 60px rgba(0,33,71,.25);

}

.environment-bottom h3{

    font-family:'Cinzel',serif;

    font-size:40px;

    margin-bottom:20px;

    color:#FFD700;

}

.environment-bottom p{

    max-width:800px;

    margin:auto;

    line-height:1.9;

    font-size:18px;

    margin-bottom:35px;

    color:#eee;

}

/*=========================================
BUTTON
=========================================*/

.environment-bottom .btn-primary{

    display:inline-block;

    padding:15px 38px;

    background:#FFD700;

    color:#002147;

    text-decoration:none;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.environment-bottom .btn-primary:hover{

    background:#fff;

    transform:translateY(-5px);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.environment-grid{

grid-template-columns:1fr;

}

.environment-bottom{

padding:40px 25px;

}

.environment-bottom h3{

font-size:32px;

}

}

@media(max-width:768px){

.learning-environment{

padding:80px 0;

}

.environment-content{

padding:25px;

}

.environment-content h3{

font-size:24px;

}

.environment-content p{

font-size:16px;

}

.environment-card img{

height:230px;

}

.environment-bottom h3{

font-size:28px;

}

.environment-bottom p{

font-size:16px;

}

}

/*=====================================
ADMISSIONS CTA
=====================================*/

.admissions-cta{

    padding:110px 0;

    background:linear-gradient(135deg,#002147,#003b73);

    position:relative;

    overflow:hidden;

}

.admissions-cta::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-250px;

    right:-250px;

}

.admissions-cta::after{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    background:rgba(255,215,0,.08);

    border-radius:50%;

    bottom:-180px;

    left:-150px;

}

.cta-wrapper{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:1000px;

    margin:auto;

}

/*==============================*/

.cta-badge{

    display:inline-block;

    background:#FFD700;

    color:#002147;

    padding:10px 25px;

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:25px;

}

/*==============================*/

.cta-wrapper h2{

    font-family:'Cinzel',serif;

    font-size:54px;

    color:#fff;

    margin-bottom:25px;

    line-height:1.2;

}

.cta-wrapper p{

    color:#f2f2f2;

    font-size:19px;

    line-height:1.9;

    max-width:850px;

    margin:auto auto 45px;

}

/*==============================*/

.cta-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:60px;

}

.cta-buttons a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.4s;

    font-size:16px;

}

.cta-buttons .btn-primary{

    background:#FFD700;

    color:#002147;

}

.cta-buttons .btn-primary:hover{

    background:#fff;

    transform:translateY(-5px);

}

.cta-buttons .btn-outline{

    border:2px solid #fff;

    color:#fff;

    background:transparent;

}

.cta-buttons .btn-outline:hover{

    background:#FFD700;

    border-color:#FFD700;

    color:#002147;

    transform:translateY(-5px);

}

/*==============================*/

.cta-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.feature{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:30px 20px;

    transition:.4s;

}

.feature:hover{

    background:#FFD700;

    transform:translateY(-8px);

}

.feature i{

    font-size:42px;

    color:#FFD700;

    margin-bottom:20px;

    transition:.4s;

}

.feature:hover i{

    color:#002147;

}

.feature span{

    display:block;

    color:#fff;

    font-weight:600;

    line-height:1.6;

    transition:.4s;

}

.feature:hover span{

    color:#002147;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.cta-wrapper h2{

font-size:40px;

}

.cta-features{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.admissions-cta{

padding:80px 20px;

}

.cta-wrapper h2{

font-size:32px;

}

.cta-wrapper p{

font-size:16px;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

.cta-buttons a{

width:100%;

max-width:340px;

justify-content:center;

}

.cta-features{

grid-template-columns:1fr;

}

}

/*=====================================
CONTACT SECTION
=====================================*/

.contact-section{

padding:110px 0;

background:#f8fbff;

}

.contact-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

margin-top:60px;

}

/*=======================*/

.contact-info{

background:#fff;

padding:45px;

border-radius:25px;

box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.contact-info h3{

font-family:'Cinzel',serif;

font-size:34px;

color:#002147;

margin-bottom:20px;

}

.contact-info>p{

color:#666;

line-height:1.8;

margin-bottom:35px;

}

/*=======================*/

.contact-item{

display:flex;

gap:20px;

margin-bottom:30px;

align-items:flex-start;

}

.contact-item i{

width:60px;

height:60px;

background:#FFD700;

color:#002147;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:24px;

flex-shrink:0;

}

.contact-item h4{

color:#002147;

margin-bottom:8px;

}

.contact-item p{

color:#666;

line-height:1.7;

}

/*=======================*/

.contact-form{

background:#fff;

padding:45px;

border-radius:25px;

box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.contact-form form{

display:flex;

flex-direction:column;

gap:18px;

}

.contact-form input,

.contact-form textarea{

padding:16px 20px;

border:1px solid #ddd;

border-radius:12px;

font-size:16px;

font-family:inherit;

outline:none;

transition:.3s;

}

.contact-form input:focus,

.contact-form textarea:focus{

border-color:#FFD700;

box-shadow:0 0 10px rgba(255,215,0,.3);

}

.contact-form button{

border:none;

cursor:pointer;

margin-top:10px;

}

/*=======================*/

/*=========================================
LOCATION SECTION
=========================================*/

.location-section{

    padding:100px 8%;

    background:#f8fbff;

}

.location-container{

    display:grid;

    grid-template-columns:1.3fr .8fr;

    gap:40px;

    margin-top:50px;

    align-items:center;

}

.map-card{

    overflow:hidden;

    border-radius:25px;

    background:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    transition:.4s;

}

.map-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(0,0,0,.18);

}

.map-card iframe{

    width:100%;

    height:500px;

    border:none;

}

.location-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.info-box{

    display:flex;

    gap:20px;

    padding:25px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.info-box:hover{

    transform:translateX(8px);

}

.info-icon{

    width:65px;

    height:65px;

    background:#072a66;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    flex-shrink:0;

}

.info-box h3{

    color:#072a66;

    margin-bottom:8px;

}

.info-box p{

    color:#666;

    line-height:1.8;

}

.location-buttons{

    display:flex;

    gap:15px;

    margin-top:10px;

}

.map-btn,
.call-btn{

    padding:14px 30px;

    text-decoration:none;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.map-btn{

    background:#072a66;

    color:#fff;

}

.map-btn:hover{

    background:#d4a017;

    color:#072a66;

}

.call-btn{

    background:#d4a017;

    color:#072a66;

}

.call-btn:hover{

    background:#072a66;

    color:#fff;

}

@media(max-width:991px){

.location-container{

grid-template-columns:1fr;

}

.map-card iframe{

height:400px;

}

.location-buttons{

flex-direction:column;

}

}

/*=======================*/

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.contact-section{

padding:80px 0;

}

.contact-info,

.contact-form{

padding:30px;

}

.contact-info h3{

font-size:28px;

}

.contact-map iframe{

height:320px;

}

}

/*=====================================
FOOTER
=====================================*/

.footer{

    background:#00152f;

    color:#fff;

    padding:90px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.4fr;

    gap:50px;

}

/*=============================*/

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer-column h3{

    font-family:'Cinzel',serif;

    font-size:28px;

    color:#FFD700;

    margin-bottom:20px;

}

.footer-column h4{

    font-size:22px;

    color:#FFD700;

    margin-bottom:25px;

    position:relative;

}

.footer-column h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:3px;

    background:#FFD700;

    border-radius:10px;

}

/*=============================*/

.footer-column p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:18px;

    font-size:15px;

}

.footer-column p i{

    color:#FFD700;

    margin-right:10px;

    width:20px;

}

/*=============================*/

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column ul li{

    margin-bottom:14px;

}

.footer-column ul li a{

    color:#d8d8d8;

    text-decoration:none;

    transition:.35s;

}

.footer-column ul li a:hover{

    color:#FFD700;

    padding-left:8px;

}

/*=============================*/

.footer-social{

    display:flex;

    gap:12px;

    margin-top:30px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.08);

    color:#FFD700;

    transition:.35s;

    text-decoration:none;

    font-size:18px;

}

.footer-social a:hover{

    background:#FFD700;

    color:#002147;

    transform:translateY(-6px);

}

/*=============================*/

.footer hr{

    border:none;

    height:1px;

    background:rgba(255,255,255,.15);

    margin:55px 0 30px;

}

/*=============================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    color:#bdbdbd;

    font-size:14px;

    margin:0;

}

.footer-bottom strong{

    color:#FFD700;

    letter-spacing:.5px;

}

/*=============================*/

@media(max-width:1100px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*=============================*/

@media(max-width:768px){

.footer{

padding:70px 0 20px;

}

.footer-grid{

grid-template-columns:1fr;

gap:40px;

text-align:center;

}

.footer-column h4::after{

left:50%;

transform:translateX(-50%);

}

.footer-social{

justify-content:center;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

}
.footer-quote{

text-align:center;

padding:25px 0;

margin-top:20px;

border-top:1px solid rgba(255,255,255,.08);

border-bottom:1px solid rgba(255,255,255,.08);

margin-bottom:30px;

}

.footer-quote h3{

color:#FFD700;

font-family:'Cinzel',serif;

font-size:28px;

margin-bottom:10px;

}

.footer-quote p{

color:#d5d5d5;

font-style:italic;

margin:0;

}

.map-container{
    width:100%;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.map-container iframe{
    width:100%;
    height:500px;
    display:block;
    border:none;
}

/*=========================================
FLOATING WHATSAPP
=========================================*/
.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;

    width:70px;
    height:70px;

    border-radius:50%;
    background:#25D366;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.30);

    z-index:999999;

    transition:.3s;

    /* Restore bubbling effect */
    animation:whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        transform:scale(1.08);
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}
/* Message Card */

/*==========================
WHATSAPP POPUP
==========================*/

.whatsapp-popup{
    position:fixed;
    right:95px;          /* Move it left of the button */
    bottom:120px;        /* Start below the screen */

    width:330px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

    transition:.6s ease;

    z-index:99999;

    font-family:'Poppins',sans-serif;

    bottom:-500px;
}

.whatsapp-popup.show{
    bottom:120px;
}


.whatsapp-popup::after{

content:"";

position:absolute;

bottom:18px;

right:-12px;

border-width:12px;

border-style:solid;

border-color:transparent transparent transparent white;

}

/* ===========================
   POPUP HEADER
=========================== */

.popup-header{
    background:#25D366;
    padding:15px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.profile{
    display:flex;
    align-items:center;
    gap:12px;
}

.profile img{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    padding:4px;
}

.profile h4{
    margin:0;
    color:#fff;
    font-size:17px;
    font-weight:700;
}

.profile small{
    color:#e8ffe8;
    font-size:12px;
}

#closePopup{
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
    transition:.3s;
}

#closePopup:hover{
    transform:rotate(90deg);
}

/* ===========================
   POPUP BODY
=========================== */

.popup-body{
    background:#ECE5DD;
    padding:18px;
}

.chat-message{
    background:#fff;
    border-radius:12px;
    padding:15px;
    line-height:1.7;
    color:#333;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
}

/* ===========================
   POPUP FOOTER
=========================== */

.popup-footer{
    background:#fff;
    padding:15px;
}

.popup-footer a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:100%;
    padding:14px;

    background:#25D366;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:10px;

    transition:.3s;
}

.popup-footer a:hover{
    background:#1BAE4A;
}

/*=========================================
BACK TO TOP BUTTON
=========================================*/

.back-to-top{

position:fixed;

right:25px;

bottom:105px;   /* Above WhatsApp button */

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#0B2E6B;

color:#fff;

font-size:22px;

display:flex;

align-items:center;

justify-content:center;

cursor:pointer;

box-shadow:0 10px 25px rgba(0,0,0,.25);

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.4s ease;

z-index:9998;

}

.back-to-top.show{

opacity:1;

visibility:visible;

transform:translateY(0);

}

.back-to-top:hover{

background:#F4C542;

color:#0B2E6B;

transform:translateY(-5px);

}

/*=========================================
LOADER
=========================================*/

.loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:#0B2E6B;

display:flex;

justify-content:center;

align-items:center;

z-index:9999999;

transition:opacity .8s ease, visibility .8s ease;

}

.loader-hidden{

opacity:0;

visibility:hidden;

}

.loader-content{

text-align:center;

color:#fff;

padding:20px;

}

.loader-content img{

width:120px;

height:120px;

border-radius:50%;

background:#fff;

padding:10px;

animation:logoPulse 2s infinite ease-in-out;

}

.loader-content h2{

margin-top:20px;

font-size:28px;

font-weight:700;

letter-spacing:2px;

color:#fff;

}

.loader-content p{

margin:10px 0 20px;

font-size:16px;

color:#F4C542;

font-style:italic;

}

.loader-content span{

display:block;

margin-top:15px;

font-size:14px;

color:#ddd;

letter-spacing:1px;

}

/* Progress Bar */

.loader-bar{

width:260px;

height:8px;

background:rgba(255,255,255,.2);

border-radius:50px;

overflow:hidden;

margin:0 auto;

}

.loader-progress{

width:0;

height:100%;

background:#F4C542;

border-radius:50px;

animation:loading 2.5s linear forwards;

}

/* Animations */

@keyframes loading{

0%{

width:0%;

}

100%{

width:100%;

}

}

@keyframes logoPulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

@media(max-width:768px){

.loader-content img{

width:90px;

height:90px;

}

.loader-content h2{

font-size:22px;

}

.loader-bar{

width:200px;

}

}

/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{

padding:100px 8%;

background:#f8fbff;

}

.testimonial-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

margin-top:60px;

}

.testimonial-card{

background:#fff;

padding:35px 30px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

position:relative;

overflow:hidden;

}

.testimonial-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.testimonial-card::before{

content:"❝";

position:absolute;

top:10px;

left:20px;

font-size:80px;

color:#F4C542;

opacity:.18;

}

.testimonial-card img{

width:95px;

height:95px;

border-radius:50%;

object-fit:cover;

border:5px solid #0B2E6B;

margin-bottom:20px;

}

.stars{

font-size:22px;

margin-bottom:20px;

}

.message{

font-size:15px;

line-height:1.9;

color:#555;

font-style:italic;

margin-bottom:25px;

}

.testimonial-card h3{

color:#0B2E6B;

margin-bottom:6px;

font-size:20px;

}

.testimonial-card span{

color:#777;

font-size:14px;

font-weight:600;

}

@media(max-width:768px){

.testimonials{

padding:70px 6%;

}

}
/*=========================================
WHATSAPP POPUP - MOBILE STYLES
=========================================*/
@media screen and (max-width: 576px) {
    /* 1. Main Floating Container */
    .whatsapp-popup {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 88% !important;
        max-width: 320px !important;
        max-height: 85vh !important;
        display: flex !important;
        flex-direction: column !important;
        background: #ffffff !important;
        border-radius: 16px !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
        z-index: 999999 !important;
        overflow: hidden !important;
    }

    /* 2. Header Layout */
    .whatsapp-popup .popup-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 12px 14px !important;
        background: #25d366 !important;
        color: #ffffff !important;
        flex-shrink: 0 !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .whatsapp-popup .popup-header .profile {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    /* 3. Close Button Target */
    #closePopup {
        background: rgba(0, 0, 0, 0.15) !important;
        border: none !important;
        color: #ffffff !important;
        font-size: 22px !important;
        line-height: 1 !important;
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 9999999 !important;
        margin-left: auto !important;
        outline: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    /* 4. Scrollable Body Content */
    .whatsapp-popup .popup-body {
        padding: 16px !important;
        overflow-y: auto !important;
        flex: 1 1 auto !important;
        color: #333333 !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    /* 5. Footer & Chat Button */
    .whatsapp-popup .popup-footer {
        padding: 12px 16px !important;
        background: #f8f9fa !important;
        flex-shrink: 0 !important;
        text-align: center !important;
    }

    .whatsapp-popup .popup-footer a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        background: #25d366 !important;
        color: #ffffff !important;
        text-decoration: none !important;
        padding: 10px 16px !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        font-size: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 6. Lower Floating WhatsApp Button */
    .whatsapp-float {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        z-index: 99998 !important;
    }
}
/*=========================================
WHATSAPP POPUP & CLOSE GUARANTEED FIX
=========================================*/
.whatsapp-popup {
    display: none;
}

.whatsapp-popup.show {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 330px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 999999;
    overflow: hidden;
}

@media screen and (max-width: 576px) {
    .whatsapp-popup.show {
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        width: 85% !important;
        max-width: 310px !important;
        height: auto !important;
        max-height: 75vh !important;
        z-index: 9999999 !important;
    }

    .whatsapp-popup .popup-header {
        position: relative !important;
        z-index: 10000000 !important;
    }

    #closePopup {
        position: absolute !important;
        top: 8px !important;
        right: 8px !important;
        z-index: 10000001 !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        background: rgba(0, 0, 0, 0.2) !important;
        color: #ffffff !important;
        font-size: 22px !important;
        font-weight: bold !important;
        width: 34px !important;
        height: 34px !important;
        line-height: 32px !important;
        text-align: center !important;
        border-radius: 50% !important;
        display: block !important;
        user-select: none !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    }
}