:root {
    --primary-color: #3b4c44;
    --accent-color: #d9b26f;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-family: 'Tahoma', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 1001;
}

.nav-brand a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-brand a:hover {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

/* Add this to your css/style.css */
.nav-brand .logo-image {
    height: 60px; 
    width: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Aligns image nicely if there's text next to it, though not in this case */
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: 0.4s;
    display: block;
    position: relative;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .burger-menu {
        display: block !important;
        position: relative;
        z-index: 1002;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        z-index: 1001;
        padding: 2rem;
        display: flex;
    }

    .nav-links.active {
        right: 0;
        display: flex;
    }

    .nav-links a {
        display: block;
        margin: 1.5rem 0;
        font-size: 1.2rem;
        color: var(--white);
        text-decoration: none;
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--accent-color);
    }

    /* Burger Menu Animation */
    .burger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--white);
    }

    .burger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--white);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Ensure navbar is visible on all pages */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
        background-color: var(--primary-color);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Responsive Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Responsive Property Grid */
    .property-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive Article Grid */
    .article-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .contact-container {
        display: flex !important;
        flex-direction: column !important;
    }
    .contact-info {
        order: 1 !important;
    }
    .contact-form {
        order: 2 !important;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 6rem 2rem 4rem;
    margin-top: 0;
    background-image: url('../img/hero.png'); /* Updated background image */
    background-size: cover; /* Ensure image covers the area */
    background-position: center center; /* Center the image */
    background-repeat: no-repeat; /* Prevent tiling */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensure content is above the ::before overlay */
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Tahoma', sans-serif;
    font-size: 3.5rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin: 0 0 2.5rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Properties Section */
.featured-properties {
    padding: 5rem 5%;
    background: var(--light-bg);
}

h2 {
    font-family: 'Tahoma', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.property-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    position: relative;
    height: 250px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.property-info {
    padding: 1.5rem;
}

.property-info h3 {
    font-family: 'Tahoma', sans-serif;
    margin-bottom: 0.5rem;
}

.property-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    color: #666;
}

/* Page Header */
.page-header, header {
    color: #fff !important;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.page-header h1 {
    font-family: 'Tahoma', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Properties Page */
.properties-grid {
    padding: 4rem 5%;
}

.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filters select {
    padding: 0.8rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background-color: white;
    min-width: 200px;
}

.property-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.property-card .featured {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.property-card .view-details {
    display: block;
    width: 100%;
    padding: 0.8rem;
    margin-top: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.property-card .view-details:hover {
    background: #333;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    font-size: 1.1rem;
    color: #666;
}

/* About Page */
.about-section {
    padding: 4rem 5%;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.mission, .vision {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mission i, .vision i {
    font-size: 2.5rem;
    color: #d9b26f;
    margin-bottom: 1rem;
}

.mission h3, .vision h3 {
    font-family: 'Tahoma', sans-serif;
    margin-bottom: 1rem;
    color: #d9b26f;
}

.team-section {
    margin-top: 6rem;
    text-align: center;
}

.team-section h2 {
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f8f9fa;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-family: 'Tahoma', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-member .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    background: var(--light-bg);
    margin-top: 4rem;
}

.achievement-item {
    text-align: center;
}

.achievement-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.contact-info h2, .contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;    
    color: var(--primary-color);    
    font-family: 'Tahoma', sans-serif;
}

.contact-method {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.contact-method h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-method p {
    margin: 0.2rem 0;
    color: #666;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #c29a2e;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.story-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 500px; /* Fixed height */
    background: #fff; /* Fallback background */
}

.story-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Company Section */
.company-section {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.company-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat fixed;
    background-size: cover;
    z-index: -1;
}

.company-container {
    max-width: 1200px;
    margin: 0 auto;
}

.company-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 2rem;
    border-radius: 30px;
    border: 1px solid var(--accent-color);
}

.company-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: white;
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--accent-color);
    margin: 1rem 0;
}

.highlight-card p {
    color: #eee;
    line-height: 1.6;
}

.highlight-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.company-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-items: stretch;
    margin: 4rem 0;
}

.story-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h3 {
    font-family: 'Tahoma', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #eee;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Awards Grid Section */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 3.5rem auto;
  padding: 0 10px;
}

.awards-heading {
  font-size: 2.1rem;
  color: #d4af37;
  font-family: 'Tahoma', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}
.awards-heading i {
  color: #d4af37;
  margin-right: 12px;
}
.awards-underline {
  width: 90px;
  height: 5px;
  margin: 0.5rem auto 2.2rem auto;
  background: linear-gradient(90deg, #f3e7c1 0%, #d4af37 50%, #fffbe6 100%);
  border-radius: 6px;
}

.creative-awards .award-card {
  background: linear-gradient(135deg, #fffbe6 60%, #f3e7c1 100%);
  border-radius: 18px 18px 16px 16px;
  box-shadow: 0 6px 32px 0 rgba(212, 175, 55, 0.13), 0 2px 10px rgba(0,0,0,0.04);
  padding: 36px 20px 28px 20px;
  text-align: center;
  font-weight: 600;
  color: #222;
  font-size: 1.09rem;
  position: relative;
  border: none;
  overflow: visible;
  z-index: 1;
  transition: transform 0.18s, box-shadow 0.18s;
}
.creative-awards .award-card:hover {
  transform: translateY(-10px) scale(1.04) rotate(-1deg);
  box-shadow: 0 12px 36px 0 rgba(212, 175, 55, 0.23), 0 4px 18px rgba(0,0,0,0.09);
}
.creative-awards .award-card .award-logo {
  display: block;
  margin: 0 auto 14px auto;
  max-width: 100px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 10px;
  border: 2px solid #e5c86b;
  box-shadow: 0 2px 12px rgba(212,175,55,0.18), 0 1px 3px rgba(0,0,0,0.07);
  padding: 6px 8px;
  transition: box-shadow 0.18s, border 0.18s;
}
.creative-awards .award-card .award-logo:hover {
  box-shadow: 0 4px 18px 0 rgba(212, 175, 55, 0.32), 0 2px 8px rgba(0,0,0,0.10);
  border: 2.5px solid #d4af37;
}
.creative-awards .award-card i {
  color: #d4af37;
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 8px #ffe066);
  animation: glow 2s infinite alternate;
}
@keyframes glow {
  from { filter: drop-shadow(0 0 8px #ffe066); }
  to { filter: drop-shadow(0 0 16px #fffbe6); }
}
.award-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #d4af37 60%, #fffbe6 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
  padding: 3px 18px 4px 18px;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px rgba(212,175,55,0.18);
  letter-spacing: 0.5px;
  z-index: 2;
  border: 1.5px solid #fffbe6;
}

/* Magazine Section */
.magazine-section {
    padding: 5rem 5%;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1400px;
}

.feature-article {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-article:hover {
    transform: translateY(-5px);
}

.article-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.article-image img {
    transition: transform 0.5s ease;
}

.feature-article:hover .article-image img {
    transform: scale(1.05);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 2rem;
}

.article-content h3 {
    font-family: 'Tahoma', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.article-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 6rem 5%;
    background-color: #f9f9f9;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Tahoma', sans-serif;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #b38a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: 'Tahoma', sans-serif;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 2.6rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.whatsapp-float:hover {
  background: #128c7e;
  color: #fff;
  text-decoration: none;
}
.whatsapp-float,
.whatsapp-float:visited,
.whatsapp-float:active {
  text-decoration: none !important;
  outline: none;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-logo {
    height: 100px; /* Adjust as needed */
    padding-top: 5%;
   /* margin-bottom: 1rem;  Space between logo and the text below */
    display: block; /* Ensures it takes its own line and margin works correctly */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 5%;
}

.footer-section h4 {
    font-family: 'Tahoma', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-section a {
    display: block;
    color: #ddd;
    margin-bottom: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-section p {
    color: #ddd;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .company-story {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .story-image {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 5rem 1.5rem 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    
    .property-grid,
    .article-grid {
        grid-template-columns: 1fr;
    }
}
