/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    /* line-height: 1.6; */
    color: #333;
    background-color: #f8f8f8;
    /* font-family: 'Google Sans Text'; */
    font-style: normal;
    /* font-weight: 400; */
    src: url() format('woff2');
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgb(42, 39, 45);
    /* background: linear-gradient(95deg, rgba(42, 39, 45, 1) 0%, rgba(69, 71, 77, 1) 100%); */
    background-color: #553285;
    /* background-color: #fff; */
    color: #fff;

    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .nav-links {
    list-style-type: none;

    display: flex;
    gap: 20px;
    /* Adds spacing between links */
}

.navbar .nav-links li {
    margin: 0;
}

.navbar .nav-links a {
    color: #fff;
    /* color: #333; */
    text-decoration: none;
    font-size: 1.5rem;
}

.navbar .nav-links a:hover {
    text-decoration: underline;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Side Navbar Styling */
.side-nav {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    /* background-color: #333; */
    background-color: #553285;
    padding: 20px;
    transition: 0.3s;
    z-index: 1000;
}

.side-nav .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    float: right;
    cursor: pointer;
}

.side-nav-links {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.logo {
    display: flex;
    align-items: center;
    /* Center items vertically */
    gap: 10px;
    /* Adds space between the image and text */
}

.logo a {
    display: flex;
    align-items: center;
    /* Center items vertically inside the anchor tag */
    text-decoration: none;
    /* Removes underline from the anchor text */
}

.logo img {
    height: 50px;
    /* Keeps the image height as you specified */
    margin-right: 10px;
    border-radius: 8px;
    max-width: 100%;
    /* Ensures the image scales properly */
}

.logo h1 {
    color: #fff;
    /* color: #333; */
    font-size: 1.9rem;
    /* Adjust font size as needed */
    margin: 0;
    /* Removes default margin around the heading */
    font-weight: bold;
    /* Adjust font weight if needed */
    white-space: nowrap;
    /* Prevents text from wrapping */
}

/* Responsive adjustments for tablet */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 30px;
        /* Adjust padding */
        /* flex-direction: column; */
        /* Stack logo and links vertically */
    }

    .logo {
        gap: 5px;
        /* Reduce gap between elements on smaller screens */
    }

    .logo img {
        height: 40px;
        margin-right: 10px;
        /* Reduce the size of the logo on smaller screens */
    }

    .logo h1 {
        font-size: 1.3rem;
        /* Reduce the font size for better fit */
    }

    .menu-btn {
        display: block;
        color: #fff;
    }

    .nav-links {
        flex-direction: row;
        /* Keep nav links side by side */
        margin-top: 20px;
        gap: 10px;
        display: none;
        /* Adjust gap as needed */
    }

    .navbar .nav-links a {
        color: #fff;
        /* color: #333; */
        text-decoration: none;
        font-size: 1.2rem;
        display: none;
        ;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 480px) {
    .navbar {
        padding: 15px;
        /* Further reduce padding for smaller screens */
        /* flex-direction: column; */
        /* Stack the logo and nav vertically */
    }

    .logo {
        flex-direction: column;
        /* Stack the logo and text vertically on very small screens */
        align-items: flex-start;
        /* Align items to the start */
    }

    .logo a {
        gap: 0px;
    }

    .logo h1 {
        font-size: 1.3rem;
        /* Further reduce the font size */
    }

    .nav-links {
        flex-direction: row;
        /* Keep nav links side by side */
        gap: 10px;
        /* Adjust gap between links for better spacing */
        margin-top: 10px;
        /* Add spacing above the links */
        align-items: center;
        /* Center the links vertically */
        display: none;
    }

    .navbar .nav-links a {
        color: #fff;
        /* color: #333; */
        text-decoration: none;
        font-size: 1.2rem;
        display: none;
        ;
    }
}

/* Navbar Styles */

