*{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333333;
}

/* Header Styles */
.nav-body{
    width: 100%;
    display: flex;
    justify-content: center;
}

.site-header{
    background-color: rgb(255, 255, 255);
    box-shadow: 1px 2px 5px rgba(128, 128, 128, 0.637);
    border: 0.1rem solid rgba(212, 212, 212, 0.952);
    border-radius: 20px;
    padding: 10px;
    position: fixed;
    z-index: 999;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 500px;
    padding: 10px 50px;
}

.logo img {
    width: 90px;
    backface-visibility: visible !important;
	animation: flip 2.5s ease;
    animation-delay: 1s;
}
@keyframes flip {
	0% {
		transform: perspective(400px) rotateY(0);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translateZ(150px) rotateY(170deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) rotateY(360deg) scale(.95);
		animation-timing-function: ease-in;
	}
	100% {
		transform: perspective(400px) scale(1);
		animation-timing-function: ease-in;
	}
}

.logo h1{
    display: none;
    margin: 0;
    color: black;
    height: 100%;
}

.hav-menu{
    display: none;
    width: 7.6%;
}

.hav-menu div{
    border-radius: 2rem;
}

.hav-menu-content{
    display: none;
    position: fixed;
    background-color: transparent;
    width: 95%;
    top: 13.2%;
    height: 86vh;
    justify-content: center;
}

.hav-menu-content .nav-links{
    display: block;
    background-color: rgb(236, 236, 236);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    border-radius: 15px;
    text-align: center;
    padding: 20px 0;

}

.hav-menu-content .nav-links .navlink{
    margin: 20px 0;
}

.hav-menu-content .nav-links a{
    color: black;
}

#hav-top-line{
    background-color: black;
    width: 100%;
}
#hav-medium-line{
    background-color: black;
    width: 65%;
    transition: 0.3s;
}
#hav-bottom-line{
    background-color: black;
    width: 100%;
}

.hav-menu:hover #hav-medium-line{
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #555555;
    text-decoration: none;
    font-size: 23px;
    font-weight: 400;
    white-space: nowrap;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links a:hover {
    color: #000000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}


/* Hero Section */
.hero{
    padding: 170px 0;
    background-color: #ffffff;
}

.hero-display-banner{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 150px;
}

.main-image img{
    width: 100%;
}

.mobo img{
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}

#main-image-grid {
  height: 100%;
  width: 500px;
  transition: 500ms;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: transparent;
}

:where(.main-image-grid-left) {
  background: url("../assets/goaVilla.png");
  transition: 300ms;
  background-position: center;
  background-size: cover;
  margin-top: 50px;
}

:where(.main-image-grid-center) {
  background: url("../assets/expressWay.png");
  transition: 300ms;
  background-position: center;
  background-size: cover;
}

:where(.main-image-grid-right) {
  background: url("../assets/dubai.jpg");
  transition: 300ms;
  background-position: center;
  background-size: cover;
  margin-bottom: 50px;
}

:where(.main-image-grid-left):hover {
  background: url("../assets/goaVilla.png");
  transition: 300ms;
  background-position: center;
  background-size: cover;
}

:where(.main-image-grid-center):hover {
  background: url("../assets/expressWay.png");
  transition: 300ms;
  background-position: center;
  background-size: cover;
}

:where(.main-image-grid-right):hover {
  background: url("../assets/dubai.jpg");
  transition: 300ms;
  background-position: center;
  background-size: cover;
}

#main-image-grid:has(.main-image-grid-left:hover) {
  grid-template-columns: 2fr 0.5fr 0.5fr;
}

#main-image-grid:has(.main-image-grid-center:hover) {
  grid-template-columns: 0.5fr 2fr 0.5fr;
}
#main-image-grid:has(.main-image-grid-right:hover) {
  grid-template-columns: 0.5fr 0.5fr 2fr;
}

.deskT{
    display: block;
}

.hero-content{
    margin: 30px 0;
}

.hero h2{
    font-weight: 500;
    font-size: 50px;
    transition: transform 0.3s ease;
    display: inline-block;
}


