@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Roboto:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}
body{
    background-color: #161616;
    background: url(../Image/back\ \(1\).jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
:root{
    --white-show:#fff;
    --forest-green:#345e42;
    --subset-orange:#90A1B9;
    --slate-gray:#5c5c5c;
    --charcoal-black:#2e2e2e;
    --pg-color:#bcbcbc;
     --prev-con-color: #90A1B9;
  --con-color: #bcbcbc;
}
body{
    overflow-x: hidden;
}
body::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.696);

}
.section{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 8%;
    gap: 50px;
    position: relative;
}
.section_page{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.After_effect::after{
    content: "";
    position: absolute;
    top: -50%;
    left: -120%;
    height: 200%;
    width: 20px;
    background-color: #fff;
    filter: blur(20px);
    transform: rotate(30deg);
    transition: .6s;
}
.After_effect:hover::after{
    left: 150%;
    transform: rotate(30deg) translateY(80px);
}
.sectin_page img{
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.section_title{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: start;
    flex-direction: column;
    gap: 30px;
}
.section_title h1{
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 6rem;
    color: var(--white-show);
    font-family: 'Marcellus' , serif;
}
.section_title h2{
    font-size: 2rem;
    font-family: 'Marcellus';
    color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);
    letter-spacing: 1px;
}
.section_title p{
    color: var(--pg-color);
    font-weight: 300;
    font-size: 18px;
    line-height: 2rem;
    font-weight: 500;
}
nav{
    height: 90px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:absolute;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 0 8% 0 2%;
}
.sticky_nav{
    box-shadow: 0 8px 10px #b3fbac57;
}
.ri-menu-5-fill{
    font-size: 28px;
    padding: 8px;
    border-radius: 8px;
    z-index: 9;
    color: var(--white-show);
    display: none;
}
.ri-close-large-line{
    color: var(--white-show);
    font-size: 28px;
    width: 100%;
    padding: 0;
    display: none;
    position: absolute;
    top: 1%;
    text-align: right;
    padding: 20px;
}
.ul{
    display: flex;
    align-items: center;
    gap: 30px;
    width: fit-content;
    height: fit-content;
    background-color: transparent;
    list-style: none;
}
.ul li{
    margin-bottom: 0;
}
.button{
    background-color: transparent;
    font-family: 'Urbanist' , sans-serif;
    color:  rgb(255, 255, 255);
    border: none;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 10px;
    cursor: pointer;
    position: relative;
    padding-left: 11px;
    text-align: center;
    transition: 0.1s;
    z-index: 1;
}
.button::before{
    content: '';
    border-radius: 1px;
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: transparent;
    left: -10px;
    top: 19px;
    cursor: pointer;
    transform: rotate(225deg);
    transition: 0.3s;
    z-index: -1;
}
.button:hover:before{
    transform: rotate(0deg);
    width: 100%;
    height: 40px;
    top: -1px;
    left: -2px;
    border-radius: 3px;
    background-color: #fff;
}
.ul li .button .p{
    color: var(--white-show);
    letter-spacing: 1px;
}
.ul li .button:hover .p{
    color: #222;
}
.logo{
    width: 270px;
    margin-top: 5.5vh;
    cursor: pointer;
}
.logo img{
    width: 100%;
    object-fit: contain;
}
.btn1{
    height: 50px;
    width: 180px;
    border: none;
    font-size: 18px;
    text-transform: uppercase;
    background-color: var(--subset-orange);
    font-weight: 600;
    transition: all 0.6s;
    color: var(--white-show);
    box-shadow: 4px 4px 3px #272727dd, inset 4px 4px 25px #D4D4D4 ;
    transform: scale(0.9);
    cursor: pointer;
}
.btn1:active{
    transform: scale(1.2);
}
/* =========================
   Responsive Navbar & Section
   ========================= */

/* شاشات التابلت */
@media (max-width: 992px) {
    .section {
        flex-direction: column;
        padding: 100px 6%;
        text-align: center;
    }

    .section_page,
    .section_title {
        width: 100%;
    }

    .section_title {
        align-items: center;
    }

    .section_title h1 {
        font-size: 2.2rem;
        line-height: 4rem;
        text-align: center;
    }

    .section_title h2 {
        font-size: 1.8rem;
    }
}

/* شاشات الموبايل */
@media (max-width: 768px) {
    nav {
        padding: 0 5%;
    }

    .ri-menu-5-fill {
        display: block;
        cursor: pointer;
    }

    .ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        background-color: rgba(0, 0, 0, 0.95);
        transition: 0.4s ease;
        z-index: 8;
    }

    .ul.active {
        right: 0;
    }

    .ri-close-large-line {
        display: block;
        cursor: pointer;
    }

    .logo {
        width: 200px;
        margin-top: 0;
    }

    .section {
        padding: 90px 5%;
    }

    .section_title h1 {
        font-size: 2rem;
        line-height: 3.2rem;
        text-align: center;
    }

    .section_title p {
        font-size: 16px;
        text-align: center;
    }
}

