* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: var(--second-font);
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Lora";
  font-display: swap;
  src: url("../fonts/Lora/Lora-Regular.ttf");
}

@font-face {
  font-family: "Rubik";
  font-display: swap;
  src: url("../fonts/Rubik/Rubik-Regular.ttf");
}
body{
  
}
:root {
  --primary-theme: #f1ead7;
  --secondary-theme: #0b333f;
  --text-white: #fff;
  --text-black: #000;
  --first-font: "Lora";
  --second-font: "Rubik";
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
}

input:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
}

body {
  background-color: var(--text-white);
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style-type: none;
}

.button {
  background-color: var(--secondary-theme);
  color: var(--text-white);
  font-size: 20px;
  line-height: 24px;
  padding: 10px 25px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid var(--secondary-theme);
}

.button:hover {
  color: var(--secondary-theme);
  background: var(--text-white);
}

.header {
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease; /* Smooth transition */
}

/* Header when scrolled */
.header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Menu Button */
.menu-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    transition: color 0.3s ease;
}

/* Menu button when scrolled */
.menu-btn.scrolled {
    color: #333;
}

/* Hamburger Lines */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: background-color 0.3s ease;
}

/* Hamburger lines when scrolled */
.hamburger.scrolled div {
    background-color: #333;
}

/* Logo */
.logo img {
    max-width: 200px;
    transition: all 0.3s ease;
    filter: invert(1) brightness(100);
    padding: 10px 0;
}
.header.scrolled .logo img {
    filter: unset; 
}
.phone-email{
  animation: 1.2s infinite mobile;
  /* background: #000000a3;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #fff; */
}
.phone-email .button{
  background: #174317;
  border-color: #c8a135;
  font-size: 14px;
  background: linear-gradient(#F4E3BB, #C8A135);
  /* background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  color: #000;
}
.phone-email .button:hover{
  background: #fff;
  color: #174317;
  padding: 10px 15px;
}
.phone-email img {
  height: 34px;
}
.phone-email h4 a {
  color: rgb(251 234 9);
  margin-left: 5px;
  font-size: 16px;
  font-weight: 600;
}

.phone-email h4 a i {
  filter: invert(0);
}

.phone-email.scrolled h4 a {
    color: #333;
}
.phone-email.scrolled{
  background: transparent;
  border: none;
}

.phone-email.scrolled img {
    filter: brightness(0);
}

/* Sidebar Menu */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-theme);
    transition: left 0.3s ease;
    z-index: 9999;
}

.sidebar.open {
    left: 0;
}
.sidebar .sidebar_logo{
  max-width: 170px;
  position: relative;
  top: 17px;
}

/* Menu Items */
.menu-items {
    list-style: none;
    padding-top: 80px;
}

.menu-items li {
    border-bottom: 1px solid var(--secondary-theme);
}

.menu-items a {
    display: block;
    color: #000;
    padding: 20px 30px;
    text-decoration: none;
    font-size: 18px;
}

.menu-items a:hover {
    background-color: var(--secondary-theme);
    color: var(--primary-theme) !important;
}
/* .nav-link:focus, .nav-link:hover {
    color: var(--text-white);
} */

.header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-btn.scrolled {
    color: #000;
}

.hamburger.scrolled div {
    background-color: #000;
}

.nav-link.scrolled {
    color: #000 !important;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    z-index: 150;
}

