/* Hero Animation Start */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Poppins,sans-serif;
background:#fff;
overflow-x:hidden;

}

a{
text-decoration:none;
}

ul{
list-style:none;
margin:0;
padding:0;
}

:root{

--blue:#0B2F66;
--gold:#D4A437;
--white:#fff;
--dark:#101828;

}

.header{

position:absolute;
top:31;
left:0;
width:100%;
padding:20px 0;
z-index:999;
transition:.4s;

}
@media(max-width:786px){

    .header{

        position:absolute;
top:175px;
left:0;
width:100%;
padding:20px 0;
z-index:999;
transition:.4s;

    }

}

/* .header.scrolled{

background:rgba(11,47,102,.95);
backdrop-filter:blur(15px);
box-shadow:0 10px 35px rgba(0,0,0,.15);

} */

/*=========================
TOP HEADER
=========================*/

.top-header{

    background:#0B2F66;
    color:#fff;
    font-size:14px;
    padding:10px 0;

}

.topbar-wrapper{

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;

}

.topbar-left{

    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;

}

.topbar-left a,
.topbar-left span{

    color:#fff;
    text-decoration:none;
    transition:.3s;

}

.topbar-left a:hover{

    color:#D4A437;

}

.topbar-left i{

    color:#D4A437;
    margin-right:8px;

}

.topbar-right{

    display:flex;
    gap:12px;

}

.topbar-right a{

    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(255,255,255,.12);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    transition:.3s;

}

.topbar-right a:hover{

    background:#D4A437;
    color:#fff;
    transform:translateY(-3px);

}

@media(max-width:991px){

    .top-header{

        display:block;

    }

}
/*end top bar*/

.navbar-brand img{

height:75px;

}

.nav-link{

color:#fff;
font-weight:500;
margin:0 15px;
position:relative;
transition:.3s;

}

.nav-link:hover{

color:var(--gold);

}

.book-btn{

background:var(--gold);
padding:14px 32px;
border-radius:50px;
color:#fff;
font-weight:600;
transition:.4s;

}

.book-btn:hover{

background:#fff;
color:var(--blue);

}

.hero{

position:relative;
height:100vh;
background:url(images/hero.jpg) center center/cover;
display:flex;
align-items:center;

}

.overlay{

position:absolute;
width:100%;
height:100%;
background:linear-gradient(90deg,rgba(8,22,48,.92),rgba(8,22,48,.45));


}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #D4A437;
}


.hero .container{

position:relative;
z-index:5;

}

.tag{

display:inline-block;
padding:10px 22px;
background:rgba(255,255,255,.12);
border:1px solid rgba(255,255,255,.2);
border-radius:50px;
color:#fff;
backdrop-filter:blur(15px);

}

.hero-title{

font-family:'Playfair Display',serif;
font-size:72px;
font-weight:800;
color:#fff;
line-height:1.1;
margin:25px 0;

}

.hero-title span{

color:var(--gold);

}

.hero-text{

font-size:18px;
line-height:32px;
color:#ddd;
max-width:650px;
margin-bottom:35px;

}

.hero-buttons{

display:flex;
gap:20px;

}

.btn-main{

background:var(--gold);
padding:18px 42px;
border-radius:50px;
color:#fff;
font-weight:600;
transition:.4s;

}

.btn-main:hover{

background:#fff;
color:var(--blue);

}

.btn-second{

border:2px solid #fff;
padding:18px 42px;
border-radius:50px;
color:#fff;
font-weight:600;
transition:.4s;

}

.btn-second:hover{

background:#fff;
color:var(--blue);

}

.scroll-down{

position:absolute;
bottom:30px;
left:50%;
transform:translateX(-50%);

}

.scroll-down span{

width:28px;
height:48px;
display:block;
border:2px solid #fff;
border-radius:40px;
position:relative;

}

.scroll-down span::before{

content:"";
position:absolute;
left:50%;
top:10px;
width:6px;
height:6px;
background:#fff;
border-radius:50%;
transform:translateX(-50%);
animation:scroll 2s infinite;

}

@keyframes scroll{

0%{

transform:translate(-50%,0);

}

100%{

transform:translate(-50%,18px);
opacity:0;

}

}