/* شاشات صغيرة جداً */
@media (max-width: 480px) {
    .section_title h1 {
        font-size: 1.7rem;
        text-align: center;
    }

    .section_title h2 {
        font-size: 1.4rem;
        
    }

    .btn1 {
        width: 150px;
        font-size: 16px;
    }
}
.ul.active ~ .ri-menu-5-fill {
    display: none;
}



.hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.552), rgba(0, 0, 0, 0.552)), 
                    url('../Image/Landing-page-image_Mc-new-1.jpg');
        background-size: cover;
    background-position: center;
    position: relative;
}



.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
      color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 30px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn2 {
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;

    transition: 0.3s;
}

.btn2.primary {
          background-color: var(--subset-orange);

    color: var(--white-show);
    box-shadow: 4px 4px 3px #272727dd, inset 4px 4px 25px #D4D4D4 ;
}

.btn2.primary:hover {
    background-color: var(--subset-orange);
}

.btn2.outline {
    border: 2px solid var(--subset-orange);
    color: #fff;
}

.btn2.outline:hover {
    background-color: var(--subset-orange);
    color: #fff;
}

/* =========================
   HERO RESPONSIVE (NO DESIGN CHANGE)
   ========================= */

/* لابتوب متوسط */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4.8rem;
    }
}

/* تابلت */
@media (max-width: 992px) {
    .hero {
        width: 100%;
        height: 90vh;
    }

    .hero-content h1 {
        font-size: 3.6rem;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* موبايل */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 85vh;
    }

    .hero-content {
        height: auto;
        padding: 190px 20px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn2 {
        width: 100%;
        text-align: center;
    }
}

/* موبايل صغير */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 15px;
    }
}


.About{
     
        padding: 100px 40px;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('../Image/11.jpg');
        background-size: cover;
        background-position: center;
        color: white;
       
        position: relative;
    
}
.about_page{
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_page img{
    width: 80%;
    background-size: cover;
    background-position: top center;
    border: 3px solid var(--subset-orange);
}
#text{
    color: var(--white-show);
    position: relative;
}
#text::after{
    content: '';
    position: absolute;
    top: 50%;
    left: -6%;
    height: 1.5px;
    width: 9%;
    border-radius: 8px;
    background-color: var(--subset-orange);
    transform: rotate(90deg);
}
.About_wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.About_wrap p{
    color: var(--pg-color);
}
.Manager{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}
#signature{
    width: 200px;
    margin-left: 20px;
}
.about_title h1{
    line-height: 4rem;
}
/* Small devices (phones, less than 600px) */
@media screen and (max-width: 600px) {
    .About {
        padding: 60px 20px;
    }
    .about_page {
        width: 100%;
        flex-direction: column;
    }
    .about_page img {
        width: 100%;
        margin-bottom: 20px;
    }
    .About_wrap {
        gap: 15px;
    }
    .Manager {
        flex-direction: column;
        align-items: flex-start;
    }
    #signature {
        margin-left: 0;
        margin-top: 10px;
        width: 150px;
    }
    .about_title h1 {
        line-height: 3rem;
        font-size: 1.8rem;
    }
}

/* Medium devices (tablets, 600px to 900px) */
@media screen and (min-width: 601px) and (max-width: 900px) {
    .About {
        padding: 80px 30px;
    }
    .about_page {
        width: 70%;
    }
    .about_page img {
        width: 90%;
    }
    .about_title h1 {
        line-height: 3.5rem;
        font-size: 2rem;
    }
    #signature {
        width: 180px;
    }
}

