*,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
li,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

b,
strong,
label {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

:root {
    --Roboto: "Roboto";
    --Hanuman: "Hanuman";
    --color-27: #272727;
    --color-4c: #4c4c4c;
    --color-70: #707070;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-dce0e0: #dce0e0;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
}

.container {
    margin: 0 auto;
    --content-width: min(100%, var(--container-max-width, 1140px));
    --container-max-width: 1140px;
    max-width: var(--content-width);
    width: 100%;
}


.heading-container .heading-title h2 {
    margin: 0;
    color: var(--color-27);
    font-family: var(--Hanuman);
    font-weight: var(--font-weight-600);
    line-height: 1;
    font-size: 2rem;
}



.heading-container .heading-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-bottom: 60px;
}



.heading-container .heading-title h4 {
    margin: 0;
    color: var(--color-27);
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    line-height: 1;
    font-size: 1.5rem;
}

/* ---------------------- Header CSS ----------------------- */

header{
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    width: 100%;
    z-index: 99 !important;
    min-height: 142px;
}

header .navbar-brand span {
    font-weight: 600;
    font-size: 1.5rem;
}

header .navbar-brand {
    height: 71px;
    width: 299px;
}

header .create-btn {
    background-color: #333;
    color: var(--color-white);
    cursor: pointer;
    padding: 0 15px;
    text-transform: uppercase;
    font-weight: var(--font-weight-500);
    color: var(--color-white);
    border: 1px none var(--color-4c);
    background-color: var(--color-4c);
    font-family: var(--Roboto);
    font-size: 15px;
    text-align: center;
    line-height: 40px;
    white-space: nowrap;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

header .create-btn:hover {
    color: rgba(255, 255, 255, 0.99);
    border: 1px none var(--color-70);
    background-color: rgba(112, 112, 112, 1);
}

header .navbar-nav .nav-link {
    font-weight: 500;
}

header .navbar-nav li.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .navbar-nav li.nav-item i {
    margin-left: 0px;
}

header .navbar-nav li.nav-item a.nav-link {
    color: var(--color-27);
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    white-space: nowrap;
    font-size: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.2s ease;

}

@media(min-width:992px) {
    header .navbar-nav li.nav-item a.nav-link {
        line-height: 90px;
        height: 90px;
    }
}

/* header .navbar-nav li.nav-item a.nav-link:hover,
header .navbar-nav li.nav-item a.nav-link:active{
    color: var(--color-4c);
    background-color: rgba(39, 39, 39, 0.25);
} */

header .navbar-nav .nav-link::after {
    display: none;
}

header .navbar-nav {
    margin-right: 10px;
}

header .dropdown-submenu {
    position: relative;
}

header li.dropdown-submenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

header .dropdown-submenu .submenu-dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
    border-radius: 0;
    font-family: var(--Roboto);
    font-size: 15px;
    font-weight: var(--font-weight-500);
    text-align: left;
    text-transform: uppercase;
    border: none;
}

header .dropdown-submenu:hover>.submenu-dropdown {
    display: block;
}

header .dropdown-menu {
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
    border-radius: 0;
    font-family: var(--Roboto);
    font-size: 15px;
    font-weight: var(--font-weight-500);
    text-align: left;
    text-transform: uppercase;
    border: none;
}

header .dropdown-item {
    white-space: nowrap;
    color: var(--color-27);
    border-bottom: 1px solid var(--color-dce0e0);
    padding: 15px;
    line-height: 1.5;
    min-width: 250px;
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    transition: all 0.2s;
}

header .dropdown-item:hover {
    background-color: rgba(39, 39, 39, 0.25);
    color: var(--color-4c);
}

header .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    top: 75px;
    left: 0;
}



/* ---------------------- Header CSS ----------------------- */



/* ---------------------- Home Banner CSS ----------------------- */

.home-banner {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}


/* ------ NEW ------- */

/* CSS for Fade Effect and Fixed Height */
/* CSS for Continuous Loop Transitions */
.home-banner {
  position: relative;
  /*height: 480px;*/
  height: 660px;
  overflow: hidden;
}

#homeBannerCarousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#homeBannerCarousel .carousel-inner {
  height: 100%;
}

#homeBannerCarousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 3s ease-in-out;
  z-index: 1;
}

#homeBannerCarousel .carousel-item.active {
  opacity: 1;
  z-index: 2;
}

#homeBannerCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-banner-content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* ------ NEW ------- */