.overlay.show {
    display: block;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    padding: 40px 20px;
    transition: margin-left 0.4s ease;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.section-title {
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.section-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

/* Close button for mobile */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #000;
    font-size: 42px;
    cursor: pointer;
    /* padding: 5px; */
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.slider_section .carousel-item img {
  height: 100vh;
  width: 100%;
}

.slider_section {
  position: relative;
}

.slider_section::after {
  content: "";
  position: absolute;
  width: 100%;
  z-index: 8;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
  /* background: linear-gradient(rgb(3, 40, 56) 0%, rgba(3, 40, 56, 0) 82%); */
  opacity: 1;
  width: 60%;
  background: linear-gradient(to right, rgb(0 0 0 / 95%), rgba(0, 0, 0, 0));
}

.project_box {
  position: absolute;
  bottom: 12%;
  left: 2%;
  z-index: 99;
}
.project_box .pro_logo{
  max-width: 133px;
  margin-bottom: 10px;
  filter: invert(1);
}
.invest_in{
  display: none;
}
.project_box h1 {
  font-family: var(--first-font);
  font-size: 58px;
  font-weight: 700;
  color: var(--text-white);
  /* margin-bottom: 10px; */
  letter-spacing: 2px;
}

.project_box p {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 15px;
}
.project_box p img{
  filter: invert(1);
  margin-right: 5px;
}
.project_box h4 {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 12px;
}
.project_box h3 {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 14px;
}
.project_box h3 span{
  font-size: 28px;
  color: var(--text-white);
}
.project_box ul {
  padding: 0;
  margin: 0;
  align-items: center;
}
 .project_box ul li {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--text-white);
  /* max-width: 350px; */
  /* width: 270px; */
}
.project_box ul li img{
  max-width: 24px;
  margin-right: 5px;
}
.project_box ul li span{
  display: block;
  font-size: 24px;
  font-weight: 600;
}

/* .form_section {
  background: #212842bd;
  padding: 24px;
  border-radius: 20px;
  position: absolute;
  bottom: 20%;
  right: 15%;
  z-index: 99;
  max-width: 450px;
  width: 350px;
} */

.carousel-indicators [data-bs-target]{
  height: 5px;
}
.form_section h6 {
  font-size: 19px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-white);
}

.form_section input {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 8px;
  border-bottom: 1px solid var(--text-white);
  background: transparent;
  border-radius: 0;
  color: var(--text-white);
}
.form_section input::placeholder{
  color: var(--text-white);
}
.form_section .lg_btn{
  background: rgb(255, 255, 255);
  color: var(--secondary-theme);
}

.form-toggle-btn {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: var(--secondary-theme);
  color: var(--text-white);
  padding: 12px 7px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
  writing-mode: vertical-lr;
  letter-spacing: 1px;
  border: 1px solid var(--secondary-theme);
}
.form-toggle-btn:hover {
  background: var(--text-white);
  color: var(--secondary-theme);
}

/* Form Styling */
.slide-form {
  position: fixed;
  right: -400px; /* hidden by default */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  /* background: #212842bd; */
  background: var(--secondary-theme);
  padding: 24px;
  border-radius: 20px 0 0 20px;
  max-width: 350px;
  width: 100%;
  transition: right 0.4s ease;
}

/* Active state to show the form */
.slide-form.active {
  right: 0;
}

.form-close-btn {
  position: absolute;
  top: -10px;
  right: 9px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 34px;
  cursor: pointer;
}
.carousel-indicators {
  z-index: 999;
}

.overview_section{
  padding: 80px 0;
}
.section_title{
  font-family: var(--first-font);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(#F4E3BB, #C8A135);
        background-clip: text;
        -webkit-text-fill-color: transparent;
}
.subheading{
  font-family: var(--second-font);
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
  text-transform: capitalize;
  color: var(--secondary-theme);
  letter-spacing: 1px;
}
.overview_section .para{
  font-size: 16px;
  margin-bottom: 0;
  text-align: justify;
  text-align-last: center;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 2rem;
    place-items: center;
}

.overview-item {
    text-align: center;
    padding: 1.25rem;
}

.icon {
    font-size: 3rem;
    color: var(--text-gray);
    margin-block-end: 1rem;
}
.icon img {
    width: 50px;
    height: 50px;
}

.label {
    color: var(--text-black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-block-end: 0.5rem;
}

.value {
    color: #333;
    font-weight: 500;
    font-size: 1.125rem;
}

/* overview section css ends here */

/* highlight section css starts here */
.highlight_section{
  padding: 80px 0;
  position: relative;
  background: url("../img/banner/banner2.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  /* filter: blur(3px); */
  z-index: 1;
    overflow-x: hidden!important;
}
.highlight_section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000006b;
  /* z-index: 2; */
}
/* .features-container{
  margin: 25px 0 0; 
} */
 .highlight_section .section_title{
  position: relative;
  z-index: 999;
  color: var(--text-white);
 }
 .highlight_section .subheading{
  position: relative;
  z-index: 999;
  color: var(--text-white);
  margin-bottom: 30px;
 }
.highlight_image{
  height: 100%;
  object-fit: cover;
}
.feature-card-wrapper {
    position: relative;
    padding: 3px;
    border-radius: 15px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 20px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: none;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    min-height: 150px;
}

.feature-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Corner Border Decorations */
.feature-card-wrapper::before,
.feature-card-wrapper::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--secondary-theme);
    z-index: 1;
}

