
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #ffd74f;
  --secondary-color:              #f65129;
  --section-bg-color:             #f9f9f9;
  --site-footer-bg-color:         #36363e;
  --custom-btn-bg-color:          #00a05d;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;

  --twitter-color:                #1da1f2;
  --facebook-color:               #1877f2;
  --instagram-color:              #c13584;
  --pinterest-color:              #e60023;
  --whatsapp-color:               #128c7e;

  --body-font-family:             'League Spartan', sans-serif;

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             100;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family); 
    padding-top: 70px;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
    color: #2d50a2;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}FstuS

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color:#2d50a2;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.tooplate-red {
	color: var(--secondary-color);
}
.tooplate-green {
	color: var(--custom-btn-bg-color);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background: var(--section-bg-color);
}

.section-small-title {
  color: var(--custom-btn-bg-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  display: block;
}

.section-overlay {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.custom-block {
  background: #f0f8ff;
  border-top: 20px solid #2d50a2;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px 50px;
}

.featured-custom-block {
  background: var(--border-color);
}

.shop-detail-custom-block {
  background: transparent;
  border-top: 0;
  border-radius: 0;
  padding: 30px;
}

.pagination {
  margin-top: 30px;
  margin-bottom: 0;
}

.page-link {
  border-color: var(--border-color);
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  font-size: var(--copyright-font-size);
  padding: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
}

.page-item.active .page-link,
.page-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border: 0;
  border-radius: var(--border-radius-large);
}

.page-item:not(:first-child) .page-link {
  margin-left: 5px;
}


/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  color: var(--p-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 2px;
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover {
  color: var(--primary-color);
}

.custom-link:hover::after {
  background: var(--custom-btn-bg-color);
}


/*---------------------------------------
  CUSTOM BADGE               
-----------------------------------------*/
.custom-badge {
  background: var(--white-color);
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: var(--secondary-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
  padding: 10px 10px 6px 10px;
}

.custom-badge::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-bottom: 7px solid var(--white-color);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  position: absolute;
  top: -7px;
  right: 0;
  left: 0;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  padding: 15px 20px;
}

.custom-btn:hover {
  background: transparent;
  border-color: var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--white-color);
}

.custom-border-btn:hover {
  background: var(--white-color);
  border-color: var(--white-color);
  color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
/* Basic Navbar styles */
.navbar {
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.3s;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--primary-color);
    
}

.navbar-brand img-fluid {
    max-width: 100%;
    height: auto;
}
.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 10px;
  font-size: 16.9px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: #2d50a2;
}

.dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
}

.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: medium;
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
    color: #2d50a2;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Mobile Navbar Scroll Styles */
.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/* Vertical Scroll on Mobile */
@media (max-width: 991px) {
  .navbar-collapse {
    max-height: 80vh; /* Limit the height of the collapsed menu */
    overflow-y: auto; /* Allow vertical scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS devices */
    padding-right: 10px; /* Add padding for aesthetics */
  }

  .navbar-nav {
    display: block; /* Stack items vertically */
  }

  .navbar-nav .nav-item {
    margin-bottom: 10px; /* Space between items */
  }

  /* Scrollbar styling */
  .navbar-collapse::-webkit-scrollbar {
    width: 6px; /* Width of the scrollbar */
  }

  .navbar-collapse::-webkit-scrollbar-thumb {
    background: #2d50a2;
    border-radius: 4px; /* Round the scrollbar thumb */
  }

  .navbar-collapse::-webkit-scrollbar-track {
    background: #f1f1f1; /* Scrollbar track color */
  }

  /* Optional: Add some padding to the nav items in mobile view */
  .navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: url('../images/empty-living-room-with-blue-sofa-plants-table-empty-white-wall-background-3d-rendering.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 150px;
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero-section {
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  min-height: 580px;
}

@media screen and (min-width: 991px) {
  .hero-section {
    height: calc(100vh - 70px);
  }
}

.hero-form {
  background: var(--white-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
  padding-bottom: 16px;
}

.hero-icon,
.contact-icon {
  color: var(--secondary-color);
}

.hero-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 60px auto;
}

.hero-btn-link {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--h4-font-size);
  width: 64px;
  height: 64px;
  line-height: 68px;
  text-align: center;
}

.hero-btn-link:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}


