* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
}

/* .nunito-sans-font {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
} */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1600 900"><rect fill="%23455a64" width="1600" height="900"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #8DB906;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary-custom {
    background-color: #d32f2f;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.btn-primary-custom:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}



.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

/* Background Image Overlay */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1600 900"><defs><linearGradient id="g" x1="0" y1="0" x2="1" y2="1"><stop offset="0%25" stop-color="%23455a64"/><stop offset="100%25" stop-color="%23263238"/></linearGradient></defs><rect fill="url(%23g)" width="1600" height="900"/><circle cx="200" cy="700" r="80" fill="%234caf50" opacity="0.3"/><circle cx="1400" cy="200" r="100" fill="%238bc34a" opacity="0.2"/></svg>');
    background-size: cover;
    opacity: 0.6;
}


.title-bold-heading {
    color: black;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.feature-icons{
    height: 3.75rem;
}
.feature-subheading-description{
 font-size: 1rem;
 color: #000;
}

.feature-subheading{
    font-size: 1.375rem;
    color: #000;
    font-weight: 700;
}
.title-bold-description {
    color: black;
    font-size:1.125rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0.8rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn-primary-custom {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

:root {
    --primary-red: #AB2728 !important;
    --accent-yellow: #D4AF37 !important;
    --accent-lime: #C8E6C9 !important;
    --text-dark: #333 !important;
    --overlay-dark: rgba(0, 0, 0, 0.5) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}

/* Hero Slider Section */
.hero-carousel {
    position: relative;
    height: 836px;
    overflow: hidden;
}

.carousel-item-custom {
    height: 836px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: var(--overlay-dark); */
    z-index: 1;
}

.carousel-content {
    position: absolute;
    min-height: 836px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 250px 80px;
    max-width: 700px;
    color: white;
    background: #00000086;
}

.carousel-content h1 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.65em;
    margin-bottom: 20px;
}

.carousel-content h1 .highlight {
    color: #8DB906;
    font-weight: 700;
}

.carousel-content p {
    font-size: 14px;
    line-height: 1.65em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary-red {
    background-color: var(--primary-red) !important;
    border: none;
    color: white;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary-red:hover {
    background-color: #A01730;
    color: white;
    text-decoration: none;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    height: auto;
    background: none;
    border: none;
    top: auto;
    bottom: 30px;
    z-index: 3;
    top:50%
}

.carousel-control-prev {
    left: 60px;
    right: auto;
}

.carousel-control-next {
    right: 60px;
    left: auto;
}

/* .carousel-control-prev::after,
.carousel-control-next::after {
    display: none;
} */

.carousel-control-prev span,
.carousel-control-next span {
    font-size: 2rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    /* opacity: 0.8;
    transition: opacity 0.3s ease; */
}

.carousel-control-prev:hover span,
.carousel-control-next:hover span {
    opacity: 1;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark) !important;
}

.section-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--accent-yellow) !important;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark) !important;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 50px 0;
}

.property-title{
 font-size: 0.875rem;
 color: #303030;
 margin-left: 5px;
}

.location-icon{
    height: 20px;

}