@media(max-width:991px){

.hero-title{

font-size:48px;

}

.navbar-collapse{

background:#0B2F66;
padding:30px;
border-radius:15px;

}


.nav-link{

margin:15px 0;

}

.hero-buttons{

flex-direction:column;

}

}
/* Hero Animation end */

/*=========================
BOOKING POPUP
=========================*/

.booking-modal{

position:fixed;

left:0;
top:0;

width:100%;
height:100%;

background:rgba(0,0,0,.65);

display:flex;

align-items:center;

justify-content:center;

visibility:hidden;

opacity:0;

z-index:99999;

backdrop-filter:blur(8px);

transition:.4s;

padding:20px;

}

.booking-modal.active{

visibility:visible;

opacity:1;

}

.booking-box{

background:#fff;

width:700px;

max-width:100%;

padding:45px;

border-radius:25px;

position:relative;

transform:scale(.85);

}

.booking-header{

text-align:center;

margin-bottom:30px;

}

.booking-header h2{

color:#0B2F66;

margin-bottom:10px;

font-family:'Playfair Display',serif;

}

.booking-header p{

color:#777;

}

.booking-box input,

.booking-box select,

.booking-box textarea{

width:100%;

height:55px;

padding:15px;

border:1px solid #ddd;

border-radius:12px;

margin-bottom:20px;

outline:none;

}

.booking-box textarea{

height:120px;

resize:none;

}

.submit-booking{

width:100%;

height:55px;

border:none;

border-radius:50px;

background:#D4A437;

color:#fff;

font-weight:600;

transition:.3s;

}

.submit-booking:hover{

background:#0B2F66;

}

.close-booking{

position:absolute;

top:15px;

right:20px;

font-size:35px;

background:none;

border:none;

cursor:pointer;

color:#0B2F66;

}
/*==============================
BOOKING POPUP end
===============================*/

/*==============================
Popular Destinations
===============================*/

.section-padding{
    padding:100px 0;
}

.section-heading{
    max-width:700px;
    margin:auto;
}

.section-tag{
    display:inline-block;
    background:#D4A437;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-heading h2{

    font-family:'Playfair Display',serif;
    font-size:52px;
    color:#0B2F66;
    font-weight:700;
    margin-bottom:20px;

}

.section-heading p{

    color:#666;
    line-height:30px;

}

.destination-card{

    position:relative;
    overflow:hidden;
    border-radius:25px;
    height:520px;
    cursor:pointer;

}

.destination-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;

}

.destination-card:hover img{

    transform:scale(1.15);

}

.destination-overlay{

    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:35px;
    background:linear-gradient(to top,rgba(5,17,39,.95),rgba(5,17,39,.15));

}

.location{

    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:8px 16px;
    border-radius:50px;
    backdrop-filter:blur(10px);
    font-size:14px;

}

.destination-overlay h3{

    color:#fff;
    margin:18px 0 12px;
    font-size:36px;
    font-family:'Playfair Display',serif;

}

.destination-overlay p{

    color:#ddd;
    line-height:28px;
    margin-bottom:25px;

}

.destination-overlay a{

    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-weight:600;
    transition:.3s;

}

.destination-overlay a i{

    transition:.3s;

}

.destination-card:hover a{

    color:#D4A437;

}

.destination-card:hover a i{

    transform:translateX(8px);

}

.destination-card::before{

    content:"";
    position:absolute;
    inset:0;
    border:2px solid transparent;
    border-radius:25px;
    transition:.5s;
    z-index:2;

}

.destination-card:hover::before{

    border-color:#D4A437;

}

@media(max-width:991px){

.section-heading h2{

font-size:36px;

}

.destination-card{

height:420px;

}

}
/*==============================
Popular Destinations End
===============================*/

/*==============================
Tour Packages
==============================*/

.tour-packages{
    background:#f8fafc;
}

.package-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    transition:.45s;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    height:100%;
}

.package-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.package-image{
    position:relative;
    overflow:hidden;
}

.package-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.7s;
}

.package-card:hover img{
    transform:scale(1.1);
}

.price{
    position:absolute;
    top:18px;
    right:18px;
    background:#D4A437;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.package-content{
    padding:30px;
}

.package-content h3{
    color:#0B2F66;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.package-content ul{
    padding:0;
    margin:0;
    list-style:none;
}

.package-content li{
    margin-bottom:14px;
    color:#555;
}

.package-content i{
    color:#D4A437;
    width:24px;
}

