/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

:root{
    --gold:#d4a34f;
    --dark:#0f0f0f;
    --light:#f8f4ec;
    --white:#ffffff;
}

/* =========================
   GLOBAL
========================= */

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#222;
}

h1,h2,h3,h4,h5{
    font-family:'Cinzel',serif;
}

a:hover{
    text-decoration:none;
}

.section-full{
    padding:40px 0;
    display:flex;
    align-items:center;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    color:var(--gold);
    font-size:42px;
    font-weight:700;
    position:relative;
}

.section-title h2:after{
    content:"";
    width:120px;
    height:2px;
    background:var(--gold);
    display:block;
    margin:15px auto;
}

.dark-section{
    background:#111;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#000;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.social-icons a{
    color:#fff;
    margin-left:15px;
}

.social-icons a:hover{
    color:var(--gold);
}

/* =========================
   NAVBAR
========================= */

.custom-navbar{
    top:40px;
    background:rgba(0,0,0,.15);
    backdrop-filter:blur(10px);
    transition:.4s;
    padding:15px 0;
}
.custom-navbar.nav-scrolled{
    background:rgba(0,0,0,.85);
}

.navbar-brand{
    color:#fff!important;
    font-weight:700;
    font-size:32px;
    letter-spacing:2px;
}

.nav-link{
    color:#fff!important;
    margin-left:15px;
    font-weight:500;
    transition:.3s;
}

.nav-link:hover{
    color:var(--gold)!important;
}

.btn-book{
    background:var(--gold);
    color:#fff!important;
    margin-left:20px;
    padding:10px 25px;
    border-radius:30px;
}

.btn-book:hover{
    transform:translateY(-2px);
}

/* =========================
   HERO
========================= */

.hero-section{
    min-height:100vh;
    background:url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.hero-content h5{
    letter-spacing:4px;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:100px;
    font-weight:800;
    color:var(--gold);
}

.hero-content h2{
    font-size:42px;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:40px;
}

.hero-buttons .btn{
    margin:10px;
}

/* =========================
   BUTTONS
========================= */

.btn-gold{
    background:var(--gold);
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    transition:.4s;
}

.btn-gold:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(212,163,79,.4);
}

/* =========================
   ABOUT
========================= */
#about{
    background:#f8f4ec;
}
.small-title{
    color:var(--gold);
    font-weight:600;
    letter-spacing:2px;
}

#about h2{
    margin:20px 0;
    font-size:50px;
}

.feature-box{
    text-align:center;
}

.feature-box i{
    font-size:45px;
    color:var(--gold);
    margin-bottom:15px;
}

.feature-box h5{
    font-size:20px;
}

/* =========================
   TENT CARD
========================= */

.tent-card{
    color:#1a1a1a;
    border:1px solid rgba(212,163,79,.4);
    border-radius:15px;
    overflow:hidden;
    transition:.4s;
}

.tent-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.5);
}

.tent-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.tent-card .card-body{
    padding:25px;
}

.tent-card h4{
    color:var(--gold);
}

.tent-card ul{
    padding-left:20px;
}

/* =========================
   ACTIVITIES
========================= */

.activity-box{
    padding:40px;
    margin-bottom:30px;
    transition:.4s;
}

.activity-box:hover{
    transform:translateY(-8px);
}

.activity-box i{
    font-size:60px;
    color:var(--gold);
    margin-bottom:20px;
}

.activity-box h4{
    font-size:24px;
}

/* =========================
   GALLERY
========================= */

.gallery-img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:25px;
    transition:.4s;
}

#nearby-destinations .gallery-img{
    margin-bottom:10px;
}
#nearby-destinations.section-full{
    background: #f8f4ec;
}

.gallery-img:hover{
    transform:scale(1.05);
}

/* =========================
   BOOKING
========================= */

.booking-section{
    background:
    linear-gradient(rgba(0,0,0,.75),
    rgba(0,0,0,.75));

    background-size:cover;
    background-position:center;
}

.booking-section .section-title h2{
    color:#fff;
}

.booking-section form{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    padding:40px;
    border-radius:15px;
}

.form-control{
    height:55px;
    border-radius:10px;
}

textarea.form-control{
    height:auto;
}

#EnquiryForm.modal{
    padding-right: 0 !important;
}
#EnquiryForm .form-control{
    height: 40px;
    border-radius: 5px;
    font-size: 12px;
    padding:7px;
}
#EnquiryForm label{
    font-size:14px;
    font-family: 'Cinzel', serif;
}


/* =========================
   MAP
========================= */

#contact{
    padding:0;
}

#contact iframe{
    width:100%;
    height:100%;
    min-height:300px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#3c3c3c;
    color:#fff;
    padding:30px 0;
}

footer .footer-right-border{
    border-right: 2px solid #000;
}

.copyright{
    background: #000;
}

