.hero {
    position: relative;
    min-height: 20vh;
    display: flex;
    align-items: center;
    overflow: hidden;


    background:
        linear-gradient(135deg,
            rgba(0, 20, 60, 0.82) 0%,
            rgba(0, 74, 153, 0.72) 60%,
            rgba(0, 97, 194, 0.65) 100%);
}


.hero-h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}

.hero-h6 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}


@media (max-width: 767px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 80px 0 60px;
    }
}



/* ── REAL ESTATE OVERVIEW STYLING ── */
.cov-section {
    padding: 100px 0;
    background: #ffffff;
}

.cov-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cov-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #00143c;
    line-height: 1.25;
    margin-bottom: 20px;
}

.cov-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* CTA Highlight Box */
.cov-cta-text {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f0f7ff;
    padding: 20px;
    border-left: 4px solid #004a99;
    border-radius: 0 10px 10px 0;
    margin-bottom: 30px;
}

.cov-cta-text i {
    font-size: 1.5rem;
    color: #004a99;
}

.cov-cta-text p {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: #00143c;
    margin: 0;
}

/* Right Side Pillar Items */
.cov-right-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 20px;
}

.cov-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.cov-item i {
    color: var(--blue);
}

.cov-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: #004a99;
    box-shadow: 0 10px 20px rgba(0, 74, 153, 0.1);
}

/* Responsive Grid */
@media (max-width: 991px) {
    .cov-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 575px) {
    .cov-heading {
        font-size: 1.75rem;
    }

    .cov-section {
        padding: 60px 0;
    }
}








/* ── ODOO MODULES GRID STYLING ── */
.ccs-section {
    padding: 90px 0;
    background: #f8fafc;
    /* Light background for section separation */
}

.ccs-header {
    margin-bottom: 50px;
    text-align: left;
}

.ccs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ccs-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover Effect: Card Lift and Border Color */
.ccs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 74, 153, 0.1);
    border-color: #004a99;
}

.ccs-card-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    color: #004a99;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.ccs-card:hover .ccs-card-icon {
    background: #004a99;
    color: #ffffff;
}

.ccs-card-body h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #00143c;
    margin-bottom: 15px;
    line-height: 1.4;
}

.ccs-card-body p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Grid Adjustments */
@media (max-width: 1199px) {
    .ccs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ccs-section {
        padding: 60px 0;
    }

    .ccs-grid {
        grid-template-columns: 1fr;
    }

    .ccs-card {
        padding: 30px 25px;
    }
}





/* ── REAL ESTATE BENEFITS STYLING ── */
.ccb-section {
    padding: 100px 0;
    background: #ffffff;
}

.ccb-header {
    margin-bottom: 50px;
}

.ccb-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Benefit List Styling */
.ccb-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ccb-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ccb-item:hover {
    background: #ffffff;
    transform: translateX(10px);
    border-color: #004a99;
    box-shadow: 0 10px 20px rgba(0, 74, 153, 0.05);
}

.ccb-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #004a99;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.ccb-item:hover::before {
    transform: scaleY(1);
}

.ccb-item-icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    color: #004a99;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ccb-item:hover .ccb-item-icon {
    background: #004a99;
    color: #ffffff;
}

.ccb-item-body h5 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #00143c;
    margin-bottom: 8px;
}

.ccb-item-body p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Sticky CTA Card Styling */
.ccb-cta-card {
    background: linear-gradient(135deg, #00143c 0%, #004a99 100%);
    border-radius: 15px;
    padding: 45px 35px;
    position: sticky;
    top: 100px;
    color: #ffffff;
}

.ccb-cta-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.ccb-cta-inner h3 {
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ccb-cta-inner p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Responsive Grid */
@media (max-width: 991px) {
    .ccb-layout {
        grid-template-columns: 1fr;
    }

    .ccb-cta-card {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .ccb-section {
        padding: 60px 0;
    }

    .ccb-item {
        padding: 20px;
    }
}




/* ── DELIVERY & EXPERTISE STYLING ── */
.ccb-section {
    padding: 100px 0;
    background: #ffffff;
}

.ccb-header {
    margin-bottom: 50px;
}

.ccb-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    /* Wider right column for stats */
    gap: 50px;
    align-items: start;
}

/* Benefit List Styling */
.ccb-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ccb-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ccb-item:hover {
    background: #ffffff;
    transform: translateX(10px);
    border-color: #004a99;
    box-shadow: 0 10px 25px rgba(0, 74, 153, 0.05);
}

.ccb-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #004a99;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.ccb-item:hover::before {
    transform: scaleY(1);
}

.ccb-item-icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    color: #004a99;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ccb-item:hover .ccb-item-icon {
    background: #004a99;
    color: #ffffff;
}