/* Hero Section */
.hero {
    background: url('https://cdn.glitch.global/4f30feda-0e24-487b-bc62-6f7d798498a7/29272697-7717-46fc-8a97-5695a6fab524.home.png?v=1734977746046') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h2 {
    font-size: 4rem;
    font-weight: bolder;
    /* margin-bottom: 0.2rem; */
    color: #333;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: bolder;
    color: #333;
}

.hero .btn {
    padding: 0.8rem 2rem;
    background: #f77b3e;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

 .mySlides {
     display: none;
 }

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    /* Adjusted padding for smaller screens */
}

.main-content h2 {
    color: #553285;
    font-weight: bolder;
    font-size: 50px;
    text-align: center;
}

.programs {
    margin: 20px auto;
    text-align: center;
}

.programs h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* Default: 5 items per row */
    gap: 20px;
}

.program {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* Center content horizontally */
    height: 250px;
    /* Set a fixed height for all cards */
}

.program:hover {
    transform: scale(1.05);
}

.program img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    display: block;
    /* Ensures it behaves like a block element */
    margin-left: auto;
    margin-right: auto;
    /* Centers image horizontally */
}
.program p {
    font-size: 20px;
    font-weight: bolder;
    color: #553285;
    margin: 10px 0;
    /* Consistent spacing around text */
    flex-grow: 1;
    /* Ensures the text area takes available space evenly */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .program-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 items per row for medium screens */
    }
}

@media (max-width: 992px) {
    .program-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 items per row for smaller screens */
    }
}

@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 items per row for tablets */
        gap: 15px;
    }

    .main-content h2 {
        font-size: 36px;
        /* Adjusted title font size for tablets */
    }
}

@media (max-width: 480px) {
    .program-grid {
        grid-template-columns: 1fr;
        /* Single column for mobile devices */
        gap: 10px;
    }

    .main-content h2 {
        font-size: 28px;
        /* Adjusted title font size for smaller devices */
    }

    .program p {
        font-size: 18px;
        /* Adjusted text size for smaller devices */
    }
}


.journey-section {
    text-align: center;
    padding: 50px 20px;
}

.journey-header h1 {
    font-size: 40px;
    font-weight: bolder;
    color: #333;
    margin-bottom: 10px;
}

.journey-header .highlight {
    color: #553285;
    /* Matches the orange color */
}

.journey-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card-journey {
    /* background-color: #fff; */
    /* border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    padding: 20px;
    text-align: center;
    max-width: 350px;
    flex: 1;
}

.card-journey img {
    /* width: 80px;
    height: 80px; */
    margin-bottom: 15px;
}

.card-journey h3 {
    font-size: 25px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.card-journey p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .journey-cards {
        flex-direction: column;
        align-items: center;
    }

    .card-journey {
        max-width: 90%;
    }
}

/* Global Styles */