footer h3{
    color:var(--gold);
}

/* =========================
   WHATSAPP
========================= */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25d366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    z-index:99999;
}

.whatsapp:hover{
    color:#fff;
    transform:scale(1.1);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0);
    }
}

.hero-content h1{
    animation:float 4s infinite;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){
    footer .footer-right-border{
        border-right: none;
    }
    footer .footer-bottom-border{
        border-bottom: 2px solid #fff;
        padding: 15px 0;
        margin: 15px auto;
    }
    .hero-content h1{
        font-size:60px;
    }

    .hero-content h2{
        font-size:28px;
    }

    .custom-navbar{
        top:0;
        background:#000;
    }

    .navbar-collapse{
        background:#111;
        padding:20px;
        border-top: 1px solid #fff;
    }

    .section-full{
        min-height:auto;
        padding:80px 0;
    }

}

@media(max-width:768px){

    #EnqiryFormDataBottom .form-control{
    margin-bottom: 20px;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-content h2{
        font-size:22px;
    }

    .hero-content p{
        font-size:16px;
    }

    .section-title h2{
        font-size:30px;
    }

    #about h2{
        font-size:32px;
    }

    .top-bar{
        display:none;
    }

    .btn-book{
        margin-top:15px;
        display:inline-block;
    }

}

.hero-slider{
    height:100vh;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item{
    height:100vh;
}

.hero-img{
    height:100vh;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    z-index:1;
}

.carousel-caption{
    z-index:5;
    bottom:50%;
    transform:translateY(50%);
}

.carousel-caption h1{
    font-size:80px;
    font-weight:700;
    color:#d4a34f;
}

.carousel-caption p{
    font-size:22px;
}

.carousel-fade .carousel-item{
    opacity:0;
    transition-duration:1.5s;
    transition-property:opacity;
}

.carousel-fade .carousel-item.active{
    opacity:1;
}

@media(max-width:768px){

    .carousel-caption h1{
        font-size:42px;
    }

    .carousel-caption p{
        font-size:16px;
    }

}

.carousel-item.active .hero-img{
    animation:zoomEffect 7s linear;
}

@keyframes zoomEffect{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.12);
    }

}

/* ==========================
   DESERT EXPERIENCES
========================== */

.desert-experiences{
    padding:40px 0;
    background: #f8f4ec;
    position:relative;

    overflow:hidden;
}

/* Decorative background */



.section-heading{

    margin-bottom:70px;
}

.sub-title{

    color:#d4a34f;

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:14px;

    display:block;

    margin-bottom:15px;
}

.section-heading h2{

    color:#d4a34f;

    font-size:60px;

    font-weight:700;

    font-family:'Cinzel', serif;

    margin-bottom:20px;
}

.section-heading p{

    color:#010101;

    max-width:700px;

    margin:auto;

    font-size:18px;

    line-height:1.8;
}

/* Card */

.experience-card{

    background:#fff;

    border:1px solid rgba(212,163,79,.25);

    border-radius:20px;

    overflow:hidden;

    transition:.5s;

    height:100%;

    position:relative;
}

.experience-card:hover{

    transform:translateY(-10px);

    border-color:#d4a34f;

    box-shadow:0 20px 40px rgba(212,163,79,.15);
}

.experience-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.6s;
}

.experience-card:hover img{

    transform:scale(1.08);
}

/* Content */

.card-content{

    padding:40px 25px 30px;

    text-align:center;

    position:relative;
}

/* Icon */

.icon-circle{

    width:80px;

    height:80px;

    background:#fff;

    border:2px solid #d4a34f;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:-80px auto 20px;

    position:relative;

    z-index:10;
}

.icon-circle i{

    color:#d4a34f;

    font-size:30px;
}

.card-content h3{

    color:#d4a34f;

    font-family:'Cinzel', serif;

    font-size:30px;

    margin-bottom:15px;
}

.card-content p{

    color:#010101;

    line-height:1.8;

    margin:0;
}

/* Responsive */

@media(max-width:768px){

    .section-heading h2{

        font-size:40px;
    }

    .experience-card img{

        height:220px;
    }

    .card-content h3{

        font-size:24px;
    }

}

.navbar-toggler{
    border:1px solid #d4a34f;
}

.navbar-toggler-icon{
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/** Font Sizes Start*/
.font-30{
    font-size:30px !important;
}

.font-28{
    font-size:28px !important;
}

.font-24{
    font-size:24px !important;
}

.font-22{
    font-size:22px !important;
}

.font-20{
    font-size:20px !important;
}

.font-18{
    font-size:18px !important;
}

.font-16{
    font-size:16px !important;
}
.font-14{
    font-size:14px !important;
}
.font-12{
    font-size:12px !important;
}
/** Font Sizes Start*/

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 700px;
        margin: 1.75rem auto;
    }
}
.modal-title{
    color: 
}