body{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-y: hidden;
  }
  
.section_1 {
  position: relative;
  width: 100%;
  height: 92%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  height: 92vh;
  display: grid;
  place-items: center;
  /* overflow: hidden; */
}

.item {
  /* width: 200px; */
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255,255,255,0.3) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;

  &:nth-child(1), &:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
  }

  &:nth-child(3) { left: 50%; }
  &:nth-child(4) { left: calc(50% + 220px); }
  &:nth-child(5) { left: calc(50% + 440px); }
  &:nth-child(6) { left: calc(50% + 660px); opacity: 0; }
}

.content {
  width: min(30vw,400px);
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  font: 400 0.85rem helvetica,sans-serif;
  color: white;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
  opacity: 0;
  display: none;

  & .title {
    font-family: 'arial-black';
    text-transform: uppercase;
  }

  & .description {
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    font-size: 0.8rem;
  }

  & button {
    width: fit-content;
    background-color: rgba(0,0,0,0.1);
    color: white;
    border: 2px solid white;
    border-radius: 0.25rem;
    padding: 0.75rem;
    cursor: pointer;
  }
}

.item:nth-of-type(2) .content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  user-select: none;

  & .btn {
    background-color: rgba(255,255,255,0.5);
    color: rgba(0,0,0,0.7);
    border: 2px solid rgba(0,0,0,0.6);
    margin: 0 0.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;

    &:hover {
      background-color: rgba(255,255,255,0.3);
    }
  }
}


@media (max-width: 650px) {
  .content {
    display: none; /* Hide the content section on smaller devices */
  }
  .item {
    /* width: 130px; */
    height: 220px;

    &:nth-child(3) { left: 50%; }
    &:nth-child(4) { left: calc(50% + 140px); }
    &:nth-child(5) { left: calc(50% + 280px); }
    &:nth-child(6) { left: calc(50% + 420px); opacity: 0; }
  }
}







@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --navbar-color: #142130; 
    --white: #EFEFEF; 
    --button: #3D768A; 
    --icon-bg: #DEE8FA; 
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 100%;
    padding: 0 1rem;
}

    .header .navBar ul {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .header .navBar ul li {
            list-style-type: none;
            padding: 0 1.5rem;
        }

            .header .navBar ul li a {
                text-decoration: none;
                color: var(--navbar-color);
                font-weight: 700;
                font-size: 1rem;
            }

    .header .login .btn, .header .login .btn2 {
        width: 150px;
        height: 45px;
        border: none;
        outline: none;
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
        cursor: pointer;
        margin: 0 .4rem;
        font-size: 1rem;
    }

        .login .btn, .login .btn2 {
            background-color: var(--icon-bg);
            color: var(--navbar-color);
            box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, .1);
            transition: all .3s ease;
            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
        }

            .login .btn:hover, .login .btn2:hover { background: var(--button); color: var(--white); }

/*MAIN*/

.main {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 54%;
    width: 1500px;
}

    .main .main-content .text { width: 500px; }
        .main .main-content .text h1 {
            font-size: 3.2rem;
            color: var(--navbar-color);
            font-weight: 900;
        }

        .main .main-content .text p {
            color: var(--navbar-color);
            font-weight: 400;
            WIDTH: 151%;
            margin-top: 2rem;
        }

    .main .main-content .select {
        margin-top: 4rem;
        width: 600px;
        height: 80px;
        background-color: var(--white);
        box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, .1);
        display: flex;
        justify-content: space-around;
        align-items: center;
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
    }

        .main .main-content .select-dropdown, .main .main-content .select-dropdown * { 
            margin: 0; 
            padding: 0;
            position: relative;
            box-sizing: border-box;
        }

            .main .main-content .select-dropdown {
                position: relative;
                background-color: transparent;
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }

                .main .main-content .select-dropdown:after {
                    content: '';
                    position: absolute;
                    top: 50%;
                    right: 12px;
                    width: 0;
                    height: 0;
                    margin-top: -2px;
                    border-top: 5px solid #AAAAAA;
                    border-right: 5px solid transparent;
                    border-left: 5px solid transparent;
                }

                .main .main-content .select-dropdown select {
                    font-size: 1rem;
                    font-weight: normal;
                    max-width: 100%;
                    padding: 8px 24px 8px 10px;
                    border: none;
                    background-color: transparent;
                    appearance: none;
                }

                    .main .main-content .select-dropdown select:active, .main .main-content .select-dropdown select:focus { outline: none; box-shadow: none; }

        .main .main-content .select-btn img {
            background-color: var(--button);
            padding: 0.4rem;
            cursor: pointer;
            border-radius: 50px;
            -webkit-border-radius: 50px;
            -moz-border-radius: 50px;
            -ms-border-radius: 50px;
            -o-border-radius: 50px;
        }


    .main .img {
        width: 420px;
        height: 320px;
    }

        .main .img img {
            border-radius: 71% 29% 27% 73% / 37% 53% 47% 63%;
            -webkit-border-radius: 71% 29% 27% 73% / 37% 53% 47% 63%;
            -moz-border-radius: 71% 29% 27% 73% / 37% 53% 47% 63%;
            -ms-border-radius: 71% 29% 27% 73% / 37% 53% 47% 63%;
            -o-border-radius: 71% 29% 27% 73% / 37% 53% 47% 63%;
            width: 100%;
        }

