@charset "utf-8";
/* CSS Document */

/******************************/
/*******common css*************/


/******* fonts *********/
@import url('../fonts/stylesheet_mon.css');
@import url('../fonts/stylesheet_manrope.css');
/******* fonts *********/

/* Critical override to prevent Bootstrap from breaking GSAP rendering engine */
html {
  scroll-behavior: auto !important;
  /* overflow-x: hidden !important; */
}

/* Ensure wrapper sits tightly across the window frame */
/* Default styles for mobile/touch (No restrictions) */
#smooth-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: visible;
}

/* Apply locking styles ONLY to devices with a mouse/pointer */
@media (pointer: fine) {
  #smooth-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
}

:root {
    /* ===== Brand Colors ===== */
    --bg-primary: #121717;
    --bg-white: #ffffff;
    --bg-light: #EFEFEF;

    /* brand light colors */
    --brand-primary: #212E63;
    --brand-secondary: #F47320;

    /* font colors */
    --main-heading-color: #000000;
    --sub-heading-color: #333333;
    --paragraph-color: #333333;
    --mute-text-color: #9D9D9D;
    --text-light: #fafafa;
    --text-white: #ffffff;
    --text-dark: #121717;

    --accent-color: #D3AF37;
    --accent-color-dark: #b8860b;

    --border-light: #ffffff;
    --border-dark: #333333;
    --menu-border: rgba(255, 255, 255, 0.08);

    /* ===== Font Families ===== */
    --font-heading: 'Montserrat';
    --font-paragraph: 'Manrope';
}

body {
    font-family: 'Manrope' !important;
    overflow-x: hidden;
    background-color: #F8FAFC;
    color: var(--paragraph-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.heading{
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--main-heading-color);
}

.sub_heading{
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
}

p{
    font-size: 14px;
    letter-spacing: 0.2px;
    color: var(--paragraph-color);
}

h3{
    font-size: 16px;
    transition: 0.4s ease-in-out;
}

h4{
    font-size: 18px;
    transition: 0.4s ease-in-out;
    color: var(--text-dark);
}

a h3:hover, a h4:hover{
    color: var(--accent-color-dark) !important;
}

h5{
    font-size: 16px;
    color: var(--accent-color-dark);
    font-weight: 400;
}

.h4_line_2{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 44px;
}

.p_line_3{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 64px;
}

.text_light{
    color: var(--text-light);
}

.text_mute{
    color: var(--mute-text-color);
}

.text_yellow{
    color: var(--accent-color-dark);
}

.sec_padding{
    padding-top: 80px;
    padding-bottom: 80px;
}

.dark_bg{
    background-color: var(--bg-primary);
}

.light_bg{
    background-color: var(--bg-light);
}

.bg_img{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Button CSS */
.main_btn {
    font-weight: 500;
    font-size: 14px;
    padding: 15px 34px;
    background: transparent;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--border-light);
    color: var(--text-white);
    border-radius: 0px;
}

.main_btn:hover {
    color: var(--text-white) !important;
    background-color: var(--accent-color-dark) !important;
    border: 1px solid var(--accent-color-dark) !important;
}

.main_btn.dark_btn{
    border: 1px solid var(--border-dark);
    color: var(--paragraph-color);
}

.main_btn.dark_btn:hover {
    color: var(--text-white) !important;
    background-color: var(--bg-primary) !important;
    border: 1px solid var(--bg-primary) !important;
}

.main_btn.black_btn{
    border: 1px solid var(--border-dark) !important;
    color: var(--text-white) !important;
    background-color: var(--bg-primary) !important;
}

.main_btn.black_btn:hover {
    color: var(--text-white) !important;
    background-color: var(--accent-color-dark) !important;
    border: 1px solid var(--accent-color-dark) !important;
}

.main_btn.green_btn{
    background-color: #29A71A;
    border-color: #29A71A;
    color: var(--text-white);
}

.main_btn.green_btn:hover {
    color: var(--text-white) !important;
    background-color: #249317 !important;
    border-color: #249317 !important;
}

/* Button CSS */

/* Main Slider CSS */
.main_slide_title{
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--text-white);
    font-weight: 400;
}

.hero_section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.hero_section .carousel-inner, 
.hero_section .carousel-item {
    height: 100%;
}

.hero_section .carousel-item {
    display: flex !important;
    align-items: center;
    backface-visibility: hidden;
    perspective: 1000px;
}