.slider {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.slides {
    display: flex;
    animation: slideAnimation 10s infinite;
    width: 100%;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.text-overlay {
    color: white;
    text-align: center;
    z-index: 2;
    padding: 0 2rem;
}

.text-overlay h1 {
    font-size: 3rem;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-weight: bolder;
    margin-bottom: 1rem;
}
.text-overlay p {
    font-size: 1.5rem;
    color: white;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

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

.btn {
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #28a745;
    color: white;
}

.btn-secondary:hover {
    background-color: #19692c;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .text-overlay h1 {
        font-size: 1.8rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 768px) {
    .text-overlay h1 {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
        .text-overlay p {
            font-size: 1rem;
        }
}

@media (max-width: 480px) {
    .text-overlay h1 {
        font-size: 2rem;
    }

    .btn {
        font-size: 2rem;
        padding: 0.4rem 0.6rem;
    }
        .text-overlay p {
            font-size: 1.5rem;
        }
}

@keyframes slideAnimation {

    0%,
    20% {
        transform: translateX(0);
    }

    25%,
    45% {
        transform: translateX(-100%);
    }

    50%,
    70% {
        transform: translateX(-200%);
    }

    75%,
    100% {
        transform: translateX(-300%);
    }
}

.button-ui {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    /* Green background */
    color: white;
    /* White text */
    text-decoration: none;
    /* Remove underline */
    font-size: 16px;
    /* Adjust font size */
    font-weight: bold;
    /* Make text bold */
    border-radius: 5px;
    /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: background-color 0.3s ease, transform 0.2s ease;
    /* Smooth hover effects */
    margin-top: auto;
}

.button-ui:hover {
    background-color: #45a049;
    /* Darker green on hover */
    transform: translateY(-3px);
    /* Slightly lift on hover */
}

.button-ui:active {
    background-color: #3e8e41;
    /* Even darker green on click */
    transform: translateY(1px);
    /* Slight push-down on click */
}

/* Services Section */
.services {
    padding: 3rem 0;
    background: #f4f4f4;
}

.services h2 {
    font-size: 2rem;
    align-items: center;
    margin-bottom: 1rem;
    color: #333;
}

.service-cards {
    display: flex;
    justify-content: space-between;
}

.card {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #ddd;
    flex-basis: 30%;
    text-align: center;
}

.card h3 {
    margin-bottom: 1rem;
}

/* Property Listings Section */
.properties {
    padding: 3rem 0;
}

.properties h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.property-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.property-card {
    background: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    flex-basis: 30%;
}

/* .property-card img {
    width: 100%;
    height: auto;
} */

.property-card h3 {
    margin: 1rem 0;
}

/* About Us Section */
.about {
    padding: 3rem 0;
    background: #f4f4f4;
    text-align: center;
}

.about h2 {
    color: #555;
}

.about p {
    max-width: 700px;
    margin: auto;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
}

form {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 2rem;
    border: 1px solid #ddd;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
}

textarea {
    resize: none;
    height: 150px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #333;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border: none;
}

/* Footer */
.footer {
    background: #333;
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
}

.footer a {
    text-decoration: none;
    color: #ffffff;
}

.footer p {
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .service-cards,
    .property-list {
        flex-direction: column;
        gap: 1rem;
    }


}

/* Property Section */
.property-section {
    padding: 2rem 0;
}

/* Property Listing */
.property-listing {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Property Card */
.property-card-index {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    flex-basis: calc(33.333% - 20px);
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

.property-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    object-fit: cover;
}

.property-title {
    font-size: 1.5rem;
    color: #1E2A39;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-price {
    font-size: 1.25rem;
    color: #0066cc;
    margin-bottom: 10px;
    font-weight: bold;
}

.property-bedrooms {
    font-size: 1rem;
    color: #D8A976;
    margin-bottom: 10px;
    font-weight: bold;
}

.property-description {
    text-align: left;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-listing {
        flex-direction: column;
    }

    .property-card-index {
        flex-basis: 100%;
    }
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-section {
    position: relative;
    background-image: url('https://cdn.glitch.global/4f30feda-0e24-487b-bc62-6f7d798498a7/2d3c577c-830d-40cf-aae7-c0a0f30de152.image.png?v=1735640636132');
    /* Replace with your background image path */
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.test-section-title {
    text-align: center;
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    z-index: 1;
    color: #ffffff;

}

.testimonials {
    display: flex;
    justify-content: space-between;
    z-index: 1;
    position: relative;
}

.testimonial {
    flex-basis: calc(33.333% - 20px);
    padding: 20px;
    text-align: center;
}

.quote {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-style: italic;
    color: #ffffff;
}

.author {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        flex-direction: column;
    }

    .testimonial {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

.features-section {
    background-color: #fff;
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2b3e50;
    margin-bottom: 3rem;
}

.features {
    display: flex;
    justify-content: space-between;
}

.feature-item {
    flex-basis: calc(33.333% - 20px);
    text-align: center;
}

.feature-item h2 {
    color: #333;
}

.icon img {
    max-width: 50px;
    /* Adjust size as needed */
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.2rem;
    color: #2b3e50;
    font-weight: bold;
    margin-bottom: 1rem;
}

.description {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }

    .feature-item {
        flex-basis: 100%;
        margin-bottom: 2rem;
    }
}

.rooms-section {
    padding: 3rem 0;
    text-align: center;
}

.rooms {
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap onto the next line */
    gap: 20px;
    justify-content: space-between;
}

.room-item {
    flex-basis: calc(33.333% - 20px);
    /* Each item takes up 1/3 of the row */
    text-align: center;
    margin-bottom: 2rem;
    /* Adds some space between the rows */
}

.room-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

.room-title {
    font-size: 1.5rem;
    color: #2b3e50;
    font-weight: bold;
    margin-bottom: 1rem;
}

.description {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rooms {
        flex-direction: column;
    }

    .room-item {
        flex-basis: 100%;
        margin-bottom: 2rem;
    }
}

.services-offered-section {
    background-color: #fff;
    padding: 3rem 0;
    text-align: center;
    border-radius: 8px;
    /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); */

}

.section-title {
    font-size: 2rem;
    color: #2b3e50;
    font-weight: bold;
    margin-bottom: 2rem;
}

.services-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
}

.services-list li {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 1rem;
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-list li:hover {
    background-color: #e0e0e0;
    transform: translateY(-5px);
}

.coming-soon {
    font-size: 1.1rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .services-offered-section {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services-list li {
        font-size: 1.15rem;
    }

    .coming-soon {
        font-size: 1rem;
    }
}

.left-section {
    flex: 1;
    padding-right: 2rem;
}

.right-section {
    flex: 1;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #dcdcdc;
    text-transform: uppercase;
}

p {
    font-size: 1rem;
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

form {
    /*     background-color: #2c3e50; */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.input-box {
    flex: 1;
    margin-right: 1rem;
}

.input-box.full-width {
    flex: 100%;
    margin-right: 0;
}

label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem;
    /*     border: 1px solid #dcdcdc; */
    border-radius: 4px;
    background-color: #34495e;
    color: #ffffff;
    font-size: 1rem;
}

textarea {
    height: 100px;
    resize: none;
}

input[type="radio"] {
    margin-right: 0.5rem;
}

.radio-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

button.submit-btn {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.submit-btn:hover {
    background-color: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-section,
    .right-section {
        flex: 100%;
        padding-right: 0;
    }

    .input-box {
        margin-right: 0;
    }

    .radio-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

.contactus-section {
    background: url('https://cdn.glitch.global/e2081ffb-88b9-4a6a-99f1-550a785a48b6/contact.jpg?v=1724504477776') no-repeat center center/cover;
    height: 40vh;
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #555;
}

.contact-section {
    padding: 50px;
    text-align: center;
    /*     background-color: #1f2937; */
}

.contact-header h2 {
    font-size: 2.5em;
    font-weight: bolder;
    margin: 10px 0 50px;
    color: #2b3e50;
}



.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.office-info,
.contact-form {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: left;
}

.office-info h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #2b3e50;
}

.office-info p {
    color: #000;
}


.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 10px;
    /*     border: none; */
    border-radius: 4px;
    background-color: #fff;
    color: #000;
}

textarea {
    resize: vertical;
}

.contact-form button {
    padding: 15px;
    border: none;
    border-radius: 4px;
    /* Red submit button */
    background-color: #553285;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
}

.about-section {
    padding: 20px;
    max-width: 800px;
    margin: 40px auto;
}

.about-section h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.business-info {
    line-height: 1.8;
}

.business-info h2 {
    margin-bottom: 20px;
    color: #34495e;
    font-size: 1.5em;
}

.business-info p {
    margin: 10px 0;
    font-size: 1.1em;
}

.business-info strong {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 15px;
        margin: 20px;
    }

    .about-section h1 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .business-info h2 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .business-info p {
        font-size: 1em;
        margin: 8px 0;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 30px;
    }

    .contact-content {

        gap: 0px;
    }

    .office-info {
        flex: 1 1 210px;
    }

    .office-info p {
        margin-bottom: 0px;
    }

    .about-section {
        padding: 10px;
        margin: 10px;
    }

    .about-section h1 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .business-info h2 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .business-info p {
        font-size: 0.9em;
        margin: 5px 0;
    }
}

.our-team-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    flex-wrap: wrap;
}

.our-team-title h2 {
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    flex-basis: 30%;
    color: #34495e;
}

.our-team-content {
    flex-basis: 60%;
    font-family: 'Sans-Serif', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .our-team-section {
        flex-direction: column;
        text-align: center;
    }

    .our-team-title h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .our-team-content {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .our-team-title h2 {
        font-size: 35px;
    }

    .our-team-content {
        font-size: 14px;
    }
}

.our-agents-section {
    text-align: center;
    padding: 50px 10%;
    background-color: #f4f4f4;
}

.our-agents-section h2 {
    font-family: 'Sans-Serif', sans-serif;
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.agents-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.agent-card {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-basis: 30%;
    text-align: left;
}

.agent-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.agent-card h3 {
    font-family: 'Sans-Serif', sans-serif;
    font-size: 22px;
    margin: 15px 0 5px 0;
    color: #333;
}

.agent-card .role {
    font-size: 18px;
    color: #337ab7;
    margin-bottom: 15px;
}

.agent-card p {
    font-family: 'Sans-Serif', sans-serif;
    font-size: 16px;
    color: #666;
}

@media (max-width: 768px) {
    .agent-card {
        flex-basis: 45%;
    }
}

@media (max-width: 480px) {
    .agent-card {

        flex-basis: 100%;
    }
}

.revealUp {
    opacity: 0;
    visibility: hidden;
}

.section {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.tabs {
    display: flex;
    justify-content: center;
    margin: 40px;
}

.tab-link {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    background-color: transparent;
    font-size: 16px;
    color: #333;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-link.active {
    border-bottom: 2px solid #d4a653;
}

.property-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.property-card {
    border: 1px solid #ddd;
    padding: 10px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.property-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.property-card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.property-card p {
    margin: 5px 0;
    color: #555;
}

.property-card a {
    background-color: #1a2a6c;
    color: white;
    padding: 10px 0;
    /* Adjust vertical padding only */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 200px;
    /* Set a fixed width for all links */
    border-radius: 5px;
    /* Optional: Rounded corners */
}

.property-card a:hover {
    background-color: #162b58;
    /* Slightly darker shade on hover */
    transform: scale(1.05);
    /* Subtle zoom effect */
}

.whatsapp-button {
    position: fixed;
    bottom: 40px;
    right: 10px;
    background-color: #29be60;
    border-radius: 50px;
    padding: 8px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
    /*     margin-right: 5px; */
}

.instagram-button {
    position: fixed;
    bottom: 100px;
    right: 10px;
    background-color: #ea3a3a;
    border-radius: 50px;
    padding: 8px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.instagram-button img {
    width: 30px;
    height: 30px;
    /* margin-right: 5px; */
}

.facebook-button {
    position: fixed;
    bottom: 160px;
    right: 10px;
    background-color: #0f67c0;
    border-radius: 50px;
    padding: 8px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.facebook-button img {
    width: 30px;
    height: 30px;
    /* margin-right: 5px; */
}

.properties-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

}

.dropdown {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}

.dropdown p {
    text-align: center;
    font-size: x-large;
    color: #333;
    margin-bottom: 10px;
}

.dropdown select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    /* .tabs {
        flex-direction: column;
    }

    .property-card {
        max-width: 100%;
    }

    .property-list {
        flex-direction: column;
        align-items: center;
    } */

    .tabs {
        display: none;
    }

    .dropdown {
        display: block;
    }

    .property-list {
        align-items: center;
    }

}

@media (max-width: 480px) {

    /* .property-card h2 {
        font-size: 16px;
    }

    .property-card p {
        font-size: 14px;
    }

    .property-card button {
        font-size: 14px;
    } */
    .tab-link {
        display: none;
    }

    .dropdown {
        display: block;
    }

    .property-list {
        align-items: center;
    }
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-numbers {
    text-align: center;
    font-size: xx-large;
    margin: 40px 20px;
}


.phone-numbers-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* Adjust spacing between sections */
}

.phone-numbers-section {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.phone-numbers-section h2 {
    border-bottom: 2px solid #1a2a6c;
    color: #333;
    padding-bottom: 10px;
}

.phone-numbers-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.phone-numbers-section li {
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .phone-numbers-row {
        flex-direction: column;
    }

    .phone-numbers-section {
        margin-bottom: 20px;
    }

    .phone-numbers-section:last-child {
        margin-bottom: 0;
    }
}

.property-card-index a {
    background-color: #1a2a6c;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;

}