/* .main2 { margin-top: 8%; } */

:root {
  --navbar-color: #2c3e50; /* Darker navbar color */
  --button: #3498db;      /* Light blue border color */
  --background-light: #f9f9f9; /* Light background */
  --card-bg: #ffffff;     /* White card background */
  --icon-bg: #ecf0f1;     /* Light grey icon background */
  --text-primary: #2c3e50; /* Dark primary text */
  --text-secondary: #7f8c8d; /* Muted secondary text */
}



.main2 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
}

.main2 h1 {
  text-align: center;
  color: var(--navbar-color);
  font-size: 2.8rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.main2 .main-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px; /* Space between grid items */
  justify-items: center;
}

.main2 .main-card .card {
  width: 100%;
  max-width: 320px;
  background-color: #ffffff;
  text-align: center;
  padding: 1.5rem 1.25rem;
  border: 1px solid #e0e0e0; /* Light border for separation */
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1); /* Enhanced shadow for depth */
  border-radius: 15px; /* Rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.main2 .main-card .card:hover {
  transform: translateY(-10px); /* Lift on hover */
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.main2 .main-card .card .icon-img {
  background-color: #f1f1f1;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.main2 .main-card .card .icon-img img {
  width: 45px;
  height: 45px;
}

.main2 .main-card .card h3 {
  margin-top: 1.5rem;
  color: var(--navbar-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.main2 .main-card .card p {
  margin-top: 1rem;
  color: var(--navbar-color);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .main2 h1 {
      font-size: 2.5rem;
  }

  .main2 .main-card {
      gap: 20px;
  }

  .main2 .main-card .card {
      padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .main2 h1 {
      font-size: 2rem;
  }

  .main2 .main-card {
      grid-template-columns: 1fr;
  }

  .main2 .main-card .card {
      padding: 1rem;
      max-width: 100%;
  }
}
/*EXPLORE*/


/* Default styling */

.explore {
  margin-top: 8%;
  display: flex;
  flex-wrap: wrap; /* Ensure items wrap on smaller screens */
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; /* Restrict to a container width */
  margin-left: auto;
  margin-right: auto; /* Center the section */
  padding: 20px;
  gap: 30px; /* Add spacing between image and content */
}

.explore .img-exp img {
  width: 100%; /* Make image responsive */
  max-width: 500px; /* Restrict maximum width */
  border-radius: 32% 68% 49% 51% / 28% 53% 47% 72%; /* Custom border-radius */
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
}

.explore .content-exp {
  max-width: 600px; /* Restrict content width */
  text-align: left; /* Align text to the left */
}

.explore .content-exp h2 {
  color: var(--navbar-color);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.explore .content-exp p {
  margin-top: 1rem;
  color: var(--navbar-color);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6; /* Improve readability */
}

.explore .content-exp .btn-exp {
  display: inline-block; /* Ensure the button doesn't stretch */
  width: 150px;
  height: 45px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 2rem;
  font-size: 1rem;
  background-color: var(--button);
  color: var(--white);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.explore .content-exp .btn-exp:hover {
  background-color: var(--icon-bg);
  color: var(--navbar-color);
}

/* Responsive Design */

/* Large screens (1200px and above) */
@media (min-width: 1200px) {
  .explore {
      flex-direction: row; /* Ensure horizontal alignment */
  }
}

/* Tablets and smaller laptops (768px to 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .explore {
      flex-direction: column; /* Stack items vertically */
      text-align: center; /* Center text for better readability */
  }

  .explore .img-exp img {
      max-width: 620px; /* Reduce image size for smaller screens */
  }

  .explore .content-exp {
      max-width: 90%; /* Reduce content width */
      text-align:center;
}

/* Mobile devices (below 768px) */
@media (max-width: 767px) {
  .explore {
      margin-top: 10%; /* Add more top margin for smaller screens */
      padding: 10px; /* Reduce padding */
  }

  .explore .img-exp img {
      max-width: 300px; /* Further reduce image size */
  }

  .explore .content-exp h2 {
      font-size: 1.5rem; /* Adjust font size for headings */
  }

  .explore .content-exp p {
      font-size: 0.9rem; /* Adjust paragraph font size */
  }

  .explore .content-exp .btn-exp {
      width: 140px; /* Reduce button width */
      height: 40px; /* Reduce button height */
      font-size: 0.9rem; /* Adjust button font size */
  }
}

/* Extra small screens (below 480px) */
@media (max-width: 480px) {
  .explore .img-exp img {
      max-width: 250px; /* Further reduce image size */
  }

  .explore .content-exp p {
      font-size: 0.85rem; /* Slightly smaller font size */
  }

  .explore .content-exp .btn-exp {
      width: 120px; /* Smaller button for small screens */
      height: 38px;
  }
}
}
/*HOUSES*/

.houses { margin-top: 5%; }

    .houses .content-house {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 6%;
    }

        .houses .content-house .text-house { width: 500px; }

            .houses .content-house .text-house p {
                margin-top: 2rem;
                color: var(--navbar-color);
                font-weight: 400;
                font-size: 1rem;
            }

        .houses .content-house .select-dropdown,
        .houses .content-house .select-dropdown * {
            margin: 0;
            padding: 0;
            position: relative;
            box-sizing: border-box;
        }

            .houses .content-house .select-dropdown {
                position: relative;
                margin-top: -3rem;
                background-color: transparent;
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
                border: 1px solid var(var(--navbar-color));
                box-shadow: 0px 12px 12px 0 rgba(0, 0, 0, .15);
            }

                .houses .content-house .select-dropdown:after {
                    content: '';
                    position: absolute;
                    top: 50%;
                    right: 8px;
                    width: 0;
                    height: 0;
                    margin-top: -2px;
                    border-top: 5px solid #aaa;
                    border-right: 5px solid transparent;
                    border-left: 5px solid transparent;
                }

                .houses .content-house .select-dropdown select {
                    font-size: 1rem;
                    font-weight: normal;
                    max-width: 100%;
                    padding: 8px 24px 8px 10px;
                    border: none;
                    background-color: transparent;
                    appearance: none;
                }

                    .houses .content-house .select-dropdown select:active,
                    .houses .content-house .select-dropdown select:focus {
                        outline: none;
                        box-shadow: none;
                    }
                
.house-box {
    margin-top: 10%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 3rem;
}

.box {
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 550px;
    height: 300px;
    border: 1px solid var(--button);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 0px 18px 14px 10px rgba(0, 0, 0, .18);
}

    .box .box-img {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0.5rem;
    }

.box-content {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

    .box-content .box-text {
        margin-bottom: 3rem;
        margin-left: 1.5rem;
        text-align: left;
        color: var(--navbar-color);
    }

    .box-content .rooms {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        place-items: center;
        gap: 0.4rem;
    }

    .box-content .box-btn {
        margin-top: 2rem;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

.box-text .price {
    text-align: left;
    margin-top: 1.4rem;
    color: var(--button);
}

.rooms .room {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
}      

.box-btn .view .btn {
    width: 120px;
    height: 30px;
    border: none;
    outline: none;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    cursor: pointer;
    margin: 0 .4rem;
    font-size: .95rem;
    background-color: var(--button);
    color: var(--white);
    box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, .15);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

    .view .btn:hover {
        background-color: var(--icon-bg);
        color: var(--navbar-color);
    }

.box-btn .share {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.share .share-box {
    background-color: var(--icon-bg);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 0.6rem;
    box-shadow: 0px 10px 10px 5px rgba(0, 0, 0, .18);
    cursor: pointer;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

    .share-box:hover {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
    }

    .share-box img {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
/*CLIENTS*/
/* Base Styles for container0i */


.container0i {
  max-width: 1600px; /* Limit container width to 1600px */
  margin: 0 auto; /* Center align the container */
  margin-top: -5pc; /* Add padding for spacing */
}

/* Media Query for Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .container0i {
    padding: 30px 15px; /* Reduce padding for smaller screens */
  }

  .clients {
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center-align children */
    gap: 30px; /* Add spacing between stacked items */
  }
}

/* Media Query for Small Tablets and Large Phones (max-width: 768px) */
@media (max-width: 768px) {
  .container0i {
    padding: 20px 10px; /* Further reduce padding */
  }

  .clients .right h2 {
    font-size: 1.8rem; /* Reduce heading size for smaller screens */
  }

  .clients .right p {
    font-size: 0.95rem; /* Adjust paragraph font size */
  }

  .img-cust img {
    max-width: 90%; /* Reduce image width */
  }
}

/* Media Query for Phones (max-width: 480px) */
@media (max-width: 480px) {
  .container0i {
    padding: 15px 5px; /* Minimal padding for small screens */
  }

  .clients .right h2 {
    font-size: 1.6rem; /* Further reduce heading size */
  }

  .clients .right p {
    font-size: 0.85rem; /* Smaller font size for paragraphs */
  }

  .img-cust img {
    max-width: 80%; /* Reduce image size further */
  }
}


.clients {
  position: relative;
  /* margin-top: 15%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
}

  .clients .left .customer {
    border-radius: 85% 15% 31% 69% / 64% 36% 64% 36%;
  -webkit-border-radius: 42% 54% 31% 69% / 64% 36% 64% 36%;
  background: #9E9E9E;
      -moz-border-radius: 85% 15% 31% 69% / 64% 36% 64% 36%;
      -ms-border-radius: 85% 15% 31% 69% / 64% 36% 64% 36%;
      -o-border-radius: 85% 15% 31% 69% / 64% 36% 64% 36%;
  }

  .clients .right { width: 750px; }

.right h2 { 
  font-size: 2.4rem;
  color: var(--navbar-color);
  margin-bottom: 10%;
}

.right p {
  color: var(--navbar-color);
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 5%;
}

.right .name { margin-top: 3rem; }
.name h4 { color: var(--navbar-color); font-size: 1.25rem; }
.name p { font-size: .9rem; }
.clients .right {
  width: 750px; /* Default width for larger screens */
  margin: 0 auto; /* Center align on smaller screens if necessary */
  text-align: left; /* Default text alignment */
}

/* Large screens (1200px and above) */
@media (min-width: 1200px) {
  .clients .right {
      width: 750px; /* Keep default width */
  }
}

/* Tablets and smaller laptops (768px to 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .clients .right {
      width: 600px; /* Adjust width for medium screens */
      text-align: center; /* Center text alignment for smaller screens */
  }
}

/* Mobile devices (below 768px) */
@media (max-width: 767px) {
  .clients .right {
      width: 100%; /* Use full width for mobile */
      text-align: center; /* Center align text for better readability */
      padding: 0 20px; /* Add padding for content spacing */
  }
}

/* Extra small screens (below 480px) */
@media (max-width: 480px) {
  .clients .right {
      width: 100%; /* Full width */
      text-align: center; /* Keep text aligned to center */
      padding: 0 15px; /* Reduce padding for extra small screens */
  }
}

/*OWNER*/
/*OWNER*/

.owner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    margin-bottom: 5pc;
    background-color: var(--white);
    width: 750px;
    height: 222px;
    box-shadow: 2px 12px 12px 18px rgba(0, 0, 0, .18);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding: 1rem;
}

    .owner .owner-text { text-align: center; }

.owner-text h2 { 
    color: var(--navbar-color);
    font-size: 1.8rem;
}

.owner-text p { 
    color: var(--navbar-color);
    font-size: 1rem;
    font-weight: 400; 
}

.subscribe {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

    .subscribe form {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .subscribe img {
        position: absolute;
        left: 10px;
        top: 15px;
        cursor: pointer;
    }

    .subscribe input[type="email"] {
        width: 340px;
        height: 50px;
        border: 1px solid var(--button);
        outline: none;
        padding: 0 25px;
        text-align: center;
        background: #E0E0C4;
        border-radius: 25px 0 0 25px;
        -webkit-border-radius: 25px 0 0 25px;
        -moz-border-radius: 25px 0 0 25px;
        -ms-border-radius: 25px 0 0 25px;
        -o-border-radius: 25px 0 0 25px;
    }

::placeholder {
    color: #000000;
    font-size: 1rem;
    transition: opacity .3s ease;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
}

:focus::placeholder { opacity: .3; }

    .subscribe input[type="submit"] {
        position: relative;
        width: 150px;
        height: 50px;
        border: none;
        outline: none;
        cursor: pointer;
        background: var(--button);
        color: var(--white);
        left: -25px;
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
        box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, .15);
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
    }

        .subscribe input[type="submit"]:hover {
            background: var(--icon-bg);
            color: var(--navbar-color);
        }
        @media screen and (max-width: 1024px) {
    .owner {
        width: 90%;
        height: auto;
        margin-top: 5%;
        padding: 1.5rem;
    }

    .subscribe input[type="email"] {
        width: 280px;
    }

    .subscribe input[type="submit"] {
        width: 130px;
    }
}

@media screen and (max-width: 768px) {
    .owner {
        width: 95%;
        margin-top: 5%;
        padding: 1.2rem;
    }

    .owner-text h1 {
        font-size: 1.5rem;
    }

    .owner-text p {
        font-size: 0.9rem;
    }

    .subscribe input[type="email"] {
        width: 250px;
        height: 45px;
        font-size: 0.9rem;
    }

    .subscribe input[type="submit"] {
        width: 120px;
        height: 45px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .owner {
        width: 89%;
        padding: 1rem;
    }

    .owner-text h1 {
        font-size: 1.2rem;
    }

    .owner-text p {
        font-size: 0.8rem;
    }

    .subscribe form {
        flex-direction: column;
        gap: 10px;
    }

    .subscribe input[type="email"],
    .subscribe input[type="submit"] {
        width: 90%;
        height: 40px;
        text-align: center;
    }

    .subscribe input[type="submit"] {
        border-radius: 25px;
        left: 0;
    }

    .subscribe img {
        display: none;
    }
}


/*FOOTER*/
/* 
.footer {
    width: 100%;
    height: 250px;
    background: linear-gradient(305deg, rgba(241, 241, 241, 1) 28%, rgba(187, 255, 252, 1) 58%, rgba(148, 233, 255, 1) 100%);
    margin-top: 15%;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 1.2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

    .footer .estate {
        margin-top: 1rem;
        width: 300px;
    }

.estete h2 {
    color: var(--navbar-color);
    font-size: 1.8rem;
}

.estate p {
    color: var(--navbar-color);
    font-weight: 400;
    font-size: 1rem;
}

.estate .social {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.3rem;
}

    .estate .social .icon {
        background-color: var(--icon-bg);
        width: 60px;
        height: 60px;
        box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, .15);
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
    }

        .estate .social .icon:hover {
            transform: scale(1.05);
            -webkit-transform: scale(1.05);
            -moz-transform: scale(1.05);
            -ms-transform: scale(1.05);
            -o-transform: scale(1.05);
        }

    .footer h4 {
        margin-bottom: 1.2rem;
        color: var(--navbar-color);
        font-size: 1.25rem;
        font-weight: 700;
        cursor: pointer;
    }

    .footer .about p {
        color: var(--navbar-color);
        font-weight: 400;
        padding: 0.25rem 0;
        cursor: pointer;
    }

    .footer .store {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

.store img { cursor: pointer; }

@media (max-width: 1160px) {
    .header .navBar ul { display: none; }

    .main2 .main-card { display: grid; grid-template-columns: 1fr; }

    .houses .house-box { display: grid; grid-template-columns: 1fr; }
}

@media (max-width: 769px) {
    .header .login .btn,
    .header .login .btn2 {
        width: 75px;
        height: 40px;
        font-size: .6rem;
    }

    .header .logo img {width: 160px; }

    .main-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .main-content .text h1 { font-size: 1.4rem; }
        .main-content .text p { font-size: .9rem; }

    .main .main-content .text {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 350px;
    }

    .main .main-content .select {
        width: 320px;
        height: 300px;
        display: flex;
        flex-direction: column;
    }

    .main .main-content .select-dropdown select { font-size: .75rem; }
    .main .img { display: none; }

    .explore { flex-direction: column; }

        .explore .content-exp {
            width: 350px;
            text-align: -webkit-left;
            margin-top: 2rem;
        }

    .house-box .box { width: 450px; height: 240px; }
        .house-box .box .box-img { width: 200px; height: auto; }
    .box .box-img img {width: 100%; }

    .box-text h3 {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: -0.75rem;
    }

    .box-text .price { margin-top: 0.75rem; }
    .box-content .rooms { gap: 0.1rem; margin-top: -1.8rem; }
    .box-content .box-btn { margin-top: 0.6rem; }
    .box-btn img { width: 15px; height: auto; }

    .clients {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .clients .right {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 450px;
        }

            .clients .right h2 { font-size: 1.4rem; }

    .right p { font-size: .9rem; }

    .owner { width: 450px; }
        .owner-text h2 { font-size: 1.2rem; }
        .owner-text p { font-size: 0.8rem; }

    .subscribe input[type="email"] { width: 240px; }
    .subscribe img { width: 20px; height: auto; }
    .subscribe input[type="submit"]{ width: 80px; font-size: .8rem; }
    ::placeholder { font-size: .75rem; }

    .footer {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 700px;
        margin-top: 25%;
        text-align: center;
    }

        .footer .estate h2 { font-size: 1rem; }
        .footer h4 { font-size: .9rem; margin-top: 2rem; }
        .footer .about p { font-size: .7rem; }
        .footer .store { margin-top: 2rem; }
            .footer .store img { width: 150px; height: auto; }

    .estate p { font-size: .75rem; }
    .estate .social .icon { width: 40px; height: 40px; }
    .icon img { width: 20px; height: auto; }
}
 
@media (max-width: 490px) {
    .header .login .btn, .header .login .btn2 { display: none; }

    .explore .img-exp img { width: 320px; }

    .house-box .box { width: 320px; height: 300px; }
    .house-box .box .box-img { display: none; }

    .clients .right { width: 320px; }
    .clients .left .customer { width: 320px;}

    .owner { width: 340px; }
}


 */


       /* Footer General Styles */
       .footer-container {
        background: linear-gradient(305deg, rgba(241, 241, 241, 1) 28%, rgba(187, 255, 252, 1) 58%, rgba(148, 233, 255, 1) 100%);
        color: #333;
        padding: 20px 40px;
        font-family: Arial, sans-serif;
    }
    
    .footer-columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }
    
    .footer-column {
        flex: 1 1 200px;
        min-width: 200px;
    }
    
    .footer-column h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #007BFF;
    }
    
    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-column ul li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }
    
    .footer-column ul li i {
        margin-right: 8px;
        color: #007BFF;
    }
    
    .footer-column ul li a {
        text-decoration: none;
        color: #333;
        transition: color 0.3s ease;
    }
    
    .footer-column ul li a:hover {
        color: #007BFF;
    }
    
    .footer-column ul li a:visited {
        color: #6c757d;
    }
    
    /* Footer Bottom Styles */
    .footer-bottom {
        margin-top: 20px;
        text-align: center;
        font-size: 14px;
        border-top: 1px solid #ddd;
        padding-top: 10px;
        color: #666;
    }
    
    .footer-bottom a {
        color: #007BFF;
        text-decoration: none;
        margin: 0 5px;
    }
    
    .footer-bottom a:hover {
        text-decoration: underline;
    }
    
    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .footer-columns {
            /* flex-direction: column; */
            align-items: center;
        }
        .footer-column h3{
            text-align: left;
        }
    }







.main-container5e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5pc;
    /* padding: 50px; */
    flex-wrap: wrap; /* Ensure wrapping for smaller screens */
  }

  .text-content5e {
    max-width: 50%;
    flex: 1 1 300px;
    text-align: center;
  }

  .text-content5e h1 {
    font-size: 3rem;
    color: #009688;
    margin: 0;
  }

  .text-content5e h1 span {
    color: #b9c8d0;
  }

  .text-content5e h2 {
    font-size: 2rem;
    color: #212121;
    margin: 10px 0;
  }

  .text-content5e p {
    font-size: 1rem;
    color: #757575;
    line-height: 1.5;
  }

  .action-buttons5e {
    margin-top: 20px;
  }

  .action-buttons5e button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
  }

  .action-buttons5e .learn-more5e {
    background-color: #009688;
    color: white;
  }

  .action-buttons5e .view-services5e {
    background-color: transparent;
    color: #009688;
    border: 2px solid #607D8B;
  }

  .video-section5e {
    position: relative;
    width: 50%;
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .video-section5e iframe {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .background-circle5e {
    position: absolute;
    background-color: #f3e5f5;
    border-radius: 50%;
    z-index: -1;
  }

  .background-circle5e.large5e {
    width: 400px;
    height: 400px;
    top: -50px;
    right: -50px;
  }

  .background-circle5e.small5e {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
  }

  .decorations5e {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .decorations5e .line5e {
    position: absolute;
    width: 2px;
    height: 100px;
    background-color: #e1bee7;
  }

  .decorations5e .line-1-5e {
    top: 20%;
    left: 10%;
  }

  .decorations5e .line-2-5e {
    bottom: 10%;
    right: 15%;
  }

  @media (max-width: 768px) {
    .main-container5e {
      flex-direction: column;
      padding: 30px;
    }

    .text-content5e {
      max-width: 100%;
      text-align: center;
    }

    .text-content5e h1 {
      font-size: 2rem;
    }

    .text-content5e h2 {
      font-size: 1.5rem;
    }

    .text-content5e p {
      font-size: 0.9rem;
    }

    .video-section5e {
      width: 100%;
      margin-top: 20px;
    }

    .video-section5e iframe {
      width: 100%;
      border-radius: 10px;
    }

    .background-circle5e,
    .decorations5e {
      display: none; /* Hide background designs and decorations on mobile */
    }

    .action-buttons5e button {
      margin-right: 0;
      margin-bottom: 10px;
      width: 100%;
    }
  }


/* Fade in animation for body */
/* Fade in animation for body */
@keyframes fadeInV5 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.container-v5 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
  animation: slideInV5 1s ease-in-out;
}

/* Slide-in animation for the container */
@keyframes slideInV5 {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.main-section-v5 {
  flex: 2 1 60%;
  position: relative;
  animation: fadeInV5 1s ease-out;
}

.main-section-v5 img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}

/* Image hover effect */
.main-section-v5 img:hover {
  transform: scale(1.05);
}

.info-section-v5 {
  flex: 1 1 35%;
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: fadeInV5 1s ease-out;
}

.info-section-v5 .logo-section-v5 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.info-section-v5 .logo-section-v5 img {
  width: 50px;
  height: 50px;
}

.info-section-v5 h2, .info-section-v5 h1 {
  margin: 0;
  color: #333;
  animation: fadeInV5 1s ease-out;
}

.info-section-v5 p {
  margin: 15px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  animation: fadeInV5 1s ease-out;
}

.info-section-v5 button {
  background-color: #00b894;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  transition: background-color 0.3s ease-in-out;
}

/* Button hover effect */
.info-section-v5 button:hover {
  background-color: #019375;
}

.image-gallery-v5 {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  animation: fadeInV5 1.5s ease-out;
}

.image-gallery-v5 img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  opacity: 0;
  animation: fadeInImageV5 1.5s ease-out forwards;
}

/* Fade-in animation for images in gallery */
@keyframes fadeInImageV5 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container-v5 {
    flex-direction: column;
    align-items: center;
  }

  .main-section-v5,
  .info-section-v5 {
    flex: 1 1 100%;
  }

  .image-gallery-v5 img {
    max-width: 200px;
  }
}

