/* ================================================= */
/* ------------------ General CSS ------------------ */
/* ================================================= */

* {
    box-sizing: border-box;
}

body {
    color:black; 
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    background: linear-gradient(to right, #ff9900, #ffcc00);
}

a {
    color: blue;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #00CED1;
    outline: none;
    text-decoration: none;
}

p {
    color: black;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Slab', serif;
    margin: 0;
    padding: 0;
    color: #666;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    h2 {
        font-size: 26px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    h2 {
        font-size: 18px;
        font-weight: 400;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    background: #222222;
    color: #00CED1;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    border-radius: 30px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top:hover {
    color: #222222;
    background: #00CED1;
}

.back-to-top i {
    padding-top: 10px;
}

/* ================================================= */
/* ---------------- Nav Header CSS ----------------- */
/* ================================================= */

  
#header {
    background: linear-gradient(135deg, #ff8c00, #ffd700) !important;
    position: relative;
    height: 60px;
}

#header .logo {
    padding-left: 25px;
    left: 0;
    display: inline-block;
    position: absolute;
    line-height: 55px;
}

#header .logo img {
    max-height: 50px;
}

.main-menu {
    padding: 0 130px;
    width: 100%;
    text-align: center;
}

.main-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-menu ul li {
    display: inline-block;
}

.main-menu ul li:hover a,
.main-menu ul li.active a {
    color: #ffffff;
}

.main-menu ul li a {
    font-family: 'Roboto Slab', serif;
    color: black; !important;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 10px;
    line-height: 60px;
    letter-spacing: .5px;
    display: block;
    transition: color .25s ease, background-color .25s ease;
}
.mobile-menu-btn {
    color: black;
    text-align: center;
    font-size: 30px;
    line-height: 57px;
    display: none;
    white-space: nowrap;
}

.mobile-menu-btn i {
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: orange;
    border-top: #343434;
}

.mobile-menu .top-menu {
    display: block;
}

.mobile-menu .top-menu ul {
    padding: 0;
}

.mobile-menu .top-menu ul li {
    display: block;
    text-align: center;
}

.mobile-menu .top-menu ul li a {
    padding: 0;
    line-height: 40px;
}

.mobile-menu .top-menu ul li a:hover {
    text-decoration: none;
}

.phone {
    position: absolute;
    padding-right: 25px;
    padding-left: 10px;
    right: 0;
    color: #fff;
    line-height: 60px;
    cursor: pointer;
    transition: color .25s ease;
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    font-weight: 700;
}

.phone i {
    padding-right: 10px;
    font-size: 20px;
}
@media (max-width: 575.98px) {
    #header .logo {
        padding-left: 5px;
    }

    #header .phone {
        display: none;
    }

    #header .mobile-menu-btn {
        padding-right: 5px;
        display: block;
        text-align: right;
        font-size: 20px;
        line-height: 55px;
    }

    .main-menu {
        padding: 0 30px;
    }
}
@media (max-width: 1199.98px) {
    .main-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

.whatsapp-float {
  position: fixed;
  bottom: 30px; /* adjust if language button is near */
  left: 20px;
  z-index: 9999;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999 !important;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/* Header styling */
#header {
  padding: 10px 20px;
  background: #fff;
  border-bottom: 1px solid #ccc;
}

/* Flex wrapper to align logo and button */
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

/* Logo image styling */
.logo img {
  height: 50px;
  display: block;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown button */
.dropbtn {
  background-color: #ff8800;
  color: white;
  padding: 10px 16px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Dropdown content hidden by default */
.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  z-index: 1000;
}

/* Links inside dropdown */
.dropdown-content a {
  color: #333;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show dropdown on click */
.dropdown.show .dropdown-content {
  display: block;
}

/* Responsive */
@media (max-width: 600px) {
  .header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .dropbtn, .dropdown-content {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
  }
}

#headerSlider {
    position: relative;
    max-width: 100%;
    max-height: calc(100vh - 60px);
    margin: 0 auto;
    text-align: center;
}

#headerSlider img {
    width: 100%;
}

/* ================================================= */
/* ---------------- Welcome Section ---------------- */
/* ================================================= */

#welcome {
    position: relative;
    padding: 45px 0 60px 0;
    background: #ffffff;
    text-align: center;
}