.package-btn{
    display:inline-block;
    margin-top:20px;
    background:#0B2F66;
    color:#fff;
    padding:14px 34px;
    border-radius:50px;
    transition:.4s;
}

.package-btn:hover{
    background:#D4A437;
    color:#fff;
}
/*==============================
Tour Packages end
==============================*/

/*=========================
WHY US
=========================*/

.why-us{

background:#fff;

}

.why-image{

position:relative;

}

.why-image img{

border-radius:25px;

box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.experience-box{

position:absolute;
right:-20px;
bottom:30px;

background:#0B2F66;

padding:30px;

border-radius:20px;

text-align:center;

color:#fff;

box-shadow:0 20px 40px rgba(0,0,0,.2);

}

.experience-box h2{

font-size:50px;

font-weight:700;

color:#D4A437;

margin-bottom:5px;

}

.why-title{

font-size:48px;

font-family:'Playfair Display',serif;

margin:20px 0;

color:#0B2F66;

}

.why-text{

color:#666;

line-height:30px;

margin-bottom:40px;

}

.why-item{

display:flex;

gap:20px;

margin-bottom:30px;

}

.why-item i{

width:55px;

height:55px;

background:#D4A437;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:22px;

flex-shrink:0;

}

.why-item h5{

font-weight:600;

margin-bottom:8px;

color:#0B2F66;

}

.why-item p{

margin:0;

color:#666;

line-height:28px;

}

@media(max-width:991px){

.experience-box{

right:20px;

bottom:20px;

padding:20px;

}

.why-title{

font-size:36px;

margin-top:40px;

}

}



/*=============================
DESTINATION COVERFLOW
==============================*/

.destination-slider{

    background:#f8fafc;
    overflow:hidden;

}

.destinationSwiper{

    width:100%;
    padding:70px 0 90px;

}

.swiper-slide{

    width:360px;
    height:520px;

}

.tour-card{

    position:relative;
    width:100%;
    height:100%;
    border-radius:28px;
    overflow:hidden;
    transition:.5s;
    box-shadow:0 20px 50px rgba(0,0,0,.18);

}

.tour-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;

}

.tour-card:hover img{

    transform:scale(1.12);

}

.tour-overlay{

    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:35px;
    background:linear-gradient(to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.15));

}

.tour-overlay span{

    display:inline-block;
    width:max-content;
    padding:8px 16px;
    border-radius:30px;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(15px);
    color:#fff;
    margin-bottom:18px;
    font-size:14px;

}

.tour-overlay h3{

    color:#fff;
    font-size:42px;
    font-family:'Playfair Display',serif;
    margin-bottom:8px;

}

.tour-overlay p{

    color:#ddd;
    margin-bottom:25px;

}

.tour-overlay a{

    width:max-content;
    padding:14px 34px;
    border-radius:50px;
    background:#D4A437;
    color:#fff;
    font-weight:600;
    transition:.4s;

}

.tour-overlay a:hover{

    background:#0B2F66;

}

.swiper-slide:not(.swiper-slide-active){

    filter:blur(2px);
    opacity:.55;

}

.swiper-slide-active{

    transform:scale(1.08);

}

@media(max-width:768px){

.swiper-slide{

width:280px;
height:430px;

}

.tour-overlay h3{

font-size:32px;

}

}

/*=============================
TRAVEL STACK
=============================*/

.travel-stack{

padding:120px 0;

background:#f8fafc;

overflow:hidden;

position:relative;

}

.stack-wrapper{

width:100%;

height:650px;

position:relative;

display:flex;

justify-content:center;

align-items:center;

overflow:hidden;

}

.stack-track{

position:relative;

width:1400px;

height:600px;

margin:auto;

}

.stack-card{

position:absolute;

top:0;

left:50%;

width:380px;

height:560px;

border-radius:30px;

overflow:hidden;

cursor:pointer;

transform-origin:center;

transition:.7s cubic-bezier(.2,.8,.2,1);

box-shadow:0 30px 80px rgba(0,0,0,.18);

}

.stack-card img{

width:100%;

height:100%;

object-fit:cover;

display:block;

transition:1.2s;

}

.stack-card:hover img{

transform:scale(1.08);

}

.stack-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:linear-gradient(

180deg,

rgba(0,0,0,.05),

rgba(0,0,0,.85)

);