/*---------------------------------------
 SALE HOUSE AND LOT          
-----------------------------------------*/
.studio {
    padding: 100px;
}

.sale-house h2{
    font-size: 40px;
}

.sale-house h1{
    font-size: 40px;
}

.sale-house .fa{
    color: #717275;
}

.text-center {
   color: #2d50a2;
    margin-bottom: -1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Lora", Sans-serif;
    font-size: 27px;
}

/* Center the text inside the section */
.center-text {
  text-align: center; /* Center the text horizontally */
  margin-top: 50px; /* Optional: Add space at the top */
  margin-bottom: 20px; /* Optional: Add space at the bottom */
}

.center-text h1 {
  color: #2d50a2;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat';
    font-size: 29px;
    padding-top: 25px;
        font-weight: 500;
}

.center-text h2 {
  font-size: 1.4rem; /* Slightly smaller font size for the h2 */
  color: #2d50a2;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat';
    font-weight: 500;
}


.tm-pciture-item h2{
    margin-bottom: 100px;
}

.sale-house img {
    vertical-align: middle;
    width: 100%;
}

.fh5co-post-entry {
 background-color: #fff;
    margin-bottom: -4rem;
    justify-content: center;
}

.fh5co-post-entry a {
    color: #2d50a2;
    font-size: 18px;
    margin-top: 1px;
    font-weight: 500;
}