.property-description{
 margin: 2px;
}
.property-header{
    display: flex;
    align-items: center;
}
/* Responsive */
@media (max-width: 768px) {
    .carousel-item-custom {
        height: 400px;
    }

    .hero-carousel {
        height: 400px;
    }

    .carousel-content {
        padding: 100px 57px;
        max-width: 100%;
        top: 100%;
    }

    .carousel-content h1 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .carousel-content {
        padding: 30px 30px;
        top: 100%;
    }

    .hero-carousel {
        height: 600px;
    }

    .carousel-content h1 {
        font-size: 1.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        bottom: 15px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 581px) {
    .carousel-content {
        padding: 110px 57px;
        top: 100%;
    }

    .hero-carousel {
        height: 400px;
    }

    .carousel-content h1 {
        font-size: 1.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        bottom: 15px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

.header-logo {
    height: 60px;
    width: auto;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
}

@media only screen and (max-width: 1023px) {
    .container {
     float: none !important; 
    }
}

.portfolio-section {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%),
        url('img/bg-section.jpg') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 15px;
    max-width: 1024px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.portfolio-card h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.portfolio-card p {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #AB2728;
    color: white;
}

.btn-primary:hover {
    background-color: #a01830;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
    background-color: white;
    color: #AB2728;
    border: 2px solid #AB2728;
}

.btn-secondary:hover {
    background-color: #f9f9f9;
    color: #AB2728;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.2);
}

.divider {
    height: 1px;
    background-color: #ddd;
    margin: 15px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #000;
}

.stat-label {
    font-size: 24px;
    color: #000;
    font-weight: 400;
}

@media (max-width: 768px) {
    .portfolio-section {
        min-height: auto;
        padding: 30px 15px;
    }

    .portfolio-card {
        padding: 40px 30px;
    }

    .portfolio-card h1 {
        font-size: 28px;
    }

    .portfolio-card p {
        font-size: 14px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .stats-container {
        flex-direction: column;
        gap: 25px;
    }

    .stat-item {
        min-width: auto;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* Custom styles for FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
}

.accordion-button {
    background-color: #ffffff;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 28px;
    line-height: 1.3em;
    font-weight: 700;
    display: flex;
    align-items: center;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #333;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    content: '+';
    background-image: none;
    width: auto;
    height: auto;
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin-left: auto;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
}
.accordion-button:not(.collapsed)::after
 {
    background-image: none !important;
    transform: none;
}
/* .accordion-button:not(.collapsed)::before {
    content: '';
    transform: none;
} */

.faq-number {
    display: inline-block;
    min-width: 40px;
    font-size: 1rem;
    color: #7E7E7E;
    font-weight: 600;
    margin-right: 1rem;
}

.faq-number-active {
     /* color: #549021;
    font-weight: 700; */
}

.faq-question {
    color: #4C4C4C;
    font-weight: 600;
}

.accordion-button.collapsed{
    color:#333
}

.faq-question-active {
    /* color: #549021;
    font-weight: 700; */
}

.accordion-body {
    padding: 1.5rem 2rem 2rem 5rem;
    color: #333;
    line-height: 1.65em;
    font-size:14px;
    font-weight: 700;
    background-color: #ffffff;
}

.faq-active .accordion-button {
    background-color: #f8f9fa;
}

.faq-active .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-number {
        min-width: 35px;
        margin-right: 0.8rem;
    }

    .accordion-body {
        padding: 1.2rem 1.5rem 1.5rem 3.5rem;
        font-size: 0.9rem;
    }
}

/* Custom styles for Investment Journey Section */
.journey-section {
    background-color: #F7FAF5;
    position: relative;
}

.step-wrapper {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    border: 3px solid #8CBD03;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    position: relative;
    z-index: 3;
}

.step-number span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8CBD03;
}

/* Progress Line */
.row .progress-line {
    position: absolute;
    top: 30px;
    left: 25%;
    width: 50% !important;
    height: 3px;
    background: linear-gradient(to right, #8CBD03 0%, #8CBD03 50%, #8CBD03 50%, #8CBD03 100%);
    z-index: 1;
}

.heading-2{
      font-size: 2rem;
      color: #000;
}

.step-title{
    font-size: 1rem;
    color: black;
    font-weight: 800;
}

.step-description{
    font-size: 1rem;
    color: black;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .step-wrapper {
        margin-bottom: 3rem;
    }

    .step-wrapper:last-child {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .row .progress-line {
        /* left: 22%;
        width: 56%; */
        left: 16%;
        width: 68% !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .row .progress-line {
        /* left: 24%;
        width: 52%; */
        left: 12%;
        width: 75% !important;
    }
}

/* Custom styles for Featured Properties Section */
.featured-properties-section {
    background-color: #ffffff;
}

.property-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.property-description{
    color: #515050;
    font-size: 0.813rem;
}
.property-card-bold{
    font-size: 0.875rem;
    color: #000;
    font-weight: 700;
}

.property-img {
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.badge.bg-success {
     background-color: #4B881B !important;
    margin-left: 16px !important;
    font-weight: 600;
    border-radius: 0px 20px 20px 0px;
    z-index: 10;
    margin-top: 28px !important;
    padding: 4px 32px 4px 8px !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.306);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    color: white;
    transition: opacity 0.3s;
}

.property-card:hover .carousel-control-prev,
.property-card:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-icon-custom {
    display: inline-block;
    width: 20px;
    height: 20px;
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

.carousel-indicators {
    margin-bottom: 10px;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
}

.carousel-indicators .active {
    background-color: #7CB342;
}

.btn-outline-danger {
    color: #c9302c;
    border: #c9302c solid 1px;
    font-size: 1rem !important;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background-color: #c9302c;
    border-color: #c9302c;
    color: white;
}

.btn-box-outline{
    margin-left: 20px;
    margin-right: 20px;
}

.btn-danger {
    background-color: #c9302c;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #a02622;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 48, 44, 0.4);
}

@media (max-width: 768px) {
    .property-img {
        height: 220px;
    }
}

/* Custom styles for Trust Section */
.trust-section {
    background-color: #F7FAF5;
}

.trust-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    background-color: #f8f9fa;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.trust-icon {
    display: inline-block;
}

.card-title {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
}

.card-text {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .trust-card {
        margin-bottom: 1rem;
    }
}

/* Custom styles for this section */
.features-section {
    background-color: #f8f9fa;
}

.feature-icon {
    display: inline-block;
}

.btn-danger {
    background-color: #AB2728;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px !important;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #a02622;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 48, 44, 0.4) !important;
}