/* Top-left corner */
.feature-card-wrapper::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 15px;
}

/* Bottom-right corner */
.feature-card-wrapper::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: linear-gradient(#F4E3BB, #C8A135);
    /* background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}
.feature-icon span{
  color: var(--secondary-theme);
  font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 7px;
}

.feature-description {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0;
}

/* highlight section css ends here */

/* price list section css starts here */
.price_list_section {
  padding: 80px 0;
  overflow-x: hidden !important;
}
.price_list_section .calling{
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.price_box{
  background: var(--text-white);
  padding: 30px 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.price_box:hover{
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
.price_box h5{
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--secondary-theme);
}
.price_box h6{
  /* text-align: end; */
  font-size: 22px;
  margin-bottom: 12px;
}
.price_box p{
  font-size: 22px;
  margin-bottom: 15px;
}
.price_box p span{
  font-size: 30px;
  color: var(--secondary-theme);
}
.price_box .button {
    font-size: 18px;
    line-height: 21px;
    padding: 7px 25px;
}

/* price list section css ends here */

/* amenities section starts here */

.amenities_section{
  padding: 80px 0;
  background: var(--primary-theme);
  overflow: hidden;
}
.amenities_section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.amenities_section .amenity_list{
  display: flex;
  flex-direction: column;
}
.amenities_section ul .amenity-box {
  /* background: #f9f9f9; */
  background: var(--secondary-theme);
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  margin: 10px;
  /* min-width: 190px; */
  min-width: 180px;
  position: relative;
  overflow: hidden;
}
 .amenities_section ul .amenity-box.ameinity_width {
    width: 100%;
  }
.amenities_section ul .amenity-box img{
  filter: invert(1);
}
.amenity-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000c0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

.amenity-box:hover .overlay {
  opacity: 1;
}

.col-4.align-self-center.pe-0.d_view .amenity_list .amenity-box:first-child .overlay {
  opacity: 1;
  pointer-events: none;
}

.amenities_section ul .amenity-box .overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: unset;
}

.amenities_section ul .amenity-box span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding-top: 10px;
  color: var(--text-white);
}
.amenity-box .overlay span {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
}


/* amenities section css ends here */

/* floor plan section css starts here */

.floor_section{
  padding: 80px 0;
}
     
.floor_section .nav.nav-tabs {
  justify-content: center;
  border-bottom: 0px;
  gap: 20px;
  margin-top: 20px;
}

.floor_section .nav-tabs .nav-link {
  background-color: var(--primary-theme);
  border-radius: 4px;
  width: 220px;
  color: rgb(0, 0, 0) !important;
  padding: 10px 40px !important;
  border: none !important;
}

.floor_section .nav-tabs .nav-link.active {
  background-color: var(--secondary-theme);
  border: none;
  color: rgb(255, 255, 255) !important;
}

.floor_section .tab-content {
  margin-top: 30px;
}

.floor_section .tab-content h5 {
  font-size: 20px;
  margin-bottom: 0px;
  text-align: center;
  background: var(--secondary-theme);
  padding: 14px 0px;
  color: var(--text-white);
  border-radius: 4px;
}

.floor_section .floor_image {
  background: var(--text-white);
  padding: 20px;
  border-radius: 20px;
  position: relative;
  box-shadow: 4px 4px 10px 4px rgb(0 0 0 / 13%);
}

.floor_section .floor_image span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  cursor: pointer;
  background: var(--secondary-theme);
  padding: 10px 12px;
  color: var(--text-white);
  border-radius: 4px;
  font-size: 13px;
}

