/*======================================
THEME
======================================*/

:root{

--primary:#12295B;

--secondary:#284A8C;

--light:#F4F7FC;

--text:#555;

--white:#fff;

}


/*======================================
TOPBAR
======================================*/

.top-bar{

background:var(--primary);

padding:5px 0;

font-size:14px;

}

.topbar-inner{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

}

.top-left,
.top-right{

display:flex;

align-items:center;

gap:25px;

}

.top-left a,
.top-right a{

color:#fff;

font-weight:400;

transition:.3s;

}

.top-left a:hover,
.top-right a:hover{

opacity:.8;

}

.top-left i,
.top-right i{

margin-right:8px;

}

.social-icons{

display:flex;

gap:15px;

margin-left:10px;

}

.social-icons a{

width:34px;

height:34px;

border:1px solid rgba(255,255,255,.25);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

transition:.3s;

}

.social-icons a:hover{

background:#fff;

color:var(--primary);

}


/*======================================
HEADER
======================================*/

.header-area{

background:#fff;

position:sticky;

top:0;

z-index:9999;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.navbar{

/* padding:16px 0; */

padding:1px 0;


}

.navbar-brand img{

height:82px;

transition:.3s;

}

.navbar-nav{

gap:8px;

}

.nav-link{

font-size:16px;

font-weight:600;

color:#222;

padding:15px 16px !important;

position:relative;

transition:.3s;

}

.nav-link::after{

content:"";

position:absolute;

left:16px;

bottom:8px;

width:0;

height:2px;

background:var(--primary);

transition:.3s;

}

.nav-link:hover,
.nav-link.active{

color:var(--primary);

}

.nav-link:hover::after,
.nav-link.active::after{

width:45px;

}

.theme-btn{

padding:14px 30px;

background:var(--primary);

color:#fff;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.theme-btn:hover{

background:var(--secondary);

color:#fff;

}

.navbar-toggler{

border:none;

font-size:24px;

box-shadow:none!important;

color:var(--primary);

}


/*======================================
Responsive
======================================*/

@media(max-width:991px){

.top-bar{

display:none;

}

.navbar{

padding:12px 0;

}

.navbar-brand img{

height:65px;

}

.navbar-collapse{

padding-top:20px;

}

.nav-link{

padding:12px 0 !important;

}

.theme-btn{

display:inline-block;

margin-top:20px;

}

}





/*=========================================
            HERO SECTION
=========================================*/

.hero-section{
    position:relative;
    overflow:hidden;
}

.heroSlider{
    width:100%;
    height:100%;
}

.hero-item{
    position:relative;
    height:600px;
    overflow:hidden;
}

.hero-item img{
    width:100%;
    height:600px;
    object-fit:cover;
    transition:6s ease;
}

.swiper-slide-active .hero-item img{
    transform:scale(1.05);
}

/*=========================
Hero Content
=========================*/

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    max-width:850px;
    text-align:center;
    color:#fff;
    z-index:10;
    padding:0 15px;
}

.hero-subtitle{
    display:inline-block;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
    color:#fff;
}

.hero-content h1{
    font-family:'Playfair Display', serif;
    font-size:56px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
    color:#fff;
    text-shadow:0 3px 10px rgba(0,0,0,.30);
}

.hero-content p{
    max-width:650px;
    margin:0 auto 30px;
    font-size:17px;
    line-height:30px;
    color:#fff;
    text-shadow:0 2px 8px rgba(0,0,0,.25);
}

/*=========================
Buttons
=========================*/

.hero-btns{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.theme-btn{
    display:inline-block;
    background:#102A63;
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:.35s;
}

.theme-btn:hover{
    background:#111111;
    color:#d0d1d3;
}

.outline-btn{
    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:.35s;
}

.outline-btn:hover{
    background:#fff;
    color:#102A63;
}

/*=========================
Navigation
=========================*/

.swiper-button-next,
.swiper-button-prev{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(255,255,255,.35);
    color:#102A63;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:18px;
    font-weight:700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:#fff;
}

/*=========================
Pagination
=========================*/

.swiper-pagination{
    bottom:20px !important;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#102A63;
}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.hero-item{
    height:500px;
}

.hero-item img{
    height:500px;
}

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:16px;
    line-height:28px;
}

.swiper-button-next,
.swiper-button-prev{
    display:none;
}

}

@media(max-width:767px){

.hero-item{
    height:420px;
}

.hero-item img{
    height:420px;
}

.hero-content{
    width:92%;
}

.hero-subtitle{
    font-size:12px;
}

.hero-content h1{
    font-size:30px;
}

.hero-content p{
    font-size:15px;
    line-height:26px;
}

.hero-btns{
    flex-direction:column;
}

.theme-btn,
.outline-btn{
    width:220px;
    text-align:center;
}

}

/*=========================================
ABOUT SECTION
=========================================*/

