*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 100; /* 100 = Extra Thin */
}

    

nav{
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    background: #777;
    color: white;
    max-width: 100%;
    justify-content: space-between;
    z-index: 1000;
    font-size: 20px;
    font-weight: bold;

}
.logo{
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-top: 10px;
}
.logo img{
    height: 50px;
    width: 50px;
    border-radius: 50%;

}
.logo span{
    margin-left: 10px;
}
nav ul li {
    list-style: none;
    display: inline;
    align-items: center;
    margin: 0 15px;
    
}
 nav ul li a {
    color: inherit;
    list-style: none;
    text-decoration: none;
    font-weight: bold;
}
.profile{
    display: flex;
    align-items: center;

}
.profile img{
    height: 40px;
    max-width: 100%;

}
.profile span{
    margin-right: 10px;
    margin-left: 10px;
    cursor: pointer;
}
/* Intro Section */
.intro {
    background: linear-gradient(to right, #2c3e50, #4ca1af); /* Vibrant Gradient */
    color: white;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-content {
    display: flex;
    max-width: 1100px;
    width: 90%;
    align-items: center;
    text-align: left;
}

.intro-text {
    flex: 1;
}

.intro-text h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.intro-text span {
    color: #f1c40f; /* Gold color for Highlight */
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    background: #f1c40f;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
    transition: 0.3s;
}

.btn:hover {
    background: #e67e22;
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

/* Intro Image */
.intro-image img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        text-align: center;
    }
    .intro-image img {
        margin-top: 20px;
        width: 80%;
    }
}
/* Services Section */
.services {
    background: linear-gradient(to right, #2c3e50, #4ca1af); /* Same Color Combination */
    color: white;
    text-align: center;
    padding: 50px 0;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }
}
/* Property Listings Section */
.properties {
    background: linear-gradient(to right, #2c3e50, #4ca1af); /* Matching Theme */
    color: white;
    text-align: center;
    padding: 50px 0;
}

.properties h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.properties-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.property-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    text-align: left;
}

.property-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.property-card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 10px;
}

.property-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.property-card p {
    font-size: 16px;
    margin-bottom: 10px;
}

.view-details {
    display: inline-block;
    background: #f1c40f;
    color: #333;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.view-details:hover {
    background: #e67e22;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .properties-container {
        flex-direction: column;
        align-items: center;
    }
}
/* Testimonials Section */
.testimonials {
    background: linear-gradient(to right, #2c3e50, #4ca1af);
    color: white;
    text-align: center;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Container for Sliding Cards */
.testimonials-container {
    display: flex;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
    white-space: nowrap;
    animation: slide 25s linear infinite;
}

/* Individual Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 10px;
    width: 350px;
    text-align: left;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: inline-block;
    flex-shrink: 0;
    white-space: normal;
    word-wrap: break-word;
    opacity: 0.9;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Testimonial Text */
.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    font-size: 20px;
    font-weight: bold;
    color: #f1c40f;
    margin-top: 10px;
}

/* Sliding Animation (Smooth Left to Right, No Jumping) */
@keyframes slide {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 1; } /* Cards fade in */
    90% { opacity: 1; } /* Stay visible */
    100% { transform: translateX(100%); opacity: 0; } /* Fade out */
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center;
        animation: none;
    }
    .testimonial-card {
        width: 90%;
    }
}
/* Agents Section */
.agents {
    background: linear-gradient(to right, #2c3e50, #4ca1af); /* Matching Theme */
    text-align: center;
    padding: 60px 0;
}

.agents h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff; /* White text for heading */
    font-weight: bold;
}

/* Agents Container */
.agents-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Agent Card */
.agent-card {
    background: rgba(255, 255, 255, 0.1); /* Slightly transparent card background */
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    text-align: center;
    transition: transform 0.3s ease-in-out;
    border: 2px solid #ffffff; /* White border */
}

.agent-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2); /* Soft hover effect */
}

/* Agent Image */
.agent-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #ffffff; /* White border for professional look */
}

/* Agent Name */
.agent-card h3 {
    font-size: 22px;
    color: #ffffff; /* White text */
    margin-bottom: 10px;
}

/* Agent Description */
.agent-card p {
    font-size: 16px;
    color: #dfe6e9; /* Light gray text */
}

/* Responsive Design */
@media (max-width: 768px) {
    .agents-container {
        flex-direction: column;
        align-items: center;
    }

    .agent-card {
        width: 90%;
    }
}
/* Contact Us Section */
.contact {
    background: linear-gradient(to right, #2c3e50, #4ca1af); /* Matching Theme */
    padding: 60px 0;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Input Fields */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
}

/* Placeholder Text */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

/* Submit Button */
.contact-form button {
    width: 100%;
    padding: 12px;
    background: #ffffff;
    color: #2c3e50;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

.contact-form button:hover {
    background: #4ca1af;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        width: 90%;
    }
}
/* Footer Section */
.footer {
    background: linear-gradient(to right, #2c3e50, #4ca1af); /* Matching Theme */
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: bold;
}

.footer-links h3, 
.footer-contact h3, 
.footer-social h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #f1c40f;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 16px;
}

.social-icons a {
    margin: 0 8px;
    display: inline-block;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease-in-out;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo, 
    .footer-links, 
    .footer-contact, 
    .footer-social {
        margin-bottom: 20px;
    }
}
