/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    font-size: 14px;
}

/* Header */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
}

.logo img {
    max-height: 60px;
}

.tagline {
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    font-size: 24px;
    color: #28a745;
}

.info-content h6 {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.info-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* Navigation */
.navbar {
    padding: 0;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

.navbar-nav .nav-link {
    padding: 1rem;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #28a745;
}

.btn-success {
    padding: 8px 20px;
    font-weight: 500;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #666;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #28a745;
}

/* Responsive Header */
@media (max-width: 991px) {
    .header {
        padding: 15px 0;
    }

    .logo {
        align-items: center;
        margin-bottom: 0;
    }

    .logo img {
        max-height: 50px;
    }

    .contact-info {
        display: none; /* Hide contact info on mobile */
    }

    .navbar-brand {
        margin-right: auto;
    }

    .navbar > .container {
        justify-content: space-between;
        align-items: center;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
}

/* About Us Section */
.about-us {
    overflow: hidden;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.divider {
    width: 50px;
    height: 3px;
    background-color: #28a745;
    margin-bottom: 1.5rem;
}

/* Amenities Section */
.amenities {
    background-color: #fff;
}

.amenity-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(40, 167, 69, 0.2);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    position: relative;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 167, 69, 0.05);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.amenity-icon {
    width: 40px;
    height: 40px;
}

.amenity-card h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive adjustments for amenities */
@media (max-width: 768px) {
    .amenity-card {
        margin-bottom: 20px;
    }
}

/* Project Highlights Section */
.project-highlights {
    position: relative;
    overflow: hidden;
}

.highlight-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-image {
    margin-bottom: 20px;
}

.highlight-image img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.highlight-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.project-highlights .section-title {
    color: #fff;
}

/* Responsive adjustments for highlights */
@media (max-width: 768px) {
    .highlight-card {
        margin-bottom: 20px;
    }
}

/* Property View Section */
.property-view {
    padding: 80px 0;
    background-color: #fff;
}

.property-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.property-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    text-align: center;
}

.project-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-btn:hover {
    background-color: #218838;
    color: white;
    transform: translateY(-2px);
}

.property-subtitle {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Responsive adjustments for property view */
@media (max-width: 768px) {
    .property-card {
        margin-bottom: 20px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #0a4d1c;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-us .section-subtitle {
    color: #ff6b6b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.why-choose-us .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-right: 30px;
}

.benefit-icon {
    color: #ff6b6b;
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.why-choose-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-choose-us .col-lg-5 {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .why-choose-us .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .benefit-item {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .benefit-text {
        font-size: 14px;
    }

    .why-choose-image {
        margin-top: 40px;
        max-height: 400px;
    }
}

@media (min-width: 992px) {
    .why-choose-us .col-lg-7 {
        padding-right: 40px;
    }

    .why-choose-us .col-lg-5 {
        padding-left: 40px;
    }
}

/* Get in Touch Section */
.get-in-touch {
    padding: 80px 0;
    background-color: #fff;
}

.contact-subtitle {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-description {
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid #e1e1e1;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: none;
}

.form-control::placeholder {
    color: #999;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #28a745;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Form Icons */
.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 16px;
}

.textarea-icon i {
    top: 15px;
    transform: none;
}

@media (max-width: 768px) {
    .contact-form {
        margin-bottom: 30px;
    }
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    color: #28a745;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 5px;
}

.testimonial-author h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #28a745;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}

.testimonial-subtitle {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.testimonial-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}


/* Footer Section */
.footer {
    background-color: #001f2d;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-address {
    color: #fff;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-address i {
    color: #28a745;
    margin-right: 10px;
    width: 20px;
}

.footer-contact {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact i {
    color: #28a745;
    margin-right: 10px;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #28a745;
}

.footer-links i {
    color: #28a745;
    margin-right: 10px;
}

.footer-social {
    margin-top: 30px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #28a745;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: #28a745;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 30px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
    margin-top: -1px;
}

.carousel {
    position: relative;
    margin: 0;
    padding: 0;
}

.carousel-inner {
    margin: 0;
    padding: 0;
}

.carousel-item {
    height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 800px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-caption .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #28a745;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-caption .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .section-title {
        font-size: 2.2rem;
    }

    .why-choose-us .section-title {
        font-size: 2.2rem;
    }

    .benefit-text {
        font-size: 14px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    /* Header */
    .contact-info {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .info-item {
        margin-bottom: 15px;
    }

    /* Navigation */
    .navbar-nav {
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
    }

    /* About Section */
    .about-content {
        margin-top: 30px;
        text-align: center;
    }

    .about-content .divider {
        margin: 1.5rem auto;
    }

    /* Why Choose Us */
    .why-choose-us {
        padding: 60px 0;
    }

    .why-choose-image {
        margin-top: 40px;
        max-height: 400px;
        width: 100%;
    }

    /* Get in Touch */
    .contact-image {
        margin-top: 30px;
        height: 300px;
        width: 100%;
        object-fit: cover;
    }

    /* Footer */
    .footer-widget {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    /* Top Bar */
    .top-bar .row > div {
        text-align: center;
    }

    .top-bar .row > div:last-child {
        margin-top: 5px;
    }

    /* Header */
    .logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        margin: 10px 0;
    }

    /* Sections */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Amenities */
    .amenity-card {
        margin-bottom: 20px;
    }

    /* Property View */
    .property-card {
        margin-bottom: 20px;
    }

    /* Why Choose Us */
    .why-choose-us .section-title {
        font-size: 1.8rem;
    }

    .benefit-item {
        padding-right: 0;
    }

    /* Get in Touch */
    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-widget {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-links {
        margin-bottom: 20px;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 15px;
    }
}

@media (max-width: 576px) {
    /* Header */
    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-item i {
        margin-bottom: 5px;
    }

    /* Sections */
    .section-title {
        font-size: 1.8rem;
    }

    /* About */
    .about-content .btn {
        width: 100%;
    }

    /* Property View */
    .property-overlay {
        padding: 15px;
    }

    .project-btn {
        padding: 6px 15px;
        font-size: 12px;
    }

    /* Get in Touch */
    .contact-title {
        font-size: 1.8rem;
    }

    .submit-btn {
        width: 100%;
    }

    /* Footer */
    .footer-social a {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
}

/* Fix for image heights in cards */
.amenity-card .icon-wrapper,
.highlight-card .highlight-image img {
    height: auto;
    max-width: 100%;
}

/* Fix for contact form on mobile */
@media (max-width: 991px) {
    .get-in-touch .col-lg-8,
    .get-in-touch .col-lg-4 {
        padding: 0 15px;
    }
    
    .contact-image {
        margin-top: 30px;
        border-radius: 10px;
    }
}

/* Fix for Why Choose Us section image */
@media (max-width: 991px) {
    .why-choose-us .col-lg-5 {
        padding: 0 15px;
    }
    
    .why-choose-image {
        margin: 40px auto 0;
        display: block;
        max-width: 100%;
        height: auto;
    }
}

.breadcrumb-banner {
    position: relative;
    background: url('../images/banner.jpg') no-repeat center center/cover;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    text-align: center;
    color: #fff;
  }
  
  .breadcrumb-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
  }
  
  .breadcrumb-content {
    position: relative;
    z-index: 2;
  }
  
  .breadcrumb-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 8px;
    font-weight: bold;
  }
  
  .breadcrumb li::after {
    content: "/";
    margin: 0 8px;
    color: #ccc;
  }
  
  .breadcrumb li:last-child::after {
    content: "";
  }
  
  .breadcrumb li a {
    color: #fff;
    text-decoration: none;
  }
  
  .breadcrumb li a:hover {
    text-decoration: underline;
  }
  