.slide_image_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slide_image_container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55));
    z-index: 2;
}

.hero_slide_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transform: scale(1.05);
}

.carousel-item.active .hero_slide_img {
    animation: cinematicPan 9000ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes cinematicPan {
    0% {
        transform: scale(1.05) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(15px, -10px);
    }
}

.slide_content_wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: auto;
    margin-bottom: 140px;
}

/* Custom Navigation Buttons Position */
.carousel_navigation {
    position: absolute;
    bottom: 100px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 14px;
}

.carousel_nav_btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel_nav_btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.carousel_nav_btn:hover {
    border-color: var(--border-light);
    color: #fff;
    background-color: rgba(197, 168, 128, 0.08);
}
/* Main Slider CSS */

/* navbar css */
.main_header{
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000 !important;
    padding: 15px 35px;
    background-color: rgba(0, 0, 0, 0.3); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
    transition: all 0.4s ease;
}

/* Scrolled fixed header transition styles */
.main_header.header-scrolled {
    background-color: #121717 !important; /* Premium dark background */
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.main_header.light-theme.header-scrolled {
    background-color: #ffffff !important; /* Premium solid white background */
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Prevent fixed header from covering content on detail pages */
/* .dark_header ~ #smooth-wrapper {
    padding-top: 72px;
} */

.detail_content_div{
    padding-top: 130px !important;
}

.dark_header{
    background-color: var(--bg-primary); 
}

.header_logo img{
    height: 40px;
}

.custom-nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 0 !important;
    transition: color 0.3s ease;
}

.custom-nav-link.active{
    font-weight: 600;
}

.custom-nav-link.active,
.custom-nav-link:hover {
    color: var(--accent-color) !important; 
}
/* navbar css */

/* navbar light theme  */
.main_header.light-theme {
    padding: 15px 25px;
    background-color: rgba(255, 255, 255, 0.866); 
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.main_header.light-theme .custom-nav-link {
    color: rgba(17, 17, 17, 0.8) !important; 
}

.main_header.light-theme .custom-nav-link.active,
.main_header.light-theme .custom-nav-link:hover {
    color: var(--accent-color-dark) !important; 
}
/* navbar light theme  */

/* Home Search */
.home_search_form{
    padding: 30px 35px;
    background-color: var(--bg-primary);
    margin-top: -70px;
    position: relative;
    z-index: 9;
}

.home_search_form h3{
    font-family: 'Montserrat';
    font-size: 24px;
    color: var(--text-white);
    font-weight: 400;
}
/* Home Search */

/* Form CSS */
.custom_form .form-control, .custom_form textarea, .custom_form select{
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid #666666 !important;
    border-radius: 0;
    font-size: 14px;
    box-shadow: none !important;
    min-height: 36px;
    letter-spacing: 0.2px;
}

.custom_form label{
    font-size: 14px;
    font-weight: 600;
}

/* Light form css  */
.custom_form.light_form label{
    color: var(--text-light);
}

.custom_form.light_form .form-control, .custom_form.light_form textarea{
    color: #cbcbcb;
}

.custom_form.light_form select{
    color: #cbcbcb;
    background-image: url(../images/down.svg);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px 30px;
}

.custom_form.light_form select option{
    background-color: var(--bg-primary);
    color: var(--text-white);
}
/* Light form css  */

/* choices css */
.custom_form .choices {
    margin-bottom: 0;
    overflow: visible;
}

.custom_form .choices__inner {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #666666 !important;
    border-radius: 0 !important;
    min-height: auto;
    padding: 6px 36px 6px 12px;
}

.custom_form .choices__list--single {
    color: #333333 !important; 
    padding: 0;
    font-size: 14px;
    font-weight: 500;
}

.custom_form .choices__placeholder {
    opacity: var(--choices-placeholder-opacity, 0.7) !important;
}

.custom_form.light_form .choices__list--single {
    color: #ffffff !important; 
}

.custom_form .choices__list--dropdown {
    background-color: #222222 !important; 
    border: 1px solid #666666 !important;
    z-index: 10;
}

.custom_form .choices__list--dropdown .choices__item {
    color: #ffffff !important; 
    font-size: 13px !important;
    padding: 6px !important;
}

.custom_form .choices__list--dropdown .choices__item--selectable.is-selected{
    background-color: var(--accent-color-dark) !important; 
}

.custom_form .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #4a4a4a !important;            
}

.custom_form .choices[data-type*="select-one"]::after {
    display: none !important;
}

.custom_form .choices[data-type*="select-one"] {
    position: relative;
}

.custom_form .choices[data-type*="select-one"]::before {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%23333333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.custom_form.light_form .choices[data-type*="select-one"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
}

.custom_form .choices[data-type*="select-one"].is-open::before {
    transform: translateY(-50%) rotate(180deg);
}
/* choices css */

/* Form CSS */

.border_bottom_div h3{
    font-size: 18px;
}

.border_bottom_div{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 26px 0px;
}

/* tabs css */
.custom_tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.custom_tabs .nav-link{
    border: none;
    padding: 14px 26px;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 15px;
}

.custom_tabs .nav-link.active {
    color: var(--accent-color-dark) !important;
    border: none;
    border-bottom: 1px solid var(--accent-color-dark) !important;
    background-color: #ffffff12;
    font-weight: 500;
}
/* tabs css */

/* dark tabs css */
.dark_tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.dark_tabs .nav-link {
    color: var(--sub-heading-color) !important;
    font-weight: 600;
}

.dark_tabs .nav-link.active {
    color: var(--text-white) !important;
    background-color: var(--bg-primary) !important;
    border-bottom: 2px solid var(--accent-color) !important;
}
/* dark tabs css */

/* Property Card Image Hover Scale Effect */
.property_card .position-relative {
    overflow: hidden;
    margin-bottom: 1rem;
}

.property_card .position-relative img {
    margin-bottom: 0 !important;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.property_card:hover .position-relative img {
    transform: scale(1.08);
}

.property_card_detail h3{
    font-size: 20px;
    color: var(--text-white);
} 

.property_card_detail .location_tag{
    font-size: 13px;
    color: var(--mute-text-color);
}

.property_card_detail .property_price{
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white) !important;
}

.dark_property_card .property_card_detail h3{
    color: var(--text-dark);
}

.dark_property_card .property_price{
    color: var(--accent-color-dark) !important;
}

.tag_div{
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 3px;
    background-color: var(--bg-primary);
    color: var(--text-white);
    top: 8px;
    left: 8px;
    z-index: 9;
}

.tag_div.red_tag{
    background-color: #EE0000;
}

.tag_div.yellow_tag{
    background-color: var(--accent-color-dark);
}

.property_slider{
    padding-bottom: 60px !important;
}

.swiper-pagination{
    margin-top: 90px !important;
}

.light_pagination .swiper-pagination-bullet {
    background-color: var(--text-white);
    opacity: 0.3;
}

.light_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    opacity: 0.9;
}

.dark_pagination .swiper-pagination-bullet {
    background-color: var(--text-dark);
    opacity: 0.3;
}

.dark_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    opacity: 0.7;
}