/* Large devices (desktops, 901px and above) */
@media screen and (min-width: 901px) {
    .About {
        padding: 100px 40px;
    }
    .about_page {
        width: 50%;
    }
    .about_page img {
        width: 80%;
    }
    .about_title h1 {
        line-height: 4rem;
    }
    #signature {
        width: 200px;
    }
}

.container11 {
  max-width: 1300px;
  margin: 0 auto;
  padding: 7rem 20px;
   
}
.service{
      background-image:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../Image/222.jpg);
    background-position:top center;
    background-size: cover;
}
.container11 h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 5rem;
  margin: 2rem 0;
     color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);
}

.container11 p{
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1em;
}
/* تابلت */
@media (max-width: 992px) {
  .container11 h1 {
    font-size: 3.5rem;
  }

  .container11 p {
    font-size: 1rem;
  }
}

/* موبايل */
@media (max-width: 768px) {
  .container11 h1 {
    font-size: 2.5rem;
  }

  .container11 p {
    font-size: 0.95rem;
  }
}

/* موبايل صغير */
@media (max-width: 480px) {
  .container11 h1 {
    font-size: 2rem;
  }

  .container11 p {
    font-size: 0.9rem;
  }
}


.category-filter-container {
  text-align: center;
  margin-bottom: 20px;
}

.category-filter-toggle {
  padding: 10px 20px;
  border: none;
  color: var(--con-color);
  background: transparent;
  border: 1px solid var(--con-color);
  margin: 2rem 0;
  cursor: pointer;
  font-size: 1em;
  transition: all 0.6s;
}
.category-filter-toggle:hover {
  transform: translateY(10px);
}
.category-filter {
  display: none;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.category-filter button {
  padding: 10px 20px;
  border: none;
  background: #e9e9e9;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9em;
  transition: background 0.3s;
}

.category-filter button:hover,
.category-filter button.active {
  background: var(--prev-con-color);
  color: white;
}

.responsive {
  float: left;
  max-width: 25rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.6s ease-in-out;
}
.responsive:hover{
  transform: scale(1.05);
}
.gallery{
  transition: 0.6s ease;
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--con-color);

}
.responsive,.responsive .gallery ,.gallery img{
  border-radius: 1rem;
}

