/********** Template CSS **********/
:root {
  /* --primary: #ca9537; */
  --primary: #767373;
  --secondary: #c2af90;
  --light: #effdf5;
  --dark: #2d2d2d;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.dufult-button {
  border: 1px solid black;
  background-color: transparent;
  font-weight: 400;
  color: black;
  padding: 0.5rem 2.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dufult-button.active {
  background-color: black;
  color: white;
  border-color: black;
}

.dufult-button:hover {
  background-color: black;
  color: white;
  border-color: black;
}

.dufult-button-dark {
  border: 1px solid transparent;
  background-color: black;
  font-weight: 200;
  color: white;
  padding: 0.5rem 2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dufult-button-dark.active {
  background-color: transparent;
  color: black;
  border-color: black;
}

.dufult-button-dark:hover {
  background-color: transparent;
  color: black;
  border-color: black;
}

.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

/*** Navbar ***/
.nav-bar {
  /* position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999; */
  position: sticky;
  padding: 0;
  z-index: 9999;
}

.nav-bar.sticky-top {
  position: sticky;
  padding: 0;
  z-index: 9999;
}

.navbar {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 5px;
  transition: 0.5s;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .nav-bar {
    margin: 0;
    padding: 0;
  }

  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-brand {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    top: 100%;
    margin-top: 0;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
@media (min-width: 992px) {
  .header {
    margin-top: -120px;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 40px;
  font-size: 20px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

@media (max-width: 768px) {
  .header-carousel .owl-nav {
    left: 25px;
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #dddddd;
}

/*** Icon ***/
.icon {
  width: 60px;
  height: 60px;
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black !important;
  border-radius: 10rem;
}
.icon i {
  font-size: 1.5rem;
}

/*** About ***/
.about-img img {
  position: relative;
  z-index: 2;
}

.about-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: skew(20deg);
}

/*** Category ***/
.cat-item div {
  background: none;
  border: 1px solid black;
  transition: 0.5s;
}

/* .cat-item {
    transition: background 0.3s ease, border-color 0.3s ease;
} */

/* .cat-item:hover div {

    background: linear-gradient(145deg, #e7c994, #c1851e);
    border-color: transparent;
} */

/*** Property List ***/
.nav-pills .nav-item .btn {
  color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
  color: #ffffff;
}

.property-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.property-item img {
  transition: 0.5s;
}

.property-item:hover img {
  transform: scale(1.1);
}

.property-item .border-top {
  border-top: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

.property-item .border-end {
  border-right: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.team-item .btn {
  color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.team-item .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

.team-item:hover {
  border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
  background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
  color: var(--secondary) !important;
}

/*** Testimonial ***/
/* .testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
} */

.testimonial-item .border {
  border: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 40px;
  font-size: 20px;
  transition: 0.5s;
}

@media (max-width: 768px) {
  .owl-nav .owl-next,
  .owl-nav .owl-prev {
    display: none;
  }
}

.owl-nav .owl-prev {
  left: -50px;
  top: 50%;
}

.owl-nav .owl-next {
  right: -50px;
  top: 45%;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  filter: brightness(0.9);
}

.custom-card {
  width: clamp(250px, 17vw, 350px);
  aspect-ratio: 1/1.4;
  position: relative;
  border-radius: 0 !important;
}

.custom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title-custom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 15px 10px;
  width: 100%;
  text-align: center;
}

.whyndr-card {
  width: clamp(285px, 26vw, 400px);
  height: 200px;
  margin: 1rem !important;
}

.whyndr-card .title {
  font-size: medium;
}

.whyndr-card .text {
  font-size: medium;
}

.propaty-card {
  width: clamp(310px, 27vw, 450px);
  height: fit-content;
  color: black;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0);
  background: #fff;
  transition: transform 0.3s ease;
}

.propaty-card:hover {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.propaty-card img {
  width: 100%;
  aspect-ratio: 2 / 2.2;
  object-fit: cover;
  overflow: hidden;
}

.propaty-card-content {
  padding: 10px;
}

.propaty-location {
  font-size: 12px;
  margin-bottom: 3px;
  color: #777;
  text-transform: uppercase;
}

.propaty-title {
  font-size: 18px;
  font-weight: bold;
  margin: 3px 0;
}

.propaty-badge {
  display: inline-block;
  background: black;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

.propaty-details {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

.propaty-details span {
  font-weight: bold;
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .form-control {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
  font-size: 15px;
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

@media (max-width: 768px) {
  #logo_img {
    width: 60px;
    height: 60px;
  }

  .price {
    font-size: 16px;
  }

  .name {
    font-size: 17px;
  }
}

.right-sti {
  position: sticky;
  top: 23px !important;
}

.bg-title {
  background-image: url("images/bg-title-02.jpg");
  background-size: cover;
  background-position: center;
}

.au-card {
  border-radius: 0.5rem;
}

.au-btn-plus {
  background-color: #767373;
  color: white;
}

.au-message__item {
  border-bottom: 1px solid #f1f1f1;
  padding: 10px;
}

.au-message__item:hover {
  background-color: #f9f9f9;
}

.recei-mess {
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 10px;
}

.send-mess {
  background-color: #767373;
  color: white;
  padding: 10px;
  border-radius: 10px;
  text-align: right;
}

.form-control {
  border-radius: 0;
}

.container-fluid {
  padding: 4rem 0;
  /* Default padding for smaller screens */
}

@media (min-width: 992px) {
  .container-fluid {
    padding: 4.5rem;
    /* Padding for large screens and above */
  }
}

.inner-item {
  margin-bottom: 15px;
}
.inner-item .icon {
  margin-right: 10px;
}
.inner-item img {
  margin-right: 10px;
}
.limitcon {
  margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .overview .headline {
    font-size: 1.5rem;
    /* Adjust headline size */
  }

  .inner-item {
    flex-direction: column;
    align-items: flex-start;
    /* Align items in a column on smaller screens */
  }

  .icon {
    margin-bottom: 5px;
    /* Space between icon and text */
  }
}

/* Optional: Add more styles for buttons, forms, etc. */
.form-floating {
  margin-bottom: 15px;
}

.form-container {
  /* margin-top: 30px; */
  padding: 30px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.form-container h3 {
  text-align: center;
  margin-bottom: 20px;
}

.custom-table {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.table-heading {
  background-color: #767373;
  color: white;
  padding: 10px;
  font-size: 1.5rem;

  border-radius: 10px 10px 0 0;
}

.inner-item {
  padding: 10px;
  margin-bottom: 15px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.amenities {
  font-size: 14px;
}

.amenities b {
  font-size: 16px;
  color: #333;
}

.download-section {
  background-color: #767373;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.download-btn {
  background-color: white;
  color: black;
  border: none;
  padding: 5px 10px;
  font-size: 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background-color: black;
  color: white;
}

.artistic-label {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px;
  font-size: 12px;
  position: absolute;
  z-index: 1;
  font-style: italic;
}

.project-gallery .item {
  position: relative;
  margin-bottom: 10px;
}

.theme-btn {
  background-color: #767373;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  display: block;
  width: 100%;
  margin-top: 10px;
  text-decoration: none;
  font-size: 16px;
}

.white-btn {
  background-color: #ffffff;
  color: #767373;
  border: 1px solid #767373;
  margin-top: 10px;
}

.height {
  height: 41px;
  width: 41px;
}

.right_section span {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.right_section span img {
  margin-right: 10px;
}

.right_section span {
  font-size: 14px;
}

.inner-item-for {
  margin-bottom: 20px;
}

h3 {
  color: black;
  margin-top: 20px;
}
h1.custom {
  font-size: 2rem;
  color: #333;
  text-align: center;
  margin-bottom: 2.5rem;
}
p.custom {
  margin-bottom: 2.5rem;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  font-weight: 300;
}

p {
  color: #27262e;
  font-size: 1.3rem;
  line-height: 1.25;
}

li {
  margin-bottom: 10px;
}

.readmore {
  color: #767373;
  text-decoration: underline;
  /* align-items: center; */
  cursor: pointer;
}

button#download-btn2 {
  background-color: transparent;
  color: #767373;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

button#download-btn2:hover {
  text-decoration: none;
}

.more-text {
  display: none;
  /* Initially hidden */
}

.table-responsive {
  margin-top: 10px;
}

table th,
table td {
  text-align: center;
  vertical-align: middle;
}

table thead {
  background-color: #343a40;
  color: #fff;
}

table tbody tr:nth-child(odd) {
  background-color: #f2f2f2;
}

table tbody tr:nth-child(even) {
  background-color: #fff;
}

table tbody tr:hover {
  background-color: #e9ecef;
}

table td,
table th {
  padding: 12px;
  border: none;
}

table th {
  font-weight: bold;
}

.over_head {
  text-align: center;
  margin-bottom: 20px;
}

.over_head img {
  max-width: 100px;
  margin-bottom: 10px;
}

.over_head p {
  font-size: 16px;
  color: #555;
}

.des {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 20px;
}

.theme-btn2 {
  background-color: #767373;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  width: 20%;
}

.theme-btn2:hover {
  background-color: #767373;
}

.remove_under {
  text-decoration: none;
  color: #767373;
  font-weight: bold;
}

.remove_under:hover {
  text-decoration: underline;
}

#BookBtn56 {
  color: #767373;
  font-weight: bold;
  cursor: pointer;
}

#BookBtn3:hover {
  color: #fff;
  text-decoration: underline;
}

.item-fq {
  margin-bottom: 10px;
}

.accordion {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  cursor: pointer;
  padding: 15px;
  text-align: left;
  width: 100%;
  outline: none;
  transition: background-color 0.3s;
}

.accordion:hover {
  background-color: #f1f1f1;
}

.panel {
  padding: 15px;
  display: none;
  /* Hide panel by default */
  overflow: hidden;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

.project-card {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 15px;
  background-color: #fff;
  transition: transform 0.2s;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-img {
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
}

.project-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.project-details {
  color: #555;
}

.project-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
}

h2 {
  color: #333;
}

footer {
  background-color: #f8f9fa;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
}

body {
  font-family: Source Sans Pro, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans,
    sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol,
    Noto Color Emoji;
}

h2 {
  color: #333;
}

footer {
  background-color: #f8f9fa;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
}

.gallery img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.UniquesFacilities__facilitiesCardWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.UniquesFacilities__xidFacilitiesCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 120px;
  text-align: center;
}

.UniquesFacilities__xidFacilitiesCard img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Creates a soft shadow */
  border-radius: 10px;
  /* Adds  corners */
  transition: all 0.3s ease-in-out;
  /* Smooth transition for hover effect */
}

/* Optional: Add a hover effect to the cards */
.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  /* Increase shadow on hover */
  transform: translateY(-5px);
  /* Slightly lift the card */
}

@media (max-width: 767px) {
  .img-fluid {
    /* max-width:369px; */
    height: auto;
  }

  .size {
    font-size: 12px;
    text-align: center;
  }

  .hide {
    display: none;
  }

  .show {
    display: block;
  }

  .header .row.g-2 {
    flex-direction: column;
    margin: 0;
    /* Remove any extra margins */
  }

  .header .col-lg-6 {
    width: 100%;
    /* Full width for all images */
    margin-bottom: 10px;
    /* Add space between sections */
  }

  .header .col-lg-6 img {
    max-width: 100%;
    /* Ensure the image fits the container */
    height: auto;
    /* Maintain aspect ratio */
  }

  .header .row.g-2 .col-6 {
    width: 100%;
    /* Make small images take full width */
  }

  .header .row.g-2 .col-6 img {
    max-width: 100%;
    /* Full width images for small screens */
    height: auto;
    /* Maintain aspect ratio */
  }

  .header .row.g-2.mt-2 {
    margin-top: 10px;
    /* Add spacing between the rows */
  }
}

@media (max-width: 576px) {
  .floorplan_btn a {
    width: 100%;
    margin-bottom: 10px;
  }

  .floor_item img {
    max-width: 100%;
    height: auto;
  }

  /* .btn {
        font-size: 12px;
        text-align: center;
        width: 100%;
    } */
}

@media (max-width: 768px) {
  .footer-menu a {
    display: block;
    margin-bottom: 10px;
  }
}

.carousel-caption h3,
.carousel-caption p {
  z-index: 2;
  /* Ensure the text appears on top of the image */
}

/* General Improvements */
.bg-light-gray {
  background-color: #f8f9fa;
}

.text-white-gray {
  font-family: Montserrat, sans-serif;
  color: white;
}

.carousel-caption h1 {
  font-family: Montserrat, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Counter Section Animations */
.counter-box {
  /* width: clamp(260px, 17vw, 350px); */
  margin: 1rem 0rem;
}

.counter-box h2 {
  font-size: 4rem;
  font-weight: bold;
  color: black;
  /* Change color to primary */
  transition: transform 0.3s ease-in-out;
}

.counter-box h2:hover {
  transform: scale(1.1);
  /* Add hover effect */
}

.counter-box p {
  font-size: 1.2rem;
  color: #333;
}

/* Contact Form Styling */
.form-floating input,
.form-floating textarea {
  border-radius: 0.5rem;
  border: 1px solid #ced4da;
}

.form-floating label {
  color: #6c757d;
}

.btn-primary {
  background-color: #767373;
  border-color: #767373;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 0.5rem;
}

.btn-primary:hover {
  background-color: #767373;
  border-color: #767373;
}

/* Footer Customization */
.footer {
  background-color: #343a40;
  color: white;
}

.footer a {
  color: #adb5bd;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: white;
}

body {
  font-family: "Inter", sans-serif;
  color: black !important;
}

/* .carousel-item img { */
/* height: 600px;  */
/* object-fit: cover;  */
/* } */

.section-title {
  margin-bottom: 2rem;
  color: #000000;
  font-weight: 600;
}

.contact-card {
  width: clamp(330px, 17vw, 390px);
  margin: 10px;
  background-color: #ffffff;
  height: 13rem;
  padding: 1rem;
  transition: 0.3s;
}
.contact-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer {
  background-color: #343a40;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-info {
    padding: 1rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Serif Pro", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f9f9f9;
}

.featured-section {
  width: 100%;
  max-width: 1200px;
  padding: 40px 0;
  background-color: #f2f2f2;
  text-align: center;
  overflow: hidden;
}

.featured-section h4 {
  font-size: 16px;
  color: #888;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.logos-container {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.logos {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: slide 10s linear infinite;

  width: calc(100%);
}

.logo-item {
  min-width: 120px;
  max-width: 120px;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  width: 100%;
  height: auto;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logos {
    gap: 20px;
    animation: slide 40s linear infinite;
  }
}

@media (max-width: 480px) {
  .logos {
    gap: 10px;
    animation: slide 45s linear infinite;
  }

  .logo-item {
    min-width: 60px;
    max-width: 80px;
  }
}

.whatsapp-icon {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.whatsapp-icon:hover {
  background-color: #25d366;
}

@media (max-width: 768px) {
  .whatsapp-icon {
    width: 50px;
    height: 50px;
    left: 10px;
    bottom: 40px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .whatsapp-icon {
    width: 40px;
    height: 40px;
    left: 10px;
    bottom: 40px;
    font-size: 18px;
  }
}

.message-icon {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

@media (max-width: 768px) {
  .message-icon {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 40px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .message-icon {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 40px;
    font-size: 18px;
  }
}

/* Updated Blog Item Styles for Compact Layout */
.blog-carousel .blog-item {
  max-width: 300px;
  /* Set a max width to control the size */
  margin: 0 auto;
}

.blog-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-item h5 {
  color: #333;
  font-size: 1.1rem;
}

.blog-item p {
  color: #555;
  font-size: 0.9rem;
}

.blog-item a.btn-primary {
  font-size: 0.875rem;
  padding: 5px 10px;
  transition: background-color 0.3s ease;
}

.blog-item a.btn-primary:hover {
  background-color: #0056b3;
}

.footer {
  background-color: #222;
  color: #fff;
}

.footer h5 {
  font-size: 1.2rem;
  font-weight: 600;
}

.footer .btn-link {
  color: #ddd;
  transition: color 0.3s ease;
}

.footer .btn-link:hover {
  color: #f8f9fa;
}

.footer .btn-social {
  font-size: 1.25rem;
  border-radius: 50%;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.footer .btn-social:hover {
  background-color: #f8f9fa;
  color: #333;
}

.footer .form-control {
  background-color: #444;
  border-radius: 5px;
  color: #fff;
  border: 1px solid #555;
}

.footer .btn-primary {
  background-color: #007bff;
  border-radius: 5px;
  border: none;
  font-weight: 600;
}

.footer .btn-primary:hover {
  background-color: #0056b3;
}

.footer .copyright {
  color: #bbb;
  font-size: 0.875rem;
  padding: 15px;
}

.footer .copyright a {
  color: #bbb;
  text-decoration: none;
}

.footer .copyright a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.social-icon {
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary) !important;
  color: #deb979 !important;
}

.social-icon:hover h6 {
  color: #ffffff !important;
}

.follow_card {
  background-color: #f2f2f2;
  color: black;
  padding: 20px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}
.follow_card:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bg_white {
  background: #ffffff;
}
.bg_gray {
  background: #f2f2f2;
}
.bg_creem {
  background: #fff9f0;
}

.project-section {
  overflow: hidden;
  /* Ensure overlay doesn't expand the container */
}

.project-item {
  position: relative;
  aspect-ratio: 1/1.5;
  overflow: hidden;
}

.project-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  /* Smooth zoom effect */
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  /* opacity: 0; */
  /* Initially hidden */
  transition: opacity 0.5s ease-in-out;
  background: linear-gradient(5deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%);
  /* Semi-transparent background */
}

.project-item:hover .project-overlay {
  background: linear-gradient(
    5deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  /* Show overlay on hover */
}

.project-item:hover .project-image {
  transform: scale(1.1);
  /* Zoom effect on hover */
}

.project-item:hover .project-subtitle {
  color: white;
}

.project-title {
  position: relative;
  transform: rotate(-90deg) !important;
  right: 40%;
  margin: auto;
  bottom: -25%;
  letter-spacing: 2px;
  font-size: 2em;
  text-shadow: 0 0 19px #000;
  color: white;
}

.project-subtitle {
  font-size: 1em;
  margin-left: auto;
  padding-right: 30px;
  padding-bottom: 25px;
}

.arrow {
  margin-left: 20px;
}

.view-all {
  text-decoration: underline;
  padding: 10px 20px;
  display: inline-block;
  font-size: 2em;
}

.floor_item {
  display: none;
  margin-bottom: 1rem;
  transition: opacity 0.5s ease;
}

.floor_item.show {
  display: block;
}

.activebtn {
  background-color: var(--primary) !important;
  color: #ffffff !important;
}

.property-nav-bar .nav-link {
  color: var(--light) !important;
}

@media (min-width: 1401px) {
  /* Styles for screens larger than 1400px */
  .container,
  .container-fluid,
  .container-xxl {
    max-width: 1920px !important;
    /* Or another large width */
    /* margin: 0 auto !important;  */
  }
}

@media (min-width: 1571px) {
  .show-only-extra-large {
    display: block !important;
  }
}

@media (max-width: 1570px) {
  .show-only-extra-large {
    display: none !important;
  }
}

.px-lg-5-custom {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (min-width: 992px) {
  .px-lg-5-custom {
    padding-left: 3rem !important;
    /* Adjust this value as needed */
    padding-right: 3rem !important;
    /* Adjust this value as needed */
  }
}

.btn:hover {
  filter: brightness(0.9);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-card {
  border: none;
  width: clamp(350px, 27vw, 450px);
  aspect-ratio: 1/1.3;
  margin: 2rem auto;
  overflow: hidden;
  background-color: #f9f9ff;
}

.blog-card .card-img {
  width: 100%;
  height: 35%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 0;
}

.blog-card .card-date {
  font-size: 0.9em;
  color: #666;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.blog-card .card-body {
  padding: 2rem;
}

.blog-card .card-title {
  font-weight: 400;
  margin-bottom: 1rem;
  font-family: "Source Serif Pro", ui-sans-serif, system-ui;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #222;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Source Serif Pro", ui-sans-serif, system-ui;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-card .card-text {
  color: #555;
  margin-bottom: 2rem;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
}

.blog-card:hover .dufult-button {
  background: black;
  color: white;
}

.input-group-text {
  border-radius: 0px;
}

.Certificates-carousel .owl-item::after {
  position: absolute;
  top: 150px;
  left: -20px;
  height: 200px;
  width: 3px;
  content: "";
  border-left: 2px dashed var(--primary);
}

.Achievement-card {
  width: 360px;
  height: 450px;
  overflow: hidden;
}
.Achievement-card .description {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: medium;
}