/* floor section css ends here */

/* location advantage section css starts here */

.location_section{
  padding: 80px 0 40px;
  background: #0b333f;
  position: relative;
  overflow: hidden;
  /* min-height: 100vh; */
}  

.location-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 550px;
}

.central-logo {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  /* background: linear-gradient(45deg, #ff6b35, #f7931e); */
  /* border-radius: 50%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* color: white; */
  /* font-weight: bold; */
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  z-index: 10;
}

.central-logo .brand-name {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.central-logo .sub-text {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.location-point {
  position: absolute;
  /* background: white; */
  /* padding: 12px 20px; */
  padding: 12px 0px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 5;
  color: #fff;
}
.location-point img{
  max-width: 16px;
  filter: invert(1);
}

.location-point.left {
  text-align: right;
  color: #fff;
}

.location-point.right {
  text-align: left;
}

.location-name {
  display: block;
  margin-bottom: 2px;
}

.location-time {
  font-size: 16px;
  font-weight: bold;
}

.connecting-line {
  position: absolute;
  border-top: 2px dotted #666;
  z-index: 1;
}

.vertical-line {
  position: absolute;
  border-left: 2px dotted #666;
  z-index: 1;
}

/* Left side locations */
.location-1 {
  top: 60px;
  left: 73px;
}

.location-2 {
  top: 180px;
  left: 130px;
}

.location-3 {
  top: 320px;
  left: 70px;
}

.location-4 {
  top: 450px;
  left: 77px;
}

/* Right side locations */
.location-5 {
  top: 65px;
  right: 58px;
}

.location-6 {
  top: 185px;
  right: 120px;
}

.location-7 {
  top: 329px;
  right: 68px;
}

.location-8 {
  top: 454px;
  right: 45px;
}

/* Connecting lines */
.line-1 {
  top: 92px;
  left: 260px;
  width: 238px;
}

.line-2 {
  top: 220px;
  left: 275px;
  width: 200px;
}

.line-3 {
  top: 362px;
  left: 290px;
  width: 210px;
}

.line-4 {
  top: 492px;
  left: 310px;
  width: 190px;
}

.line-5 {
  top: 92px;
  left: 702px;
  width: 238px;
}

.line-6 {
  top: 220px;
  left: 727px;
  width: 200px;
}

.line-7 {
  top: 362px;
  left: 703px;
  width: 210px;
}

.line-8 {
  top: 492px;
  left: 700px;
  width: 190px;
}

/* Vertical connecting lines */
.v-line-left {
  left: 500px;
  top: 92px;
  height: 400px;
}

.v-line-right {
  right: 500px;
  top: 92px;
  height: 400px;
}
/* loaction section css ends here */

/* decision corner css starts here */

.decision_corner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.decision_corner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/banner/banner1.jpg") center center / cover no-repeat;
  filter: blur(1px);
  z-index: 1;
  /* transform: scale(1.1); */
}

/* Content layer */
.decision_corner > .container {
  position: relative;
  z-index: 2;
}

/* Optional: Add overlay to increase text contrast */
.decision_corner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
}
.decision_corner .section_title{
  color: var(--text-white);
}
.decision_corner .subheading{
  color: var(--text-white);
}
.flex_div {
  display: flex;
  justify-content: center;
}
.boxes {
  padding: 15px;
  text-align: center;
}
/* .boxes:first-child {
  border-right: 1px solid var(--text-white);
} */
.title {
  font-size: 17px;
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
  color: var(--text-white);
}

/* gallery section css starts here */