z-index:1;

}

.card-content{

position:absolute;

left:35px;

bottom:35px;

z-index:5;

color:#fff;

}

.card-content span{

display:inline-block;

padding:8px 18px;

border-radius:40px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(15px);

font-size:13px;

margin-bottom:18px;

}

.card-content h3{

font-size:42px;

font-family:'Playfair Display',serif;

margin-bottom:8px;

}

.card-content p{

font-size:18px;

margin-bottom:22px;

opacity:.9;

}

.card-content a{

display:inline-flex;

align-items:center;

justify-content:center;

width:160px;

height:52px;

border-radius:60px;

background:#D4A437;

color:#fff;

font-weight:600;

transition:.4s;

}

.card-content a:hover{

background:#0B2F66;

}

.stack-card.active{

z-index:100;

}

@media(max-width:992px){

.stack-wrapper{

height:520px;

}

.stack-track{

width:100%;

}

.stack-card{

width:290px;

height:420px;

}

.card-content h3{

font-size:32px;

}

}
/*=========================================
 STACK POSITIONS
=========================================*/

/* Center */

.stack-card.active{

left:50%;

transform:translateX(-50%) scale(1);

z-index:10;

filter:none;

opacity:1;

}

/* First Left */

.stack-card.left-1{

left:28%;

transform:translateX(-50%) scale(.88);

opacity:.8;

filter:blur(2px);

z-index:8;

}

/* Second Left */

.stack-card.left-2{

left:10%;

transform:translateX(-50%) scale(.78);

opacity:.45;

filter:blur(5px);

z-index:6;

}

/* First Right */

.stack-card.right-1{

left:72%;

transform:translateX(-50%) scale(.88);

opacity:.8;

filter:blur(2px);

z-index:8;

}

/* Second Right */

.stack-card.right-2{

left:90%;

transform:translateX(-50%) scale(.78);

opacity:.45;

filter:blur(5px);

z-index:6;

}

/* Hide Remaining */

.stack-card.hide{

opacity:0;

pointer-events:none;

transform:translateX(-50%) scale(.65);

filter:blur(8px);

}

/*=========================================
 HOVER
=========================================*/

.stack-card{

transition:

transform .7s cubic-bezier(.22,.61,.36,1),

filter .7s,

opacity .7s,

box-shadow .7s;

}

.stack-card.active{

box-shadow:

0 35px 80px rgba(0,0,0,.25);

}

.stack-card.active:hover{

transform:

translateX(-50%)

translateY(-12px)

scale(1.02);

}

.stack-card.left-1:hover,

.stack-card.right-1:hover{

transform:

translateX(-50%)

translateY(-6px)

scale(.9);

}

/*=========================================
 GLASS
=========================================*/

.card-content{

width:82%;

padding:22px;

border-radius:22px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(16px);

border:1px solid rgba(255,255,255,.12);

}

.card-content h3{

font-size:38px;

margin-bottom:8px;

}

.card-content p{

font-size:15px;

margin-bottom:18px;

}

/*=========================================
 BUTTON
=========================================*/

.card-content a{

transition:.35s;

}

.card-content a:hover{

transform:translateY(-3px);

}

/*=========================================
 IMAGE
=========================================*/

.stack-card img{

transition:1s;

}

.stack-card:hover img{

transform:scale(1.08);

}

/*=========================================
 MOBILE
=========================================*/

@media(max-width:991px){

.stack-wrapper{

height:470px;

}

.stack-card{

width:260px;

height:390px;

}

.stack-card.left-2,

.stack-card.right-2{

display:none;

}

.stack-card.left-1{

left:18%;

}

.stack-card.right-1{

left:82%;

}

.card-content{

padding:18px;

}

.card-content h3{

font-size:30px;

}

}

@media(max-width:576px){

.stack-wrapper{

height:420px;

}

.stack-card{

width:240px;

height:340px;

}

.stack-card.left-1,

.stack-card.right-1{

opacity:.35;

filter:blur(4px);

}

.card-content{

width:88%;

left:14px;

bottom:14px;

}

.card-content h3{

font-size:24px;

}

.card-content a{

width:140px;

height:46px;

font-size:14px;

}

}
.stack-wrapper{
    cursor: grab;
    user-select: none;
    overflow: hidden;
}

.stack-track{
    will-change: transform;
}