#welcome h3 {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#welcome h4 {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#welcome p {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 25px;
}

@media (max-width: 767.98px) {
    #welcome h3 {
        font-size: 40px;
        font-weight: 700;
    }
    
    #welcome h4 {
        font-size: 30px;
        font-weight: 400;
    }
    
    #welcome p {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 575.98px) {
    #welcome h3 {
        font-size: 30px;
        font-weight: 700;
        letter-spacing: 0;
    }
    
    #welcome h4 {
        font-size: 20px;
        font-weight: 400;
    }
    
    #welcome p {
        font-size: 16px;
        line-height: 26px;
    }
}

#welcome a {
    display: inline-block;
    padding: 7px 30px;
    color:white !important;
    background: #5C4033 ;
    border-radius: 30px;
}

#welcome a:hover {
    color: #5C4033 ;
    background: black ;
}

/* ================================================= */
/* -------------- Section Header Style ------------- */
/* ================================================= */

.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 45px;
    padding-bottom: 15px;
}

.section-header::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 1px;
    bottom: 0;
    left: calc(50% - 50px);
    background: #666;
    z-index: 99;
}

.section-header h2 {
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header p {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 35px;
        font-weight: 700;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 25px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

/* ================================================= */
/* ----------------- Amenities Style --------------- */
/* ================================================= */

#amenities {
    position: relative;
    padding: 45px 0 30px 0;
    text-align: center;
    background: #f2f2f2;
}

#amenities.home-amenities h2,
#amenities.home-amenities h3,
#amenities.home-amenities p {
    color: #ffffff;
}

#amenities h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

#amenities .item {
    padding: 30px 15px;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 30px;
}

#amenities .icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
}

#amenities .icon.icon-1 {
    background-image: url(../img/icon/shield-hover.png);
}

#amenities .icon.icon-1:hover {
    background-image: url(../img/icon/shield.png);
}

#amenities .icon.icon-2 {
    background-image: url(../img/icon/air-conditioner-hover.png);
}

#amenities .icon.icon-2:hover {
    background-image: url(../img/icon/air-conditioner.png);
}

#amenities .icon.icon-3 {
    background-image: url(../img/icon/bathtub-hover.png);
}

#amenities .icon.icon-3:hover {
    background-image: url(../img/icon/bathtub.png);
}

#amenities .icon.icon-4 {
    background-image: url(../img/icon/shower-hover.png);
}

#amenities .icon.icon-4:hover {
    background-image: url(../img/icon/shower.png);
}

#amenities .icon.icon-5 {
    background-image: url(../img/icon/towel-hover.png);
}

#amenities .icon.icon-5:hover {
    background-image: url(../img/icon/towel.png);
}

#amenities .icon.icon-6 {
    background-image: url(../img/icon/television-hover.png);
}

#amenities .icon.icon-6:hover {
    background-image: url(../img/icon/television.png);
}

#amenities .icon.icon-7 {
    background-image: url(../img/icon/wifi-hover.png);
}

#amenities .icon.icon-7:hover {
    background-image: url(../img/icon/wifi.png);
}

#amenities .icon.icon-8 {
    background-image: url(../img/icon/call-hover.png);
}

#amenities .icon.icon-8:hover {
    background-image: url(../img/icon/call.png);
}

#amenities .icon.icon-9 {
    background-image: url(../img/icon/minibar-hover.png);
}

#amenities .icon.icon-9:hover {
    background-image: url(../img/icon/minibar.png);
}

#amenities .icon.icon-10 {
    background-image: url(../img/icon/kitchen-hover.png);
}

#amenities .icon.icon-10:hover {
    background-image: url(../img/icon/kitchen.png);
}

/* ================================================= */
/* ------------------ About Style ------------------ */
/* ================================================= */

#about {
    position: relative;
    padding: 45px 0 60px 0;
    background: #f2f2f2;
}

#about .row {
    margin-bottom: 60px;
}

#about .row:last-child {
    margin-bottom: 0;
}

#about .img-col,
#about .content-col {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#about .img-col {
    border-radius: 30px;
    overflow: hidden;
}

#about .img-col img {
    border-radius: 30px;
    transition: 0.3s;
    width: 100%;
}

