/*====================================
            GOOGLE FONT
====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    overflow-x:hidden;
}

/*====================================
            COLORS
====================================*/

:root{

    --primary:#B47B45;
    --secondary:#8A5A32;
    --dark:#1b1b1b;
    --light:#ffffff;
    --gray:#777;
    --bg:#f8f8f8;

}

/*====================================
            TOP BAR
====================================*/

.top-bar{

    background:#111;
    color:#fff;
    padding:10px 0;
    font-size:14px;

}

.top-bar span{

    margin-right:20px;

}

.top-bar i{

    color:var(--primary);
    margin-right:6px;

}

.top-bar a{

    color:#fff;
    margin-left:15px;
    transition:.3s;

}

.top-bar a:hover{

    color:var(--primary);

}

/*====================================
            NAVBAR
====================================*/

.navbar{

    background:rgba(0,0,0,.75);
    backdrop-filter:blur(12px);
    padding:14px 0;
    transition:.4s;

}

.navbar-brand img{

    height:55px;

}

.navbar-nav .nav-link{

    color:#fff;
    font-weight:500;
    margin-left:20px;
    position:relative;
    transition:.3s;

}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{

    color:var(--primary);

}

.navbar-nav .nav-link::after{

    content:'';
    position:absolute;
    width:0;
    height:2px;
    background:var(--primary);
    left:0;
    bottom:-5px;
    transition:.4s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

.quote-btn{

    background:var(--primary);
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.quote-btn:hover{

    background:#fff;
    color:#111;

}

/*====================================
            HERO
====================================*/

.hero{

    position:relative;
    background:url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQnx9dIRWxR7p1Rsn3HJ4DlEoXp0JdLenytu05u-rlzLgXDEoEYhr4YFfQ&s') center center/cover no-repeat;
    min-height:100vh;

}

.hero::before{

    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.70);

}

.hero .container{

    position:relative;
    z-index:2;

}

.hero-badge{

    display:inline-block;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(8px);
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.15);
    margin-bottom:20px;

}

.hero h1{

    color:#fff;
    font-size:60px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    color:#ddd;
    font-size:18px;
    line-height:32px;
    margin-bottom:35px;

}