.stack-card{
    user-select: none;
    -webkit-user-drag: none;
}

.stack-card img{
    pointer-events: none;
}



/*=========================
SERVICES
=========================*/

.services{

padding:120px 0;
background:#fff;

}

.service-card{

background:#fff;
padding:45px 35px;
border-radius:25px;
text-align:center;
box-shadow:0 12px 35px rgba(0,0,0,.08);
transition:.45s;
height:100%;
border:1px solid #edf0f4;

}

.service-card:hover{

transform:translateY(-12px);
box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.service-icon{

width:90px;
height:90px;
margin:auto;
border-radius:50%;
background:#0B2F66;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:30px;
transition:.4s;

}

.service-icon i{

font-size:36px;
color:#D4A437;
transition:.4s;

}

.service-card:hover .service-icon{

transform:rotateY(180deg);

}

.service-card h3{

font-size:26px;
margin-bottom:15px;
color:#0B2F66;
font-family:'Playfair Display',serif;

}

.service-card p{

color:#666;
line-height:28px;

}

/*=========================
FLEET
=========================*/

.fleet{

padding:120px 0;

background:#f8fafc;

}

.fleet-card{

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:0 15px 45px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.fleet-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.fleet-image{

position:relative;

overflow:hidden;

background:#eef3f9;

}

.fleet-image img{

width:100%;

height:240px;

object-fit:contain;

padding:25px;

transition:.6s;

}

.fleet-card:hover img{

transform:scale(1.08);

}

.fleet-badge{

position:absolute;

top:20px;

left:20px;

background:#D4A437;

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:13px;

font-weight:600;

}

.fleet-content{

padding:30px;

}

.fleet-content h3{

font-size:30px;

color:#0B2F66;

font-family:'Playfair Display',serif;

margin-bottom:20px;

}

.fleet-info{

display:flex;

justify-content:space-between;

margin-bottom:20px;

font-size:15px;

}

.fleet-info i{

color:#D4A437;

margin-right:8px;

}

.fleet-content ul{

list-style:none;

padding:0;

margin-bottom:25px;

}

.fleet-content ul li{

margin-bottom:12px;

color:#555;

}

.fleet-content ul i{

color:#28a745;

margin-right:10px;

}

.fleet-btn{

display:inline-block;

padding:14px 35px;

background:#0B2F66;

color:#fff;

border-radius:50px;

transition:.3s;

font-weight:600;

}

.fleet-btn:hover{

background:#D4A437;

color:#fff;

}

/*=========================
TESTIMONIALS
=========================*/

.testimonials{

padding:120px 0;

background:#f8fafc;

}

.testimonial-card{

background:#fff;

padding:40px;

border-radius:25px;

position:relative;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

overflow:hidden;

}

.testimonial-card:hover{

transform:translateY(-12px);

}

.quote{

position:absolute;

top:25px;

right:30px;

font-size:42px;

color:#D4A437;

opacity:.15;

}

.stars{

margin-bottom:20px;

}

.stars i{

color:#FFC107;

margin-right:3px;

}

.testimonial-card p{

line-height:30px;

color:#666;

margin-bottom:35px;

}

.client{

display:flex;

align-items:center;

gap:15px;

}

.client img{

width:65px;

height:65px;

border-radius:50%;

object-fit:cover;

border:4px solid #D4A437;

}

.client h5{

margin-bottom:3px;

color:#0B2F66;

font-size:20px;

}

.client span{

color:#777;

font-size:14px;

}


/*=========================
GALLERY
=========================*/

.gallery{

padding:120px 0;
background:#fff;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

grid-auto-rows:260px;

gap:25px;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:25px;

cursor:pointer;

}

.gallery-item.large{

grid-row:span 2;

}

.gallery-item img{

width:100%;

height:100%;

object-fit:cover;

transition:1s;

}

.gallery-overlay{

position:absolute;

left:0;
top:0;

width:100%;
height:100%;

display:flex;

align-items:flex-end;

padding:30px;

background:linear-gradient(transparent,rgba(0,0,0,.75));

opacity:0;

transition:.4s;

}

.gallery-overlay h3{

color:#fff;

font-size:30px;

font-family:'Playfair Display',serif;

}

.gallery-item:hover img{

transform:scale(1.12);

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}

@media(max-width:991px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.gallery-grid{

grid-template-columns:1fr;

grid-auto-rows:250px;

}

.gallery-item.large{

grid-row:span 1;

}

}

/*=========================
FAQ
=========================*/

.faq{

padding:120px 0;

background:#f8fafc;

}

.faq-title{

font-size:48px;

color:#0B2F66;

margin:20px 0;

}

.faq-text{

line-height:30px;

color:#666;

margin-bottom:35px;

}

.faq-image{

max-width:90%;

}

.faq-item{

background:#fff;

border-radius:18px;

margin-bottom:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.faq-question{

display:flex;

justify-content:space-between;

align-items:center;

padding:25px 30px;

cursor:pointer;

}

.faq-question h5{

margin:0;

font-size:20px;

color:#0B2F66;

}

.faq-question i{

width:45px;

height:45px;

background:#D4A437;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

transition:.4s;

}

.faq-answer{

display:none;

padding:0 30px 25px;

}

.faq-answer p{

margin:0;

line-height:28px;

color:#666;

}

.faq-item.active .faq-answer{

display:block;

}

.faq-item.active i{

transform:rotate(45deg);

background:#0B2F66;

}

@media(max-width:991px){

.faq-title{

font-size:36px;

}

.faq-image{

display:none;

}

}
/*=========================
FOOTER
=========================*/

.footer{

background:#071C3C;

padding:90px 0 25px;

color:#fff;

}

.footer-logo{

width:180px;

margin-bottom:25px;

}

.footer-about{

color:#c9d2e3;

line-height:30px;

margin-bottom:30px;

}

.footer h4{

font-size:22px;

margin-bottom:25px;

color:#fff;

font-family:'Playfair Display',serif;

position:relative;

}

.footer h4::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:50px;

height:3px;

background:#D4A437;

}

.footer ul{

list-style:none;

padding:0;

margin:0;

}

.footer ul li{

margin-bottom:15px;

}

.footer ul li a{

color:#c9d2e3;

text-decoration:none;

transition:.3s;

}

.footer ul li a:hover{

color:#D4A437;

padding-left:6px;

}

.footer-social{

display:flex;

gap:12px;

}

.footer-social a{

width:45px;

height:45px;

background:rgba(255,255,255,.08);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

transition:.3s;

}

.footer-social a:hover{

background:#D4A437;

transform:translateY(-6px);

}

.footer-contact li{

display:flex;

gap:15px;

align-items:flex-start;

margin-bottom:20px;

}

.footer-contact i{

color:#D4A437;

font-size:18px;

margin-top:4px;

}

.footer hr{

border-color:rgba(255,255,255,.08);

margin:50px 0 25px;

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:15px;

}

.footer-bottom p{

margin:0;

color:#c9d2e3;

}

.footer-bottom a{

color:#D4A437;

text-decoration:none;

}

@media(max-width:768px){

.footer{

text-align:center;

}

.footer h4::after{

left:50%;

transform:translateX(-50%);

}

.footer-social{

justify-content:center;

}

.footer-contact li{

justify-content:center;

text-align:left;

}

.footer-bottom{

justify-content:center;

text-align:center;

}

}
/*=========================
FLOATING BOOK NOW
=========================*/

.floating-book-btn{

position:fixed;

right:-58px;

top:50%;

transform:translateY(-50%) rotate(-90deg);

width:180px;

height:55px;

background:linear-gradient(135deg,#D4A437,#f1c04b);

color:#fff;

display:flex;

align-items:center;

justify-content:center;

gap:10px;

font-size:17px;

font-weight:700;

text-decoration:none;

border-radius:15px 15px 0 0;

box-shadow:0 15px 40px rgba(0,0,0,.25);

z-index:9998;

transition:.35s;

animation:bookPulse 2s infinite;

}

.floating-book-btn:hover{

right:-48px;

color:#fff;

background:#0B2F66;

}

.floating-book-btn i{

font-size:20px;

}

@keyframes bookPulse{

0%{

box-shadow:0 0 0 0 rgba(212,164,55,.5);

}

70%{

box-shadow:0 0 0 18px rgba(212,164,55,0);

}

100%{

box-shadow:0 0 0 0 rgba(212,164,55,0);

}

}

@media(max-width:768px){

.floating-book-btn{

width:160px;

height:48px;

font-size:15px;

right:-52px;

}

}