#about .img-col:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#about .content-col h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

@media (max-width: 767.98px) {
    #about .content-col {
        text-align: center;
    }

    #about .content-col h3 {
        margin-top: 15px;
    }
}

#about .content-col p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 20px;
}

#about .content-col a {
    display: inline-block;
    background: #222222;
    font-weight: 400;
    color: #00CED1;
    padding: 8px 30px;
    border-radius: 30px;
}

#about .content-col a:hover {
    background: #00CED1;
    color: #222222;
}

#about .content-col a:focus {
    color: #fff;
}

/* ================================================= */
/* ------------------ Rooms Style ------------------ */
/* ================================================= */

#rooms {
    position: relative;
    padding: 45px 0 0 0;
}

#rooms .room {
    margin-bottom: 60px;
}

#rooms .room-img,
#rooms .room-des {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#rooms .room-des {
    width: 100%;
    text-align: center;
}

#rooms .room-img {
    border-radius: 30px;
    overflow: hidden;
}

#rooms .room-img img {
    border-radius: 30px;
    transition: 0.3s;
}

#rooms .room-img:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#rooms .room-des h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

@media (max-width: 767.98px) {
    #rooms .room-des h3 {
        margin-top: 15px;
    }
}

#rooms .room-des h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

#rooms .room-des h1 span {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 400;
}

#rooms .room-size {
    margin: 0 0 25px 0;
    padding: 0;
}

#rooms .room-size li {
    display: inline-block;
    font-size: 14px;
    margin-right: 15px;
    list-style-type: none;
}

#rooms .room-size li i {
    margin-right: 6px;
}

#rooms .room-icon {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

#rooms .room-icon li {
    list-style-type: none;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
}

@media (max-width: 575.98px) {
    #rooms .room-icon li {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    
}

#rooms .room-icon li.icon-1 {
    background-image: url(../img/icon/shield.png);
}

#rooms .room-icon li.icon-1:hover {
    background-image: url(../img/icon/shield-hover.png);
}

#rooms .room-icon li.icon-2 {
    background-image: url(../img/icon/air-conditioner.png);
}

#rooms .room-icon li.icon-2:hover {
    background-image: url(../img/icon/air-conditioner-hover.png);
}

#rooms .room-icon li.icon-3 {
    background-image: url(../img/icon/bathtub.png);
}

#rooms .room-icon li.icon-3:hover {
    background-image: url(../img/icon/bathtub-hover.png);
}

#rooms .room-icon li.icon-4 {
    background-image: url(../img/icon/shower.png);
}

#rooms .room-icon li.icon-4:hover {
    background-image: url(../img/icon/shower-hover.png);
}

#rooms .room-icon li.icon-5 {
    background-image: url(../img/icon/towel.png);
}

#rooms .room-icon li.icon-5:hover {
    background-image: url(../img/icon/towel-hover.png);
}

#rooms .room-icon li.icon-6 {
    background-image: url(../img/icon/television.png);
}

#rooms .room-icon li.icon-6:hover {
    background-image: url(../img/icon/television-hover.png);
}

#rooms .room-icon li.icon-7 {
    background-image: url(../img/icon/wifi.png);
}

#rooms .room-icon li.icon-7:hover {
    background-image: url(../img/icon/wifi-hover.png);
}

#rooms .room-icon li.icon-8 {
    background-image: url(../img/icon/call.png);
}

#rooms .room-icon li.icon-8:hover {
    background-image: url(../img/icon/call-hover.png);
}

#rooms .room-icon li.icon-9 {
    background-image: url(../img/icon/minibar.png);
}

#rooms .room-icon li.icon-9:hover {
    background-image: url(../img/icon/minibar-hover.png);
}

#rooms .room-icon li.icon-10 {
    background-image: url(../img/icon/kitchen.png);
}

#rooms .room-icon li.icon-10:hover {
    background-image: url(../img/icon/kitchen-hover.png);
}

#rooms .room-link {
    position: relative;
    width: 100%;
    margin-top: 5px;
}

#rooms .room-link a {
    display: inline-block;
    padding: 7px 30px;
    color: #00CED1;
    border-radius: 30px;
    background: #222222;
}