.hero-btn{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

.btn-main{

    background:var(--primary);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;

}

.btn-main:hover{

    background:#fff;
    color:#111;

}

.btn-outline-light{

    border-radius:50px;
    padding:15px 35px;
    font-weight:600;

}

.hero-image{

    position:relative;
    text-align:center;

}

.hero-image img{

    width:100%;
    max-width:600px;
    animation:float 4s ease-in-out infinite;

}

/*====================================
      FLOATING EXPERIENCE CARD
====================================*/

.floating-card{

    position:absolute;
    bottom:20px;
    left:20px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    padding:25px 35px;

    border-radius:20px;

    color:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

}

.floating-card h3{

    font-size:42px;
    color:var(--primary);
    margin-bottom:5px;

}

.floating-card p{

    margin:0;
    color:#fff;

}

/*====================================
          ANIMATION
====================================*/

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*====================================
        MOBILE RESPONSIVE
====================================*/

@media(max-width:991px){

.hero{

padding:120px 0 70px;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:16px;
line-height:28px;

}

.hero-image{

margin-top:50px;

}

.floating-card{

left:50%;
transform:translateX(-50%);
bottom:-20px;

}

.navbar{

background:#111;

}

.navbar-nav{

padding-top:20px;

}

.navbar-nav .nav-link{

margin:10px 0;

}

.quote-btn{

margin-top:15px;

}

}

@media(max-width:576px){

.top-bar{

display:none;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:15px;

}

.hero-btn{

flex-direction:column;

}

.btn-main,
.btn-outline-light{

width:100%;

}

.floating-card{

position:relative;
left:auto;
transform:none;
margin-top:20px;
display:inline-block;

}

}


/*==================================
        WHY CHOOSE US
===================================*/

.why-us{

    background:#f8f8f8;
    padding:100px 0;

}

.section-tag{

    display:inline-block;
    padding:10px 22px;
    border-radius:30px;
    background:#f1e4d6;
    color:var(--primary);
    font-weight:600;

}

.section-title{

    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:20px;

}

.section-text{

    color:#777;
    font-size:17px;
    line-height:30px;

}

.why-card{

    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    position:relative;
    overflow:hidden;

}

.why-card::before{

    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:var(--primary);
    transform:scaleX(0);
    transition:.4s;

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-card:hover{

    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.why-icon{

    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:#f1e4d6;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:.4s;

}

.why-icon i{

    font-size:34px;
    color:var(--primary);

}

.why-card:hover .why-icon{

    background:var(--primary);
    transform:rotateY(180deg);

}

.why-card:hover .why-icon i{

    color:#fff;

}

.why-card h4{

    font-size:22px;
    font-weight:700;
    margin-bottom:15px;

}

.why-card p{

    color:#777;
    line-height:28px;
    margin:0;

}

@media(max-width:991px){

.section-title{

font-size:34px;

}

}

@media(max-width:576px){

.why-us{

padding:70px 0;

}

.section-title{

font-size:28px;

}

.section-text{

font-size:15px;

}

.why-card{

padding:30px 20px;

}

}



/*=============================
        OUR SERVICES
==============================*/

.services{
    background:#fff;
    padding:100px 0;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    position:relative;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-img{
    overflow:hidden;
}

.service-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.6s;
}

.service-card:hover img{
    transform:scale(1.1);
}

.service-content{
    padding:30px;
}

.service-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#f1e4d6;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:-65px;
    position:relative;
    z-index:2;
    margin-bottom:20px;
}

.service-icon i{
    font-size:28px;
    color:var(--primary);
}

.service-card:hover .service-icon{
    background:var(--primary);
}

.service-card:hover .service-icon i{
    color:#fff;
}

.service-content h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.service-content p{
    color:#777;
    line-height:28px;
}

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.service-btn i{
    transition:.3s;
}

.service-btn:hover{
    color:#000;
}

.service-btn:hover i{
    transform:translateX(8px);
}

@media(max-width:991px){

.service-img img{
    height:230px;
}

}

@media(max-width:576px){

.services{
    padding:70px 0;
}

.service-content{
    padding:25px;
}

.service-content h4{
    font-size:20px;
}

.service-img img{
    height:220px;
}

}


/*==================================
        OUR PROCESS
===================================*/

.process-section{

    background:#f8f8f8;
    padding:100px 0;
    position:relative;

}

.process-wrapper{

    position:relative;

}

.process-line{

    position:absolute;
    top:65px;
    left:8%;
    width:84%;
    height:3px;
    background:#d8d8d8;
    z-index:0;

}

.process-card{

    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    z-index:2;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    height:100%;

}

.process-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.process-number{

    position:absolute;
    top:15px;
    right:20px;
    font-size:40px;
    font-weight:700;
    color:#eeeeee;

}

.process-icon{

    width:90px;
    height:90px;
    border-radius:50%;
    background:#f1e4d6;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    transition:.4s;

}

.process-icon i{

    font-size:35px;
    color:var(--primary);

}

.process-card:hover .process-icon{

    background:var(--primary);
    transform:rotateY(180deg);

}

.process-card:hover .process-icon i{

    color:#fff;

}

.process-card h4{

    font-size:24px;
    font-weight:700;
    margin-bottom:15px;

}

.process-card p{

    color:#777;
    line-height:28px;
    margin:0;

}

/*=====================
Responsive
======================*/

@media(max-width:991px){

.process-line{

display:none;

}

.process-card{

margin-bottom:20px;

}

}

@media(max-width:576px){

.process-section{

padding:70px 0;

}

.process-card{

padding:30px 20px;

}

.process-card h4{

font-size:20px;

}

.process-icon{

width:75px;
height:75px;

}

.process-icon i{

font-size:28px;

}

}



/*==================================
      COUNTER SECTION
===================================*/

.counter-section{

    position:relative;
    padding:100px 0;
    background:url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRb1Pf7pf7GGs6olABRKhJ5VzYQkl2D_Ok_HbPhq3BK1g&s=10') center center/cover;
    overflow:hidden;

}

.counter-section .overlay{

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);

}

.counter-section .container{

    position:relative;
    z-index:2;

}

.counter-title{

    color:#fff;
    font-size:42px;
    font-weight:700;

}

.counter-text{

    color:#ddd;
    font-size:17px;
    line-height:30px;

}

.counter-box{

    text-align:center;
    padding:35px 20px;
    border-radius:20px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    transition:.4s;
    height:100%;

}

.counter-box:hover{

    transform:translateY(-10px);
    background:rgba(180,123,69,.15);

}

.counter-box i{

    font-size:45px;
    color:var(--primary);
    margin-bottom:20px;

}

.counter{

    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:10px;

}

.counter::after{

    content:"+";

}

.counter-box p{

    color:#ddd;
    font-size:17px;
    margin:0;

}

@media(max-width:991px){

.counter-title{

font-size:34px;

}

}

@media(max-width:576px){

.counter-section{

padding:70px 0;

}

.counter-title{

font-size:28px;

}

.counter{

font-size:34px;

}

.counter-box{

padding:25px 15px;

}

.counter-box i{

font-size:35px;

}

}



/*==================================
        GALLERY SECTION
===================================*/

.gallery-section{

    padding:100px 0;
    background:#fff;

}

.gallery-card{

    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gallery-card img{

    width:100%;
    height:300px;
    object-fit:cover;
    transition:.6s;

}

.gallery-card:hover img{

    transform:scale(1.1);

}

.gallery-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.1));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:25px;
    opacity:0;
    transition:.4s;

}