.ccb-item-body h5 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #00143c;
    margin-bottom: 8px;
}

.ccb-item-body p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Stats CTA Card Styling */
.ccb-cta-card {
    background: linear-gradient(135deg, #00143c 0%, #004a99 100%);
    border-radius: 15px;
    padding: 45px 35px;
    position: sticky;
    top: 100px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 20, 60, 0.15);
}

.ccb-cta-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.ccb-cta-inner h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ccb-cta-inner p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.ccb-cta-inner h4 {
    font-family: 'Manrope', sans-serif;
    color: #ffffff;
}

/* Responsive Grid */
@media (max-width: 991px) {
    .ccb-layout {
        grid-template-columns: 1fr;
    }

    .ccb-cta-card {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .ccb-section {
        padding: 60px 0;
    }

    .ccb-item {
        padding: 25px;
    }

    .ccb-cta-card {
        padding: 35px 25px;
    }
}







/* ── CUSTOMER STORIES STYLING ── */
.tst-section {
    padding: 100px 0;
    background: #f8fafc;
}

.tst-wrap {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 74, 153, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Accent top border on hover */
.tst-wrap:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 74, 153, 0.08);
    border-color: #004a99;
}

.tst-quote-mark {
    font-size: 2.5rem;
    color: #004a99;
    opacity: 0.1;
    line-height: 1;
    margin-bottom: 10px;
}

.tst-quote {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    flex: 1;
    /* Pushes author info to the bottom */
}

.tst-divider {
    width: 40px;
    height: 3px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 25px;
}

.tst-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tst-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #004a99, #00143c);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.tst-author-info strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #00143c;
    margin-bottom: 2px;
}

.tst-author-info span {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 991px) {
    .tst-section {
        padding: 60px 0;
    }

    .tst-wrap {
        padding: 30px;
    }
}






/* ── CASE STUDIES ───────────────────────────────────────────────── */

.case-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: box-shadow 0.25s;
    background: var(--white);
}

.case-featured:hover {
    box-shadow: var(--sh-lg);
}

@media (max-width: 767px) {
    .case-featured {
        grid-template-columns: 1fr;
    }
}

#cases{
    background-color: var(--white);
}

.case-img {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
}

.case-img-1 {
    background: linear-gradient(135deg, #001e4a, #004a99 70%, #0061c2);
}

.case-img-2 {
    background: linear-gradient(135deg, #001e4a, #003a80);
    min-height: 160px;
}

.case-img-3 {
    background: linear-gradient(135deg, #0a1628, #004a99 80%, #f97316);
    min-height: 160px;
}

.case-body {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.case-tag {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 14px;
}

.case-body h3,
.case-body h5 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.case-body h3 {
    font-size: 1.2rem;
}

.case-body h5 {
    font-size: 0.95rem;
}

.case-body p {
    font-size: 0.875rem;
    color: var(--muted);
    flex: 1;
    line-height: 1.7;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    margin-top: 16px;
    transition: gap 0.18s;
}

.case-link:hover {
    gap: 10px;
}

.case-sm {
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--sh-sm);
    transition:
        box-shadow 0.25s,
        transform 0.25s;
    display: flex;
    flex-direction: column;
}

.case-sm:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}


/* ── FAQ ───────────────────────────────────────────────── */
.oc-faq .accordion-item {
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden;
    background: #fff;
    margin-bottom: 12px;
    box-shadow: var(--sh-sm);
}

.oc-faq .accordion-button {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark) !important;
    background: #fff !important;
    box-shadow: none !important;
    padding: 18px 20px;
}

.oc-faq .accordion-button:not(.collapsed) {
    color: var(--blue) !important;
}

.oc-faq .accordion-body {
    font-size: 0.9rem;
    color: var(--muted);
    padding: 0 20px 18px;
    line-height: 1.75;
}