.gallery_section {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Default slide */
.center-slider .gallery-card {
  background-color: var(--secondary-theme);
  border-radius: 10px;
  padding: 3px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.center-slider .gallery-card span{
  position: absolute;
  bottom: 10px;
  right: 2%;
  font-size: 10px;
  color: var(--text-white);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 5px;
  border-radius: 5px;
}

.center-slider .gallery-card img {
  width: 100%;
  border-radius: 10px;
  /* height: 500px; */
  object-fit: cover;
}

.center-slider .slick-slide {
  margin: 0 10px;
}

.slide-arrow6.prev-arrow6,
.slide-arrow6.next-arrow6 {
  position: absolute;
  bottom: -50px;
  z-index: 10;
  background: var(--secondary-theme);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
  height: 44px;
  width: 44px;
  text-align: center;
}

.slide-arrow6.prev-arrow6 {
  right: 70px;
}
.slide-arrow6.next-arrow6 {
  right: 10px;
}

.slide-arrow6:hover {
  background:#000a2b
}

.slide-arrow6 img {
  filter: brightness(0) invert(1);
}
/* gallery section css ends here */

/* about builder section css starts here */
.about_builder {
  padding: 80px 0px;
  /* background: var(--primary-theme); */
  background-image: url("../img/about_builder.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  /* filter: blur(3px); */
  z-index: 1;
  overflow-x: hidden!important;
  position: relative;
}
.about_builder::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000a1;
  z-index: -1;
}

.about_builder h5 {
  font-size: 35px;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-white);
}

.about_builder p {
  font-size: 17px;
  margin-bottom: 0px;
  text-align: justify;
  color: var(--text-white);
}

.about_builder .footer_form {
  background: #0b333f;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
  max-width: 450px;
  border-radius: 10px;
  margin-left: auto;
}

.about_builder .footer_form h6 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(#F4E3BB, #C8A135);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about_builder .footer_form input {
  width: 100%;
  padding: 8px 10px;
  border:none;
  border-radius: 0;
  border-bottom: 1px solid #fff;
  background: #0b333f;
  color: #fff;
}

/* about builder section css ends here */

/* footer section css starts here */

footer {
  /* background: var(--text-black); */
  /* background: #fffcf1; */
  padding: 70px 0px;
}

footer .disclaimer p {
  color: var(--text-black);
  font-size: 13px;
  margin-bottom: 10px;
}

footer .disclaimer .moreless-button {
   color: var(--text-black);
  font-size: 13px;
}

footer .rera_details p {
   color: var(--text-black);
  font-size: 13px;
  margin: 10px 0px;
}

footer .rera_details a {
    color: var(--text-black);
}

footer .rera_details a:hover {
  text-decoration: underline !important;
}

/* modal css starts here */

.modal .modal-header{
  border-bottom: 1px solid var(--secondary-theme);
}
.modal .btn-close{
  opacity: 1;
}
.modal .modal-header h6 {
  font-size: 21px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

.modal input {
  width: 100%;
  padding: 8px 10px;
  border:none;
  border-radius: 0;
  border-bottom: 1px solid var(--secondary-theme);
  height: 40px;
}
.modal .form-control:focus {
    color: #212529;
    background-color: var(--text-white);
    border-color: var(--secondary-theme);
    outline: 0;
    box-shadow: none;
}
.modal input::placeholder{
  color: #000;
}
.modal .inp-box{
  margin-bottom: 12px;
}

/* footer section css ends here */

.fixedIcons {
    position: fixed;
    z-index: 99;
    bottom: 15px;
    padding: 5px;
    background: #FFFCF1;
    border-radius: 50%;
    animation: pulse 1.25s infinite cubic-bezier(0.66,0,0,1);
    box-shadow: 0 0 0 0 #29a71a;
}
.fixedIcons {
    &.whatsapp {
        left: 15px;
    }
}
.fixedIcons {
    &.phone {
        right: 15px;
        background: var(--text-white);
    }
}
.fixedIcons {
  img {
      width: 40px;
      padding: 5px;
  }
}
.mobile-section-footer {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--primary-theme);
    color: var(--primary-theme);
    padding: 5px 0;
}
.typ-bg{
  display: none;
}
.d_view{
  display: block;
}
.m_view{
  display: none;
}
a#submit-contact2 {
    background: linear-gradient(#F4E3BB, #C8A135);
    /* background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    color: #000;
}
@media(max-width:1480px){
  .form_section {
    /* bottom: 6%; */
    /* right: 0%; */
  }
  .project_box{
    bottom: 16%;
    left: 4%;
  }
  .project_box h1 {
    font-size: 38px;
    letter-spacing: 1px;
  }
  .value {
    font-size: 20px;
  }
}