.home-banner .home-slider{
    width: 100%;
}

/* .home-banner .home-slider .carousel-inner,
.home-banner .home-slider  .carousel-item{
    height: 450px;
} */

.home-banner .carousel {
    width: 100%;
}

.home-banner .home-banner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding-bottom: 30px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    --content-width: min(100%, var(--container-max-width, 1140px));
    --container-max-width: 1140px;
    max-width: var(--content-width);
    width: 100%;
    z-index: 3;
}

.home-banner .home-banner-content .search-header {
    text-align: center;
}

.home-banner .home-banner-content .search-header h1,
.home-banner .home-banner-content .search-header h3 {
    line-height: 1;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    color: var(--color-white);
    font-family: var(--Hanuman);
    font-weight: var(--font-weight-600);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.home-banner .home-banner-content .search-header h3 {
    font-size: 1.75rem;
    padding-top: 10px;
}





/* ------- POP FORM ---- */

/* Main Container */
.pop-form-banner {
    width: 100%;
    background-color: var(--color-white);
    padding: 8px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.19) 7px 20px 20px 0px;
}

/* Form Styles */
.pop-form-banner .search-form {
    width: 100%;
}

.pop-form-banner .search-fields {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.pop-form-banner .form-group {
    position: relative;
    flex: 1;
}

.pop-form-banner .select-wrapper {
    position: relative;
}

.pop-form-banner .form-select {
    font-size: 15px;
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    color: var(--color-4c);
    background-color: var(--color-white);
    border: 1px solid #fff;
    cursor: pointer;
    position: relative;
    width: 100%;
    text-align: left;
    white-space: nowrap;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    line-height: 40px;
    /* padding: 0px 15px; */
    justify-content: space-between;
    border-radius: 0.25rem;
    min-width: 150px;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.pop-form-banner .form-select:focus,
.pop-form-banner .form-select:hover{
    border: 1px solid transparent;
    outline: none;
    box-shadow: none;
}


.pop-form-banner .dropdown-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 18px;
}

/* Address Field Specific Styles */
.pop-form-banner .address-field {
    flex: 2;
    min-width: 250px;
}

.pop-form-banner .address-input {
    width: 100%;
    outline: none;
    padding: 0px 15px 0px 15px;
    border: 1px solid #fff;
    border-radius: 6px;
    font-size: 14px;
    height: 46px;
    transition: border-color 0.3s;
}


.pop-form-banner .location-trigger {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

/* Price Input Fields */
.pop-form-banner .price-input {
    width: 100%;
    padding: 0px 15px;
    border: 1px solid #fff;
    border-radius: 6px;
    font-size: 14px;
    height: 46px;
    transition: border-color 0.3s;
}


/* Search Button */
.pop-form-banner .search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color:var(--color-4c);
    color: var(--color-white);
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    border-radius: 5px;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-block;
    line-height: 1;
    padding: 12px 24px;
    fill: var(--color-white);
    text-align: center;
    transition: 0.3s;
    appearance: button;
}

.pop-form-banner .search-button:hover {
    background-color:  var(--color-70);
}

.pop-form-banner .form-group input:focus-visible,
.pop-form-banner .form-group input:focus{
    outline: none !important;
    border: 1px solid transparent !important;
    box-shadow: none;
}

.pop-form-banner .form-group input::placeholder{
    color: var(--color-27);
}


/* Responsive Styles */
@media (max-width: 992px) {
    .pop-form-banner .form-group {
        min-width: calc(50% - 12px);
    }

    .pop-form-banner .address-field {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .pop-form-banner .form-group {
        min-width: 100%;
    }

    .pop-form-banner .search-fields {
        gap: 8px;
    }
}

/* ------- POP FORM ---- */




/* ---------------------- Home Banner CSS ----------------------- */


/* ---------------------- Inspired CSS ----------------------- */

.inspired-section {
    position: relative;
    margin: 100px 0 50px 0;
}


.inspired-section .carousel-categories-container {
    position: relative;
}

.inspired-section .carousel-cat-box {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 0.25rem;
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box{
    position: relative;
    display: inline-block;
    width: 100%;
}

.inspired-section .carousel-cat-box .image-caro .item{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}


.inspired-section .carousel-cat-box .image-caro .item::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
    transition: 0.2s;
    z-index: 2;
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .image-overlay-box:hover .image-caro .item::before {
    opacity: 0;
}


.inspired-section .carousel-cat-box .image-caro {
    position: relative;
    display: block;
}

.inspired-section .carousel-cat-box .image-caro > .owl-nav{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 5;
}

.inspired-section .carousel-cat-box .image-caro > .owl-nav button{
    opacity: 0;
    font-size: 40px;
    color: var(--color-white);
    transition: all 0.5s ease;
}

.inspired-section .carousel-cat-box .image-caro:hover .owl-nav button{
    opacity: 1;
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .image-overlay-box{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
    cursor: pointer;
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .image-overlay-box > a{
    width: 100%;
}


.inspired-section .carousel-cat-box .image-main-caro-cat-box .label {
    position: absolute;
    right: 30px;
    top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    z-index: 3;
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .label a {
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    margin-left: 3px;
    box-shadow: none;
    text-decoration: none;
    background-color: var(--color-70);
    font-size: 10px;
    line-height: 11px;
    border-radius: 2px;
    margin: 0;
    text-transform: uppercase;
    padding: 3px 5px;
    color: #fff;
}

.inspired-section .carousel-cat-box .image-caro img {
    border-radius: 4px 4px 0 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .label a.grey-label {
    /* background-color: #bcbcbc; */
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .label a.dark-black {
    /* background-color: rgba(0, 0, 0, 0.65); */
    background-color: var(--color-4c);
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .tool-box {
    position: absolute;
    bottom: 20px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .tool-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .tool-box ul li {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column-reverse;
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .tool-box ul li i {
    cursor: pointer;
    line-height: 30px;
    font-size: 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    color: var(--color-white);
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .tool-box ul li span {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .tool-box ul li span::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

.inspired-section .carousel-cat-box .image-main-caro-cat-box .tool-box ul li:hover span {
    visibility: visible;
    opacity: 1;
}

.inspired-section .carousel-categories-container .carousel-categories > .owl-nav,
.features-partner-section .carousel-features .features-caro > .owl-nav {
    position: absolute;
    right: 0;
    top: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.inspired-section .carousel-categories-container .carousel-categories > .owl-nav button,
.features-partner-section .carousel-features .features-caro > .owl-nav button{
    color: var(--color-4c);
    font-weight: 300;
    padding: 0 10px !important;
    font-size: 12px;
    height: 30px;
    line-height: 28px;
    font-family: var(--Roboto);
    border-radius: 4px;
    transition: all 0.5s ease;
}

.inspired-section .carousel-categories-container .carousel-categories > .owl-nav button:hover,
.features-partner-section .carousel-features .features-caro > .owl-nav button:hover{
    background-color: var(--color-4c);
    color: var(--color-white);

}


.inspired-section .carousel-cat-box .property-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: max-content;

}

.inspired-section .carousel-cat-box .property-details>a {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--color-27);
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    margin-bottom: 20px;
}

.inspired-section .carousel-cat-box .property-details h4 {
    margin: 0;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: var(--font-weight-500);
    font-family: var(--Roboto);
    text-align: center;
    color: var(--color-27);
    width: max-content;
}


.inspired-section .carousel-cat-box .property-details p {
    margin: 0;
    margin-bottom: 25px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: var(--font-weight-400);
    font-family: var(--Roboto);
    text-align: center;
    color: var(--color-27);
    width: max-content;
}

.inspired-section .carousel-cat-box .property-details .features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.inspired-section .carousel-cat-box .property-details .features span {
    margin: 0;
    font-size: 16px;
    font-weight: var(--font-weight-400);
    font-family: var(--Roboto);
    color: var(--color-27);
}

.inspired-section .carousel-cat-box .property-details .features img {
    height: 14px;
    width: 14px;
    margin-right: 5px;
}




/* Ensure proper image carousel sizing */
.inspired-section .carousel-cat-box .image-caro .owl-stage-outer,
.inspired-section .carousel-cat-box .image-caro .owl-stage,
.inspired-section .carousel-cat-box .image-caro .owl-item {
    height: 100%;
}



/* ---------------------- Inspired CSS ----------------------- */


/* ---------------------- Our Explore CSS ----------------------- */

.our-explore-section{
    position: relative;
    margin: 100px 0 50px 0; 
}

.our-explore-section .explore-destination-container{
    display: block;
}
.our-explore-section .explore-destination-container .explore-place-overlay{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.our-explore-section .explore-destination-container .explore-place-overlay > a{
    width: 100%;
}

.our-explore-section .explore-destination-container .explore-place-overlay img{
    height: 200px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.our-explore-section .explore-destination-container .explore-place-overlay::before{
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #00000000 50%, #00000099 100%);
    transition: all 0.3s ease;
    opacity: 1;

}

.our-explore-section .explore-destination-container .explore-place-overlay:hover::before{
    opacity: 0;
}

.our-explore-section .explore-destination-container .explore-place-overlay > p{
    margin: 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    line-height: 1;
    font-size: 1.5rem;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
    text-align: center;
    width: 100%;
}


.our-explore-section .explore-destination-container .content-explore{
    text-align: center;
    margin-top: 10px;
}

.our-explore-section .explore-destination-container .content-explore > p{
    margin: 0;
    text-decoration: none;
    color: var(--color-70);
    font-size: 15px;
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
}


/* ---------------------- Our Explore CSS ----------------------- */



/* ---------------------- Selling Section CSS ----------------------- */

.selling-section{
    position: relative;
    margin: 100px 0 50px 0;
}

.selling-section .content-buyer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.selling-section .content-buyer h2{
    margin: 0;
    line-height: 1;
    font-family: var(--Hanuman);
    font-weight: var(--font-weight-600);
    color: var(--color-27);
    font-size: 2rem;
}

.selling-section .content-buyer h4{
    margin: 0;
    text-align: center;
    line-height: 1.3;
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    color: var(--color-27);
    font-size: 1.5rem;
    max-width: 80%;
    
}

.selling-section .content-buyer ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.selling-section .content-buyer ul li{
    position: relative;
    list-style: none;
    margin: 0;
    text-align: center;
    line-height: 1;
    font-family: var(--Roboto);
    font-weight: var(--font-weight-600);
    font-size: 1rem;

}

.selling-section .content-buyer ul li::after{
    content: "";
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-27);
    height: 80%;
    width: 1.5px;

}

.selling-section .content-buyer ul li:last-child::after{
    display: none;
}

.selling-section .content-buyer .create-list-btn{
    margin: 0;
    text-decoration: none;
    font-family: var(--Hanuman);
    font-weight: var(--font-weight-600);
    background-color: var(--color-4c);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    fill: var(--color-white);
    color: var(--color-white);
    border-radius: 8px;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 12px 24px;
    text-align: center;
    margin-top: 10px;
    transition: all .3s;
}

.selling-section .content-buyer .create-list-btn:hover{
    background-color: var(--color-70);
}


.selling-section .not-conviced-text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;   
    margin-bottom: .5rem;
    margin-top: 25px;
    gap: 5px;
}

.selling-section .not-conviced-text span,
.selling-section .not-conviced-text a{
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-27);
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    line-height: 1.2;
}

.selling-section .not-conviced-text a{
    color: var(--color-4c);
    
}

.selling-section .video iframe{
    width: 100% !important;
}

/* ---------------------- Selling Section CSS ----------------------- */



/* ---------------------- Commercial CSS ----------------------- */

.commerical-section{
    position: relative;
    margin: 100px 0 50px 0;
}

.commerical-section .commericial-gallery-container{
    position: relative;
    display: block;
}

.commerical-section .commericial-gallery-container .gallery-image-overlay{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.commerical-section .commericial-gallery-container .gallery-image-overlay::before{
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #00000000 50%, #00000099 100%);
    opacity: 1;
    transition: all 0.3s ease;
}

.commerical-section .commericial-gallery-container .gallery-image-overlay:hover::before{
    opacity: 0;
}

.commerical-section .commericial-gallery-container .gallery-image-overlay > p {
    margin: 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    line-height: 1;
    font-size: 1.5rem;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}





/* ---------------------- Commercial CSS ----------------------- */



/* ---------------------- Others Services CSS ----------------------- */

.others-services-section{
    position: relative;
    margin: 100px 0 50px 0;
}


.others-services-section .services-container{
    display: block;
    position: relative;
}

.others-services-section .services-container .services-boxes{
    text-decoration: none;
    color: var(--color-27);
    background-color: var(--color-white);
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    padding:10px;
}

.others-services-section .services-container .services-boxes a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    gap: 10px;
}

.others-services-section .services-container .services-boxes img{
    height: 40px;
    width: 40px;
    margin-bottom: 15px;
}

.others-services-section .services-container .services-boxes h2{
    margin: 0;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-400);
    font-family: var(--Roboto);
    color: var(--color-27);
    font-size: 1.75rem;
    line-height: 1.2;
    text-align: center;
}

.others-services-section .services-container .services-boxes p{
    margin: 0;
    color: var(--color-4c);
    text-align: center;
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    font-size: 15px;
    line-height: 1.5;
}

/* ---------------------- Others Services CSS ----------------------- */


/* ---------------------- Features Partner CSS ----------------------- */


.features-partner-section{
    position: relative;
    margin: 100px 0 50px 0;
}

.features-partner-section .features-caro .item img{
    height: 230px;
}

.features-partner-section .carousel-features{
    position: relative;
    padding-bottom: 60px;
}

.features-partner-section .carousel-features .features-caro  > .owl-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
}

.features-partner-section .carousel-features .features-caro  > .owl-dots button{
    cursor: pointer;
    width: 5px;
    height: 5px;
    border-radius: 100px;
    padding: 5px;
    background-color: var(--color-70);
}

.features-partner-section .carousel-features .features-caro  > .owl-dots button.active{
    background-color: var(--color-27);
}


/* ---------------------- Features Partner CSS ----------------------- */




/* ---------------------- Become a Partner CSS ----------------------- */

.become-partner .become-content-box{
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--color-white);
    padding: 10px 0;
    margin: 0 auto;
}


.become-partner .become-content-box .content-become{
    display: inline-block;
    width: 68%;
    padding: 10px;
}

.become-partner .become-content-box .content-become h2{
    color: var(--color-4c);
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    line-height: 1.2;
    font-size: 1.5rem;
}

.become-partner .become-content-box .contact-btn{
    width: 32%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.become-partner .become-content-box .contact-btn a{
    text-decoration: none;
    background-color: var(--color-4c);
    font-family: var(--Hanuman);
    font-weight: var(--font-weight-600);
    color: var(--color-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    padding: 12px 24px;
    text-align: center;
    transition: all .3s;
}

/* ---------------------- Become a Partner CSS ----------------------- */


/* ---------------------- GuideBook CSS ----------------------- */


.guide-book-section .explore-destination-container .explore-place-overlay img{
    height: 100px;
}

.guide-book-section .explore-destination-container .explore-place-overlay > p{
    font-size: 1.25rem;
}


.guide-book-section .explore-destination-container .content-explore{
    margin-top: 20px;
}



/* ---------------------- GuideBook CSS ----------------------- */



/* ---------------------- Footer CSS ----------------------- */

footer {
    position: relative;
    background-color: #fff;
}

footer .footer-nav-top {
    padding: 100px 0 70px;
    background-color: var(--color-white);
    color: var(--color-27);
}

footer .footer-nav-top .footer-logo {
    margin-bottom: 30px;
}

footer .footer-nav-top .footer-description {
    display: inline-block;
    width: 100%;
}

footer .footer-nav-top .footer-description p {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    font-size: 13px;
    color: var(--color-27);
    line-height: 25px;
    text-align: left;
    text-transform: none;
    font-family: var(--Roboto);
}

footer .footer-nav-top .footer-description small {
    font-size: 13px;
}


footer .footer-nav-top .footer-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

footer .footer-nav-top .footer-list h4 {
    margin: 0;
    color: var(--color-27);
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
}

footer .footer-nav-top .footer-list ul li {
    padding: 8px 0 0 0;
}

footer .footer-nav-top .footer-list ul li a {
    padding-left: 0px;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: -10px;
    font-weight: var(--font-weight-500);
    position: relative;
    color: var(--color-27);
    font-family: var(--Roboto);
    transition: 0.2s;
    list-style: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 25px;
}

footer .footer-nav-top .footer-list ul li a:hover {
    color: rgba(112, 112, 112, 1);
}

footer .footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 30px 0;
}

footer .footer-copyright .copyright-text {
    color: var(--color-27);
    font-family: var(--Roboto);
    font-size: 14px;
    line-height: 25px;
    text-align: left;
    text-transform: none;
    font-weight: var(--font-weight-400);
    display: inline-block;
}

footer .footer-copyright .footer-nav {
    display: inline-block;
}

footer .footer-copyright .footer-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

footer .footer-copyright .footer-nav ul li {
    padding: 0 10px;
    list-style: none;
}

footer .footer-copyright .footer-nav ul li a {
    color: var(--color-27);
    font-family: var(--Roboto);
    font-weight: var(--font-weight-400);
    transition: 0.2s;
    cursor: pointer;
    font-size: 14px;
    line-height: 25px;
}

footer .footer-copyright .footer-nav ul li a:hover {
    color: rgba(112, 112, 112, 1);
}

footer .footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

footer .footer-social a {
    color: var(--color-27);
    transition: 0.2s;
    text-decoration: none;
    font-size: 16px;
    line-height: 25px;
}

footer .footer-social a:hover {
    color: rgba(112, 112, 112, 1);
}

/* ---------------------- Footer CSS ----------------------- */


/* ---------------------- Responsive CSS ----------------------- */


@media(min-width: 768px) and (max-width: 1024px){
    .features-partner-section .carousel-features .features-caro{
        padding: 30px 0 0 0;
    }
}

@media(min-width: 768px) and (max-width: 991.98px){
    header .navbar-toggler {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    header .navbar-nav li.nav-item {
        align-items: start;
        justify-content: start;
        flex-wrap: wrap;
    }

    header .navbar-nav {
        margin-top: 30px;
        margin-right: 0;
    }

    header .navbar-nav li.nav-item a.nav-link {
        width: 100%;
        align-items: start;
        justify-content: space-between;
    }

    header .navbar-nav .dropdown:hover .dropdown-menu {
        width: 100%;
        box-shadow: none;
    }

    header .dropdown-submenu:hover>.submenu-dropdown {
        left: 0;
        position: relative;
    }

    header .navbar-nav .dropdown-menu{
        width: 100%;
    }

    /* --------------- Header CSS ------------------ */


    /* --------------- Footer CSS ------------------ */

    footer .footer-nav-top .footer-description {
        margin-bottom: 1rem;
    }

    footer .footer-nav-top {
        padding: 50px 15px 50px 15px;
    }

    footer .footer-copyright {
        flex-direction: column;
        row-gap: 20px;
    }

    footer .footer-nav-top .footer-list {
        margin-top: 30px;
    }

    /* --------------- Footer CSS ------------------ */
}


@media (max-width:767px) {

    /* --------------- Header CSS ------------------ */

    header .navbar-toggler {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    header .navbar-nav li.nav-item {
        align-items: start;
        justify-content: start;
        flex-wrap: wrap;
    }

    header .navbar-nav {
        margin-top: 30px;
        margin-right: 0;
    }

    header .navbar-nav li.nav-item a.nav-link {
        width: 100%;
        align-items: start;
        justify-content: space-between;
    }

    header .navbar-nav .dropdown:hover .dropdown-menu {
        width: 100%;
        box-shadow: none;
    }

    header .dropdown-submenu:hover>.submenu-dropdown {
        left: 0;
        position: relative;
    }

    header .navbar-nav .dropdown-menu{
        width: 100%;
    }

    /* --------------- Header CSS ------------------ */


    /* --------------- Footer CSS ------------------ */

    footer .footer-nav-top .footer-description {
        margin-bottom: 1rem;
    }

    footer .footer-nav-top {
        padding: 50px 15px 50px 15px;
    }

    footer .footer-copyright {
        flex-direction: column;
        row-gap: 20px;
    }

    footer .footer-nav-top .footer-list {
        margin-top: 30px;
    }

    /* --------------- Footer CSS ------------------ */



    /* --------------- Home Content CSS ------------------ */

    .heading-container .heading-title{
        margin-bottom: 30px;
    }

    .our-explore-section .explore-destination-container > .row,
    .selling-section .content-video-container,
    .commerical-section .commericial-gallery-container > .row,
    .our-explore-section .explore-destination-container > .row,
    .others-services-section .services-container > .row
    {
        row-gap: 30px;
    }

    .become-partner .become-content-box{
        row-gap: 15px;
    }

    .become-partner .become-content-box .content-become,
    .become-partner .become-content-box .contact-btn{
        width: 100%;
    }

    .become-partner .become-content-box .content-become h2{
        text-align: center;
    }

    .features-partner-section .carousel-features .features-caro{
        padding: 50px 0;
    }

    .features-partner-section .carousel-features .features-caro > .owl-nav{
        top: -10px;
    }

    .features-partner-section .carousel-features .features-caro  > .owl-dots{
        bottom: -20px;
    }

    .inspired-section .carousel-categories-container{
        margin-top: 50px;
    }

    .inspired-section .carousel-categories-container .carousel-categories > .owl-nav{
        top: -55px;
    }

    /* --------------- Home Content CSS ------------------ */
}


/* ---------------------- Responsive CSS ----------------------- */