.gallery-card:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay h4{

    color:#fff;
    margin-top:12px;
    font-size:22px;
    font-weight:600;

}

.gallery-tag{

    display:inline-block;
    width:max-content;
    background:#dc3545;
    color:#fff;
    padding:6px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;

}

.gallery-tag.success{

    background:#198754;

}

@media(max-width:991px){

.gallery-card img{

height:260px;

}

}

@media(max-width:576px){

.gallery-section{

padding:70px 0;

}

.gallery-card img{

height:220px;

}

.gallery-overlay h4{

font-size:18px;

}

}


/*==================================
        TESTIMONIAL SECTION
===================================*/

.testimonial-section{
    background:#f8f8f8;
    padding:100px 0;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.quote-icon{
    width:60px;
    height:60px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#666;
    line-height:30px;
    margin-bottom:20px;
}

.stars{
    color:#ffc107;
    margin-bottom:25px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
}

.client h5{
    margin:0;
    font-size:18px;
    font-weight:600;
}

.client span{
    color:#888;
    font-size:14px;
}

@media(max-width:576px){

.testimonial-section{
    padding:70px 0;
}

.testimonial-card{
    padding:25px;
}

}


/*==================================
        CTA SECTION
===================================*/

.cta-section{

    background:linear-gradient(135deg,#B47B45,#8A5A32);
    color:#fff;
    padding:80px 0;

}

.cta-tag{

    display:inline-block;
    background:rgba(255,255,255,.2);
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:15px;

}

.cta-section h2{

    font-size:42px;
    font-weight:700;
    margin-bottom:20px;

}

.cta-section p{

    color:#f5f5f5;
    font-size:17px;

}



/*==================================
            FOOTER
===================================*/

.footer{

    background:#111;
    color:#bbb;
    padding:80px 0 30px;

}

.footer h4{

    color:#fff;
    margin-bottom:25px;
    font-weight:600;

}

.footer p{

    line-height:30px;

}

.footer ul{

    list-style:none;
    padding:0;
    margin:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#bbb;
    text-decoration:none;
    transition:.3s;

}

.footer ul li a:hover{

    color:#B47B45;
    padding-left:5px;

}

.footer-social{

    margin-top:20px;

}

.footer-social a{

    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#222;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    transition:.3s;

}

.footer-social a:hover{

    background:#B47B45;
    transform:translateY(-5px);

}

.footer hr{

    border-color:#333;
    margin:50px 0 25px;

}

.copyright{

    margin:0;
    font-size:15px;

}



/*==================================
        BACK TO TOP
===================================*/

.back-top{

    position:fixed;
    right:25px;
    bottom:25px;

    width:50px;
    height:50px;

    background:#B47B45;

    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    transition:.3s;

    z-index:999;

}

.back-top:hover{

    background:#111;
    color:#fff;
    transform:translateY(-5px);

}



/*==================================
        MOBILE
===================================*/

@media(max-width:991px){

.cta-section{

text-align:center;

}

.cta-section h2{

font-size:32px;

}

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

}

}

@media(max-width:576px){

.cta-section{

padding:60px 0;

}

.cta-section h2{

font-size:26px;

}

.back-top{

width:45px;
height:45px;

}

}

/*==============================
        LOGO
==============================*/

.logo{

    display:flex;
    align-items:center;
    text-decoration:none;

}

.logo-icon{

    width:58px;
    height:58px;

    background:linear-gradient(135deg,#c6924b,#8b5a2b);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-right:12px;

    box-shadow:0 10px 25px rgba(198,146,75,.35);

}

.logo-icon i{

    color:#fff;
    font-size:26px;

}

.logo-text{

    display:flex;
    flex-direction:column;

}

.logo-text h3{

    margin:0;
    font-size:30px;
    font-weight:800;
    color:#fff;
    line-height:1;

}

.logo-text h3 span{

    color:#c6924b;

}

.logo-text small{

    color:#d8d8d8;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:11px;
    margin-top:5px;

}

.navbar-brand:hover{

    opacity:.9;

}

@media(max-width:768px){

.logo-icon{

width:48px;
height:48px;

}

.logo-icon i{

font-size:22px;

}

.logo-text h3{

font-size:22px;

}

.logo-text small{

font-size:9px;
letter-spacing:1px;

}

}




.contact-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.contact-box:hover{
    transform:translateY(-8px);
}

.contact-box i{
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

.contact-form,
.contact-side{
    border-radius:20px;
}

.form-control,
.form-select{
    height:55px;
    border-radius:12px;
}

textarea.form-control{
    height:auto;
}

.btn-main{
    padding:14px 35px;
    border-radius:10px;
}