.about-section{

    padding:60px 0;

    background:#fff;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:20px;

    display:block;

}

.experience-box{

    position:absolute;

    bottom:30px;

    right:-20px;

    width:180px;

    background:#102A63;

    color:#fff;

    padding:25px;

    text-align:center;

    border-radius:15px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.experience-box h3{

    font-size:42px;

    font-weight:700;

    margin-bottom:5px;

    color:#fff;

}

.experience-box span{

    font-size:15px;

}

.section-subtitle{

    color:#102A63;

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.about-content h2{

    font-family:'Playfair Display',serif;

    font-size:46px;

    line-height:1.2;

    margin:18px 0 25px;

    color:#222;

}

.about-content p{

    font-size:17px;

    line-height:30px;

    color:#666;

    margin-bottom:18px;

}

.about-list{

    margin-top:30px;

}

.about-item{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    font-size:17px;

    color:#333;

}

.about-item i{

    width:34px;

    height:34px;

    background:#102A63;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:14px;

    flex-shrink:0;

}

@media(max-width:991px){

.about-section{

padding:80px 0;

}

.about-content{

margin-top:30px;

}

.experience-box{

right:20px;

bottom:20px;

}

.about-content h2{

font-size:36px;

}

}

@media(max-width:576px){

.about-content h2{

font-size:30px;

}

.about-content p{

font-size:16px;

line-height:28px;

}

.experience-box{

width:150px;

padding:18px;

}

.experience-box h3{

font-size:34px;

}

}


/*=========================================
SERVICES SECTION
=========================================*/

.services-section{
    padding:60px 0;
    background:#f8f9fc;
}

.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.service-content{
    padding:30px;
}

.service-content h4{
    font-size:26px;
    margin-bottom:15px;
    color:#222;
    font-family:'Playfair Display',serif;
}

.service-content p{
    color:#666;
    line-height:28px;
    margin-bottom:20px;
}

.service-content a{
    color:#102A63;
    font-weight:600;
    text-decoration:none;
}

.service-content a i{
    margin-left:8px;
    transition:.3s;
}

.service-card:hover a i{
    margin-left:15px;
}

@media(max-width:767px){

.services-section{
    padding:70px 0;
}

.service-card img{
    height:220px;
}

.service-content{
    padding:22px;
}

.service-content h4{
    font-size:22px;
}

}


/*=========================================
FEATURED COLLECTION
=========================================*/

.collection-section{
    padding:60px 0;
    background:#f8f9fc;
}

.collection-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.collection-card img{
    width:100%;
    height:380px;
    object-fit:cover;
    transition:.5s;
}

.collection-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:25px;
    background:linear-gradient(to top, rgba(0,0,0,.85), transparent);
    color:#fff;
}

.collection-overlay h4{
    font-family:'Playfair Display',serif;
    font-size:28px;
    margin-bottom:10px;
}

.collection-overlay a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.collection-card:hover img{
    transform:scale(1.08);
}

.collection-card:hover .collection-overlay{
    padding-bottom:35px;
}

@media(max-width:767px){

.collection-section{
    padding:70px 0;
}

.collection-card img{
    height:300px;
}

.collection-overlay h4{
    font-size:22px;
}

}


/*=========================================
TESTIMONIAL SECTION
=========================================*/

.testimonial-section{
    padding:60px 0;
    background:#fff;
}

.testimonial-card{
    background:#f8f9fc;
    padding:35px;
    border-radius:18px;
    height:100%;
    transition:.3s;
    border:1px solid #eee;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.stars{
    color:#f5b301;
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#666;
    line-height:30px;
    margin-bottom:30px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.client h5{
    margin:0;
    font-size:20px;
    color:#222;
}

.client span{
    color:#777;
    font-size:14px;
}

@media(max-width:767px){

.testimonial-section{
    padding:70px 0;
}

.testimonial-card{
    padding:25px;
}

}


/*=========================================
CTA SECTION
=========================================*/

.cta-section{
    padding:60px 0;
    background:#ffffff;
}

.cta-wrapper{
    background:#102A63;
    padding:60px;
    border-radius:20px;
    position:relative;
    overflow:hidden;
}

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-120px;

    right:-100px;

}

.cta-wrapper::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

    bottom:-70px;

    left:-60px;

}

.cta-content{

    position:relative;

    z-index:2;

}

.cta-content span{

    color:#d4dfff;

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:600;

}

.cta-content h2{

    color:#fff;

    font-size:42px;

    font-family:'Playfair Display',serif;

    margin:18px 0;

}

.cta-content p{

    color:#d8d8d8;

    line-height:30px;

    margin:0;

}

