@font-face {
  font-family: 'TF Arrow';
  src: url('./TFArrow Medium/TFArrow Medium.ttf') format('truetype');
  /* You may need to adjust the path depending on your project structure */
  font-weight: 300;
  font-style: normal;

}



* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

body {
  background: #FEEBDD;
  margin: 0;
  /* Ensure no default body margin */
  padding: 0;
  /* Ensure no default body padding */
  background-repeat: no-repeat;
}
  #loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.75) url(images/loading2.gif) no-repeat center center;
  z-index: 10000;
}
.shine-heading {
  font-size: 36px;
  /* Adjust font size as needed */
  position: relative;
  overflow: hidden;
  color: #333;
  /* Set the color of the text */
}

.loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px;
  z-index: 9999;
}
.shine-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
  -webkit-background-clip: text;
  /* Clip the background to the text */
  background-clip: text;
  /* Clip the background to the text */
  animation: shine 2s linear infinite;
  /* Adjust animation duration as needed */
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}


.header {
  background-color: #143B64;
  border-bottom: 1px solid #978472;
  position: sticky;
  top: 0;
  z-index: 999;
}

.headings {
  font-size: 2rem;
}

.logo-img {
  width: 22% !important;
}

h1 {
  font-family: 'TF Arrow', sans-serif;
  color: #143B64;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  letter-spacing: 2px;
  font-size: 2rem;
}

.apartment__cards h3 {
  font-family: 'TF Arrow', sans-serif;
  color: #E0CEBE;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.apartment__cards {
  border: 2px solid transparent;
  /* Set initial border */
  transition: border-color 0.3s, transform 0.3s;
  /* Add transition effects */
}

.apartment__cards:hover {
  border-color: #978472;
  /* Change border color on hover */
  transform: scale(1.05);
  /* Scale up on hover */
}

hr {
  border-bottom: 4px solid #143B64;
  width: 10%;
}

p {
  text-align: left
}

.bg-black {
  background-color: #143B64;
}
.spans{
    letter-spacing: 2px;
    font-family: 'TF Arrow', sans-serif;
}
.banner_form {
  background-color: #143b64c2;
}

.banner__background {
  background-image: url("./images/azizi-hero-2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.titanium_heading {
  font-family: 'TF Arrow', sans-serif;
  color: #E0CEBE;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  letter-spacing: 2px;
  font-size: 2rem;
}

.banner__background h1 {
  font-family: 'TF Arrow', sans-serif;
  color: #E0CEBE;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 15px;
  padding-bottom: 0;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 6vw;
}

@media (min-width: 1800px){
    .banner__background{
        height: 86vh;
    }
}
/* Media Query for Responsive Design */
@media (min-width: 768px) {
  .banner_heading {
    transform: translate(-5%, -50%);
    padding: 2rem;
    border-radius: 20px;
    left: 10%;
  }

  .banner__background h1 {
    font-size: 4vw;
    /* Adjusted for larger screens */
  }

}

@media (max-width:786px) {
  .logo-img {
    width: 50% !important;
    height: 20%;
  }
}

footer {
  background-color: #143B64;
  padding: 1rem;
}

footer p {
  font-family: 'TF Arrow', sans-serif;
  background-image: linear-gradient(to bottom right, #978472, #FEEBDD, #AE9F7F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  text-align: center;
}


.marquee {
  border: 1px 1px 1px 0 solid #978472;
}

.gallery {
  background-image: url("./images/bottom-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  /* Adjust the color and opacity as needed */
  padding: 20px;
  font-size: 2rem;
}

.gallery h1 {
  color: #E0CEBE;
}

.card__items {
  background-color: #143B64;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  font-weight: 300;
  padding: 10px;
}

.card__items:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Adjust shadow as needed */
}

.cards__grid {

  grid-gap: 30px;
  /* Adjust as needed */
}

.footer p {
  font-size: 22px;
  color: #143B64
}

.footer a {
  font-size: 22px;
  color: #143B64;
  text-decoration: none
}

.footer i {
  color: #143B64;
}

.image-container {
  position: relative;
  overflow: hidden;
}

/* Style for the image inside the container */
.image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;

}

/* Style for the image on hover */
.image-container:hover img {
  transform: scale(1.2);
  /* Increase the scale for zoom effect */
}

.glass-button {
  background-color: #143B64;
  /* Background color */
  border: none;
  color: #fff;
  /* Text color */
  padding: 10px 20px;
  /* Padding */
  font-size: 16px;
  /* Font size */
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.glass-button-titanium {
  background-image: linear-gradient(to bottom right, #978472, #FEEBDD, #AE9F7F);
  border: none;

  /* Text color */
  padding: 10px 20px;
  /* Padding */
  font-size: 16px;
  /* Font size */
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.glass-button-titanium a {
  color: #143B64 !important;
}

/* Shine effect */
.glass-button-titanium::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 0;
  height: 0;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0));
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 0;
}

.glass-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 0;
  height: 0;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0));
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 0;
}