@media only screen and (max-width: 700px) {
  .responsive {
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;gap: 1rem;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}


li { list-style: none; }

a { display: block; }

a {
  color: inherit;
  text-decoration: none;
}
.gallery {
  border: 1px solid #ccc;
}

.gallery:hover {
  border: 1px solid var(--con-color);
}
.gallery .desc{
  transition: 0.6s ease;
}
.gallery:hover .desc {
  
  color: var(--con-color);
}

.gallery img {
  width: 100%;
  height: auto;
}

.desc {
  padding: 15px;
  text-align: center;
  color: var(--prev-con-color);
}

/* ! numbers section (third section) */

.numbers__section {
  height: 38rem;
  background: url("./../img/projects/projects__section--bg.jpg") no-repeat
    center center/cover;
  background-attachment: fixed;
  background-position: top;
  color: white;
  transition: transform 0.6s ease;
  height: fit-content;
}

.numbers__section--overlay {
  background: #0000003b;
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding: 7rem 5rem;
}

.numbers__section--overlay .projects__view--btn {
  width: 12rem;
  height: 4rem;
  border-radius: 1px;
  outline: none;
  border: none;
  background: none;
  border: 1px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  transition: 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.numbers__section--overlay .projects__view--btn:hover {
  color: var(--con-color);
  border-color: var(--con-color);
}

.numbers__section h1 {
  font-size: 3em;
  margin-bottom: 20px;
  text-align: center;
}

.numbers__section--container {
  width: 62%;
  display: flex;
  justify-content: space-around;
  margin-top: 10rem;
  gap: 20px;
}

.unique-stats-box {
  text-align: center;
  font-size: 2rem;
}
.unique-stats-box p {
  font-size: 1.3rem;
}

.unique-stats-counter {
  font-size: 2em;
  font-weight: bold;
}
.numbers__section--container .unique-stats-box {
  opacity: 0;
  animation: countUp 1s ease-out forwards;
}

.numbers__section.animate .unique-stats-box:nth-child(1) {
  animation-delay: 0.2s;
}

.numbers__section.animate .unique-stats-box:nth-child(2) {
  animation-delay: 0.4s;
}

.numbers__section.animate .unique-stats-box:nth-child(3) {
  animation-delay: 0.6s;
}

.numbers__section.animate .unique-stats-box:nth-child(4) {
  animation-delay: 0.8s;
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.numbers__section:not(.animate) .unique-stats-box {
  opacity: 0;
}

.numbers__section.animate .unique-stats-box {
  animation: countUp 1s ease-out forwards;
}
/* ! end of numbers section (third section) */
.partners__section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partners__section h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}




/*! end of footer */
@media (max-width: 768px) {
 
  body{
    overflow-x: hidden;
  }
}
@media screen and (max-width: 991px) {
  .numbers__section--container {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .numbers__section--container {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 575px) {
  .numbers__section--container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 359px) {
  .numbers__section h1 {
    font-size: 1.8rem;
  }
}
















    /* Featured Properties Section */
    .featured-properties {
        padding: 80px 40px;
       background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('../Image/11.jpg');
        background-size: cover;
        background-position: center;
        
    }
    
    .featured-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .featured-header h2 {
        font-size: 36px;
        font-weight: 300;
        transition: transform 0.3s ease;
        display: inline-block;
         color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);
    }
    
    .featured-header h2:hover {
        transform: translateY(-13px);
    }
    
    .featured-header span {
        font-weight: bold;
    }
    
    .view-all-btn {
        background: transparent;
        color: #000000;
        border: 2px solid #000000;
        padding: 10px 25px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .view-all-btn:hover {
        transform: translateY(-13px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .properties-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .property-card {
        background: #212121;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .property-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .property-image {
        height: 220px;
        position: relative;
        background-size: cover;
        background-position: center;
    }
    
    .property-tag {
        position: absolute;
        top: 15px;
        left: 15px;
        background: white;
        color: #212121;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }
    
    .property-tag:hover {
        transform: translateY(-13px);
    }
    
    .property-details {
        padding: 20px;
    }
    
    .property-details h3 {
        margin: 0 0 10px;
        font-size: 20px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .property-details h3:hover {
        transform: translateY(-13px);
    }
    
    .property-location {
        color: #777;
        margin: 0 0 15px;
        font-size: 14px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .property-location:hover {
        transform: translateY(-13px);
    }
    
    .property-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .property-price {
        font-weight: bold;
        font-size: 18px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .property-price:hover {
        transform: translateY(-13px);
    }
    
    .details-btn {
        background: white;
        color: black;
        border: none;
        border-radius: 5px;
        padding: 8px 15px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .details-btn:hover {
        transform: translateY(-13px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    /* Newsletter Section */
    .newsletter-section {
        padding: 100px 40px;
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                    url('../Image/99.jpg');
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
        position: relative;
    }
    
    .newsletter-container {
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    
    .newsletter-box {
        background-color:rgba(0,0,0,0.2) ;
        padding: 50px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(255,255,255,0.9);
        color: #333;
        transition: transform 0.3s ease;
    }
    
    .newsletter-box:hover {
        transform: translateY(-5px);
    }
    
    .newsletter-title {
        font-size: 36px;
        font-weight: 300;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
        display: inline-block;
         color: #9d9a98;
    text-shadow: 1.4px 1.4px var(--white-show);
    text-align: center;
    }
    
    .newsletter-title:hover {
        transform: translateY(-13px);
    }
    
    .newsletter-title span {
        font-weight: bold;
    }
    
    .newsletter-description {
        font-size: 18px;
        margin-bottom: 30px;
        color: #fff;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .newsletter-description:hover {
        transform: translateY(-13px);
    }
    
    .newsletter-form {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .newsletter-input {
        flex: 1;
        max-width: 400px;
        padding: 15px 20px;
        border-radius: 8px 0 0 8px;
        border: 1px solid #ddd;
        font-size: 16px;
        outline: none;
        transition: transform 0.3s ease;
    }
    
    .newsletter-input:hover {
        transform: translateY(-13px);
    }
    
    .newsletter-submit {
        background: #000000;
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 0 8px 8px 0;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .newsletter-submit:hover {
        transform: translateY(-13px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .social-icon {
        background: #000;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .social-icon:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    /* Footer Section */
    footer {
        background-color: #000;
        color: #fff;
        padding: 60px 40px 30px;
        font-family: Arial, sans-serif;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid #333;
    }
    
    .footer-company {
        transition: transform 0.3s ease;
    }
    
    .footer-company:hover {
        transform: translateY(-13px);
    }
    
    .footer-company h3 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #fff;
    }
    
    .footer-company p {
        color: #aaa;
        line-height: 1.6;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-company p:hover {
        transform: translateY(-13px);
    }
    
    .footer-social {
        display: flex;
        gap: 15px;
    }
    
    .footer-social a {
        color: #fff;
        font-size: 20px;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        color: #ffffff;
        transform: translateY(-13px);
    }
    
    .footer-links h4 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-links h4:hover {
        transform: translateY(-13px);
    }
    
    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: #aaa;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .footer-links a:hover {
        color: #ffffff;
        transform: translateY(-13px);
    }
    
    .footer-contact h4 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-contact h4:hover {
        transform: translateY(-13px);
    }
    
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #aaa;
    }
    
    .footer-contact li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        transition: transform 0.3s ease;
    }
    
    .footer-contact li:hover {
        transform: translateY(-13px);
    }
    
    .footer-newsletter h4 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-newsletter h4:hover {
        transform: translateY(-13px);
    }
    
    .footer-newsletter p {
        color: #aaa;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .footer-newsletter p:hover {
        transform: translateY(-13px);
    }
    
    .footer-form {
        display: flex;
        gap: 10px;
    }
    
    .footer-input {
        flex: 1;
        padding: 12px 15px;
        border: none;
        border-radius: 5px;
        font-size: 14px;
        transition: transform 0.3s ease;
    }
    
    .footer-input:hover {
        transform: translateY(-13px);
    }
    
    .footer-submit {
        background: #fff;
        color: #000;
        border: none;
        padding: 0 20px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
    }
    
    .footer-submit:hover {
        transform: translateY(-13px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .copyright {
        max-width: 1200px;
        margin: 30px auto 0;
        text-align: center;
        color: #777;
        font-size: 14px;
    }
    
    .copyright p {
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .copyright p:hover {
        transform: translateY(-13px);
    }
    
    .copyright a {
        color: #aaa;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .copyright a:hover {
        color: #ffffff;
        transform: translateY(-13px);
    }
    /* Add this at the end of your existing CSS */

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .mainImage img {
        width: 65%;
        margin-left: 450px;
        margin-top: -400px;
    }
    
    .property-info {
        width: 90%;
    }
    
    .stats-content {
        margin-right: 20px;
    }
}

@media (max-width: 992px) {
    .site-header {
        padding: 20px 30px;
    }
    
    .nav-links {
        margin-right: 60px;
        gap: 20px;
    }
    
    .hero {
        padding: 60px;
    }
    
    .hero-content {
        max-width: 60%;
    }
    
    .mainImage img {
        width: 70%;
        margin-left: 380px;
        margin-top: -350px;
    }
    
    .stats-grid {
        width: 100%;
    }
    
    .stats-content {
        max-width: 100%;
        margin-top: 40px;
        margin-right: 0;
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .logo h1 {
        font-size: 36px;
        margin-left: 0;
    }
    
    .nav-links {
        display: none; /* Will be shown in mobile menu */
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin: 20px 0 0 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding-bottom: 30px;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        margin-left: 0;
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .mainImage img {
        display: none; /* Hide on smaller screens or implement alternative layout */
    }
    
    .property-info {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .property-info hr {
        height: 1px;
        width: 100%;
    }
    
    .stats-section {
        padding: 60px 20px;
    }
    
    .stats-grid {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .featured-properties {
        padding: 60px 20px;
    }
    
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 8px;
        max-width: 100%;
    }
    
    .newsletter-submit {
        border-radius: 8px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 28px;
    }
    
    .hero {
        padding: 30px 20px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-form {
        flex-direction: column;
    }
    
    .footer-submit {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Mobile Menu Toggle Styles */
.menu-toggle {
    display: none; /* Will be shown on mobile */
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .login-btn {
        margin-left: auto;
        margin-right: 15px;
    }
}

/* Smooth transitions for responsive changes */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
    width: 100%;
}