/* underlined link css */
.text_link {
  border: none;
  background: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.text_link span {
  font-size: 14px;
}

.text_link svg {
  margin-left: 7px; 
  transform: translateX(-8px);
  transition: all 0.3s ease;
  margin-bottom: 3px;
}

.text_link:hover svg {
  transform: translateX(0);
}

.text_link:active svg {
  transform: scale(0.9);
}

.text_link .hover-underline-animation {
  position: relative;
  color: var(--main-heading-color);
  padding-bottom: 4px; 
}

.text_link .hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--main-heading-color);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.text_link:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.text_link.yellow_link .hover-underline-animation:after {
  background-color: var(--accent-color);
}

.text_link.yellow_link .hover-underline-animation{
    color: var(--accent-color);
}

.text_link.yellow_link svg {
    fill: var(--accent-color);
}

/* underlined link css */

.stat_row{
    margin-top: 60px;
}

.stat_div{
    margin-bottom: 45px;
}

.stat_number{
    font-size: 52px;
    color: var(--paragraph-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.testi_section{
    padding-top: 90px;
    padding-bottom: 180px;
}

.testi_heading{
    font-size: 48px;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 400;
}

.testi_quote{
    height: 90px;
    width: auto;
}

.testi_subheading{
    font-size: 26px;
    color: var(--text-white);
}

.testi_text{
    font-size: 18px;
    min-height: 110px;
}

#testi_slider .carousel_navigation {
    bottom: auto;
}

.testi_img img{
    height: 60px;
    width: 60px;
}

.swiper_slider_navigation {
    position: absolute;
    left: 0;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.swiper_nav_btn {
    background: transparent;
    border: 1px solid #00000098;
    color: rgba(0, 0, 0, 0.525);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    outline: none;
    transition: border-color 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}

.swiper_nav_btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper_nav_btn:hover {
    border-color: var(--border-dark);
    color: var(--text-light);
    background-color: var(--bg-primary);
}

.swiper_slider_nav{
    padding-bottom: 100px !important;
}

/* FAQ section */
.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 15px 0;
}

.accordion-header {
    border: none;
}

/* Number position setting */
.accordion-number {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
}

.accordion-button {
    font-size: 1.15rem;
    font-weight: 400;
    padding: 15px 0 15px 60px; 
    color: #ffffff !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    padding-top: 10px;
    padding-left: 60px; 
    padding-bottom: 20px;
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.6;
}
/* FAQ section */

/*******common css*************/
/******************************/



/***************************************************************************************/
/*inner_pages styles*/
/***************************************************************************************/

.inner-banner {
    position: relative;
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}

.inner-banner.inner_banner_2{
    padding-bottom: 90px;
}

.inner-banner-content {
    position: relative;
    z-index: 3;
    color: var(--text-white);
}

.inner-banner-title {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--text-white);
    font-weight: 400;
}

