*{
        text-decoration: none;
        box-sizing: border-box;
        margin: 0;
        padding: 0;

}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1b1c0f;  
    text-align: center;


    background-size: 60px 60px;
    background-attachment: fixed;

 
}
.curvy-line {
    position: absolute;
    width: 250px;
    height: auto;
    opacity: 0.5;
    z-index: -1;
  }
  
  .curvy-line:nth-of-type(1) {
    top: 300px;
    right: 0;
  }
  
  .curvy-line:nth-of-type(2) {
    top: 700px;
    left: 0;
  }
  
  .curvy-line:nth-of-type(3) {
    top: 1200px;
    right: 0;
  }
  .background-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.background-lines svg {
    width: 100%;
    height: 100%;
}

.line {
    fill: none;
    stroke-width: 6; /* Increased from 2 to 6 */
    stroke: rgba(255, 102, 0, 0.5); /* Deep orange */
    animation: moveLine 10s linear infinite alternate;
}


.wave {
    stroke-dasharray: 10 5;
    animation-delay: 0s;
}

.curve {
    stroke-dasharray: 8 4;
    animation-delay: 2s;
}

.diagonal {
    stroke-dasharray: 12 6;
    animation-delay: 4s;
}

/* Animation keyframes */
@keyframes moveLine {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-20px) scaleX(1.01);
        opacity: 0.7;
    }
}

html{
    scroll-behavior: smooth;
}
    /* Navbar */
    .header {
        display: flex;
        justify-content: center;
        align-items: center;
    }
.background{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        width: 946px;
        border-radius: 20px;
        margin-top: 130px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .logo {
        font-size: 24px;
        font-weight: bold;
        margin-left: 20px;
    }
    .logo a {
        color: black;
        text-decoration: none;
    }

    .nav-links {
        list-style: none;
        display: flex;
        gap: 20px;
    }
    .nav-links li {
        display: inline;
    }
    .nav-links a {
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .contact-btn {
        background-color: #ff7f50;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 10px;
        cursor: pointer;
    }
    .contact-btn:hover{
        background-color: #e26804;
        color: black;
        transition: all ease-out 1s;
      }
      .contact-btn:active{
        background-color: #ff7f50;
        color: black;
      }
    /* Language Switcher */
    .custom-translate {
        display: flex;
        gap: 10px;
    }
    .lang-flag {
        width: 25px;
        cursor: pointer;
    }

    /* Social Icons */
    .social-icons {
        display: flex;
        gap: 10px;
    }
    .social-icons a {
        font-size: 20px;
        color: black;
        text-decoration: none;
    }





.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 80%;
    max-width: 800px;
    background: #f8f9fa; /* Light background */
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Style the menu items */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu li {
    padding: 12px;
    font-size: 18px;
}

.mobile-menu a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    display: block;
}

/* Add Spacing for Language & Social Icons */
.mobile-extras {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

/* Language Flags */
.custom-translate {
    display: flex;
    gap: 10px;
}
.lang-flag {
    width: 30px;
    cursor: pointer;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    font-size: 22px;
    color: black;
    text-decoration: none;
}

/* Fix Hamburger Menu Alignment */
.hamburger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    margin-left: auto;
    padding: 10px;
}

/* Make Navbar Fully Responsive */
    @media (max-width: 1024px) {
        .nav-links,
        .contact-btn,
        .custom-translate,
        .social-icons {
            display: none;
        }

        .hamburger-menu {
            display: block;
        }

        .navbar {
            width: 100%;
            height: 250px;
            padding: 10px 20px;
            margin-top: 0;
            position: fixed;
            top: 0;
            left: 0;
            border-radius: 0;
        }
    }



    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 220px; /* Adjust this value to move it lower */
        padding: 20px;
    }
    .video-container {
        margin-top: 30px; /* Add space between text and video */
        width: 80%; /* Ensure video is responsive */
        max-width: 700px;
    }
    
    .video-container iframe {
        width: 100%;
        height: 400px; /* Adjust height for consistency */
        border-radius: 15px; /* Make it look better */
    }
    
    .section-content {
        margin-top: 100px; /* Move the second section further down */
        text-align: center;
    }
    
    /* Lowering the sections without affecting other content */
    #features {
        margin-top: 50px;
    }
.badge {
    background-color: black;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}