#rooms .room-link a:first-child {
    margin-right: 15px;
}

#rooms .room-link a:hover {
    color: #222222;
    background: #00CED1;
}

#rooms hr {
    width: 75%;
    text-align: center;
}

.modal .modal-header button {
    margin: 0 auto;
    padding: 0px 8px 5px 8px;
    font-size: 25px;
    border-radius: 20px;
    background: #00CED1;
    color: #fff;
}

.modal .modal-body img {
    height: 100%;
    width: 100%;
}

.modal .modal-body h2 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.modal .modal-body p {
    margin-bottom: 15px;
}

.modal .modal-body .modal-link {
    position: relative;
    text-align: center;
}

.modal .modal-body a {
    display: inline-block;
    margin: 0 auto;
    padding: 8px 30px;
    background: #222222;
    color: #00CED1;
    cursor: pointer;
    border: none;
}

.modal .modal-body a:hover {
    color: #222222;
    background: #00CED1;
}

.modal .port-slider-nav .slick-track {
    padding: 30px 0 15px 0;
}

.modal .port-slider-nav .slick-center img {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/* ================================================= */
/* ---------------- Subscribe Style ---------------- */
/* ================================================= */

#subscribe {
    position: relative;
    text-align: center;
    padding: 45px 0 60px 0;
    background: #f2f2f2;
}

#subscribe .subscribe-form {
    position: relative;
    max-width: 525px;
    width: 100%;
    margin: auto;
}

#subscribe .subscribe-form input[type="email"] {
    width: 100%;
    border: 1px solid #666;
    height: 50px;
    line-height: 24px;
    padding: 12px 30px;
    background-color: transparent;
    color: #666;
    font-size: 16px;
    border-radius: 30px;
}

#subscribe .subscribe-form input[type="email"]:focus {
    box-shadow: none;
    outline: 0 none;
    border-color: #00CED1;
}

@media only screen and (max-width: 479px) {
    #subscribe .subscribe-form input[type="email"] {
        text-align: center; 
    } 
}

input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder { 
    color: white; 
}

#subscribe .subscribe-form button {
    font-size: 22px;
    color: #00CED1;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 1px;
    padding: 6px 30px;
    margin-right: -1px;
    background: #222222;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
}

#subscribe .subscribe-form button:hover {
    color: #222222;
    background: #00CED1;
}

#subscribe .subscribe-form button:focus {
    box-shadow: none;
    outline: 0 none;
}


@media only screen and (max-width: 479px) {
    #subscribe .subscribe-form button {
        position: static;
        margin-top: 15px;
        width: 100%;
    } 
}

/* ================================================= */
/* ----------------- Booking Style ----------------- */
/* ================================================= */

#booking {
    position: relative;
    padding: 45px 0 60px 0;
}

#booking .container {
    max-width: 990px;
}

#booking label {
    font-size: 14px;
    font-weight: 600;
}

#booking .form-control,
#booking .custom-select {
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 30px;
    line-height: 24px;
    padding: 5px 20px;
    background-color: transparent;
    color: #222222;
    font-size: 16px;
    font-weight: 200;
}

#booking .form-control:focus,
#booking .custom-select:focus {
    border-color: #00CED1;
    box-shadow: none;
    outline: 0 none;
}

#booking .button button {
    display: inline-block;
    font-size: 16px;
    color: #00CED1;
    line-height: 24px;
    padding: 10px 30px 8px 30px;
    border-radius: 30px;
    background: #222222;
    border: none;
    font-weight: 400;
    cursor: pointer;
    transition: all .3s;
}

#booking .button button:hover {
    color: #222222;
    background: #00CED1;
}

#booking .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* ================================================= */
/* ----------------- Call Us Style ----------------- */
/* ================================================= */

#call-us {
    position: relative;
    text-align: center;
    padding: 45px 0 60px 0;
    background:black;
}
#call-us h2
{
    color:white;
}
#call-us p
{
 color: white;
}

#call-us a {
    font-family: 'Roboto Slab', serif;
    display: inline-block;
    padding: 15px 30px;
    background: #222222;
    color: white !important;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 40px;
}

#call-us a:hover {
    color: white;
    background: black;
}

/* ================================================= */
/* ------------------ Contact Style ---------------- */
/* ================================================= */