@media (max-width: 600px) {
  .info-section-v5 p {
    font-size: 0.9rem;
  }

  .info-section-v5 button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .image-gallery-v5 img {
    max-width: 150px;
  }
}


  .container_5fc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
  }

  .container_5fc .text {
    flex: 1 1 50%;
    color: #333;
    animation: slideInLeft 1s ease-in-out;
  }

  .container_5fc .text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .container_5fc .text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 10px 0;
  }

  .container_5fc .img {
    flex: 1 1 50%;
    animation: slideInRight 1s ease-in-out;
  }

  .container_5fc .img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }

  /* Slide-in animations */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Media query for tablet screens */
  @media (max-width: 1024px) {
    .container_5fc {
      flex-direction: column;
      text-align: center;
    }

    .container_5fc .text {
      flex: none;
      animation: fadeIn 1s ease-in-out;
    }

    .container_5fc .img {
      flex: none;
      animation: fadeIn 1s ease-in-out;
    }
  }

  /* Media query for mobile screens */
  @media (max-width: 600px) {
    .container_5fc .text h1 {
      font-size: 2rem;
    }

    .container_5fc .text p {
      font-size: 1rem;
    }

    .container_5fc .img img {
      border-radius: 5px;
    }
  }

  /* Fade-in animation for smaller screens */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }



  
  .reviews-container {
    width: 80%;
    max-width: 1600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