/* Shine effect on hover */
.glass-button:hover::before {
  width: 200%;
  height: 200%;
}

/* Style for button text */
.glass-button span {
  position: relative;
  z-index: 1;
}

.glass-button-titanium:hover::before {
  width: 200%;
  height: 200%;
}

/* Style for button text */

.glass-button-titanium span {
  position: relative;
  z-index: 1;
}

.cards {
  width: 200px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
  /* Transition for the box-shadow property */
}

.form_div {
  background-color: #143b64;
  /* Dark background color */
  color: #fff;
}

.buttons_group a {
  background-color: #143b64;
  /* Dark background color */
  color: #fff;
  text-decoration: none;
}

.form-container .form-control {
  background-color: transparent;
  /* Transparent background */
  border: none;
  /* Remove border */
  border-radius: 0;
  /* No border radius */
  border-bottom: 1px solid #978472;
  /* Bottom underline */
  color: #fff;
  /* Text color */
}

.form-container1 .form-control {
  background-color: transparent;
  /* Transparent background */
  border: none;
  /* Remove border */
  border-radius: 0;
  /* No border radius */
  border-bottom: 1px solid #978472;
  /* Bottom underline */
  color: rgba(55, 53, 53, 0.7);
  /* Text color */
}

.form-control:focus {
  background-color: transparent;
  /* Transparent background on focus */
  border-color: #978472;
  /* Border color on focus */
  box-shadow: none;
  /* Remove box shadow */
}

/* Styling for select dropdown */
.form-container select.form-control {
  background-color: transparent;
  /* Transparent background */
  border: none;
  /* Remove border */
  border-radius: 0;
  /* No border radius */
  border-bottom: 1px solid #978472;
  /* Bottom underline */
  color: rgba(255, 255, 255, 0.7);
  /* Text color */
}

.form-container1 select.form-control {
  background-color: transparent;
  /* Transparent background */
  border: none;
  /* Remove border */
  border-radius: 0;
  /* No border radius */
  border-bottom: 1px solid #978472;
  /* Bottom underline */
  color: rgb(99, 95, 95)
    /* Text color */
}

/* Adjust placeholder color */
/* Adjust placeholder color */
/* Adjust placeholder color */
.form-container .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
  /* Lighter color with reduced opacity */
}

/* Adjust color for options in select dropdown */
.form-container select.form-control option {
  color: rgba(67, 64, 64, 0.7);
  /* Same color as placeholder text */
}

.form-container1 select.form-control option {
  color: rgba(67, 64, 64, 0.7);
  /* Same color as placeholder text */
}

/* Styling for submit button */
.btn {
  background-color: #4CAF50;
  /* Button background color */
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}

.btn:hover {
  background-color: #45a049;
  /* Button background color on hover */
}

/* Additional styling for the form container */
.form-container {
  margin-top: 50px;
}

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  /* Adjust as needed */
  right: 20px;
  /* Adjust as needed */
  z-index: 9999;
  /* Ensure it's above other content */
}

.whatsapp-icon a {
  display: block;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s ease;
}

.whatsapp-icon a:hover {
  transform: scale(1.1);
}

.whatsapp-icon img {
  width: 60px;
  height: 60px;
  display: block;
}

.whatsapp-number {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #fff;
}

.modal-body {
  background-color: #143b64;
}

#wrapper {
  width: 100%;
  max-width: 964px;
  position: relative;
}

#carousel {
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

#carousel::-webkit-scrollbar {
  height: 0;
}

#prev,
#next {
  display: flex;
  justify-content: center;
  align-content: center;
  border: none;
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 50%;
  outline: 0;
  cursor: pointer;
  position: absolute;
  background-image: linear-gradient(to bottom right, #978472, #FEEBDD, #AE9F7F);
  color: #143B64;
}

#prev {
  top: 40%;
  left: 0;
  transform: translate(50%, -50%);
}

#next {
  top: 40%;
  right: 0;
  transform: translate(-50%, -50%);
}

#content {
  display: grid;
  grid-gap: 16px;
  grid-auto-flow: column;
  margin: auto;
  box-sizing: border-box;
}

.item {
  width: 180px;
  height: 180px;
  background: green;
}

.hidden {
  display: none;
}

.centered-word {
  display: block;
  text-align: center;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}

.animate-next {
  animation: slideNext 0.5s forwards;
}

.animate-prev {
  animation: slidePrev 0.5s forwards;
}

@keyframes slideNext {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes slidePrev {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
  }
}