.hero span {
    font-size: larger;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
    margin-left: 5px;
    margin-top: -20px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Service Location */
.our-service-location{
    display: flex;
    width: 100%;
    background-color: #f8f8f8;
    padding: 12.1% 0;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.location{
    text-align: center;
    height: auto;
    width: 100%;
    max-width: 70%;
    position: relative;
}

.location-heading{
    margin: 35px 0;
}

.location h2 {
    text-align: center;
    font-size: 30px;
    margin: 0;
    color: #555;
    font-weight: 600;
}

.location i{
    padding: 15px;
    border-radius: 25%;
    position: absolute;
    display: flex;
    align-content: center;
    cursor: pointer;
    color: #555;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 10; 
}

.location i:hover{
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 1);
}

#left{
    top: 190px;
    left: -25px;
    color: #0077cc;
}

#right{
    top: 190px;
    right: -25px;
    color: #0077cc;
}

.carousel{
    height: 215px;
    width: 100%;
    box-shadow: 0px -1px 10px -1px rgb(214, 214, 214);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel.dragging {
    cursor: grabbing;
}

.location .carousel .main_card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 230px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.location .carousel .main_card .card_bx {
    flex-shrink: 0;
    width: 150px;
    margin: 0 30px;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.location .carousel .main_card .card_bx:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.location .carousel .card_bx img {
    height: 100px;
    width: 75px;
    margin: 11px;
    pointer-events: none;
}

.location .carousel .card_bx h3 {
    font-size: 19px;
    margin: auto;
    text-align: center;
}

.dropdown-image{
    position: absolute;
    right: -150px;
    bottom: -25px;
}

.dropdown-image img{
    text-decoration: none;
    border-radius: 100%;
    width: 61.5px;
    height: 60px;
    animation: bounce2 3s ease infinite;
}
@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}
.cta-buttons {
    display: flex;
    justify-content: left;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #000000;
    color: white;
    border: 2px solid #000000;
}

.primary-btn:hover {

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.secondary-btn:hover {

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Property Info */
.property-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    background-color: #ffffff;
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.property-info hr {
    height: 90px;
    width: 1px;
    border: none;
    background-color: #d9d9d9;
}


.dropdown{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Stats Section */
.stats-section{
   padding: 13.2% 12%;
}

.stats-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.stats-grid{
    display: flex;
    padding: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    width: 500px;
}

.stat-item {
    flex: 1;
    min-width: 195px;
    height: 65px;
    padding: 30px 20px;
    background: url("travel.jpg");
    background-size: 200% 200%;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
    transition: 0.3s;
}

.stat-item:hover{
    transform: translateY(-5px);
    backdrop-filter: opacity(50%);
    -webkit-backdrop-filter: opacity(50%);
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("travel.jpg");
    background-size: 200% 200%;
    transition: 0.3s;
}

.stat-item:nth-child(1) {
  background-position: top left;

}

.stat-item:nth-child(2) {
  background-position: top right;
}

.stat-item:nth-child(3) {
  background-position: bottom left;
}

.stat-item:nth-child(4) {
  background-position: bottom right;
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-label {
    color: white;
}

.stat-number{
    font-size: 30px;
    font-weight: bold;
    color: #d8d8d8;
    margin-top: 30px;
    transition: color 0.3s ease;
}

.stat-label {
    font-size: 12px;
    color: #d8d8d8;
    font-weight: 800;
    margin-top: -20px;
    transition: color 0.3s ease;
}

.stats-content {
    max-width: 400px;
}

.stats-description{
    font-size: 20px;
    color: #555555;
    font-size: 16px;
}

.head p{
    font-size: 40px;
    font-weight: lighter;
    transition: transform 0.3s ease;
    color: #333333;
    display: inline-block;
}

.head p span{
    font-size: 60px;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: inline-block;
}

.p {
    margin-top: -47px;
    transition: transform 0.3s ease;
    display: inline-block;
}


.stats-cta {
    display: flex;
    gap: 20px;
}

/* Featured Properties Section */
.featured-properties {
    padding: 80px 40px;
    background-color: #f8f8f8;
}

.featured-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 90px;
    margin-bottom: 15px;
}

.featured-header h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 300;
    transition: transform 0.3s ease;
    display: inline-block;
}


.featured-header span {
    font-weight: bold;
}

.view-all-btn {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 3s;
}

.view-all-btn:hover {
    transition: 3s;
    text-decoration: underline;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background: white;
    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;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    transition: transform 0.3s ease;
}


.property-details {
    padding: 20px;
}

.property-details h3 {
    margin: 0 0 10px;
    font-size: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}


.property-location {
    color: #777;
    margin: 0 0 15px;
    font-size: 14px;
    transition: transform 0.3s ease;
    display: inline-block;
}


.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;
}


.details-btn {
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details-btn:hover {

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Clients Testimonial */
.testimonial-section {
  padding: 13% 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.testimonial-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.testimonial-section h2 span {
  color: #0077cc;
}

.sub-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.swiper {
  width: 100%;
  padding: 20px 0 50px;
}

.swiper-wrapper{
    display: block;
}

.swiper-wrapper-inner{
    display: flex;
    gap: 40px;
}


.testimonial-card-content-holder{
    text-align: left;
}

.testimonial-header{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-bottom: 15px;
}

.testimonial-card {
    background: #fff;
    max-width: 400px;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.171);
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4a90e2;
    margin-bottom: 1rem;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    margin-bottom: 0.3rem;
}

.client-role {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
    margin-bottom: 1.2rem;
}

.client-quote {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    font-style: italic;
    position: relative;
}

.client-quote::before {
    content: "“";
    font-size: 2rem;
    color: #4a90e2;
    position: absolute;
    left: -0.9rem;
    top: -0.9rem;
}
.client-quote::after {
    content: "”";
    font-size: 2rem;
    color: #4a90e2;
    position: absolute;
    right: 0.6rem;
    bottom: -1rem;
}

.newsletter-section {
    padding: 100px 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('main2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-box {
    background-color: rgba(221, 221, 221, 0.8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: #333;
    transition: transform 0.3s ease;
}

.newsletter-box:hover {
    transform: translateY(-5px);
}

.newsletter-title {
    font-size: 36px;
    font-weight: 300;
    margin-top: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}


.newsletter-title span{
    font-weight: bold;
}

.newsletter-description {
    font-size: 18px;
    color: #555;
    transition: transform 0.3s ease;
    display: inline-block;
}


.newsletter-form{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form a{
    text-decoration: none;
} 

.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-submit{
    background: rgb(0, 141, 0);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit i{
    font-size: 27px;
}

.newsletter-submit:hover {
    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 a{
    text-decoration: none;
    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 a: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 30px;
    font-family: Arial, sans-serif;
}

.copyright{
    width: 100%;
    margin: 30px 0;
    text-align: center;
    color: #777;
    font-size: 16px;
}


/* Responsive Media Queries */
.mobo{
    display: none;
}

@media (max-width: 1200px) {
    .property-info {
        width: 90%;
    }
}

@media (max-width: 992px) {
    .site-header {
        padding: 10px 50px;
        gap: 4rem;
    }

    .logo a img{
        width: 85px;
        height: auto;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a{
        font-size: 21px;
    }

    .hero-display-banner{
        display: block;
        padding: 0 20px;
    }

    .mobo{
        display: block;
        text-align: center;
    }

    .mobo img{
        width: 52%;
    }

    .stats-section {
        padding: 13.5% 20px;
    }

    .stats-grid{
        text-align: center;
        width: 100%;
        padding: 0;
    }

    .head p{
        font-size: 60px;
    }

    .stats-section{
        padding: 15% 20px;
    }

    .stats-content {
        max-width: 100%;
    }

    .head{
        margin-top: 45px;
    }

    .stats-description{
        font-size: 24px;
    }

    .head p{
        text-align: left;
        font-size: 70px;
        width: 620px;
    }

    .head p span{
        font-size: 80px;
    }

    .stat-item-pair{
        display: flex;
        gap: 20px;
    }

    .stat-item{
        margin: 10px 0;
        padding: 50px 20px;
        text-align: left;
    }

    .stat-items:nth-child(1) {
        background-position: bottom left;
    }

    .stat-items:nth-child(2) {
        background-position: bottom right;
    }

    .stat-label {
        font-size: 20px;
    }

    .stat-number{
        font-size: 40px;
    }

    .stats-container {
        display: block;
    }

    .deskT{
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h2{
        font-size: 55px;
    }

    .hero-content p{
        font-size: 21px;
    }

    .cta-buttons {
        margin: 0;
        gap: 20px;
    }

    .cta-btn{
        padding: 20px 40px;
        font-size: 23px;
    }

    .our-service-location{
        padding: 30% 0;
    }

    .location{
        max-width: 80%;
        margin: 0;
        margin-top: 90px;
    }
    
    .location-heading h2{
        font-size: 52px;
    }

    .dropdown-image{
        position: static;
        margin-top: 100px;
    }

    .carousel{
        height: 300px;
    }

    
    .location .carousel .main_card {
        height: 300px;
    }

    #left{
        font-size: 25px;
        top: 228px;
    }

    #right{
        font-size: 25px;
        top: 228px;
    }

    .location-heading span{
        font-size: 23px;
    }

    .dropdown-image{
        position: static;
        margin-top: 100px;
    }


    .featured-properties {
        padding: 20% 20px;
    }

    .featured-header h2 {
        font-size: 40px;
    }

    .swiper-wrapper{
        overflow: hidden;
        width: 100%;
        justify-content: center;
    }

    .swiper-wrapper-inner{
        display: flex;
        padding: 20px 0;
        width: 200%;
        animation: scrollTestimonial 10s linear infinite;
    }
    @keyframes scrollTestimonial {
        0% {
            transform: translateX(10%);
            transition: 0.3s;
        }
        100% {
            transform: translateX(-80%);
            transition: 0.3s;
        }
    }

    .avatar{
        width: 90px;
        height: 90px;
    }

    .info h3{
        font-size: 19px
    }

    .role{
        font-size: 15px;
    }

    .feedback{
        font-size: 1.1rem;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        max-width: 700px;
        width: 100%;
        padding: 20px 10px;
        display: flex;
        gap: 10%;
        justify-content: center;
    }

    .logo a{
        display: flex;
        align-items: center;
        height: 100%;
        text-decoration: none;
    }

    .logo a img{
        width: 72px;
        height: auto;
    }

    .nav-links{
        justify-content: center;
        gap: 25px;
    }

    .nav-links a{
        font-size: 26px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-display-banner{
        display: block;
        padding: 0;
    }

    .mobo{
        display: block;
        text-align: center;
    }

    .mobo img{
        width: 100%;
    }

    .deskT{
        display: none;
    }

    .hero{
        padding: 120px 0;
    }

    .hero-content {
        max-width: 100%;
        margin: 0;
        padding: 0 20px;
    }

    .hero h2 {
        margin: 28px 0;
        font-size: 51px;
    }

    .hero p {
        margin-left: 0;
        max-width: 100%;
        font-size: 25px;
    }

    #rm-br-mobo{
        display: none;
    }

    .cta-buttons {
        margin: 0;
        gap: 20px;
    }

    .cta-btn{
        padding: 20px 40px;
        font-size: 23px;
    }

    .our-service-location{
        padding: 20% 0;
    }

    .location{
        margin: 0;
        margin-top: 90px;
    }
    
    .location-heading h2{
        font-size: 48px;
    }

    .dropdown-image{
        position: static;
        margin-top: 100px;
    }

    .carousel{
        height: 260px;
    }

    
    .location .carousel .main_card {
        height: 260px;
    }

    #left{
        font-size: 25px;
        top: 228px;
    }

    #right{
        font-size: 25px;
        top: 228px;
    }

    .location-heading span{
        font-size: 23px;
    }

    .stats-section{
        padding: 15% 20px;
    }

    .stats-content {
        max-width: 100%;
    }

    .head{
        margin-top: 15px;
    }

    .stats-description{
        font-size: 24px;
    }

    .head p{
        text-align: left;
        font-size: 50px;
        width: 450px;
    }

    .stat-item-pair{
        display: flex;
        gap: 20px;
    }

    .stat-item{
        min-width: 300px;
        margin: 10px 0;
        padding: 50px 20px;
        text-align: left;
    }

    .stat-items:nth-child(1) {
        background-position: bottom left;
    }

    .stat-items:nth-child(2) {
        background-position: bottom right;
    }

    .stat-label {
        font-size: 20px;
    }

    .stat-number{
        font-size: 40px;
    }

    .stats-container {
        display: block;
    }

    .featured-properties {
        padding: 10.5% 20px;
    }

    .testimonial-section {
        padding: 15% 20px;
    }

    .testimonial-section h2{
        font-size: 45px;
        margin-top: 100px;
    }

    .sub-text{
        font-size: 20px;
    }

    .property-info {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .property-info hr {
        height: 1px;
        width: 100%;
    }

    .featured-header h2{
        font-size: 40px;
    }

    .swiper-wrapper{
        overflow: hidden;
        width: 100%;
        justify-content: center;
    }

    .swiper-wrapper-inner{
        display: flex;
        gap: 40px;
        padding: 20px 0;
        width: 200%;
        animation: scrollTestimonial 10s linear infinite;
    }
    @keyframes scrollTestimonial {
        0% {
            transform: translateX(10%);
        }
        100% {
            transform: translateX(-80%);
        }
    }

    .avatar{
        width: 85px;
        height: 85px;
    }

    .info h3{
        font-size: 18px
    }

    .feedback{
        font-size: 1rem;
    }

    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-input {
        border-radius: 8px;
        max-width: 100%;
    }

    .newsletter-title{
        font-size: 42px;
    }

    .newsletter-description{
        font-size: 20px;
    }

    .newsletter-submit {
        border-radius: 8px;
        padding: 15px 30px;
        font-size: 25px;
    }

    footer{
        padding: 30px 15px;
    }

    .copyright p{
        font-size: 18px;
    }

    .copyright a{
        font-size: 20px;
    }
}


@media (max-width: 576px) {
    .site-header{
        max-width: 560px;
        width: 90%;
        gap: 25%;
        padding: 15px 0;
    }

    .logo a{
        gap: 5px;
    }

    .logo a img{
        width: 50px;
        height: auto;
    }

    .hav-menu{
        display: block;
        cursor: pointer;
        transition: 0.3s;
    }

    .hav-menu-content {
        top: 12.7%;
    }

    #hav-top-line{
        height: 3.2px;
    }

    #hav-medium-line{
        height: 3.2px;
        margin: 6px 0;
    }

    #hav-bottom-line{
        height: 3.2px;
    }

    .nav-links a {
        font-size: 28px;
    }

    .logo h1{
        display: block;
        font-size: 25px;
        animation: sideSlip 2.5s ease;
        animation-delay: 1s;
    }
    @keyframes sideSlip{
        0% {
            transform: translateX(0);
        }
        50%{
            transform: translateX(20px);
        }
        100% {
            transform: translateX(0);
        }
    }

    .nav-links{
        display: none;
    }
    
    .hero{
        padding: 32% 0;
    }

    .hero-display-banner{
        display: block;
    }

    .mobo{
        display: block;
    }

    .mobo img {
        width: 100%;
    }

    .head{
        margin-top: 35px;
    }

    .head p{
        margin: 15px 0;
        font-size: 42px;
        max-width: 100%;
    }

    .stats-section {
        padding: 35% 20px;
    }

    .stats-grid{
        padding: 10px 0;
        margin: 0;
        width: auto;
    }

    .stat-item-pair{
        display: flex;
        gap: 10px;
    }

    .stat-item{
        min-width: 150px;
        padding: 16px 12px;
        margin: 5px 0;
        text-align: left;
    }

    .stat-items:nth-child(1) {
    background-position: bottom left;
    }

    .stat-items:nth-child(2) {
    background-position: bottom right;
    }

    .stat-label{
        padding: 0;
        margin: 0;
        font-size: 15px;
    }

    .stat-number{
        padding: 0;
        margin: 0;
        margin-top: 15px;
        font-size: 25.5px;
    }

    .stats-description{
        font-size: 18px;
        margin: 30px 0;
    }

    .deskT{
        display: none;
    }

    .hero{
        padding-top: 65%;
        padding-bottom: 30%;
    }

    .hero h2{
        font-size: 40px;
    }

    .hero p{
        font-size: 17.2px;
    }

    .cta-buttons{
        flex-direction: row;
        gap: 30px;
    }

    .cta-btn {
        width: 100%;
        padding: 16px 25px;
        font-size: 20.5px;
    }

    .our-service-location{
        padding: 30% 0;
    }

    .location{
        height: 100%;
        margin-top: auto;
    }

    .location-heading h2{
        width: 100%;
        margin-top: 25%;
        font-size: 33.6px;
    }

    .location-heading span{
        font-size: 20px;
    }

    .carousel{
        height: 360px;
    }

    
    .location .carousel .main_card {
        height: 360px;
    }

    #left{
        font-size: 25px;
        top: 300px;
    }

    #right{
        font-size: 25px;
        top: 300px;
    }

    .card_bx, .card_bx img{
        width: 300px;
        height: 200px;
    }

    .location .carousel .card_bx h3{
        margin: 0;
        margin-top: 10px;
        font-size: 20px;
    }

    .dropdown-image{
        margin-top: 50px;
        position: static;
    }

    .featured-properties {
        padding: 35% 20px;
    }

    .featured-header{
        margin: 0;
        margin-bottom: 20px;
    }

    .featured-header h2{
        font-size: 40px;
    }

    #fvar{
        display: none;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .swiper{
        padding: 20px 0;
    }

    .swiper-wrapper{
        overflow: hidden;
        width: 100%;
        justify-content: center;
    }

    .swiper-wrapper-inner{
        display: flex;
        width: 350%;
        padding: 20px 0;
        animation: scrollTestimonial 15s linear infinite;
    }
    @keyframes scrollTestimonial {
        0% {
            transform: translateX(10%);
        }
        100% {
            transform: translateX(-90%);
        }
    }

    .testimonial-section{
        padding: 35% 20px;
        padding-bottom: 10%;
    }

    .testimonial-section h2{
        font-size: 2.5rem;
    }

    .sub-text{
        margin: 0;
        font-size: 19px;
        margin-top: 25px;
    }

    .testimonial-card{
        width: 320px;
    }

    .avatar{
        width: 80px;
        height: 80px;
    }

    .info h3{
        font-size: 17px;
    }

    .role{
        font-size: 0.9rem;
    }

    .feedback{
        font-size: 0.9rem;
    }

    .newsletter-title{
        margin: 0;
        font-size: 40px;
    }

    .newsletter-description{
        margin-bottom: 50px;
        font-size: 20px;
    }

    .newsletter-submit{
        font-size: 18px;
        margin-bottom: 10px;
    }

    footer{
        padding: 30px 15px;
    }
}

@media (max-width: 390px) {
    .site-header{
        max-width: 350px;
        width: 90%;
        gap: 25%;
        padding: 15px 0;
    }

    .logo a img{
        width: 45px;
        height: auto;
    }

    .hav-menu{
        display: block;
        cursor: pointer;
        transition: 0.3s;
    }

    .hav-menu-content {
        top: 13%;
    }

    #hav-top-line{
        height: 3px;
    }

    #hav-medium-line{
        height: 3px;
        margin: 5px 0;
    }

    #hav-bottom-line{
        height: 3px;
    }

    .logo h1{
        display: block;
        font-size: 24px;
        animation: sideSlip 2.5s ease;
        animation-delay: 1s;
    }
    @keyframes sideSlip{
        0% {
            transform: translateX(0);
        }
        50%{
            transform: translateX(20px);
        }
        100% {
            transform: translateX(0);
        }
    }

    .hero-display-banner{
        display: block;
    }

    .mobo{
        display: block;
    }

    .mobo img {
        width: 100%;
    }

    .head{
        margin-top: 25px;
    }

    .head p{
        font-size: 36px;
        margin: 15px 0;
        max-width: 100%;
    }

    .stats-section {
        padding: 30% 20px;
    }

    .stats-grid{
        padding: 10px 0;
        margin: 0;
        width: auto;
    }

    .stat-item-pair{
        display: flex;
        gap: 10px;
    }

    .stat-item{
        min-width: 16px;
        padding: 15px 10px;
        margin: 5px 0;
        text-align: left;
    }

    .stat-items:nth-child(1) {
    background-position: bottom left;
    }

    .stat-items:nth-child(2) {
    background-position: bottom right;
    }

    .stat-label{
        padding: 0;
        margin: 0;
        font-size: 13px;
    }

    .stat-number{
        padding: 0;
        margin: 0;
        margin-top: 15px;
        font-size: 22.5px;
    }

    .stats-description{
        font-size: 16px;
        margin: 20px 0;
    }

    .deskT{
        display: none;
    }

    .hero{
        padding-top: 60%;
        padding-bottom: 30%;
    }

    .hero h2{
        font-size: 39px;
    }

    .hero p{
        font-size: 16.1px;
    }

    .cta-buttons{
        flex-direction: row;
        gap: 18px;
    }

    .cta-btn {
        width: 100%;
        font-size: 18px;
        padding: 12px 28px;
    }

    .our-service-location{
        padding: 30% 0;
    }

    .location{
        height: 100%;
    }

    .location-heading h2{
        width: 100%;
        margin-top: 19%;
        font-size: 29.6px;
    }

    .location-heading span{
        font-size: 18px;
    }

    .carousel{
        height: 300px;
    }

    
    .location .carousel .main_card {
        height: 300px;
    }

    #left{
        top: 240px;
    }

    #right{
        top: 240px;
    }

    .card_bx, .card_bx img{
        height: 200px;
    }

    .dropdown-image{
        margin-top: 50px;
        position: static;
    }

    .featured-properties {
        padding: 100px 20px;
    }

    .featured-header{
        margin: 0;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .featured-header h2{
        font-size: 36px;
    }

    #fvar{
        display: none;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .swiper{
        padding: 20px 0;
    }

    .swiper-wrapper{
        overflow: hidden;
        padding: 20px 0;
        justify-content: center;
    }

    .swiper-wrapper-inner{
        display: flex;
        animation: scrollTestimonial 10s linear infinite;
        width: 400%;
    }
    @keyframes scrollTestimonial {
        0% {
            transform: translateX(10%);
        }
        90% {
            transform: translateX(-70%);
        }
        100% {
            transform: translateX(10%);
        }
    }

    .testimonial-section{
        padding: 35% 20px;
        padding-bottom: 10%;
    }

    .testimonial-section h2{
        font-size: 2rem;
    }

    .sub-text {
        margin: 0;
        margin-top: 25px;
        font-size: 1rem;
    }

    .testimonial-card{
        width: 300px;
    }

    .avatar{
        width: 70px;
        height: 70px;
    }

    .info h3{
        font-size: 0.95rem;
    }

    .role{
        font-size: 0.9rem;
    }

    .feedback{
        font-size: 0.9rem;
    }

    .newsletter-title{
        margin: 0;
        font-size: 36px;
    }

    .newsletter-description{
        font-size: 18px;
    }

    .newsletter-submit{
        font-size: 17px;
        display: flex;
        align-items: center;
        align-content: center;
    }
}