#contact {
    position: relative;
    padding: 45px 0;
}

#contact .container {
    max-width: 900px;
}

#contact .contact-info {
    margin-bottom: 30px;
}

#contact .contact-info .info-item {
    position: relative;
    padding: 30px 15px;
    margin-bottom: 15px;
    text-align: center;
    background: #222222;
    border-radius: 30px;
}

#contact .contact-info .info-item i {
    color: #00CED1;
    font-size: 30px;
    margin-bottom: 15px;
}

#contact .contact-info .info-item h3 {
    color: #ddd;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

#contact .contact-info .info-item p {
    margin: 0;
    color: #ddd;
    font-size: 16px;
    font-weight: 300;
}

#contact .contact-info .info-item a {
    color: #ddd;
}

#contact .contact-info .info-item a:hover {
    color: #00CED1;
}

#contact .contact-form {
    position: relative;
}

#contact label {
    font-size: 14px;
    font-weight: 600;
}

#contact .contact-form input[type="text"],
#contact .contact-form input[type="email"] {
    height: 35px;
    font-size: 16px;
    font-weight: 200;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 30px;
}

#contact .contact-form textarea {
    font-size: 16px;
    font-weight: 200;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 30px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
    textarea:focus,
    input:focus {
        font-size: 16px;
        background: #fff;
    }
}

#contact .contact-form input[type="text"]:focus,
#contact .contact-form input[type="email"]:focus,
#contact .contact-form textarea:focus {
    border-color: #00CED1;
}

#contact .contact-form button {
    display: inline-block;
    padding: 8px 30px;
    background: #222222;
    color: #00CED1;
    font-size: 18px;
    font-weight: 400;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-bottom: 15px;
}

#contact .contact-form button:hover {
    color: #222222;
    background: #00CED1;
}

#contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* ================================================= */
/* ------------------ Login Style ------------------ */
/* ================================================= */

#login {
    position: relative;
    padding: 45px 0;
}

#login .container {
    max-width: 900px;
}

@media (max-width: 767.98px) {
    #login .container .col-md-6:first-child {
        margin-bottom: 30px;
    }
} 

#login .login-form {
    position: relative;
}

#login .login-form .control-group {
    margin-bottom: 15px;
}

#login .login-form label {
    font-size: 14px;
    font-weight: 600;
}

#login .login-form input[type="text"],
#login .login-form input[type="email"],
#login .login-form input[type="password"] {
    height: 35px;
    font-size: 16px;
    font-weight: 200;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 30px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
    input:focus {
        font-size: 16px;
        background: #fff;
    }
}

#login .login-form input[type="text"]:focus,
#login .login-form input[type="email"]:focus,
#login .login-form input[type="password"]:focus {
    border-color: #00CED1;
}

#login .login-form button {
    display: inline-block;
    padding: 8px 30px;
    background: #222222;
    color: #00CED1;
    font-size: 18px;
    font-weight: 400;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-bottom: 15px;
}

#login .login-form button:hover {
    color: #222222;
    background: #00CED1;
}

/* ================================================= */
/* ------------------ Footer Style ----------------- */
/* ================================================= */

#footer {
    position: relative;
    padding: 30px 0 25px 0;
    text-align: center;
    background: #222222;
}

#footer .social {
    position: relative;
    margin-bottom: 20px;
}

#footer a {
    color: orange; !important;
}

#footer a:hover {
    color: #ffffff;
}

#footer .social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 5px 10px;
    background: #00CED1;
    color: #5C4033;
    font-size: 20px;
    border-radius: 30px;
}

#footer .social a:hover {
    background: #ffffff;
    color: #00CED1;
}

#footer ul {
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

#footer ul li {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    display: inline-block;
    list-style-type: none;
    padding: 0 10px 0 3px;
    line-height: 15px;
    border-right: 1px solid #ffffff;
}

#footer ul li:last-child {
    border-right: none;
}

#footer p {
    margin: 0;
    font-size: 18px;
}
.custom-icon
{
    font-size: 40px;
    color: orange;
    padding-bottom: 10px;
}

/* Welcome Section Desert Theme */