.round_icon_div {
    width: 50px;
    height: 50px;
    background-color: #121717; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.large_icon{
    height: 40px;
    width: 40px;
}

.small_icon{
    height: 25px;
    width: 25px;
}

.map-container {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    border-top: 1px solid #e5e7eb;
}

.large_text{
    font-size: 22px;
    font-weight: 600;
}

.page_link_text{
    transition: 0.4s ease-in-out;
    color: var(--paragraph-color);
}

.page_link_text:hover{
    color: var(--accent-color-dark) !important;
}

.custom_ul {
    list-style: none;
    padding-left: 0;
}

.custom_ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--paragraph-color);
}

.custom_ul li::before {
    content: "⬤";
    color: var(--accent-color-dark);
    font-weight: bold;
    font-size: 11px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
}

.content_div{
    padding-left: 22px;
}

.detail_box{
    padding: 42px;
    background-color: var(--bg-light);
}

.detail_box.top_padding{
    padding-top: 85px;
}

/* Pagination Styles */
.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.page-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: transparent;
    color: var(--paragraph-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-btn.active {
    background-color: var(--bg-primary);
    border-color: var(--bg-primary);
    color: var(--text-white);
}

.page-btn:hover:not(.active) {
    border-color: var(--accent-color-dark);
    background-color: var(--accent-color-dark);
    color: var(--text-white);
}

.page-btn svg {
    width: 16px;
    height: 16px;
}

/* Sell Your Lands */
.card_step_num {
    font-size: 62px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1;
}

.form_style_2 {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    border-radius: 6px;
}

/* Form inputs with full border around */
.form_style_2 .form-control,
.form_style_2 .choices__inner {
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 5px !important;
    padding: 10px 16px !important;
    height: 50px;
}

.form_style_2 .form-control:focus,
.form_style_2 .choices.is-focused .choices__inner {
    border-color: var(--accent-color-dark) !important;
    background-color: var(--bg-white) !important;
}

.form_style_2 .choices[data-type*="select-one"]::before {
    right: 12px;
}

.form_style_2 .choices__list--single {
    padding: 4px 4px !important;
}

/* Step progress indicators */
.steps-progress-container {
    position: relative;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.steps-progress-line {
    position: absolute;
    top: 22px;
    left: 60px;
    right: 60px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.steps-row {
    z-index: 1;
}

.step-item {
    width: 140px;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--mute-text-color);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.step-item.active .step-circle {
    background: var(--bg-primary);
    border-color: var(--bg-primary);
    color: var(--text-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.step-item.completed .step-circle {
    background: var(--accent-color-dark);
    border-color: var(--accent-color-dark);
    color: var(--text-white);
}

.step-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--mute-text-color);
    display: block;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.step-item.active .step-label {
    color: var(--text-dark);
}
.step-item.completed .step-label {
    color: var(--accent-color-dark);
}

/* Styles for File upload block */
.file-upload-box {
    border: 1px dashed rgba(0, 0, 0, 0.15);
    background-color: #FAFAFA;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.file-upload-box:hover {
    border-color: var(--accent-color-dark);
    background-color: var(--bg-white);
}

.file-upload-icon {
    font-size: 32px;
    color: var(--accent-color-dark);
    margin-bottom: 15px;
}

.file-upload-text {
    font-size: 14px;
    color: var(--paragraph-color);
    margin-bottom: 5px;
}

.file-upload-subtext {
    font-size: 12px;
    color: var(--paragraph-color);
}

.phone-prefix-select {
    width: 110px;
}

.hidden-file-input {
    display: none !important;
}
/* Sell Your Lands */

/* About us css start */
.ceo_img_div img, .vr_img_div img{
    height: 500px;
    width: auto;
}

.ceo_left_div,.vr_left_div{
    padding-top: 96px;
    padding-bottom: 96px;
}

.team_member_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.team_member_card:hover {
    transform: translateY(-4px);
}

.team_member_img_box {
    background-color: #E5E5E5;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    aspect-ratio: 1 / 1.1;
}

.team_member_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.team_member_card:hover .team_member_img_box img {
    transform: scale(1.04);
}

/* Group of Companies & Awards Swiper Styles */

.company_slide_card {
    background-color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.company_slide_card img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    display: block;
}

.awards_slider .company_slide_card img{
    max-height: 190px;
}

/* Badges Slider Cards */
.badge_slide_card {
    min-height: 150px;
}

.badge_img_box {
    width: 100px;
    height: 100px;
}

.badge_img_box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.badge_divider {
    width: 1px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.1);
}
/* About us css end */

/***************************************************************************************/
/*inner_pages styles*/
/***************************************************************************************/

/*****************************/
/*********footer**************/

.footer_logo img{
    height: 50px;
}

.footer_social{
    height: 35px;
    width: 35px;
    border: 1px solid #00000077;
    font-size: 14px;
    color: var(--paragraph-color);
    transition: 0.4s ease-in-out;
    background-color: var(--bg-white);
}

.footer_social:hover{
    border: 1px solid var(--bg-primary);
    color: var(--text-white);
    background-color: var(--bg-primary);
    margin-top: -5px;
}

.footer_top_div{
    padding-top: 70px;
    padding-bottom: 30px;
}

.footer_links a{
    font-size: 14px;
    color: #C0C0C0;
    transition: all 0.4s ease-in-out;
}

.footer_links a:hover{
    color: var(--accent-color-dark);
}

.footer_dark_div{
    padding-top: 60px;
}

.footer_contact a{
    font-size: 24px;
    color: var(--text-white);
    transition: all 0.4s ease-in-out;
}

.footer_contact a:hover, .footer_email a:hover{
    color: var(--accent-color-dark);
}

.footer_email a{
    font-size: 18px;
    color: var(--text-white);
    transition: all 0.4s ease-in-out;
}

/*****************************/
/*********footer**************/

/* Scroll top */
/* Modern Minimalist Scroll To Top Button */
.scroll-to-top-progress {
    position: fixed;
    /* bottom: 20px; */
    bottom: 130px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease;
    padding: 0;
}

.scroll-to-top-progress.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg); /* Starts drawing from top center */
}

.progress-bg {
    stroke: rgb(144, 144, 144);
}

.progress-carve {
    stroke: var(--accent-color-dark);
    stroke-dasharray: 132; 
    stroke-dashoffset: 132; 
    transition: stroke-dashoffset 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-icon {
    font-size: 13px;
    color: #9D9D9D;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.scroll-to-top-progress:hover .progress-carve {
    stroke-dashoffset: 0; 
}

.scroll-to-top-progress:hover .arrow-icon {
    color: var(--accent-color-dark);
    transform: translateY(-2px);
}
/* Scroll top */

/* whatsapp link */
.whap_link, .floating_icon {
  position: fixed;
  left: auto;
  right: 20px;
  /* bottom: 20px; */
  bottom: 75px;
  cursor: pointer;
  z-index: 999;
  transition: transform .7s ease-in-out;
}

.whap_link:hover, .floating_icon:hover {
  transform: scale(1.1);
}

.whap_link img, .floating_icon img {
  width: 45px;
  height: auto;
}

/* whatsapp link */

/* --- Bootstrap Modal Background Blur Engine --- */
.modal-backdrop.show.welcome-backdrop {
    background-color: rgba(18, 18, 18, 0.786) !important;
    opacity: 1 !important;
}

.welcome-modal-card {
    background-color: #0d1111 !important; 
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.75);
    border-radius: 0px !important; 
    padding: 70px 45px 70px 45px;
}

.welcome-opt-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 0px;
    will-change: transform, border-color, background-color;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.welcome-opt-column img{
    height: 50px;
    width: auto;
    opacity: 0.8;
}

.welcome-opt-column:hover {
    border-color: #b8870b84 !important;
    background-color: var(--bg-primary);
    transform: translateY(-4px);
}

.welcome_logo{
    height: 50px;
    width: auto;
}

.welcome-modal-blur h3{
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 16px;
}

.welcome-opt-column{
    padding: 50px 24px 24px 24px;
}

/* --- Career Modal Styles --- */
.custom_modal .modal-content {
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 0px !important;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.custom_modal .modal-divider {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 1;
    margin-top: 0;
    margin-bottom: 30px;
}

/* Custom Close Button for Career Modal */
.custom_modal .btn-close-custom {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-color-dark);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10;
    padding: 0;
}

.custom_modal .btn-close-custom:hover {
    background-color: var(--bg-primary);
    transform: rotate(90deg) scale(1.05);
}

.custom_modal .btn-close-custom i {
    font-size: 18px;
}

/* Accordion Light Override Styling */
.accordion-light .accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.accordion-light .accordion-number {
    color: var(--main-heading-color) !important;
}

.accordion-light .accordion-button,
.accordion-light .accordion-button:not(.collapsed),
.accordion-light .accordion-button:focus {
    color: var(--main-heading-color) !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.accordion-light .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-light .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-light .accordion-body {
    color: var(--paragraph-color) !important;
}

/* --- Live Indicator & Share Button --- */
.live_div {
    background-color: var(--bg-light);
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.live-broadcast-svg {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.live-text {
    color: #EE0000;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.live-divider {
    width: 1px;
    height: 16px;
    background-color: #D2C9C4;
    margin: 0 4px;
}

.live-count {
    font-size: 13px;
    font-weight: 600;
}

/* Pulsing SVG Animations */
.live-dot-center {
    transform-origin: 12px 12px;
    animation: pulse-dot 1.6s infinite ease-in-out;
}

.live-wave-inner {
    transform-origin: 12px 12px;
    animation: wave-inner-pulse 1.6s infinite ease-in-out;
}

.live-wave-outer {
    transform-origin: 12px 12px;
    animation: wave-outer-pulse 1.6s infinite ease-in-out;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

@keyframes wave-inner-pulse {
    0% { opacity: 0.15; }
    30% { opacity: 1; }
    60%, 100% { opacity: 0.15; }
}

@keyframes wave-outer-pulse {
    0%, 25% { opacity: 0.1; }
    55% { opacity: 1; }
    85%, 100% { opacity: 0.1; }
}

/* --- Share Modal Specific Styles --- */
.share-modal-icon-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 11;
}

.green_badge{
    background-color: #249317 !important;
    border: 2px solid #ffffff !important;
}

.share-modal-icon-badge svg {
    width: 24px;
    height: 24px;
    stroke: #333333;
}

.btn-close-share {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #F8FAFC;
    border: none;
    color: #9D9D9D;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 12;
    padding: 0;
}

.btn-close-share:hover {
    background-color: #EFEFEF;
    color: #121717;
    transform: rotate(90deg);
}

.share-input-wrapper {
    background-color: #F8FAFC;
    border: 1px solid #EFEFEF;
    border-radius: 12px;
    padding: 10px 16px;
    height: 48px;
    transition: border-color 0.3s;
}

.share-input-wrapper:focus-within {
    border-color: var(--accent-color-dark);
}

.share-input-field {
    border: none;
    background: transparent;
    font-family: var(--font-paragraph), sans-serif;
    font-size: 13px;
    color: #333333;
    width: calc(100% - 30px);
    outline: none;
}

.share-copy-btn {
    border: none;
    background: transparent;
    color: #9D9D9D;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    transition: color 0.2s;
}

.share-copy-btn:hover {
    color: var(--accent-color-dark);
}

.share-social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 60px;
}

.social-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 6px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.share-social-item:hover .social-circle {
    transform: scale(1.1);
}

.social-name {
    font-family: var(--font-paragraph), sans-serif;
    font-size: 11px;
    color: #7E7E7E;
    text-align: center;
}

/* Social Icon Background Colors */
.fb-bg { background-color: #1877F2; }
.x-bg { background-color: #000000; }
.wa-bg { background-color: #25D366; }
.ig-bg { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.email-bg { background-color: #EA4335; }
.ln-bg { background-color: #0077B5; }

/* --- Gallery Styles --- */
.gallery-img-wrapper {
    background-color: #EFEFEF;
    border-radius: 8px;
}

.gallery-img-wrapper.large-wrapper {
    height: 480px;
}

.gallery-img-wrapper.medium-wrapper {
    height: 270px;
}

.gallery-img-wrapper.small-wrapper {
    height: 202px;
}

.gallery-img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-img-wrapper:hover .gallery-img {
    transform: scale(1.04);
}

/* Lightbox overlay text block */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* using project dark color var-like base */
    transition: background-color 0.3s;
    z-index: 2;
}

.gallery-img-wrapper:hover .gallery-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.overlay-text {
    font-family: var(--font-heading), sans-serif;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gallery-item-link {
    cursor: pointer;
}

/* --- Details Table Styling --- */
.details_table {
    overflow: hidden;
    margin-top: 24px;
}

.details_table table {
    margin-bottom: 0;
    width: 100%;
}

.details_table td {
    padding: 16px 24px !important;
    font-size: 14px;
    border-color: #EFEFEF !important;
}

.details_table td:first-child {
    width: 35%;
    color: #525252;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.details_table td:last-child {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.details_table .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #ffffff !important;
}

/* brochure button start */

.brochure_div{
    padding: 15px 24px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-dark);
    color: var(--text-dark);
    transition: 0.4s ease-in-out;
}

.brochure_div img{
    height: 40px;
    width: 40px;
}

.brochure_div .light_icon{
    display: none;
}

.brochure_div:hover{
    background-color: var(--bg-primary);
    border-color: var(--border-dark);
}

.brochure_div:hover .dark_icon{
    display: none;
}

.brochure_div:hover .light_icon{
    display: block;
}

.brochure_div:hover p{
    color: var(--text-white);
}

.brochure_divider{
    width: 1px;
    height: 30px;
    background-color: var(--accent-color-dark);
}

/* Brochure button end */

.form_box{
    padding: 35px;
}

/* arrow text button */
.arrow_link .button {
  text-decoration: underline;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 5px;
  color: #323232;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  background-color: transparent !important;
}

.arrow_link .button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #323232;
  background-color: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.arrow_link .button:hover .button__icon-wrapper {
  color: #000;
}

.arrow_link .button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.arrow_link .button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.arrow_link .button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}
/* arrow text button */

.plan_slide_box {
    border: 1px solid #0000001a;
    padding: 10px;
    background-color: #f6f6f6;
}

.blueprint_img_wrapper {
    min-height: 350px; 
}

.plan_details_box {
    background-color: #f6f6f6;
    padding: 40px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plan_spec_icon_wrapper {
    background-color: #e5e3e3;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 16px;
    flex-shrink: 0;
}

.plan-swiper-pagination {
    color: #333333;
    font-size: 15px;
    min-width: 44px;
    width: fit-content;
}

/* News Card Image Hover Scale Effect */
.news_card picture {
    display: block;
    overflow: hidden;
    margin-bottom: 1rem;
}

.news_card picture img {
    margin-bottom: 0 !important;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.news_card:hover picture img {
    transform: scale(1.08);
}

.tab-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.tab-scroll-wrapper {
  display: flex;
  position: relative;
  align-items: center; 
}

.scroll-arrow {
  background: var(--bg-light);
  border-radius: 100%;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
  color: #333333;
  cursor: pointer;
}

.scroll-arrow:hover {
  background: var(--bg-primary);
  color: #fff;
}

/* CRITICAL FIX: Forces tabs to stay inline and allows horizontal scrolling */
.tabs-scrollable {
  display: flex !important;
  flex-wrap: nowrap !important; 
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hides scrollbar on Firefox */
  -ms-overflow-style: none; /* Hides scrollbar on IE/Edge */
  flex: 1;
  margin: 0 10px;
  padding-left: 0;
  list-style: none;
}

/* Hides scrollbar on Chrome, Safari, and Opera */
.tabs-scrollable::-webkit-scrollbar {
  display: none;
}

.nav-link {
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
}

/* --- FAQ Load More Button --- */
.load-more-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    background: transparent;
    width: 100%;
    text-align: center;
    color: #9D9D9D;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.load-more-row:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
}

.load-more-row i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.load-more-row:hover i {
    transform: translateY(2px);
}

.custom_caro .carousel-indicators {
    right: auto;
    bottom: -100px !important;
    left: 0;
    margin-left: 0;
}

.custom_caro .carousel-indicators button{
    height: 8px;
    width: 8px;
    border-radius: 100%;
}

/* Floating Menu CSS Start */
.floating_menu_wrap {
    position: fixed;
    left: 20px;
    bottom: 80px; /* Positioned above the WhatsApp button */
    z-index: 1000;
    font-family: 'Montserrat', 'Inter', sans-serif;
    width: 50px; /* Match trigger button width */
    height: 50px;
}

.floating_menu_trigger {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--accent-color-dark);
    color: var(--accent-color-dark);
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    z-index: 2;
    animation: triggerPulse 2s infinite;
}

.floating_menu_trigger:hover {
    background-color: var(--accent-color-dark);
    color: #121717;
    transform: scale(1.08);
    animation: none; /* Pause pulse animation on hover */
}

.floating_menu_wrap.active .floating_menu_trigger {
    background-color: #6A6A6A;
    border: 2px solid #6A6A6A;
    color: #ffffff;
    animation: none; /* Pause pulse animation when menu is active */
}

/* Styles for Custom Menu Icon Image and Close Icon transition */
.floating_menu_trigger img {
    width: 22px;
    height: auto;
    transition: opacity 0.3s ease, transform 0.4s ease;
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.floating_menu_trigger .close_icon {
    position: absolute;
    opacity: 0;
    transform: scale(0.6) rotate(-45deg);
    transition: opacity 0.3s ease, transform 0.4s ease;
    font-size: 1.15rem;
    color: inherit;
}

.floating_menu_wrap.active .floating_menu_trigger img {
    opacity: 0;
    transform: scale(0.6) rotate(90deg);
}

.floating_menu_wrap.active .floating_menu_trigger .close_icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.floating_menu_options {
    bottom: 65px;
    gap: 8px;
    pointer-events: none;
    width: 46px;
    z-index: 1;
}

.floating_menu_wrap.active .floating_menu_options {
    pointer-events: auto;
}

.menu_option_btn {
    opacity: 0;
    width: 46px;
    height: 46px;
    transform: translateY(40px) scale(0.6); /* Start collapsed towards the trigger position */
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: calc(var(--i) * 0.06s);
    pointer-events: none;
}

.floating_menu_wrap.active .menu_option_btn {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.option_icon_link {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.option_icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(18, 23, 23, 0.95);
    backdrop-filter: blur(5px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: #d0980c;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.option_icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

.option_icon_link:hover .option_icon {
    background-color: var(--accent-color-dark);
    color: var(--text-light);
    border-color: var(--accent-color-dark);
    transform: scale(1.1);
}

.option_label {
    background: rgba(18, 23, 23, 0.95);
    color: var(--text-white);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating_menu_wrap.active .option_label {
    opacity: 1;
}

.menu_option_btn:hover .option_label {
    border-color: rgba(184, 134, 11, 0.5);
    background-color: var(--accent-color-dark);
}

.menu_option_btn.active_menu_option .option_icon {
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-color: var(--accent-color);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.menu_option_btn.active_menu_option .option_label{
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-weight: 700;
}

@keyframes triggerPulse {
    0% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(208, 152, 12, 0.4);
    }
    70% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(208, 152, 12, 0);
    }
    100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(208, 152, 12, 0);
    }
}

/*========================================================================*/
/*========================================================================*/
/*=====================Solution by TEKGEEKS (pvt) LTD=====================*/
/*=========DESIGN & FRONTEND DEVELOPMENT - G.D.RAVEESHA DEEMANTHI=========*/
/*========================================================================*/
/*========================================================================*/


/* Floating Badges */
.chatbot_div{
    right: 20px;
    bottom: 20px;
}

.accessibility_div{
    left: 20px;
    right: auto;
    bottom: 20px;
}

/* Floating Badges */
