body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  text-decoration: none;
}
/* header */

.navbar1 {
  display: flex;
  background-color: #063f63;
  height: 50px;
  justify-content: space-around;
}
.menu1 ul {
  display: flex;
  gap: 30px;
  list-style-type: none;
}
.menu1 li {
  color: white;
}

.menu3{
  height: 100%; /* Take full navbar height */
  display: flex;
  align-items: center;
    
}
.menu3 img{
  height: 100px; /* Increased from 40px - adjust this value */
  width: auto; /* Maintain aspect ratio */
  max-height: 90%; /* Ensure it never exceeds navbar height */
  transition: all 0.3s ease;
}


.menu2 ul {
  display: flex;
  gap: 20px;
  list-style-type: none;
}

.menu2 li {
  color: white;
}
.navbar2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px; /* Reduced from 0px to 5px */
  height: 80px; /* Added fixed height */
  background: white; /* Ensure background is set */
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.menu3 ul {
  list-style-type: none;
  color: #063f63;
}

.mobile-login {
    display: none;
}
.menu4 ul {
  display: flex;
  list-style-type: none;
  gap: 25px; /* Slightly reduced gap */
  margin: 0;
  padding: 0;
}
.menu4 li a {
  color: #063f63;
  text-decoration: none;
  font-size: 18px; /* Reduced from 22px */
  font-weight: 500;
  padding: 5px 0;

}
.menu4 li a:hover {
  color: #1d94de;
}
.menu5 ul {
  display: flex;
  list-style-type: none;
  gap: 30px;
  align-items: center;
  text-decoration: none;
}
.menu5 li a {
  color: #063f63;
  text-decoration: none;
}
.menu5 button {
  background-color: #063f63;
  color: white;
  height: 40px;
  width: 100px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

/* Mobile menu styles */
.menu-toggle {
  display: none; /* Hidden by default on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: relative;
  z-index: 101;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #4e3f2d;
  border-radius: 3px;
  transition: all 0.3s ease;
}
/* Mobile menu active state */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* body */
.main1 {
  background: linear-gradient(rgba(58, 57, 57, 0.7), rgba(48, 47, 47, 0.7)),
    /* white overlay */ url("../images/real_state_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  width: 100%;
  background-color: #d9d9d9;
}
.menu6 {
  padding-top: 30px;
  /* line-height: 20px; */
}
.menu6 p {
  text-align: center;
}
.discover {
  color: #ffffff;
  line-height: 0px;
}
.property {
  font-size: 30px;
  font-weight: 700;
  color: white;
}
.menu6 .lorem {
  color: white;
}
.menu7 {
  display: flex;
  width: 50%; /* Changed from 50% to full width for better centering */
  background-color: #fdfafa;
  gap: 20px;
  justify-content: center; /* Centers children horizontally */
  align-items: center; /* Centers children vertically */
  margin: 30px auto 0; /* Top margin 30px, auto horizontal margins for centering */
  padding: 15px 20px; /* Add some padding */
  border-radius: 5px; /* Optional: for better appearance */
  box-sizing: border-box; /* Include padding in width calculation */
}
.menu7 .what {
  /* height:40px;
    width:180px;
    padding-left: 16px;
    border:1px solid black; */
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  flex: 1; /* Allow input to grow */
  max-width: 300px;
}
.menu7 select.destination {
  padding: 10px 10px 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  flex: 1; /* Allow select to grow */
  max-width: 200px;
}
.menu7 button {
  padding: 10px 20px;
  background-color: #063f63; /* Example color */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.main2 {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  background-color: #d9d9d9;
  padding: 50px;
}
.menu8 img {
  height: 350px;
  width: 500px;
}
.main3 {
  /* line-height: 2px; */
  margin-bottom: 40px;
  /* background-color: #eb9494; */
}
.main3 .about {
  color: #1d94de;
  font-family: "Poppins", sans-serif;
  line-height: 0px;
}
.main3 .premium {
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 34px;
  /* background-color: #db6868; */
  margin: 0px;
}
.lorem {
  font-family: "Roboto", sans-serif;
}
.main4 {
  display: flex;
  /* gap:10px; */
}
.menu9 img {
  height: 80%;
  width: 80%;
}
.main3 button {
  height: 40px;
  width: 150px;
  background-color: #063f63;
  border: none;
  color: white;
  margin-top: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}
.menu10 {
  margin-right: 50px;
}
.menu10 .best {
  font-size: 14px;
  font-weight: 600;
}
.menu10 img {
  height: 40%;
  width: 100%;
}
.main5 {
  margin-top: 40px;
}
.main5 .top {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.main6 {
  display: flex;
  justify-content: center;
  justify-content: space-around;
}
.house1 p {
  /* background-color: #000; */
  text-align: center;
  align-items: center;
  margin-left: 25px;
}
.main6 li {
  list-style: none;
}
.main6 p {
  text-align: center;
}

.project-container {
  display: flex;
  flex-wrap: wrap; /* Wrap to next line if needed */
  gap: 20px;
  justify-content: center;
}

.main8 {
  display: flex;
  margin-top: 30px;
  width: 300px;
}
.menu11 {
  display: flex;
  position: relative;
  height: 300px;
  width: 300px;
}
.menu11 img {
  height: 300px;
  width: 300px;
}
.menu11 .featured {
  position: absolute;
  margin-left: 10px;
  height: 22px;
  width: 72px;
  background-color: #063f63;
  border: none;
  border-radius: 20px;
  padding-left: 14px;
  padding-top: 5px;
  color: white;
}
.menu12 {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.menu12 .for {
  position: absolute;
  height: 22px;
  width: 72px;
  background-color: #53b5f1;
  border: none;
  border-radius: 20px;
  padding-left: 14px;
  padding-top: 5px;
  color: white;
  /* margin-left: 100px; */
  right: 84px;
  /* left:100px; */
}
.menu12 .sold {
  position: absolute;
  height: 22px;
  width: 52px;
  background-color: #53b5f1;
  border: none;
  border-radius: 20px;
  padding-left: 14px;
  padding-top: 5px;
  color: white;
  right: 14px;

  /* text-align: center; */
}
.menu13 {
  line-height: 8px;
}
.menu13 .dollar {
  color: #53b5f1;
}
.menu13 .family {
  font-size: 18px;
  line-height: 18px;
}
.menu14 {
  display: flex;
  background: linear-gradient(rgba(58, 57, 57, 0.5), rgba(48, 47, 47, 0.5)),
    /* white overlay */ url("../images/home2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px;
  width: 350px;
  gap: 70px;
}
.menu14 .featured {
  margin-left: 10px;
  height: 22px;
  width: 72px;
  background-color: #063f63;
  border: none;
  border-radius: 20px;
  padding-left: 14px;
  padding-top: 5px;
  color: white;
}
.menu15 {
  display: flex;
  background: linear-gradient(rgba(58, 57, 57, 0.5), rgba(48, 47, 47, 0.5)),
    /* white overlay */ url("../images/home3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px;
  width: 350px;
  gap: 70px;
}
.menu15 .featured {
  margin-left: 10px;
  height: 22px;
  width: 72px;
  background-color: #063f63;
  border: none;
  border-radius: 20px;
  padding-left: 14px;
  padding-top: 5px;
  color: white;
}
.main10 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.menu16 {
  display: flex;
  background: linear-gradient(rgba(58, 57, 57, 0.5), rgba(48, 47, 47, 0.5)),
    /* white overlay */ url("../images/home4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px;
  width: 350px;
  gap: 70px;
}
.menu16 .featured {
  margin-left: 10px;
  height: 22px;
  width: 72px;
  background-color: #063f63;
  border: none;
  border-radius: 20px;
  padding-left: 14px;
  padding-top: 5px;
  color: white;
}
.menu17 {
  display: flex;
  background: linear-gradient(rgba(58, 57, 57, 0.5), rgba(48, 47, 47, 0.5)),
    /* white overlay */ url("../images/home5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px;
  width: 350px;
  gap: 70px;
}
.menu17 .featured {
  margin-left: 10px;
  height: 22px;
  width: 72px;
  background-color: #063f63;
  border: none;
  border-radius: 20px;
  padding-left: 14px;
  padding-top: 5px;
  color: white;
}
.menu18 {
  display: flex;
  background: linear-gradient(rgba(58, 57, 57, 0.5), rgba(48, 47, 47, 0.5)),
    /* white overlay */ url("../images/home6.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px;
  width: 350px;
  gap: 70px;
}
.menu18 .featured {
  margin-left: 10px;
  height: 22px;
  width: 72px;
  background-color: #063f63;
  border: none;
  border-radius: 20px;
  padding-left: 14px;
  padding-top: 5px;
  color: white;
}
.main11 {
  margin-top: 70px;
  /* background-color: black; */
}
.main11 p {
  text-align: center;
  line-height: 8px;
}
.main11 .our {
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.menu19 ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
  font-family: "Roboto", sans-serif;
}
.menu19 li:hover {
  color: #53b5f1;
}
.main12 {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: 30px;
  display: grid;
  justify-content: center;
  gap: 10px;
  height: auto;
  width: fit-content; /* or set a fixed width like 1000px */
  margin: 0 auto; /* center horizontally */
}

.main12 img {
  margin-top: 10px;
  height: 250px;
  width: 370px;
  border-radius: 10px;
}
.menu20 {
  /* border:2px solid black; */
  position: relative;
  height: fit-content;
  animation: fadeIn 0.5s ease forwards;
}

.menu21 {
  background-color: rgba(0, 0, 0, 0.3); /* semi-transparent black */
  backdrop-filter: blur(10px); /* glassy blur effect */
  -webkit-backdrop-filter: blur(10px); /* for Safari support */
  position: absolute;
  bottom: 5px;
  padding: 0px 20px;
  margin-right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2); /* optional: subtle border */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* optional: soft shadow */
}

.menu21 .title {
  line-height: 18px;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
  display: block;
  color: white;
  font-weight: bold;
}
.menu21 a {
  text-decoration: none;
}
.menu21 .title:hover {
  cursor: pointer;
  color: #d39a3a;
  font-size: 18px;
  transition: color 0.3s ease, font-size 0.3s ease;
}

/* Pagination Container */
.pagination-container {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  width: 100%;
}
#projects-container {
  transition: opacity 0.3s ease;
}

.loading {
  opacity: 0.5;
  pointer-events: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pagination Base Styles */
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* All Pagination Items */
.pagination a,
.pagination span {
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}

/* Page Number Buttons */
.pagination > a:not(.pagination-nav) {
  color: #333;
  border: 1px solid #ddd;
}

.pagination > a:not(.pagination-nav):hover {
  background-color: #53b5f1;
  color: white;
  border-color: #53b5f1;
}

.pagination .active {
  background-color: #53b5f1;
  color: white;
  border-color: #53b5f1;
}

/* Navigation Buttons (Previous/Next) */
.pagination-nav {
  background-color: #f8f9fa;
  color: #333;
  border: 1px solid #ddd !important;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.pagination-nav:hover {
  background-color: #e9ecef;
  color: #0056b3;
}

.pagination-nav.disabled {
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

.pagination-nav i {
  font-size: 12px;
}

/* Dots Separator */
.pagination-dots {
  color: #6c757d;
  padding: 0 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .pagination {
    gap: 6px;
  }

  /* Make pagination more touch-friendly */
  .pagination a {
    padding: 12px 16px !important;
    margin: 5px;
  }
  .main12 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .pagination a,
  .pagination span {
    padding: 8px 12px;
    font-size: 14px;
  }

  .pagination-nav {
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .pagination {
    gap: 4px;
  }

  .pagination a:not(.pagination-nav),
  .pagination span:not(.pagination-nav) {
    padding: 6px 10px;
    font-size: 13px;
  }

  .pagination-nav span {
    display: none; /* Hide text on smallest screens */
  }

  .pagination-nav i {
    font-size: 14px;
  }
}

.menu22 {
  background: 
    /* linear-gradient(#f9f1f180, #f8eeee80), white overlay */ url("../images/image_2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  width: 350px;
}
.menu23 {
  background: 
    /* linear-gradient(#f9f1f180, #f8eeee80), white overlay */ url("../images/image_3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  width: 350px;
}
.main13 {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.menu24 {
  background: 
    /* linear-gradient(#f9f1f180, #f8eeee80), white overlay */ url("../images/image_4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  width: 350px;
}
.menu25 {
  background: 
    /* linear-gradient(#f9f1f180, #f8eeee80), white overlay */ url("../images/image_5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  width: 350px;
}
.menu26 {
  background: 
    /* linear-gradient(#f9f1f180, #f8eeee80), white overlay */ url("../images/image_6.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  width: 350px;
}
.main14 {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  /* justify-content: space-around; */
  gap: 30px;
  background-color: #d9d9d9;
  /* height:450px; */
  padding-top: 60px;
  padding-bottom: 40px;
  opacity: 0.8;
}
.menu27 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.menu27 img {
  height: 380px;
  width: 600px;
  /* display: flex; */
  /* margin-top: 50px; */
}
.main14 p {
  color: grey;
}
.menu27 button {
  height: 40px;
  width: 130px;
  color: white;
  background-color: #53b5f1;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 470px;
  /* margin-top: 0px; */
}

.main15 {
  display: flex;
  gap: 30px;
}
.menu29 img {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 16px;
}
.menu29 #image2 {
  padding-top: 44px;
}
/* .menu28{
    margin-bottom: 500px;
    background-color: #ed7575;
} */
.menu28 .why {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  font-family: "Poppins", sans-serif;
  padding-top: 0px;
  /* background-color: #c95858; */
  margin-top: -0px;
}
/*  */
.menu31 .year {
  line-height: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  font-family: "Poppins", sans-serif;
}
.menu32 .world {
  line-height: 10px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  font-family: "Poppins", sans-serif;
}
.menu33 .best {
  line-height: 10px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  font-family: "Poppins", sans-serif;
}
.main16 {
  text-align: center;
  margin-top: 50px;
}
.main16 .recent {
  color: #53b5f1;
  font-family: "Poppins", sans-serif;
  line-height: 0px;
}
.main16 .real {
  line-height: 30px;
  font-size: 26px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 6px;
}
.menu34 ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 50px;
  font-family: "Roboto", sans-serif;
}
.menu34 li:hover {
  color: #53b5f1;
}
/* Your existing styles */
.main17 {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.main18,
.main20 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main18 img,
.main20 img {
  height: 190px;
  width: 230px;
}
.main19 img {
  height: 390px;
  width: 400px;
}

/* New styles for zoom effect */
.image-container {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s;
}

.image-container:hover {
  transform: scale(1.02);
}

.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.image-container:hover .zoom-icon {
  opacity: 1;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  display: block;
  width: 80%;
  max-width: 80%;
  max-height: 90vh;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover {
  color: #bbb;
}
.main21 {
  display: flex;
  justify-content: center;
  gap: 160px;
  margin-top: 50px;
  background-color: #d9d9d9d9;
  padding-top: 50px;
  padding-bottom: 50px;
}
.main22 .test {
  color: #53b5f1;
  font-family: "Poppins", sans-serif;
}
.main22 .client {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
}
.main22 button {
  height: 30px;
  width: 150px;
  background-color: #063f63;
  border: none;
  color: white;
  cursor: pointer;
}
.main23 {
  display: flex;
  gap: 40px;
}

.main24 .lorem {
  color: grey;
}
.main24 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* subtle shadow */
  padding: 20px; /* optional: add spacing inside */
  border-radius: 10px; /* optional: rounded corners */
  background-color: #fff; /* optional: helps show the shadow */
}
.main25 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* subtle shadow */
  padding: 20px; /* optional: add spacing inside */
  border-radius: 10px; /* optional: rounded corners */
  background-color: #fff; /* optional: helps show the shadow */
}

.main26 {
  display: flex;
}
.main26 img {
  height: 55px;
  background-color: #23d94b;
}
.main27 {
  margin-left: 20px;
}
.main27 p {
  line-height: 8px;
}
.main27 .mr {
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.main27 .lorem {
  color: #53b5f1;
  /* font-family: 'Roboto', sans-serif; */
}
.main28 {
  margin-top: 50px;
  text-align: center;
}
.main28 p {
  line-height: 10px;
}
.main28 .meet {
  font-size: 22px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.main28 .lorem {
  color: grey;
}
.main29 {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.main29 img{
    margin-left: 80px;
}
.main34 {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 20px;
}
.main35 p {
  text-align: center;
}
.main35 .mr {
  font-size: 16px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
.main35 .ipsum {
  color: #53b5f1;
  font-family: "Roboto", sans-serif;
}
.main35 .lorem {
  color: grey;
}
.main40 {
  margin-top: 50px;
  text-align: center;
}
.main40 p {
  line-height: 10px;
}
.main40 .blog {
  font-size: 24px;
  font-weight: 600;
}
.main40 .lorem {
  color: grey;
}
.main36 {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.main41 {
  text-align: center;
}
.main41 .feb {
  color: #53b5f1;
}
.main41 span {
  margin-left: 30px;
  color: #53b5f1;
}
.main41 .lorem {
  font-size: 14px;
  font-weight: 600;
}
.main41 .ipsum {
  color: grey;
}
.main42 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.main42 .patel {
  color: #53b5f1;
  margin-left: 0px;
}
.main43 {
  margin-top: 40px;
  text-align: center;
  background: linear-gradient(#8e8d8d80, #74747480),
    url("../images/image_15.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  width: 100%;
}
.main43 .dreaming {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  color: white;
  padding-top: 120px;
  font-family: "Poppins", sans-serif;
}
.main43 button {
  height: 30px;
  width: 150px;
  background-color: #1d94de;
  color: #fff;
  border: none;
  cursor: pointer;
}
.main44 {
  margin-top: 50px;
}
.main44 p {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.main45 {
  display: flex;
  justify-content: center;
  justify-content: space-around;
  margin-top: 30px;
}
.main46 img {
  height: 40px;
  width: 100px;
}
.main47 {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  justify-content: space-around;
}
.submission-top {
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.submission-area {
  /* background-color: #ff4a35; */
  background-color: #569431;
  position: relative;
  z-index: 1;
}

.submission-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-image: url(../img/shape/shape-1.png);
  background-position: center center;
  bottom: 0;
  width: 100%;
  height: 60%;
}

.submission-title h2 {
  font-size: 35px;
  color: #fff;
  text-align: center;
  margin-bottom: 35px;
}

.submission-form {
  max-width: 780px;
  margin: 0 auto;
  height: 70px;
  background-color: #fff;
  border-radius: 50px;
}

.submission-form .form-group {
  margin-bottom: 0;
}

.submission-form .form-group.border-line {
  position: relative;
}

.submission-form .form-group.border-line::before {
  content: "";
  position: absolute;
  background-color: #d3d9ff;
  width: 1px;
  height: 40px;
  top: 15px;
  left: 0;
}

.submission-form .form-group .form-control {
  height: 70px;
  font-size: 18px;
  line-height: 70px;
  background-color: transparent;
  border: 0;
  padding: 3px 35px;
}

.submission-form .form-group .form-control:focus,
.submission-form .form-group .form-control :hover {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.submission-form .default-btn {
  border: 0;
  margin-top: 8px;
  float: right;
  margin-right: 10px;
  padding: 12px 50px;
  font-size: 18px;
}

.submission-form .form-group .form-control::-webkit-input-placeholder {
  color: #b6b6b6;
}

.submission-form .form-group .form-control::-ms-input-placeholder {
  color: #b6b6b6;
}

.submission-form .form-group .form-control::-ms-input-placeholder {
  color: #b6b6b6;
}

.submission-form .form-group .form-control:-ms-input-placeholder {
  color: #b6b6b6;
}

.submission-form .form-group .form-control::placeholder {
  color: #b6b6b6;
}
.default-btn {
  background-color: #569431;
  padding: 12px 42px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 50px;
}

.default-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  height: 50%;
  /* background-color: #4356d6; */
  background: #569431;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.default-btn::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 0%;
  width: 100%;
  height: 50%;
  /* background-color: #4356d6; */
  background: #569431;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.default-btn:hover {
  color: #fff;
}

.default-btn:hover::before {
  top: 0;
  /* background-color: #070f4d; */
  background: #114a2d;
  color: #fff;
}

.default-btn:hover::after {
  bottom: 0;
  /* background-color: #070f4d; */
  background: #114a2d;
  color: #fff;
}

.default-btn.active {
  margin-left: 20px;
  color: #232350;
  background-color: transparent;
  border: 1px solid #070f4d;
  overflow: hidden;
}

.default-btn.active:hover {
  color: #fff;
}

/* Footer Base Styles */
.site-footer {
  background-color: #063f63;
  color: #fff;
  padding: 20px 0 0;
  font-family: "Roboto", sans-serif;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col {
  padding: 0 15px;
}

.footer-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background: #53b5f1;
}

/* About Column */
.footer-about .footer-text {
  color: #ecf0f1;
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #53b5f1;
  transform: translateY(-3px);
}

/* Links Columns */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ecf0f1;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: #53b5f1;
  padding-left: 5px;
}

.footer-links i {
  margin-right: 10px;
  font-size: 12px;
  color: #53b5f1;
}

/* Contact Column */
.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ecf0f1;
}

.footer-contact i {
  margin-right: 15px;
  color: #53b5f1;
  width: 20px;
  text-align: center;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col {
    padding: 0;
  }

  .footer-title {
    margin-bottom: 20px;
  }

  .footer-title::after {
    bottom: -8px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 40px 0 0;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}

/* product details  */
/* body {
  font-family: 'Roboto', sans-serif;
} */

.inner-banner {
  position: relative;
  background-position: center center;
  background-size: cover;
}

.inner-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;

  opacity: 0.8;
}

.inner-banner .inner-title {
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  left: 50px;
}

.inner-banner .inner-title p {
  font-size: 40px;
  font-weight: 600;
  color: #181717;
}

.inner-banner .inner-title ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inner-banner .inner-title ul li {
  font-size: 18px;
  color: #171616;
  display: inline-block;
  margin-right: 10px;
}

.inner-banner .inner-title ul li:last-child {
  margin-right: 0;
}

.inner-banner .inner-title ul li i {
  font-size: 16px;
  color: #131212;
}

.inner-banner .inner-title ul li a {
  color: #0e0d0d;
  text-decoration: none;
}

.inner-banner .inner-title ul li :hover {
  color: #f9faf8;
}
.inner-bg1 {
  background-image: url(../images/image16.png);
  box-shadow: 0 8px 30px rgba(10, 45, 107, 0.3);
  height: 400px;
}
.inner-bg2{
    background-image: url(../images/image17.png);
  box-shadow: 0 8px 30px rgba(10, 45, 107, 0.3);
  height:400px;
}
.inner-bg3{
     background-image: url(../images/image18.png);
  box-shadow: 0 8px 30px rgba(10, 45, 107, 0.3);
  height:400px;
  
}
.property1 {
  font-family: "Poppins", sans-serif;
}
.container1 li {
  font-family: "Poppins", sans-serif;
}

.container2 {
  margin-top: 40px;
  font-family: "Poppins", sans-serif;
  padding: 0 15px;
  max-width: 1200px;
  height: auto;
  margin-left: 10px;
  /* margin-right: auto; */
}

.product1,
.product2 {
  font-size: 24px;
  /* margin-left: 20px; */
}

.product1 {
  font-weight: 600;
}

.product2 {
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
  word-wrap: break-word; /* Allows long words to break */
  white-space: normal; /* Allows text to wrap naturally */
  overflow: visible;
}

.product12 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.description-container {
  font-family: "Roboto", sans-serif;
  /* background-color: bisque; */
  /* padding: 15px; */
  border-radius: 8px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}
.description-container p {
  margin-bottom: 1em;
}

.product14 {
  font-family: "Roboto", sans-serif !important;
}
.container3 {
  margin-top: 40px;
  padding-bottom: 20px;
}
.box2 {
  margin-left: 20px;
  width: 800px;
}
.box3 {
  width: 95%;
  height: auto;
  line-height: 10px;
}
.tbody{
   /*background-color: red; */
   height: 50px;
}
.tbody td{
    font-size: 14px;
}
.line {
  width: 800px;
}
hr {
  width: 350px;
  margin-left: 0px;
}

/* Gallery Container */
.box1 {
  display: grid;
  grid-template-columns: 550px 320px 320px; /* Your exact requested widths */
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  width: 100%;
  max-width: 1190px; /* 700 + 375 + 375 + gaps */
  margin: 0 auto;
  height: 550px;
}

/* Image Wrapper Base Styles */
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* === Image Positioning === */
/* Main Image (Left Side) */
.img-1 {
  grid-column: 1;
  grid-row: 1 / span 2; /* Takes full height */
}

/* Small Images (Right Side 2x2 Grid) */
.img-2,
.img-3,
.img-4,
.img-5 {
  aspect-ratio: 0/1;
  width: 100%; /* Fill their grid cells */
}

.img-2 {
  grid-column: 2;
  grid-row: 1;
} /* Top-left small */
.img-3 {
  grid-column: 3;
  grid-row: 1;
} /* Top-right small */
.img-4 {
  grid-column: 2;
  grid-row: 2;
} /* Bottom-left small */
.img-5 {
  grid-column: 3;
  grid-row: 2;
} /* Bottom-right small */

/* === Zoom Effect Styles === */
.zoomeffect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.zoomeffect i {
  font-size: 18px;
}

/* === Hover Effects === */
.image-wrapper:hover .zoomeffect {
  opacity: 1;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover::after {
  opacity: 1;
}

/* for responsive code  */

@media (max-width: 1199px) {
  /* .box1 {
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 400px 200px 200px; 
    height: auto;
    max-width: 1200px;
    margin-left: 0;
    margin-right: 0;
  }
  
  .img-1 {
    grid-column: 1 / 2;
    grid-row: 1;
    height: 300px;
    width: 1200px;
    object-fit:contain;
  }
  
  .img-2, .img-3, .img-4, .img-5 {
    height: 300px;
  }
  
  .img-2 { grid-column: 1; grid-row: 2; }
  .img-3 { grid-column: 2; grid-row: 2; }
  .img-4 { grid-column: 1; grid-row: 3; }
  .img-5 { grid-column: 2; grid-row: 3; } */
  .box1 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: auto;
    max-width: 100%;
    padding: 0 15px;
  }

  .img-1 {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .box1 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 150px 150px;
    height: auto;
  }

  .img-1 {
    grid-column: 1 / span 2;
    grid-row: 1;
    height: 300px;
  }

  /* Reassign grid positions */
  .img-2 {
    grid-column: 1;
    grid-row: 2;
  }
  .img-3 {
    grid-column: 2;
    grid-row: 2;
  }
  .img-4 {
    grid-column: 1;
    grid-row: 3;
  }
  .img-5 {
    grid-column: 2;
    grid-row: 3;
  }
}
/* ===== Mobile Layout (480px) ===== */
@media (max-width: 767px) {
  .box1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* width:100%; */
    max-width: 350px;
    /* background-color: #f57070; */
    justify-content: center;
    margin-left: 0;
  }

  .img-1 {
    height: 200px;
    width: 100%;
  }

  .img-2,
  .img-3,
  .img-4,
  .img-5 {
    height: 150px;
    width: 100%;
    aspect-ratio: 0/1;
  }
}

/* ===== Small Mobile (360px) ===== */
@media (max-width: 479px) {
  .img-1 {
    height: 200px;
    /* background-color: #000000; */
  }

  .img-2,
  .img-3,
  .img-4,
  .img-5 {
    height: 200px;
  }
}

.map-area {
  margin-top: 50px;
  /* width:920px; */
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-left: 20px;
  margin-top: 50px;
}
th,
td {
  /* border: 1px solid #444; */
  padding: 12px 12px;
  text-align: left;
}
/* th {
      background-color: #f2f2f2;
    } */
td {
  border-top: 1px solid black;
}

/* contact us */

.container4 {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-top: 40px;
}

.container4 {
  padding-bottom: 50px;
}
.box5 input {
  padding: 10px 150px;
  background-color: #f6f6f6;
  color: #ffffff;
  border: none;
  opacity: 20;
  /* gap:50px; */
  /* margin-top: 20px; */
}
.box5 .label {
  display: inline-block;
  margin-top: 20px;
  font-family: "Roboto", sans-serif !important;
}
.box5 textarea {
  padding: 50px 150px;
  background-color: #f6f6f6;
  opacity: 20;
  border: none;
}
.box5 button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: grey;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  border: none;
  font-family: "Roboto", sans-serif !important;
}
.get {
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.box7 li {
  font-family: "Roboto", sans-serif !important;
}
.overlay-text .discover {
    color: #0A86E3;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.overlay-text .property {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 800px;
}