@media (max-width: 380px) {
    .site-header{
        width: 90%;
        gap: 27%;
        padding: 15px 0;
    }

    .logo a img{
        width: 40px;
        height: auto;
    }

    .hav-menu{
        display: block;
        cursor: pointer;
        transition: 0.3s;
    }

    .hav-menu-content {
        height: 84vh;
        top: 14.5%;
    }

    #hav-top-line{
        height: 2.1px;
    }

    #hav-medium-line{
        height: 2.1px;
        margin: 5px 0;
    }

    #hav-bottom-line{
        height: 2.1px;
    }

    .nav-links a {
        font-size: 24px;
    }

    .logo h1{
        display: block;
        color: black;
        font-size: 21px;
        animation: sideSlip 2.5s ease;
        animation-delay: 1s;
    }
    @keyframes sideSlip{
        0% {
            transform: translateX(0);
        }
        50%{
            transform: translateX(20px);
        }
        100% {
            transform: translateX(0);
        }
    }

    .hero-display-banner{
        display: block;
    }

    .mobo{
        display: block;
    }

    .mobo img {
        width: 100%;
    }

    .head{
        margin-top: 25px;
    }

    .head p{
        font-size: 36px;
        margin: 15px 0;
        max-width: 100%;
    }

    .head p span{
        font-size: 60px;
    }

    .stats-section {
        padding: 30% 20px;
    }

    .stats-grid{
        padding: 10px 0;
        margin: 0;
        width: auto;
    }

    .stat-item-pair{
        display: flex;
        gap: 10px;
    }

    .stat-item{
        min-width: 16px;
        padding: 15px 10px;
        margin: 5px 0;
        text-align: left;
    }

    .stat-items:nth-child(1) {
    background-position: bottom left;
    }

    .stat-items:nth-child(2) {
    background-position: bottom right;
    }

    .stat-label{
        padding: 0;
        margin: 0;
        font-size: 13px;
    }

    .stat-number{
        padding: 0;
        margin: 0;
        margin-top: 15px;
        font-size: 22.5px;
    }

    .stats-description{
        font-size: 16px;
        margin: 20px 0;
    }

    .deskT{
        display: none;
    }

    .hero{
        padding-top: 50%;
        padding-bottom: 30%;
    }

    .hero h2{
        font-size: 35px;
    }

    .hero p{
        font-size: 14.7px;
    }

    .cta-buttons{
        flex-direction: row;
        gap: 18px;
    }

    .cta-btn {
        width: 100%;
        font-size: 16px;
        padding: 12px 28px;
    }

    .our-service-location{
        padding: 25% 0;
    }

    .location{
        height: 100%;
    }

    .location-heading h2{
        width: 100%;
        margin-top: 19%;
        font-size: 29.6px;
    }

    .location-heading span{
        font-size: 18px;
    }

    .carousel{
        height: 300px;
    }

    
    .location .carousel .main_card {
        height: 300px;
    }

    #left{
        top: 240px;
    }

    #right{
        top: 240px;
    }

    .card_bx, .card_bx img{
        height: 200px;
    }

    .dropdown-image{
        margin-top: 50px;
        position: static;
    }

    .featured-properties {
        padding: 100px 20px;
    }

    .featured-header{
        margin: 0;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .featured-header h2{
        font-size: 36px;
    }

    #fvar{
        display: none;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .swiper{
        padding: 20px 0;
    }

    .swiper-wrapper{
        overflow: hidden;
        width: 100%;
        justify-content: center;
    }

    .testimonial-section{
        padding: 35% 20px;
        padding-bottom: 10%;
    }

    .testimonial-section h2{
        font-size: 2rem;
        margin: 0;
    }

    .sub-text {
        margin: 0;
        margin-top: 25px;
        font-size: 1rem;
    }

    .testimonial-card{
        width: 300px;
    }

    .avatar{
        width: 70px;
        height: 70px;
    }

    .newsletter-title{
        margin: 0;
        font-size: 36px;
    }

    .newsletter-description{
        font-size: 18px;
    }

    .newsletter-submit{
        font-size: 17px;
        display: flex;
        align-items: center;
        align-content: center;
    }
}

/* Mobile Menu Toggle Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
}