/* Heading h3 */
#welcome.desert-theme h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Sub-heading h4 */
#welcome.desert-theme h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Paragraph */
#welcome.desert-theme p {
    max-width: 700px;
    margin: 0 auto 25px auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.book-btn {
    display: inline-block;
    background-color: orange !important;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.book-btn:hover {
    background-color: #ff7f00;
    color: #fff;
}

#services-gallery {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

#services-gallery h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #a0522d;
}

#services-gallery .service-card {
  display: block;
}

@media (min-width: 768px) {
  #services-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  #services-gallery h2 {
    grid-column: 1 / -1; /* Force h2 to span full row */
  }
}

.service-card {
  background: #fffaf3;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  margin: 15px;
  color: #a0522d;
  font-size: 1.2rem;
  text-align: center;
}

.package {
  display: none;
  padding: 0 20px 20px 20px;
  animation: fadeIn 0.3s ease-in-out;
}

.package ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package li {
  padding: 10px;
  border-bottom: 1px solid #eee0c0;
  color: #333;
  cursor: pointer;
  position: relative;
}

.package li:hover {
  background-color: #fff5e0;
}

.details {
  display: none;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
  animation: fadeIn 0.3s ease-in-out;
}

.book-btn {
  display: inline-block;
  margin-top: 10px;
  background: #ffa500;
  padding: 6px 15px;
  border-radius: 20px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

.book-btn:hover {
  background: #ff8c00;
  color: #fff;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
 .banner_img {
  height: 90vh;
  object-fit: cover;
  filter: brightness(0.75);
}

.banner_section {
  position: relative;
  z-index: 1;
  background-image: url(img/desert/desert.jpg);
}


.banner_title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 2px 2px 6px black;
  z-index: 1;
  margin-top: 20px;
}

.banner_subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-top: 10px;
}