.fh5co-post-entry article {
  text-align: center;
  float: left;
  margin-bottom: 10px;
  padding-left: 3em;
  padding-right: 3em;
    margin-top: 10px;
}
@media screen and (max-width: 1200px) {
  .fh5co-post-entry article {
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 992px) {
  .fh5co-post-entry article {
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .fh5co-post-entry article {
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.fh5co-post-entry article a img {
  opacity: 1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.fh5co-post-entry article figure {
  margin-bottom: 30px;
}
.fh5co-post-entry article h2 {
  font-family: "Lora", Sans-serif;
    font-size: 19px;
    color: #444444;
    margin-bottom: 5px;
    text-align: center;
    letter-spacing: 3px;
    color: #2d50a2;
    font-weight: 500;
    text-transform: uppercase;
}
.fh5co-post-entry article h2 a {
  color:#444444;
 font-size: 20px;
font-family: "Lora", Sans-serif;
    letter-spacing: 3px;
}
@media screen and (max-width: 992px) {
  .fh5co-post-entry article h2 {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .fh5co-post-entry article h2 {
    font-size: 15px;
    margin-bottom: 20px;
      color: #2d50a2;
  }
}
.fh5co-post-entry article .fh5co-meta {
  font-size: 16px;
  font-family:"Lora", Sans-serif;
  color: #c9aa57;
  margin-bottom: 20px;
  display: block;
    letter-spacing: 3px;
}

/*---------------------------------------
  PAGINATION            
-----------------------------------------*/
.page{
    margin-top: 150px;
}

.tm-input-paging {
    width: 40px;
    border-radius: 0;
    border: 1px solid #CCCCCC;
    background: #284d46;
    text-align: center;
}

.page .tm-paging-link{
    color: #999;
}

.page .tm-paging{
    justify-content: center
}

.tm-paging {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
}

.tm-paging-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 45px;
    font-size: 1.1rem;
    color: #999;
    background-color: #f0f8ff;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}


.tm-paging-link:hover,
.tm-paging-link.active {
    background-color: #0d6efd;
    color: #fff; 
}

.gap{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 45px;
    font-size: 1.1rem;
    color: #999;
    background-color: #EEEEEE;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

/*---------------------------------------
  REVIEWS              
-----------------------------------------*/
.reviews-section {
  background: #f0f8ff;
}

.reviews-carousel .owl-item img,
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.reviews-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
}

.reviews-carousel .owl-nav button.owl-next, 
.reviews-carousel .owl-nav button.owl-prev {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  width: 60px;
  height: 60px;
  margin: 5px;
  transition: all 0.5s;
}

.reviews-carousel .owl-nav button.owl-next:hover, 
.reviews-carousel .owl-nav button.owl-prev:hover {
  background: var(--secondary-color);
}

.reviews-carousel .owl-prev:hover span::before, 
.reviews-carousel .owl-next:hover span::before {
  color: var(--white-color);
}

.reviews-carousel .owl-prev span, 
.reviews-carousel .owl-next span {
  display: block;
  color: transparent;
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.reviews-carousel .owl-prev span::before, 
.reviews-carousel .owl-next span::before {
  font-family: bootstrap-icons;
  display: block;
  font-size: var(--h4-font-size);
  color: var(--secondary-color);
}

.reviews-carousel .owl-prev span::before {
  content: "\f12f";
}

.reviews-carousel .owl-next span::before {
  content: "\f138";
}

.reviews-thumb {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.reviews-body {
  padding: 50px 40px;
}

.reviews-bottom {
  background: var(--secondary-color);
  background: linear-gradient(180deg, rgba(246,81,41,1) 0%, rgba(255,190,140,1) 100%);
  position: relative;
  padding: 10px 36px;
}

.reviews-bottom-up::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-bottom: 22px solid var(--secondary-color);
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  position: absolute;
  top: -20px;
  left: 36px;
}

.bi-star-fill {
  color: var(--primary-color);
}

.reviews-section .custom-btn {
  background: var(--facebook-color);
}

.reviews-section .custom-btn:hover {
  background: transparent;
  border-color: var(--facebook-color);
  color: var(--facebook-color);
}

.reviews-bottom small {
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
}


/*---------------------------------------
  SHOP              
-----------------------------------------*/
.shop-section {
  background: var(--white-color);
}

.shop-listing-page .shop-section {
  padding-bottom: 0;
}

.shop-thumb {
  margin-bottom: 24px;
}

.shop-image-wrap {
  position: relative;
}

.shop-image-wrap:hover .shop-btn-wrap {
  opacity: 1;
}

.shop-icons-wrap {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.shop-icons {
  background: var(--white-color);
  border-radius: var(--border-radius-small);
  padding: 20px 15px;
}

.shop-icon {
  line-height: normal;
  margin-bottom: 10px;
}

.shop-icon:last-child {
  margin-bottom: 0;
}

.shop-pricing-text {
  color: var(--secondary-color);
}

.shop-condition-text {
  color: var(--custom-btn-bg-color);
}

.shop-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

.shop-body {
  padding: 20px;
  padding-bottom: 0;
}

.shop-btn-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
}

.shop-btn {
  background: var(--primary-color);
  font-size: var(--copyright-font-size);
  width: 100px;
  height: 100px;
  text-transform: uppercase;
}

.shop-btn:hover {
  border-color: transparent;
  background: var(--secondary-color);
  color: var(--white-color);
}

.shop-detail-bar {
  padding: 20px;
}

.shop-listing-page .navbar-nav .nav-link.active,
.shop-detail-page .navbar-nav .nav-link.active {
  background: transparent;
  color: var(--p-color);
}

.shop-listing-page .navbar-nav .nav-link.active:hover,
.shop-detail-page .navbar-nav .nav-link.active:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
        margin-bottom: 50px;
}

.contact-form {
  background: #f0f8ff;
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.contact-form label {
  font-weight: var(--font-weight-semibold);
}

.google-map {
  display: block;
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .input-group {
  background-color: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: .25rem;
  margin-bottom: 24px;
  padding-left: 20px;
}

.custom-form .textarea-group label {
  margin-top: 13px;
}

.custom-form label {
  margin-right: 10px;
  margin-bottom: 0;
}

.custom-form .form-control {
  background-color: var(--white-color);
  box-shadow: none;
  border: 0;
  color: var(--p-color);
  padding-top: 12px;
  padding-bottom: 12px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.custom-form button[type="submit"] {
  background: #2d50a2;
  border: none;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-color);
  border-color: transparent;
}


/*---------------------------------------
  FILTER FORM              
-----------------------------------------*/
.filter-form {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
}

.filter-form-small-title {
  display: block;
  margin-bottom: 10px;
}

.filter-form .form-select {
  border: 2px solid var(--border-color);
}

.filter-form .form-check-label {
  color: var(--p-color);
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: #f0f8ff;
  padding-top: 40px;
    margin-top: -57px;
}

.site-footer-title {
color: #2d50a2;
    font-size: 20px;
}

.site-footer-bottom {
  background-color: #2d50a2;
  position: relative;
  z-index: 2;
  margin-top: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-footer-bottom a {
	color: #2d50a2;
}

.site-footer-bottom a:hover {
	color: #FF6;
}

.site-footer-link {
  color: #717275;
    text-align: left;
    font-size: 18px;
}

.copyright-text {
  color: #fff;
  font-size: 17px;
    margin-top: 8px;
        text-align: center;

}

.site-footer .custom-btn {
  font-size: var(--copyright-font-size);
}

.site-footer .custom-btn:hover {
  background: var(--primary-color);
}

/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  column-count: 2;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  font-size: 18px;
  color: #717275;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
    
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
    margin-top: 5px;
}

.mt-3 {
    margin-top: 1rem !important;
    font-size: 18px;
}
/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: var(--p-color);
  font-size: var(--p-font-size);
  display: block;
  margin-right: 15px;
  text-align: center;
}

.social-icon-link:hover {
  color: var(--secondary-color);
}

.bi-twitter::before {
    content: "\f5ef";
  color: var(--twitter-color);
}

.bi-facebook::before {
    content: "\f344";
  color: var(--facebook-color);
}

.bi-instagram::before {
    content: "\f437";
  color: var(--instagram-color);
}

.social-icon-pinterest {
  color: var(--pinterest-color);
}

.bi-whatsapp::before {
    content: "\f618";
    color: var(--whatsapp-color);
}

.bi-youtube::before {
    content: "\f62b";
    color: red;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .page-link {
    font-size: 12px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 5px;
    margin-left: 5px;
  }

  .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    text-align: left;
    padding: 15px 16px;
    min-width: 125px;
  }

  .about-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .about-image {
    width: 260px;
    height: 260px;
  }

  .about-image-small {
    width: 180px;
    height: 180px;
  }

  .custom-block,
  .contact-form {
    padding: 30px;
  }

  .reviews-thumb {
    margin-bottom: 24px;
  }

  .reviews-body {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 580px) {
  .site-footer {
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
      margin-top: -1rem;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .page-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .about-image {
    width: 205px;
    height: 205px;
  }

  .about-image-small {
    width: 145px;
    height: 145px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }
}

.select-menu{
    width: 300px;
    margin: 140px auto;
    margin-top: -2rem;
}
.select-menu .select-btn{
    display: flex;
    height: 55px;
    background: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 8px;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.select-btn i{
    font-size: 25px;
    transition: 0.3s;
}
.select-menu.active .select-btn i{
    transform: rotate(-180deg);
}
.select-menu .options{
    position: absolute;
    padding: 20px;
    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    display: none;
}
.select-menu.active .options{
    display: block;
    width: inherit;
}
.options .option{
    display: flex;
    height: 55px;
    cursor: pointer;
    padding: 0 16px;
    border-radius: 8px;
    align-items: center;
    background: #fff;
    width: auto;
}
.options .option:hover{
    background: #F2F2F2;
}
.option i{
    font-size: 25px;
    margin-right: 12px;
}
.option .option-text{
    font-size: 18px;
    color: #333;
}

.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    max-width: 1250px;
    margin: -116px auto;
    gap: 20px;
}

.card-list .card-item {
    background: #fff;
    padding: 26px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
    list-style: none;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 0.5s ease;
    text-align: center;
}

.card-list .card-item .fa {
    margin-top: 10px;
}
    

.card-list .card-item:hover {
    border: 2px solid #0d6efd;
}

.card-list .card-item img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    object-fit: cover;
}

.card-list span {
    display: inline-block;
    background: #F7DFF5;
    margin-top: 32px;
    padding: 8px 15px;
    font-size: 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}

.card-list .developer {
    background-color: #F7DFF5; 
    color: #B22485;
    margin-top: 15px;
    margin-bottom: 15px;
}   

.card-list .designer {
    background-color: #d1e8ff;
    color: #2968a8;
    margin-top: 15px;
    margin-bottom: 15px;
}

.card-list .editor {
    background-color: #d6f8d6; 
    color: #205c20;
    margin-top: 15px;
    margin-bottom: 15px;
}

.card-item h3 {
   font-family: "Lora", Sans-serif;
    font-size: 19px;
    margin-bottom: 5px;
    text-align: center;
    letter-spacing: 3px;
    color: #2d50a2;
    font-weight: 500;
    text-transform: uppercase;
}

.card-item h1 {
  color: #2d50a2;
    font-size: 18px;
        margin-top: 28px;
    font-weight: 500;
}


.card-item .arrow {
    display: contents;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: #0d6efd;
    border: 1px solid #0d6efd;
    border-radius: 50%;
    margin-top: 40px;
    transition: 0.2s ease;
}

.card-list .card-item:hover .arrow  {
    background: #0d6efd;
    color: #fff; 
}

@media (max-width: 1200px) {
    .card-list .card-item {
        padding: 15px;
    }
}

@media screen and (max-width: 980px) {
    .card-list {
    }
}

/* Container styling */
.layout {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 16px; /* Default padding */
  padding-right: 16px; /* Default padding */
  text-align: center;
}

/* Title styling */
.title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

/* Grid layout styling */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default 2 columns on small screens */
  gap: 16px; /* Gap between items */
}

/* General grid item styling */
.grid-item {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
    
}

/* Make the images responsive and fit the grid items */
.grid-item img {
    width: 100%; /* Ensure the image takes up 100% of the container */
    height: 100%; /* Makes the image take the full height */
    object-fit: cover; /* Ensures the image covers the entire area of the grid item */
}

/* "pt-50p" (Padding Top 50% of width) - Custom     padding class */
.grid-item.pt-50p {
  padding-top: 40%; /* 50% of the width of the item */
}

/* Handle spacing and layout for specific items */
.grid-item.mb-1 {
  margin-bottom: 4px;
}

.grid-item.mt-1 {
  margin-top: 4px;
}

/* "lg" breakpoints for large screens (min-width: 1024px) */
@media (min-width: 1024px) {
  /* Grid layout for large screens (4 columns) */
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Specific margin and padding adjustments for larger screens */
  .grid-item.lg\:mx-1 {
    margin-left: 8px;
    margin-right: 8px;
  }

  .grid-item.lg\:mt-0 {
    margin-top: 0;
  }
}

/* Grid item with specific span (col-span-2 and row-span-3) */
.grid-item.col-span-2 {
  grid-column: span 2;
}

.grid-item.row-span-3 {
  grid-row: span 2;
}

/* General grid item styling */
.grid-item {
  background-color: #f4f4f4;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden; /* Prevents image overflow */
}

/* Make the images responsive and fit the grid items */
.grid-item img {
    width: 100%; /* Ensure the image takes up 100% of the container */
    height: auto; /* Ensures image maintains aspect ratio */
    object-fit: cover; /* Ensures the image covers the entire area of the grid item */
}



/* If you want to maintain a 4:3 aspect ratio for images, you can use padding-top based on width */
.grid-item {
  position: relative;
}

.grid-item::before {
  content: "";
  display: block;
  padding-top: 35%; /* 4:3 Aspect Ratio (height = 75% of width) */
}

/* Ensuring that the images fill the entire grid item */
.grid-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire item */
}

/* Card container styling */
.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  width: 100%;
  max-width: 50%; /* Default max width for larger screens */
  margin: 20px auto;
}

/* General icon and text styling */
.card div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
    color: #717275;
}

/* Icon styling */
.card .fas, .card .material-icons {
  margin-right: 10px;
  font-size: 20px;
  color: #555;
}

/* Text styling */
.card div p {
  font-size: 16px;
  color: #333;
}

.card h2{
    font-size: 24px;
    font-family: 'Montserrat';
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2d50a2;
    margin-bottom: 13px;
}

/* Make the card full width on smaller screens (mobile) */
@media (max-width: 768px) {
  .card {
    max-width: 90%; /* On smaller screens, the card takes up 90% of the screen width */
    padding: 15px; /* Adjust padding for smaller screens */
  }
}

/* Make the card take up 100% width on very small screens (extra small devices) */
@media (max-width: 480px) {
  .card {
    max-width: 92%; /* Full width for extra small devices like mobile phones */
    padding: 8px; /* Adjust padding for very small screens */
  }

  /* Adjust font size for better readability on mobile */
  .card div p {
    font-size: 14px; /* Reduce font size for small screens */
  }

  /* Adjust icon size for mobile */
  .card .fas, .card .material-icons {
    font-size: 18px; /* Smaller icons on mobile */
  }
}


.bg {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .overlay {
      position: absolute;
      top: 20%;
      left: 5%;
      color: white;
      z-index: 2;
    }

    .overlay h1 {
      font-size: 40px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    font-family: 'Montserrat';
    letter-spacing: 1px;
    }

    .overlay p {
      margin-top: 10px;
      font-size: 1.2em;
            color: white;
        font-weight: 900;
        text-transform: uppercase;
        margin-right: 10px;
    }

    .info-panel {
  position: absolute;
  bottom: -123px;
  left: 11%;
  right: 11%;
  background-color:#2d50a2;
  color: #2d50a2;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  z-index: 2;
  flex-wrap: wrap;
  gap: 20px;
        
}

.info-left {
  display: flex;    
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  flex: 1;
}

.logo {
  font-size: 1.1em;
  font-weight: 500;
  min-width: 150px;
}

.details p {
  font-size: 15px;
  margin: 0;
  min-width: 150px;
   color: #fff;
}

.info-right {
  flex-shrink: 0;
}

.info-right button {
  background-color: #ffd74f;
  color: #2d50a2;
  border: none;
  padding: 12px 20px;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.info-right button:hover {
  background-color: #cc0000;
}

@media (max-width: 768px) {
  .info-panel {
    flex-direction: column;
    align-items: flex-start;
      bottom: -380px;
  }

  .info-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }

  .info-right {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .info-right button {
    width: 100%;
  }
}


.concept-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
  
}

@media (max-width: 768px) {
    .concept-section {
        margin-top: 21rem
    }
}

.concept-label {
  color: #2d50a2;
  font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.concept-title {
  font-size: 1.8em;
  font-weight: 400;
  margin-bottom: 15px;
  color: #1d1d1d;
    font-size: 24px;
}

.concept-description {
  font-size: 1em;
  line-height: 1.7;
  color: #333;
  max-width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 20px;
}


.spacer {
    display: block;
    margin-top: 1em;
}

.location-title {
  color: #a51c30;
  margin-bottom: 0;
}

.location-address {
  font-size: 1.2em;
  margin-top: 5px;
  margin-bottom: 20px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  

}

.distance-list {
      list-style-type: disc;
      padding-left: 20px;
    border-bottom: 1px dashed #ccc;
  padding-bottom: 20px;
    margin-top: 40px;
    }

    .distance-list li {
      margin-bottom: 10px;
        color: #303030;
    font-size: .825rem; 
    }

  .distance-list strong {
    color: #2d50a2;
      font-size: 17px;
  }
    
    .distance {
      color: #3b3b3b;
        font-weight: 500;
    }

    .location {
      color: #303030;
      text-decoration: none;
            font-weight: 500;
    }

    .location:hover {
      text-decoration: underline;
    }

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.landmarks-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.landmarks-overlay h3 {
  margin-top: 0;
}

.landmarks-overlay ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.landmarks-overlay li {
  margin-bottom: 8px;
}

.amenities-section {
      max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
    }

    .amenities-section h2 {
      color: #2d50a2;
  font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 16px;
    text-transform: uppercase;
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
     border-bottom: 1px dashed #ccc;
     padding-bottom: 45px;
    }

    .amenity-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: transform 0.3s ease;
      background: white;
    }

    .amenity-card:hover {
      transform: translateY(-5px);
    }

    .amenity-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .amenity-label {
      position: absolute;
      bottom: 10px;
      left: 10px;
      color: white;
      background: rgba(0, 0, 0, 0.6);
      padding: 8px 12px;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: bold;
    }

    /* Tablet */
    @media (max-width: 768px) {
      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Very small phones */
    @media (max-width: 480px) {
      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .amenity-card img {
        height: 160px;
      }

      .amenity-label {
        font-size: 0.9rem;
        padding: 6px 10px;
      }

      .amenities-section h2 {
        font-size: 1.5rem;
      }
    }

 .floor-plan {
        max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
     

    }

    .floor-plan h2 {
      color: #2d50a2;
  font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 16px;
    text-transform: uppercase;
    margin-bottom: 50px;
    }
     
.slide-text {
  text-align: justify;
  color: #333;
}

.slide-text h3 {
  margin: 0 0 5px;
  font-size: 1.1em;
  font-weight: 600;
}

.slide-text p {
  margin: 0 0 10px;
  font-size: 0.95em;
    font-weight: 600;
}


    .slider {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 10px;
      aspect-ratio: 13 / 9; /* keeps image area responsive */
                margin-bottom: 20px;
    }

    .slides {
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

    .slide {
      width: 100%;
      flex-shrink: 0;
      height: 100%;
      position: relative;
        
    }

    .slide img {
    width: 100%;
    height: auto;
    max-height: 559px; /* optional: limits height for desktop */
    object-fit: cover;
    display: block;
}


/* Mobile responsive tweaks */
@media (max-width: 768px) {
  .slider {
    aspect-ratio: auto;
  }

  .slide-text {
    font-size: 0.95em;
    padding: 8px 15px;
  }

  .slide-text h3 {
    font-size: 1em;
  }

  .slide-text p {
    font-size: 0.9em;
  }
}

  .nav-button {
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  padding: 3px;
}

.chevron.left {
  transform: rotate(-135deg);
  border-color: white;
}

.chevron.right {
  transform: rotate(45deg);
  border-color: white;
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.nav-left {
  left: 10px;
}

.nav-right {
  right: 10px;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-button {
    font-size: 16px;
    width: 36px;
    height: 36px;
     top: 61%;
  }

  .nav-left {
    left: 5px;
  }

  .nav-right {
    right: 5px;
  }
}

    }

    .nav-button:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }

    .nav-left {
      left: 10px;
    }

    .nav-right {
      right: 10px;
    }

    @media (max-width: 600px) {
      .floor-plan h2 {
        font-size: 20px;
      }

      .nav-button {
        font-size: 21px;
        padding: 8px 12px;
      }
    }

.gallery-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

.gallery-container h2 {
  color: #2d50a2;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.gallery-container p {
  font-size: 1em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

.gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 45px;
}

.gallery a {
  flex: 0 0 calc(20% - 10px); /* 5 columns on desktop */
  max-width: calc(20% - 10px);
}

.gallery a img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* Medium devices - tablets: 3 columns */
@media (max-width: 992px) {
  .gallery a {
    flex: 0 0 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
  }
}

/* Small devices - mobile: 2 columns */
@media (max-width: 600px) {
  .gallery a {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

.updates-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .updates-section h2 {
    color: #2d50a2;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .updates-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }

  .updates-grid a {
    flex: 0 0 calc(25% - 12px);
    border-radius: 8px;
    overflow: hidden;
  }

  .updates-grid img {
    width: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .updates-grid img:hover {
    transform: scale(1.03);
  }

  @media (max-width: 768px) {
    .updates-grid a {
      flex: 0 0 calc(50% - 12px);
    }
  }

  @media (max-width: 480px) {
    .updates-grid a {
      flex: 0 0 100%;
    }
  }

.lg-close {
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 6px;
}

.amenities-bullet-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 30px;
  padding-left: 20px;
  margin-bottom: 30px;
}

.amenities-bullet-list li {
  list-style-type: disc;
  margin-left: 1em;
    font-size: 17px;
    
}

/* Responsive: 2 columns on screens below 768px */
@media (max-width: 767px) {
  .amenities-bullet-list {
    grid-template-columns: repeat(2, 1fr);
  }
}