.hero h1 {
    color: #fff;
    font-size: 36px;
    margin: 10px 0;
}
.hero p {
    color: lightgray;
    font-size: 18px;
    color: gray;
}
.hero-image {
    margin-top: 20px;
    width: 976px;
    height: 500px;
    border-radius: 20px 60px;
}
#features {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px;
    text-align: left;
}
#features img {
    width: 976px;
    border-radius: 20px;
}
.section-content {
    max-width: 800px;
}
#features h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}
#features p {
    font-size: 18px;
    color: lightgray;
}
.mini-hero{
    width: 976px;
    height: 300px;
}
.mini-hero1{
    width: 676px;
    height: 750px;
}

#listing{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.listingss{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.listing-wrapper{
    width: 976px;
    height: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(236, 236, 236);
    border-radius: 20px;
    margin-top: 60px;
}
.featured{
    width: 48%;
    height: 300px;
}
.image-featured{
    width: 100%;
    height: 300px;  
    border-radius: 20px;
}
.tittle{
    width: 48%;
    height: 300px;
}
.tittle-properties{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.tittle-propertie{
    width: 100%;
    height: 32%;
}
.badged{
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-direction: column;
}
.badge-background{
    background-color: black;
    width: 100px;
    height: 34px;
    color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.badge-tittle{
    text-align: center;
}
.block{
    width: 100%;
    height: 70%;
}

.list-room{
    width: 47%;
    height: 100%;
    float: left;
    display: flex;
    justify-content: space-evenly;
    align-items: left;
    flex-direction: column;
}   
.paragraph-top{
    width: 430px;
    height: 120px;
    color: #606476;
}
.paragraph-bottom{
    width: auto;
    height: 10px;
    float: left;
    font-size: 14px;
    color: darkgray;
    text-align: left;
}
.pricing-right{
    width: 47%;
    height: 100%;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub-currency{
    width: 100%;
    height: auto;
    font-size: 20px;
    text-align: center;
    padding-top: 20px;
}




#highlights{
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
}
.highlights-block{
    width: 976px;
    height: 900px;
}
.highlights-tittle{
    width: 100%;
    height: 17%;
}
.highlights-tit{
    color: #fff;
    width: 476px;
    height: 80px;
    float: left;
    font-size: 36px;
    text-align: left;
}
.highlights-text{
    width: 476px;
    height: 80px;
    float: right;
    font-size: 16px;
    color: lightgray;
    text-align: left;
    padding-top: 20px;
}

.highlights-content{
    width: 100%;
    height: 100%;
}
.highlights-description{
    width: 100%;
    height: 47%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    padding-bottom: 70px;
}
.image-description{
    width: 47%;
    height: 100%;
}
.img-description{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.text-description{
    width: 49%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-direction: column;
}
.text-h2{
    color: #fff;
    width: 100%;
    height: 31%;
    font-size: 36px;
    text-align: left;
    margin: 0;
}
.text-paragraph{
    width: 100%;
    height: 11%;
    font-size: 16px;
    text-align: left;
    color: lightgray;
}
.card-description{
    width: 100%;
    height: 41%;
    border-radius: 20px;
    background-color: lightgray;
}
.card-top{
    width: 60%;
    height: 38%;
    background-color: #fff;
    border-radius: 15px;
    margin-left: 20px;
    margin-top: 20px;
}
.card-icon{
    width: 22%;
    height: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub-card-text{
    width: 78%;
    height: 100%;
    float: right;
    font-size: 18px;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-paragraph{
    width: 90%;
    height: 40%;
    color: #767676;
    text-align: left;
    font-size: 14px;
    margin: 20px 0px 0px 20px;
}





/* Responsive Insights Section */
.insights-section {
    width: 100%;
    padding: 20px;
    text-align: center;
    margin-top: 100px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    padding-top: 30px;
}

.insight-content h2{
    color: #fff;
}
.insight-content p{
    color: lightgrey;
}

/* Individual Card */
.insight-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.insight-card:hover {
    transform: translateY(-5px);
}

/* Image Fix */
.insight-card img {
    width: 100%;
    height: 350px;
    object-fit: cover; /* Maintain aspect ratio */
}

/* Card Text */
.insight-card h3 {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
}

.tag {
    background: #f5c518;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin: 10px;
    transition: 0.3s;
}
.tag:hover {
    background-color: #ff7f50;
    color: #f7f7f7;
}

.arrow {
    display: inline-block;
    font-size: 20px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: 0.3s;
}

.arrow:hover {
    color: #ff7f50;
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 10px;
    }

    .insight-card {
        width: 90%;
        margin: auto;
    }
    .highlights-tit{
        width: 476px;
        height: 80px;
        float: left;
        font-size: 36px;
        text-align: left;
        position: relative;
        top: -50px;
    }

}

.tag {
    display: inline-block;
    background: #e3a96b;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
    margin-right: 10px;
}

.arrow {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #e3a96b;
}


#testimonials {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
    padding: 20px;
}

.testimonials-block {
    width: 976px;
    height: auto;
}

.testimonials-tittle {
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-tit {
    color: #fff;
    font-size: 36px;
    text-align: center;
}

.testimonials-text {
    font-size: 16px;
    color: lightgray;
    text-align: center;
}

.testimonials-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
}

/* Cards */
.testimonials-card {
    width: 313.55px;
    height: 237px;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    background-color: #ddd;
}

/* Card Title Section */
.card-tittle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

/* User Image */
.testimonials-image {
    display: flex;
    align-items: center;
}

.img-testimonials {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

/* Name and Username */
.testimonials-name {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.testimonials-name-h4 {
    font-size: 16px;
    margin: 0;
}

.testimonials-name-paragraph {
    font-size: 14px;
    margin: 0;
}

/* Badge */
.card-badge {
    width: 100%;
    height: auto;
}

.badge-paragraph {
    width: 100px;
    padding: 5px;
    border-radius: 20px;
    font-size: 14px;
    background-color: black;
    color: #fff;
    text-align: center;
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    .testimonials-block {
        width: 100%;
        padding: 0 15px;
    }

    .testimonials-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .testimonials-card {
        width: 90%;
        height: auto;
    }

    .testimonials-tit {
        font-size: 28px;
    }

    .testimonials-text {
        font-size: 14px;
    }

    .badge-paragraph {
        width: 80px;
        font-size: 12px;
    }
}


#faq {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 50px;
}

.faq-container {
    display: flex;
    width: 100%;
    max-width: 976px; 
    justify-content: space-between;
    gap: 40px;
}

.faq-tittle {
    width: 46%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
}
.faq-tit-top{
    width: 100%;
    height: 14.17%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.faq-tit-mid{
    color: #fff;
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.faq-tit-bottom{
    color: lightgray;
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.faq-badge {
    width: 11%;
    height: 100%;
    background-color: black;
    color: #fff;
    padding: 5px 0px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.badge-text {
    margin: 0;
    font-size: 14px;
}

.mid-paragraph {
    font-size: 36px;
    font-weight: 700;
}

.bottom-paragraph {
    font-size: 16px;
    color: #606476;
    margin-top: 10px;
}

.download-button{
    width: 150px;
    height: 40px;
    background-color: #ddd;
    border: black solid 1px;
    text-decoration: none;
    color: black;
    cursor: pointer;
    font-size: 16px;
    float: left;
}
.download-button:hover{
    background-color: #d98237;
    color: black;
    transition: all ease-out 1s;
}
.download-button:active{
    background-color: #ff7f50;
    color: black;
}

.faq-content {
    width: 47%;
    background-color: lightgray;
    border-radius: 20px;
    display: grid;
    gap: 15px;
    padding: 20px;
}

.faq-form {
    cursor: pointer;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 20px;
    margin-bottom: 10px;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

.answer p {
    font-size: 14px;
    line-height: 1.6;
    padding-top: 1rem;
}

.faq-form.active .answer {
    max-height: 300px;
}

.faq-form.active svg {
    transform: rotate(180deg);
}

svg {
    transition: transform 0.5s ease-in;
}





#subscription {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    margin-top: 50px;
}

.subscription-box {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 976px;
    width: 100%;
}

.subscription-badge {
    background: black;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.subscription-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subscription-box p {
    font-size: 18px;
    color: gray;
    margin-bottom: 20px;
}

.subscription-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subscription-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    flex-grow: 1;
    font-size: 16px;
}

.subscribe-btn {
    background: #ff7f50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    font-size: 14px;
    color: lightgray;
}

.footer-links a {
    text-decoration: none;
    color: lightgray;
    margin-left: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    color: #757474;
}

.social-icons i:hover {
    color: #d98237;
}

.contact-number{
    width: 150px;
    height: 70px;
    color: #ddd;
    font-family: "Onest", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}

/* Language Switcher inside Navbar */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 20px; /* Adjust spacing */
}

/* Style for flag icons */
.lang-flag {
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, opacity 0.3s;
    border-radius: 50%; /* Makes the flags circular */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.lang-flag:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Hide Google Translate Default UI */
#google_translate_element {
    display: block;
}

.goog-te-banner-frame {
    display: none !important; /* Hide the top Google Translate bar */
}

.goog-te-gadget {
    font-size: 0; /* Hide "Select Language" text */
}

.goog-te-combo {
    display: none !important; /* Hide the dropdown */
}

/* Style for Custom Language Flags */
.custom-translate {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 20px;
}

.custom-translate img {
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, opacity 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.custom-translate img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}


/* Hide Google Translate UI */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0;
    visibility: hidden;
}

.goog-te-combo {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .nav-links li {
        width: 100%;
    }

    .contact-btn {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #hero{
        margin-top: 200px; /* Increases space between previous section and FAQ */
        padding-bottom: 50px; /* Adds space at the bottom */
    }
    .hero {
        text-align: center;
        padding: 30px 10px;
    }

    .hero h1 {
        font-size: 1.5rem;
        padding: 10px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-image {
        width: 90%;
        max-width: 400px;
    }
}
@media screen and (max-width: 768px) {
    .listingss {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .listing-wrapper {
        width: 90%;
        margin-bottom: 20px;
    }

    .image-featured {
        width: 100%;
        height: auto;
    }

    .block {
        flex-direction: column;
        align-items: center;
    }

    .pricing-right {
        text-align: center;
    }
}
@media screen and (max-width: 768px) {
    .testimonials-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonials-card {
        width: 90%;
    }
}

@media screen and (max-width: 1024px) {
    .highlights-block {
        width: 90%;
        height: auto;
    }

    .highlights-tittle {
        text-align: center;
    }

    .highlights-tit, 
    .highlights-text {
        width: 100%;
        text-align: center;
    }

    .highlights-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .highlights-description {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 30px;
    }

    .image-description, 
    .text-description {
        width: 100%;
    }

    .text-h2 {
        font-size: 24px;
    }

    .text-paragraph {
        font-size: 16px;
        color: gray;
    }

    .card-description {
        width: 100%;
        height: auto;
        text-align: center;
        padding: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .testimonials-block {
        width: 90%;
        height: auto;
    }

    .testimonials-tittle {
        text-align: center;
        width: 100%;
    }

    .testimonials-tit, 
    .testimonials-text {
        width: 100%;
        text-align: center;
    }

    .testimonials-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    .testimonials-card {
        width: 90%;
        text-align: center;
        padding: 20px;
    }

    .testimonials-image {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .img-testimonials {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .testimonials-name {
        text-align: left;
    }

    .card-paragraphs {
        font-size: 14px;
        text-align: center;
        margin-top: 10px;
    }
}
@media screen and (max-width: 1024px) {
    #faq {
        margin-top: 450px; /* Increases space between previous section and FAQ */
        padding-bottom: 50px; /* Adds space at the bottom */
    }
    .faq-container {
        flex-direction: column;
        align-items: center;
        width: 90%;
        gap: 20px;
    }

    .faq-tittle {
        width: 100%;
        text-align: center;
    }

    .mid-paragraph {
        font-size: 24px;
    }

    .bottom-paragraph {
        font-size: 14px;
        text-align: center;
    }

    .faq-content {
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    .faq-form {
        width: 100%;
        text-align: center;
    }

    .question {
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .answer {
        font-size: 14px;
        text-align: center;
    }

    .faq-badge {
        display: block;
        margin: auto;
    }
}



.listingss {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 40px;
}

.listing-wrapper {
    width: 100%;
    max-width: 976px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #ececec;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured, .image-featured {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tittle {
    width: 50%;
    padding: 0px 20px;
    box-sizing: border-box;
}

.badge-background {
    background-color: black;
    color: white;
    border-radius: 50px;
    width: fit-content;
    padding: 8px 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.badge-tittle {
    text-align: center;
}

.paragraph-top {
    color: #606476;
    font-size: 16px;
    line-height: 1.6;
    max-width: 430px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .listing-wrapper {
        flex-direction: column;
        height: auto;
        max-width: 90%;
    }

    .featured,
    .tittle {
        width: 100%;
        height: auto;
    }

    .image-featured {
        width: 100%;
        height: auto;
        border-radius: 20px 20px 0 0;
    }

    .tittle {
        padding: 20px;
    }

    .paragraph-top {
        width: 100%;
        text-align: center;
    }

    .badge-background {
        margin: 0 auto 16px auto;
    }
}
#features {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 20px;
    text-align: center;
    margin-top: 250px;
}

#features img {
    width: 100%;
    max-width: 976px;
    border-radius: 20px;
    margin-top: 30px;
}

.section-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

#features h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

#features p {
    font-size: 18px;
    color: gray;
    line-height: 1.6;
}

/* Responsive Media Query */
@media screen and (max-width: 768px) {
    #features {
        padding: 30px 15px;
    }

    #features h2 {
        font-size: 26px;
    }

    #features p {
        font-size: 16px;
    }
}


@media screen and (max-width: 1024px) {
    .navbar {
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      padding: 15px 20px;
      width: 100%;
    }
  
    .nav-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }
  
    .contact-btn {
      padding: 8px 16px;
      font-size: 14px;
    }
  
    .custom-translate,
    .social-icons {
      justify-content: center;
      gap: 12px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px;
      width: 100%;
    }
  
    .logo {
      margin: 0;
    }
  
    .nav-links {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  
    .contact-btn {
      width: 100%;
      max-width: 200px;
    }
  
    .custom-translate {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .social-icons {
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  


  nav {
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    margin: 20px 0px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  nav .logo {
    color: #111;
    font-size: 28px;
    font-weight: bold;
  }
  
  nav .nav-items {
    display: flex;
    flex: 1;
    padding: 0 0 0 40px;
  }
  
  nav .nav-items li {
    list-style: none;
    padding: 0 15px;
  }
  
  nav .nav-items li a {
    color: #111;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }
  
  nav .nav-items li a:hover {
    color: #f0835a;
  }
  
  nav .menu-icon,
  nav .cancel-icon {
    font-size: 20px;
    color: #111;
    cursor: pointer;
    display: none;
    padding: 0 20px;
  }
  
  /* ========== Responsive ========== */
  @media (max-width: 1140px) {
    nav {
      padding: 0 20px;
    }
  
    nav .logo {
      flex: 1;
      text-align: center;
    }
  
    nav .nav-items {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: #ffffff;
      text-align: center;
      display: inline-block;
      transition: left 0.3s ease;
      z-index: 98;
      padding-top: 50px;
    }
  
    nav .nav-items.active {
      left: 0;
    }
  
    nav .nav-items li {
      margin: 25px 0;
    }
  
    nav .menu-icon {
      display: block;
    }
  
    nav .menu-icon span {
      display: block;
    }
  
    nav .cancel-icon {
      display: none;
    }
  
    nav .cancel-icon.show {
      display: block;
    }
  }

  .cancel-icon {
    display: none;
    font-size: 24px;
    color: #111;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1000;
  }
  
  .cancel-icon.show {
    display: block;
  }
  

  .menu-icon.open span {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }


  /* Desktop styles - apply only when screen is wider than 980px */
@media (min-width: 981px) {
    nav {
      background: white;
      padding: 15px 50px;
      height: auto;
      justify-content: space-between;
      align-items: center;
      border-radius: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 1200px;
      z-index: 999;
    }
  
    nav .logo {
      font-size: 24px;
      font-weight: 700;
    }
  
    nav .nav-items {
      display: flex;
      flex: 1;
      justify-content: center;
      padding-left: 40px;
      position: static;
      height: auto;
      background: transparent;
    }
  
    nav .nav-items li {
      margin: 0 15px;
      list-style: none;
    }
  
    nav .nav-items li a {
      color: black;
      font-size: 16px;
      text-decoration: none;
      font-weight: 500;
    }
  
    /* Hide hamburger icon on desktop */
    .menu-icon {
      display: none !important;
    }
  }
  
  .svg-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/cool-background.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.15; /* Optional: make it subtle */
  }

  .background-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
  }
  
  


  #particles-js {
    position: fixed; /* fixed makes it stay in place when scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  