.contact_bt a {
  display: inline-block;
  background-color: #ffcc00;
  color: #000;
  padding: 10px 25px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.contact_bt a:hover {
  background-color: #e0b700;
}
.caption-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.caption-icon {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease-in-out;
}

.pg-section {
      padding: 50px 20px;
      text-align: center;
      
    }

    .pg-section h2 {
      font-size: 36px;
      color: black;
      margin-bottom: 40px;
    }

    .cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .card {
      background: #fffaf2;
      border-radius: 16px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      width: 300px;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-content {
      padding: 20px;
    }

    .card-content h3 {
      font-size: 22px;
      color: #5C4033;
      margin-bottom: 10px;
    }

    .card-content p {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
    }

    .card-content a {
      display: inline-block;
      text-decoration: none;
      background: orange;
      color: white;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .card-content a:hover {
      background: #a24c14;
    }
   #testimonials {
  padding: 60px 20px;
  text-align: center;
}

#testimonials .section-title {
  font-size: 32px;
  color: black;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
}

.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background: #fff8f0;
  border-radius: 16px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card .message {
  font-style: italic;
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-info img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid #c06a16;
}

.client-info h4 {
  margin: 0;
  color: #5C4033;
  font-size: 18px;
}

.client-info span {
  font-size: 14px;
  color: #888;
}
#faqs {
  background: white;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

#faqs .section-title {
  text-align: center;
  font-size: 32px;
  color: #5C4033;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.faq-question {
  width: 100%;
  background:linear-gradient(to right, #ff9900, #ffcc00) ;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #fbd097;
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.faq-question.active .arrow {
  transform: rotate(180deg); /* Flip arrow */
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background: #fff4e5;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
.desert-theme-gallery {
  padding: 60px 20px;
  background: linear-gradient(to right, #ff9900, #ffcc00);
  text-align: center;
}

.desert-theme-gallery .section-title {
  font-size: 32px;
  color: black;
  margin-bottom: 30px;
}

.gallery-preview {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-preview img {
  width: 30%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.gallery-preview img:hover {
  transform: scale(1.05);
}

.view-more-btn {
  margin-top: 25px;
}

.btn {
  background-color: black !important;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background-color: #a3540f;
}
/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox Modal */
#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

#lightbox .close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
.view-more-btn {
  margin-top: 25px;
}

.btn {
  background-color: #c06a16;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background-color: #a3540f;
}
.sky-gallery-header {
      background: url('img/desert-bg.jpg') center center/cover no-repeat;
      padding: 80px 20px;
      text-align: center;
      color: white;
    }

    .sky-gallery-header h1 {
      font-size: 48px;
      margin: 0;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    }

    .sky-gallery-grid {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .sky-gallery-grid img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .sky-gallery-grid img:hover {
      transform: scale(1.05);
    }

    /* Lightbox */
    #sky-lightbox {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    #sky-lightbox img {
      max-width: 90%;
      max-height: 85vh;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255,255,255,0.2);
    }

    .sky-lightbox-close {
      position: absolute;
      top: 30px;
      right: 40px;
      font-size: 40px;
      color: white;
      cursor: pointer;
    }
#video-section {
    padding: 60px 0;
    background-color: linear-gradient(135deg, #ff8c00, #ffd700 to left)  !important ; /* Dark brown */
    text-align: center;
    color: white;
}

#video-section h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.video-wrapper {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 Aspect Ratio */
    background-color: #000;
}

.video-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.resume-btn {
    margin-top: 20px;
    padding: 12px 40px;
    background-color: white;
    color: #5C4033;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.resume-btn:hover {
    background-color: #e6e6e6;
}
    .hero-custom::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      width: 100%;
    }

    .hero-custom h1 {
      font-size: 2.8rem;
      font-weight: bold;
      line-height: 1.3;
      color: white;
      margin-bottom: 15px;
      animation: fadeInDown 1.5s ease;
    }
    .hero-custom span
    {
     color:orange;
    }

    .hero-content p {
      font-size: 1rem;
      margin-bottom: 20px;
      line-height: 1.6;
      color: #fff;
      animation: fadeInUp 2s ease;
    }

    .btn-custom {
      display: inline-block;
      padding: 12px 30px;
      font-size: 1rem;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      background:orange ;
      color: #fff;
      font-weight: bold;
      transition: 0.3s;
      animation: fadeIn 2.5s ease;
    }

    .btn:hover {
      background: #c78a56;
    }

    /* Features */
    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      margin-top: 35px;
    }

    .feature {
      background: rgba(100, 100, 100, 0.6);
      padding: 15px 20px;
      border-radius: 10px;
      text-align: center;
      font-size: 0.95rem;
      font-weight: bold;
      color: white;
    }

    .feature span {
      display: block;
      font-size: 1.3rem;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .blue { color: #00bcd4; }
    .yellow { color: #ffc107; }
    .green { color: #cddc39; }
    .red { color: #f44336; }

    /* Animations */
    @keyframes fadeInDown {
      from {opacity: 0; transform: translateY(-30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 { font-size: 1.8rem; }
      .hero p { font-size: 0.9rem; }
      .features {
        grid-template-columns: repeat(2, 1fr); /* Mobile par 2-2 */
      }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 1.5rem; }
      .hero p { font-size: 0.85rem; }
    }

.stats-section {
      background: linear-gradient(135deg, #ff8c00, #ffd700) !important;
      color: white;
      padding: 60px 20px;
      border-radius: 20px;
      text-align: center;
      max-width: 1200px;
      margin: 40px auto;
    }

    .stats-section h2 {
      font-size: 28px;
      color: white;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .stats-section p {
      margin-bottom: 40px;
      font-size: 16px;
    }

    .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
    }

    .stat-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .stat-box h3 {
      font-size: 40px;
      color: white;
      margin: 0;
      font-weight: bold;
      animation: counter 2s ease-out forwards;
    }

    .stat-box span {
      font-size: 16px;
      color: black;
      margin-top: 8px;
    }

    /* Number grow animation */
    @keyframes counter {
      0% { transform: scale(0.5); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

.social-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
  }

  /* Main Button */
  .social-main {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: orange; 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    transition: transform 0.3s;
  }

  .social-main:hover {
    transform: scale(1.1);
  }

  .social-main img {
    width: 35px;
    height: 35px;
  }

  /* Hidden Social Menu */
  .social-icons {
    position: absolute;
    bottom: 80px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s ease;
  }

  /* Show menu */
  .social-icons.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .social-icons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s;
  }

  .social-icons a:hover {
    transform: scale(1.15);
  }

  .social-icons img {
    width: 30px;
    height: 30px;
  }