.cta-btn{

    position:relative;

    z-index:2;

    display:inline-block;

    padding:16px 38px;

    background:#fff;

    color:#102A63;

    border-radius:50px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.cta-btn:hover{

    background:#f3f3f3;

    color:#102A63;

}

@media(max-width:991px){

.cta-wrapper{

padding:40px 30px;

text-align:center;

}

.cta-content h2{

font-size:32px;

}

.cta-btn{

margin-top:30px;

}

}

@media(max-width:576px){

.cta-content h2{

font-size:28px;

}

}

/*=========================================
VISIT STORE
=========================================*/

.visit-section{
    padding:60px 0;
    background:#fff;
}

.visit-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

.visit-content h2{
    font-size:44px;
    font-family:'Playfair Display',serif;
    margin:20px 0;
    color:#222;
}

.visit-content p{
    color:#666;
    line-height:30px;
    margin-bottom:35px;
}

.visit-info{
    margin-bottom:35px;
}

.info-box{
    display:flex;
    gap:20px;
    margin-bottom:25px;
    align-items:flex-start;
}

.info-box i{
    width:60px;
    height:60px;
    background:#102A63;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.info-box h5{
    margin-bottom:5px;
    color:#222;
    font-size:20px;
}

.info-box p{
    margin:0;
    color:#666;
}

@media(max-width:991px){

.visit-section{
padding:80px 0;
}

.visit-content{
margin-bottom:40px;
}

.visit-content h2{
font-size:34px;
}

}

@media(max-width:576px){

.visit-content h2{
font-size:28px;
}

.info-box{
gap:15px;
}

.info-box i{
width:50px;
height:50px;
font-size:18px;
}

}


/*==================================
CONTACT
==================================*/

.contact-section{
    padding:60px 0;
    background:#f8f9fc;
}

/*=========================
FORM
=========================*/

.premium-form{

    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    height:100%;
    border-top:5px solid #102A63;

}

.premium-form h3{

    font-size:32px;
    margin-bottom:10px;
    font-family:'Playfair Display',serif;
    color:#102A63;

}

.premium-form p{

    color:#777;
    margin-bottom:35px;
    line-height:28px;

}

.premium-form input,
.premium-form select,
.premium-form textarea{

    width:100%;
    border:none;
    background:#f5f7fb;
    border-radius:12px;
    padding:16px 20px;
    transition:.3s;
    font-size:15px;

}

.premium-form input,
.premium-form select{

    height:58px;

}

.premium-form textarea{

    height:170px;
    resize:none;

}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus{

    background:#fff;
    outline:none;
    box-shadow:0 0 0 2px #102A63;

}

.premium-form .theme-btn{

    height:58px;
    border:none;
    border-radius:50px;
    background:#102A63;
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:.35s;

}

.premium-form .theme-btn:hover{

    background:#0c204e;
    transform:translateY(-3px);

}

/*=========================
MAP
=========================*/

.map-box{

    overflow:hidden;
    border-radius:20px;
    height:100%;
    min-height:620px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.map-box iframe{

    width:100%;
    height:100%;
    border:0;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.contact-section{

padding:80px 0;

}

.map-box{

margin-top:30px;
min-height:400px;

}

.premium-form{

padding:30px;

}

}

@media(max-width:576px){

.premium-form{

padding:25px;

}

.premium-form h3{

font-size:26px;

}

.map-box{

min-height:300px;

}

}




/*=========================================
            FOOTER
=========================================*/

.footer{

    background:#081a43;

    color:#fff;

    padding:60px 0 0;

}

.footer-logo{

    max-width:100px;

    margin-bottom:25px;

}

.footer-widget p{

    color:rgba(255,255,255,.75);

    line-height:30px;

}

.footer-widget h4{

    font-size:24px;

    margin-bottom:25px;

    font-family:'Playfair Display',serif;

}

.footer-widget ul{

    padding:0;

    margin:0;

    list-style:none;

}

.footer-widget ul li{

    margin-bottom:14px;

}

.footer-widget ul li a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.3s;

}

.footer-widget ul li a:hover{

    color:#ffffff;

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.footer-social a{

    width:42px;

    height:42px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:#fff;

    color:#102A63;

}

.footer-newsletter{

    position:relative;

    margin-top:20px;

}

.footer-newsletter input{

    width:100%;

    height:56px;

    border:none;

    border-radius:50px;

    padding:0 60px 0 20px;

    outline:none;

}

.footer-newsletter button{

    position:absolute;

    right:6px;

    top:6px;

    width:44px;

    height:44px;

    border:none;

    border-radius:50%;

    background:#102A63;

    color:#fff;

}
.footer-bottom{
    width:100%;
    border-top:1px solid rgba(255,255,255,.15);
    padding:20px 0;
    margin-top:50px;
    background:#061538;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.8);
    font-size:15px;
    line-height:26px;
}

.footer-bottom a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.footer-bottom a:hover{
    color:#d4b06a;
}

@media (max-width:767px){

    .footer-bottom{
        padding:18px 0;
    }

    .footer-bottom p{
        font-size:14px;
    }

}