@media(max-width:1366px){
  .slick-slide img {
    max-width: 350px;
  }
  .next-arrow6 {
    right: 2%;
  }
  .line-5 {
    left: 617px;
  }
  .line-6 {
    left: 640px;
  }
  .line-7 {
    left: 613px;
  }
  .line-8 {
    left: 610px;
  }
  .fixedIcons {
      &.phone {
          right: 10px;
      }
  }
  .fixedIcons {
    img {
        width: 40px;
    }
  }
  .amenities_section ul .amenity-box {
    padding: 25px;
    margin: 10px 5px;
    min-width: 160px;
  }
}

@media (max-width: 767px) {

  .d_view{
    display: none;
  }
  .m_view{
    display: block;
  }
  .invest_in{
    display: block;
    font-size: 25px;
    color: var(--text-black);
    margin-bottom: 6px;
    font-family: var(--first-font);
    font-weight: 700;
  }

  .carousel-indicators {
    z-index: 9;
  }
  .menu-items {
    padding-top: 40px;
  }
  .logo img {
    max-width: 130px;
    /* width: 100%; */
  }
  .header .menu-btn span{
    display: none;
  }
  .navbar-brand {  
      padding-top: 0px;
      padding-bottom: 0px;
      margin-right: 0px;
  }

  .nav-item .nav-link {
      margin-bottom: 0px;
      text-align: center;
  }

  .phone-email {
      display: none !important;
  }

  .navbar-light .navbar-toggler {
      color: rgba(0, 0, 0, 0.55);
      border: none;
  }

  .navbar-toggler:focus {
      box-shadow: none;
  }
  .carousel-inner img {
    min-height: 305px;
  }
 .slider_section .carousel-item img {
    height: auto;
    width: 100%;
    object-fit: cover;
  }
  .slider_section .project_box {
    position: unset;
    padding: 20px 0px;
    background: var(--primary-theme);
    text-align: center;
  }
  
  .carousel-indicators {
      bottom: 73%;
  }
  .slider_section .form_section{
    position: unset;
    width: 100%;
    border-radius: 0;
    transform: unset;
    max-width: 100%;
  }
  .slider_section::after {
    background: none;
    width: unset;
    position: unset;
  }
  .project_box h1 {
    font-size: 25px;
    margin-bottom: 10px;
    color: var(--text-black);
  }

  .project_box p {
    margin-bottom: 8px;
    color: var(--text-black);
    font-size: 18px;
  }     
  .project_box h3{
    color: var(--text-black);
    font-size: 18px;
  }
  .project_box h3 span{
    color: var(--text-black);
  }
  .project_box p img {
    filter: unset;
  }
  .project_box ul li {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 3px;
    color: var(--text-black);
    text-align: left;
    margin-left: 25px;
    display: flex;
    align-items: start;
  }
  .project_box ul li img {
    width: 18px;
    filter: invert();
  }
  .feature-description {
      color: #2c3e50;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.6;
      margin-bottom: 0;
  }
  .form-close-btn{
    display: none;
  }
  .form-toggle-btn{
    display: none;
  }
  .section_title {
    font-size: 26px;
  }
  .subheading {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .overview_section{
    padding: 50px 0;
  }
  .overview-grid {
    grid-template-columns: unset;
    gap: 0rem;
    place-items: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .overview-item {
    text-align: center;
    padding: 8px 4px;
    width: 50%;
  }
  /* .overview-item:nth-child(4),
  .overview-item:nth-child(5) {
    width: 50%;
  } */
  .label {
    color: var(--text-black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0;
    margin-block-end: 0.5rem;
  }  
  .highlight_section {
    padding: 50px 0;
  }
  .feature-card {
    padding: 14px 14px;
    min-height: 161px;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  .feature-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .price_box{
    margin-bottom: 20px;
    max-width: 350px;
    margin: 0 auto 20px;
  }

  .price_list_section {
    padding: 50px 0;
  }
  .price_list {
    margin-top: 10px;
  }
  .amenities_section {
    padding: 50px 0;
  }
  .amenities_section ul {
    min-height: 330px;
    overflow-y: scroll;
    height: 330px;
  }
  .amenities_section ul .amenity-box {
    padding: 7px;
    margin: 7px;
    min-width: unset;
    width: 150px;
    z-index: 9;
  }
  .amenities_section ul .amenity-box img{
    max-width: 50px;
  }
  .amenities_section ul .amenity-box .overlay img{
    max-width: 100%;
  }
  .amenities_section ul .amenity-box span {
    font-size: 16px;
  }
.col-12.m_view ul .amenity-box:first-child .overlay {
  opacity: 1;
  pointer-events: none;
}

.amenities_section ul .amenity-box .overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: unset;
}

.amenities_section ul .amenity-box span {
  display: block;
  font-size: 17px;
  font-weight: 500;
  padding-top: 10px;
  color: var(--text-white);
}
.amenity-box .overlay span {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
}
  
  .floor_section {
    padding: 50px 0;
  }
  .floor_section .nav.nav-tabs {
    margin-top: 10px;
    gap: 15px;
  }
  .floor_section .nav-tabs .nav-link {
    width: 140px;
    padding: 10px 10px !important;
  }
  .floor_section .floor_image{
    margin-bottom: 15px;
  }
  .floor_section .tab-content h5 {
    padding: 8px 0px;
  }
  .decision_corner {
    padding: 50px 0;
  }
  .decision_corner .subheading {
    font-size: 13px;
  }
  .title {
    font-size: 12px;
  }
  .gallery_section {
    padding: 50px 0 80px;
  }
  .slide-arrow6.next-arrow6 {
      right: 36%;
  }
  .slide-arrow6.prev-arrow6 {
      right: 51%;
  }
  .slick-slide img {
    /* max-width: 350px; */
  }
  .about_builder {
    padding: 50px 0px;
  }
  .about_builder h5 {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .about_builder p {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .form_section.slide-form .button{
    padding: 10px 40px;
  }
  footer {
    padding: 50px 0px 70px;
  }
  .footer_form .button{
    padding: 10px 40px;
  }
  .price_list{
    background: transparent;
    border-radius: 0;
  }
  .location_section {
    padding: 50px 0;
  }
  .location-container{
    height: auto;
  }
  .central-logo {
    position: unset;
    transform: unset;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
  .central-logo img{
    border-radius: 0 !important;
  }
  .location-point {
    position: unset;
    text-align: left;
    z-index: 999;
    padding: 0px 0px 10px;
  }
  .location-point.left {
    text-align: left;
    display: flex;
    justify-content: space-between;
  }
  .location-point.right {
    text-align: left;
    display: flex;
    justify-content: space-between;
  }
  .location-name {
    margin-bottom: 0px;
  }
  .connecting-line {
    display: none;
  }

  .fixedIcons {
    bottom: 45px;
  }
  .fixedIcons {
    bottom: 45px;
  }
  .fixedIcons {
    img {
        width: 35px;
    } 
  }
  .mobile-section-footer {
    display: flex;
    gap: 0 5px;
    justify-content: space-around;
    z-index: 999;
  }
  .mobile-section-footer a {
    display: block;
    font-size: 14px;
    padding: 6px 8px;
    color: var(--secondary-theme);
    border-radius: 5px 0;
  }
  .decision_corner .button {
    background-color: var(--secondary-theme);
    color: var(--text-white);
    font-size: 16px;
    line-height: unset;
    padding: 10px 10px;
  } 
  .icon {
    font-size: 2rem;
  }
  .project_box h4 {
    color: var(--text-black);
  }
  .header {
    background: #00000057;
  }
  .about_builder .footer_form h6 {
    font-size: 20px;
  }
  .modal .modal-header h6 {
    font-size: 17px;
    margin-bottom: 0px;
  }    
  .project_box .pro_logo {
    filter: unset;
    max-width: 109px;
}
}
@media(max-width:390px){
  .slick-slide img{
    /* max-width: 310px; */
  }
}
@keyframes pulse {to {box-shadow: 0 0 0 20px rgba(255, 232, 160, 0);}}
 @keyframes mobile {
  0%,
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
}