/* General Styles */
:root {
    --primary-color: #0091cd;
    --secondary-color: #f8f9fa;
    --dark-color: #023e57;
    --light-color: #f8f9fa;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* Header Styles */
.navbar {
    padding: 1rem;
    background-color: #fff !important;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #333;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: background-color 0.3s;
}

/* Stats Section */
.stats-section {
    background-color: #fff;
    padding-top: 4rem;
}

.stat-box {
    text-align: center;
    padding: 1rem 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

/* Values Section */
.values-section {
    background-color: #fff;
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    font-weight: bold;
}

.value-card {
    background-color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 0;
    overflow: hidden;
}

.value-header {
    color: white;
    background-color: var(--primary-color);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.value-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

.value-header .icon {
    margin-right: 1rem;
    font-size: 1rem;
}

.value-content {
    padding: 1rem;
    color: white;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-contact h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item i {
    color: #ffffff;
    margin-top: 2px;
    min-width: 20px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0 20px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}

/* Page Title */
.page-title {
    background-color: var(--light-color);
    padding: 2rem 0;
}

.page-title h1 {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }
    
    .hero-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 50vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* Project Cards Styles */
.project-card {
    margin-bottom: 2rem;
    border: none;
}

.project-img {
    overflow: hidden;
}

.project-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.project-location {
    color: #666;
    font-size: 0.9rem;
}

.project-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Property Cards Styles */
.property-card {
    margin-bottom: 2rem;
    border: 1px solid #eee;
}

.property-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.property-location {
    font-size: 0.85rem;
    color: #666;
}

.property-details {
    font-size: 0.85rem;
    color: #666;
}

/* Page Hero Section */
.page-hero-section {
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-serif;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* About Content Styles */
.about-content .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Project Items */
.project-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.project-item img {
    border-radius: 8px;
}

.project-placeholder {
    border: 2px dashed #ddd;
}

/* Value Items */
.value-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Team Section */
.team-section {
    background-color: #f8f9fa;
}

.team-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.team-photo {
    position: relative;
    display: inline-block;
}

.team-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #2c5aa0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-photo::after {
    opacity: 1;
}

.team-card h5 {
    color: #2c5aa0;
    font-weight: bold;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .project-item,
    .value-item {
        margin-bottom: 20px;
    }
    
    .value-item:hover {
        transform: none;
    }
    
    .project-item:hover {
        transform: none;
    }
}

.property-price h5 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Filter Card Styles */
.filter-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Custom Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
} 



/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 75vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    height: 75vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.project-name {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
}

.project-name small {
    font-size: 0.9rem;
    color: var(--primary-color);
    background: var(--light-color);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 100%;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    opacity: 0.5;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: white;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .project-name {
        bottom: 20px;
        left: 20px;
    }
    
    .project-name small {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-slide {
        min-height: 500px;
    }
    
    .hero-slider {
        min-height: 500px;
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0091cd;
    margin-bottom: 60px;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.nav-link {
    font-weight: 600;
    color: #fff !important;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: #0091cd;
    padding: 10px 20px;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #1a3a70;
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 40px;
    }
}

/* Hero Section */
.page-hero-section {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-hero-content {
    position: absolute;
    bottom: 20%;
    left: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    max-width: 550px;
}

.page-hero-content h1 {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
}
.text-primary {
    color: var(--primary-color) !important;
}