/* Main Styles for GANGAPROPMART */

:root {
    --color-bg: #ffffff;
    /* page background */
    --color-surface: #ffffff;
    /* use white surface for clean look */
    --color-text: #0b1220;
    /* primary text (dark) */
    --color-muted: #6b7280;
    /* muted text */
    --color-primary: #EFC349;
    /* brand gold (logo) */
    --color-secondary: #0F6E58;
    /* deep green accent */
    --color-header-bg: #0b1220;
    /* header background (dark) */
    --color-header-text: #ffffff;
    /* header text */
    --radius: 12px;
    --shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.bg-dark {
    background-color: var(--color-header-bg) !important;
}

.container {
    max-width: 1600px !important;
}

* {
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}



a.text-primary,
.text-primary {
    color: #D4AF37 !important;
}

.bg-surface {
    background-color: var(--color-surface) !important;
}

.bg-header {
    background-color: var(--color-header-bg) !important;
    color: var(--color-header-text) !important;
}

/* ==============================================
   UNIFIED TYPOGRAPHY SYSTEM
   ============================================== */

/* Base Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

/* Unified Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Exo 2", sans-serif !important;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: 0;
}

/* Specific Heading Sizes */
h1,
.h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2,
.h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

h3,
.h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h4,
.h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0.875rem;
}

h5,
.h5 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h6,
.h6 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

/* Unified Paragraph Styles */
p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

/* Lead Paragraph */
.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Small Text */
small,
.small {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Section Titles - Unified across all pages */
.sectionTitle {
    font-family: "Exo 2", sans-serif !important;
    font-weight: 700 !important;
    font-size: 2.5rem !important;
    position: relative;
    padding-bottom: 12px !important;
    margin-bottom: 1.5rem;
    line-height: 1.2 !important;
}

.sectionTitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 4px;
    transition: left 0.18s ease, transform 0.18s ease, width 0.18s ease;
}

/* When the heading is centered, center the underline under the text */
.text-center .sectionTitle::after,
.sectionTitle.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Section Subtitles - Unified across all pages */
.sectionSubtitle {
    font-family: "Exo 2", sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
    margin-bottom: 2rem !important;
}

/* Page Titles - For main page headings */
.pageTitle {
    font-family: "Exo 2", sans-serif !important;
    font-weight: 800 !important;
    font-size: 3rem !important;
    line-height: 1.1 !important;
    margin-bottom: 1rem !important;
}

/* Card Titles - Consistent across all cards */
.card-title {
    font-family: "Exo 2", sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.75rem !important;
}

/* Card Text - Consistent across all cards */
.card-text {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}

/* Breadcrumb Text */
.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item.active {
    font-weight: 500;
}

/* Navigation Text */
.nav-link {
    font-family: "Exo 2", sans-serif !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    transition: color 0.15s ease;
    position: relative;
    padding-bottom: 0.25rem;
}

/* Footer Text */
footer h5 {
    font-family: "Exo 2", sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    margin-bottom: 1.5rem !important;
}

footer p,
footer li {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* Form Labels */
label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Button Text */
.btn {
    font-family: "Exo 2", sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.3px;
}

/* Responsive Typography */
@media (max-width: 1200px) {
    .sectionTitle {
        font-size: 2.25rem !important;
    }

    .pageTitle {
        font-size: 2.75rem !important;
    }

    h1,
    .h1 {
        font-size: 2.25rem;
    }

    h2,
    .h2 {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .sectionTitle {
        font-size: 2rem !important;
    }

    .pageTitle {
        font-size: 2.5rem !important;
    }

    .sectionSubtitle {
        font-size: 1.125rem !important;
    }

    .contact-Form>.row {
        gap: 30px;
    }

    .contact-Form .col-md-6.mb-4.mb-md-0.px-5 {
        padding: 0 20px !important;
    }

    .contact-Form .col-md-6.pe-5 {
        padding: 0 20px;
    }

    h1,
    .h1 {
        font-size: 2rem;
    }

    h2,
    .h2 {
        font-size: 1.75rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {

    .sectionTitle {
        font-size: 1.3rem !important;
    }

    .pageTitle {
        font-size: 2.25rem !important;
    }

    .sectionTitle::after {
        width: 60px;
    }

    h1,
    .h1 {
        font-size: 1.875rem;
    }

    h2,
    .h2 {
        font-size: 1.625rem;
    }

    h3,
    .h3 {
        font-size: 1.375rem;
    }

    .nav-link {
        font-size: 1rem !important;
    }
}

/* Header */
header .h3 {
    font-weight: 700;
}

.navbar-brand {
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.15s ease;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-link:hover {
    color: var(--color-secondary) !important;
}

.nav-link.active {
    color: var(--color-secondary) !important;
}

/* .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 3px;
}  */

/* Hero Banner */
.hero-banner {
    /* background: url('./images/hero-bg.webp') no-repeat center center; */
    /* background: url('https://www.shutterstock.com/image-illustration/home-3d-illustration-newly-built-260nw-2423655307.jpg') no-repeat center center; */
    background-size: cover;
}

/* ==============================================
   VERTICAL PATH TIMELINE DESIGN
   ============================================== */

.journey-section {
    background: white;
    position: relative;
    overflow: hidden;
}

/* .journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(15, 110, 88, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 195, 73, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    pointer-events: none;
} */

.journey-section .container {
    position: relative;
    z-index: 1;
}

/* Vertical Path Timeline Container */
.vertical-path-timeline {
    position: relative;
    height: 600px;
    width: 100%;
}

.vertical-timeline-path {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.path-milestone {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.path-milestone:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Vertical Timeline Points */
.vertical-timeline-points {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Add visual connection between tabs and path */
.vertical-timeline-point {
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.vertical-timeline-point:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.vertical-timeline-point.active {
    transform: translate(-50%, -50%) scale(1.15);
}

.vertical-timeline-point .year {
    background: #ffffff;
    color: var(--color-secondary);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    font-family: "Exo 2", sans-serif;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.vertical-timeline-point:hover .year {
    border-color: var(--color-secondary);
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 110, 88, 0.15);
}

.vertical-timeline-point.active .year {
    background: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
    box-shadow: 0 8px 25px rgba(15, 110, 88, 0.3);
}

/* Timeline Content Area */
.timeline-content-area {
    padding-left: 2rem;
}

.timeline-content-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: slideInRight 0.6s ease-out;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.timeline-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.content-header h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    font-family: "Exo 2", sans-serif;
    flex: 1;
}

.content-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.year-display {
    font-size: 3rem;
    font-weight: 900;
    font-family: "Exo 2", sans-serif;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.milestone-type {
    background: #f0fdf4;
    color: var(--color-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(15, 110, 88, 0.2);
}

.content-body p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2.5rem;
}

/* Achievement Stats */
.achievement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(5px);
}

.achievement-item:hover {
    background: rgba(240, 253, 244, 0.9);
    border-color: rgba(15, 110, 88, 0.3);
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(15, 110, 88, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.08);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    font-family: "Exo 2", sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .vertical-path-timeline {
        height: 500px;
    }

    .timeline-content-card {
        padding: 2.5rem;
        min-height: 400px;
    }

    .content-header h3 {
        font-size: 2rem;
    }

    .year-display {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {

    /* Hide the path timeline on tablets and mobile */
    .vertical-path-timeline {
        display: none;
    }

    .timeline-content-area {
        padding-left: 0;
        margin-top: 0;
    }

    /* Create simple horizontal tabs */
    .journey-section .row {
        flex-direction: column;
    }

    .journey-section .col-lg-4 {
        order: 2;
        margin-top: 2rem;
    }

    .journey-section .col-lg-8 {
        order: 1;
    }

    /* Simple tab navigation */
    .simple-tab-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 0;
        list-style: none;
        justify-content: center;
    }

    .simple-tab-nav .vertical-timeline-point {
        position: static;
        transform: none;
        flex: 0 0 auto;
        margin: 0;
    }

    .simple-tab-nav .vertical-timeline-point:hover {
        transform: translateY(-2px);
    }

    .simple-tab-nav .vertical-timeline-point.active {
        transform: translateY(-2px);
    }

    .simple-tab-nav .vertical-timeline-point .year {
        padding: 0.75rem 1.5rem;
        margin: 0;
        font-size: 0.95rem;
        min-width: auto;
    }

    .timeline-content-card {
        padding: 2rem;
        min-height: auto;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .content-meta {
        align-items: flex-start;
        flex-direction: row;
        gap: 1rem;
    }

    .year-display {
        font-size: 2.25rem;
    }

    .achievement-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .simple-tab-nav {
        gap: 0.25rem;
    }

    .simple-tab-nav .vertical-timeline-point .year {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .timeline-content-card {
        padding: 1.5rem;
    }

    .content-header h3 {
        font-size: 1.75rem;
    }

    .year-display {
        font-size: 2rem;
    }

    .content-body p {
        font-size: 1rem;
    }

    .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .achievement-item {
        padding: 1rem;
    }

    .achievement-number {
        font-size: 2rem;
    }

    h3.newsletter-title {
        font-size: 30px !important;
    }

    p.newsletter-text {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {


    .simple-tab-nav {
        /* flex-direction: column; */
        align-items: center;
        gap: 0.5rem;
    }

    .simple-tab-nav .vertical-timeline-point .year {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .timeline-content-card {
        padding: 1.25rem;
    }

    .content-header h3 {
        font-size: 1.5rem;
    }

    .year-display {
        font-size: 1.75rem;
    }

    .milestone-type {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .achievement-number {
        font-size: 1.75rem;
    }

    h3.newsletter-title {
        font-size: 20px !important;
    }

    p.newsletter-text {
        font-size: 14px !important;
    }

}



/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-secondary);
    left: 50%;
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.process-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

.process-content {
    width: 45%;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.process-item:nth-child(even) .process-content {
    margin-left: auto;
}

/* Cards */
.card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    border: none;
    background: var(--color-surface);
    border-radius: calc(var(--radius) - 4px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Subtle hover effect for a more professional feel */
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.card-img,
.card-img-bottom,
.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

/* Badges / Utilities */
.bg-secondary {
    background-color: var(--color-secondary) !important;
    color: #fff !important;
}

.badge-accent {
    background: var(--color-secondary);
    color: #fff;
    border-radius: 999px;
}

/* Pagination / Breadcrumbs */
.pagination .page-item.active .page-link {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.breadcrumb .breadcrumb-item.active {
    color: var(--color-secondary);
}

/* Badges */
.badge {
    font-weight: 500;
}

/* Buttons */
.btn {
    border-radius: var(--radius);
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    transition: all 0.18s ease;
}

.btn-primary {
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: #0b1220 !important;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.12);
}

/* Ensure Bootstrap defaults (blue) are overridden for hover/focus/active states */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):hover,
a.btn-primary:hover {
    background: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
    color: white !important;
    filter: brightness(0.98);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

/* Focus ring consistent with brand */
.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.18) !important;
}

.btn-secondary {
    color: #fff;
    background: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    box-shadow: 0 6px 18px rgba(44, 141, 137, 0.12);
}

.btn-secondary:hover {
    filter: brightness(0.95);
    color: #000 !important;
}

/* Header button variations to ensure contrast on dark header */
#mainHeader a.btn.btn-primary {
    color: black !important;
}

#mainHeader a.btn.btn-primary:hover {
    color: white !important;
}

#mainHeader .btn-primary:hover,
#mainHeader .btn-primary:focus {
    color: white !important;
}


.btn-outline-primary {
    color: #D4AF37;
    border: 2px solid #D4AF37;
    background-color: transparent;
}

.btn-secondary:hover,
.btn-outline-primary:hover {
    color: white;
    background-color: #D4AF37;
    border-color: #D4AF37;
}



/* Forms */
.form-control,
.form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.25rem rgba(44, 141, 137, 0.12);
}

/* Map Container */
.map-container.contact-map {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    height: 50px;
    width: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
    border-left-color: #25D366;
    border-right-color: #25D366;
}

/* Appointment Float Button */
.appointment-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #064E3B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    height: 50px;
    width: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.appointment-float:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none !important;
}

/* Tooltip Styles */
.tooltip {
    z-index: 10000;
}

.tooltip-inner {
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.whatsapp-float+.tooltip .tooltip-inner {
    background-color: #25D366;
}

.appointment-float+.tooltip .tooltip-inner {
    background-color: #064E3B;
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
    border-left-color: #25D366;
    border-right-color: #25D366;
}

.appointment-float+.tooltip .bs-tooltip-start .tooltip-arrow::before,
.appointment-float+.tooltip .bs-tooltip-end .tooltip-arrow::before {
    border-left-color: #064E3B;
    border-right-color: #064E3B;
}

/* Footer */
footer {
    background: var(--color-header-bg) !important;
    color: #ffffff !important;
}

footer h5 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--color-primary) !important;
}

footer .text-white {
    color: #ffffff !important;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

footer .social-links a:hover {
    background: var(--color-primary);
    color: #000 !important;
    transform: translateY(-2px);
}

footer .border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
    margin: 2rem 0 1rem 0;
}

footer .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

footer .contact-item i {
    color: var(--color-primary);
    margin-right: 12px;
    margin-top: 2px;
    font-size: 16px;
}

/* Utility Classes */
.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

/* Card headers using bg-primary inside cards (e.g., property summary) -> use secondary (green) for better contrast */
.card .card-header.bg-primary {
    background: var(--color-secondary) !important;
    color: #fff !important;
    border-bottom: none;
}



.text-success {
    color: var(--color-secondary) !important;
}

.bg-success {
    background-color: var(--color-secondary) !important;
    color: #fff !important;
}

/* Buttons: ensure success buttons follow secondary color */
.btn-success {
    background: var(--color-secondary) !important;
    border: 1px solid rgba(15, 110, 88, 0.9) !important;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(15, 110, 88, 0.10);
}

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

.btn-outline-primary:hover {
    background: rgba(212, 175, 55, 0.08);
}

/* Card headers default */
.card .card-header {
    background: transparent;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    color: var(--color-text);
    font-weight: 700;
}

/* Final CTA (bg-secondary block) */
.bg-secondary.py-5 {
    background: var(--color-secondary) !important;
    color: #fff;
    position: relative;
}

.bg-secondary.py-5 .sectionTitle,
.bg-secondary.py-5 .sectionSubtitle {
    color: #fff;
}

.bg-secondary.py-5 .sectionTitle {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bg-secondary.py-5 p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.bg-secondary.py-5 .btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bg-secondary.py-5 .btn-primary {
    background: var(--color-primary) !important;
    color: #000 !important;
}

.bg-secondary.py-5 .btn-primary:hover {
    background: #B8941F !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.bg-secondary.py-5 .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
}

.bg-secondary.py-5 .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.rounded {
    border-radius: 8px !important;
}

.shadow {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.propertyStatusBadge span {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 10px;
}

/* TextEditorContent */
.TxtEditorContent {
    line-height: 1.8;
    font-size: 1rem;
    color: #333;
}

.TxtEditorContent h1,
.TxtEditorContent h2,
.TxtEditorContent h3,
.TxtEditorContent h4,
.TxtEditorContent h5,
.TxtEditorContent h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #212529;
}

.TxtEditorContent h1 {
    font-size: 2.5rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.TxtEditorContent h2 {
    font-size: 2rem;
}

.TxtEditorContent h3 {
    font-size: 1.75rem;
}

.TxtEditorContent p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.TxtEditorContent ul,
.TxtEditorContent ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.TxtEditorContent li {
    margin-bottom: 0.5rem;
}

.TxtEditorContent strong {
    font-weight: 700;
}

.TxtEditorContent em {
    font-style: italic;
}

.TxtEditorContent a {
    color: #4361ee;
    text-decoration: none;
    border-bottom: 1px dotted #4361ee;
}

.TxtEditorContent a:hover {
    color: #3a0ca3;
    border-bottom: 1px solid #3a0ca3;
}

.TxtEditorContent img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.TxtEditorContent blockquote {
    border-left: 4px solid #4361ee;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: #f8f9fa;
    font-style: italic;
    color: #6c757d;
}

.navbar-nav {
    gap: 5px !important;
}

/* Property Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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


/* Status Badges */
.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
}

.status-available {
    background-color: #28a745;
    color: white;
}

.status-sold {
    background-color: #dc3545;
    color: white;
}

.status-pending {
    background-color: #ffc107;
    color: black;
}

/* ==============================================
   UNIFIED SECTION SPACING SYSTEM
   ============================================== */

/* Standard Section Spacing */
.section-spacing {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.section-spacing-sm {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.section-spacing-lg {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}

/* Hero Section Spacing */
.hero-section {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
    min-height: 100vh;
}

/* Content Section Spacing */
.content-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* CTA Section Spacing */
.cta-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Newsletter Section Spacing */
.newsletter-section {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* General Spacing Utilities */
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.py-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.py-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.py-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}

/* Section Title Spacing */
.section-header {
    margin-bottom: 4rem !important;
}

.section-header .sectionTitle {
    margin-bottom: 1rem !important;
}

.section-header .sectionSubtitle {
    margin-bottom: 0 !important;
}

/* Card Grid Spacing */
.card-grid {
    gap: 2rem;
}

.card-grid .card {
    margin-bottom: 2rem;
}


.mobileSearch {
    display: none;
}

/* Responsive Section Spacing */
@media (max-width: 1200px) {
    .section-spacing {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .section-spacing-lg {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .hero-section {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .py-5 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-6 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .py-7 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}

@media (max-width: 768px) {
    .desktopSearch {
        display: none;
    }

    .hero-banner h1 {
        font-size: 26px;
    }

    .mobileSearch {
        display: block;
        padding: 40px 20px;
        border-bottom: 1px solid #e5e5ea;
    }

    .hero-banner .lead {
        font-size: 16px;
    }

    .section-spacing {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .section-spacing-sm {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .section-spacing-lg {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .hero-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
        min-height: 80vh;
    }

    .content-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .cta-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .newsletter-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-4 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-7 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .section-header {
        margin-bottom: 3rem !important;
    }
}

@media (max-width: 576px) {
    .section-spacing {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .section-spacing-sm {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .section-spacing-lg {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .hero-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
        min-height: 70vh;
    }

    .content-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .cta-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .newsletter-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-4 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-3 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-7 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .section-header {
        margin-bottom: 2.5rem !important;
    }

    .card-grid .card {
        margin-bottom: 1.5rem;
    }
}

/* Icons */
.icon-wrapper {
    transition: transform 0.3s ease;
}

.icon-wrapper:hover {
    transform: scale(1.1);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.z-index-10 {
    z-index: 10;
}

.z-index-1 {
    z-index: 1;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}


/* Header Logo Styling */
#headerLogo {
    width: 180px;
    transition: 0.3s;
}

#headerLogo.scrolled,
#mainHeader.small-header #headerLogo {
    width: 80px;
}

/* Default header (transparent at top on home) */
#mainHeader {
    transition: 0.3s;
    background: transparent;
    color: var(--color-header-text) !important;
}

/* Dark header when scrolled or for non-home pages */
#mainHeader.small-header,
#mainHeader.scrolled {
    background: var(--color-header-bg) !important;
    color: var(--color-header-text) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* Ensure header text uses header color */
#mainHeader.text-white,
#mainHeader.text-white a {
    color: var(--color-header-text) !important;
}

/* Header-specific link colors */
#mainHeader .nav-link {
    color: rgba(255, 255, 255, 0.92);
}

#mainHeader .nav-link:hover,
#mainHeader .nav-link:focus {
    color: var(--color-primary) !important;
}

#mainHeader .nav-link.active {
    color: var(--color-primary) !important;
}

/* Offcanvas inside header should match header theme */
#mainHeader .offcanvas {
    background: var(--color-header-bg) !important;
    color: var(--color-header-text) !important;
}

#mainHeader .offcanvas .nav-link {
    color: rgba(255, 255, 255, 0.94) !important;
}

#mainHeader .offcanvas .btn-close {
    filter: invert(1);
}

/* Drag and Drop Styles */
.drag-over {
    border: 2px dashed var(--color-secondary);
}

/* Install Page Styles */
body.install-page {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.success {
    color: green;
    font-weight: bold;
}

.error {
    color: red;
    font-weight: bold;
}

/* Common inline style replacements */
.img-max-height-200 {
    max-height: 200px;
}

.img-height-200-cover {
    height: 200px;
    object-fit: cover;
}

.img-height-100-cover {
    height: 100px;
    object-fit: cover;
}

.img-height-400-cover {
    height: 400px;
    object-fit: cover;
}

.editor-height-400 {
    height: 400px;
}

.editor-height-300 {
    height: 300px;
}

.editor-height-200 {
    height: 200px;
}

.font-size-4rem {
    font-size: 4rem;
}

.font-size-5rem {
    font-size: 5rem;
}

.height-200-flex-center {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.icon-wrapper-70 {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.form-inline {
    display: inline;
}





/* Image Preview */
.img-preview-max-height-200 {
    max-height: 200px;
}

/* Hero Banner */
.hero-banner-full-height {
    height: 100vh;
}

/* Map Container */
.map-container iframe {
    border: 0;
}

/* Icon Wrapper */
.icon-wrapper-70 {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Heights (formerly Swiper Heights) */
.image-height-100 {
    height: 100px;
}

.image-height-300 {
    height: 300px;
    border-radius: 0.375rem;
    overflow: hidden;
}

.image-height-400 {
    height: 400px;
    border-radius: 0.375rem;
    overflow: hidden;
}

#myVideo {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -2;
    top: 0;
    object-fit: cover;
    bottom: 0;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* Hero Section */
.hero-bg-style {
    z-index: -1;
    /* background: url('../images/hero-bg.webp') no-repeat center center; */
    background-color: black;
    background-size: cover;
    opacity: 0.7;
    height: 100%;
    width: 100%;
}

/* Property Detail Page Gallery */
.thumbnail-slide {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.thumbnail-slide.swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #064E3B;
}

.main-image-swiper .swiper-button-next,
.main-image-swiper .swiper-button-prev {
    color: #064E3B;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.main-image-swiper .swiper-button-next:hover,
.main-image-swiper .swiper-button-prev:hover {
    background: rgba(6, 78, 59, 0.8);
    color: white;
}

.main-image-swiper .swiper-pagination {
    bottom: 10px;
}

.main-image-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.8);
}

.main-image-swiper .swiper-pagination-bullet-active {
    background: #064E3B;
}

/* WordPress-style Gallery */
.wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 1em;
}

.wp-block-gallery.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.wp-block-gallery.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.gallery-item {
    margin: 0;
}

.gallery-icon {
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.gallery-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-icon img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-icon:hover img {
    transform: scale(1.05);
}

/* Construction Gallery Modal Styles */
.construction-modal #modalImage {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.construction-modal .modal-content {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.7) !important;
}

.construction-modal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

.construction-modal .modal-header .btn-close {
    filter: invert(1);
}

.construction-modal .modal-navigation-btn {
    background: transparent !important;
    border: none !important;
    font-size: 2rem !important;
    color: white !important;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.construction-modal .modal-navigation-btn:hover {
    opacity: 1;
}

.construction-modal .modal-xl {
    max-width: 90%;
}

.construction-modal .modal-dialog {
    margin: 1.75rem auto;
}

@media (max-width: 768px) {
    .wp-block-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .construction-modal .modal-xl {
        max-width: 95%;
    }

    .construction-modal .modal-navigation-btn {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .wp-block-gallery {
        grid-template-columns: 1fr;
    }
}

.hero-container {
    height: 100%;
    padding-top: 100px;
}


.text-shadow-dark {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}


.testimonialCard,
.testimonialCard .card-body {
    background-color: transparent !important;
    color: white !important;
    padding: 10px !important;
    position: relative !important;
}


.testimonialCard .quoteIcon {
    position: absolute !important;
    top: -40px !important;
    right: 0px !important;
    font-size: 100px !important;
    opacity: 0.5 !important;
}

.testimonialText {
    font-size: 16px !important;
}

.testimonialFooter {
    background-color: transparent !important;
    font-weight: 600 !important;
}


.testimonailsNav .swiper-button-next,
.testimonailsNav .swiper-button-prev {
    position: relative !important;
    width: 60px !important;
}


.testimonailsNav {
    margin: 30px 15px;
    display: flex;
    gap: 10px;
}


.whyChooseCard {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}





.breadcrumbContainer {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/breadcrumb-bg.webp') no-repeat center center;
    background-size: cover;
}


.breadcrumbContainer.contact {
    background: url('../images/banner.jpg') no-repeat center center;
    background-size: cover !important;
}

.breadcrumbContainer.about {
    background: url('../images/banner1.png') no-repeat center center;
    background-size: cover !important;
}


/* Range Slider Styles */
.range-slider-wrapper {
    padding: 15px 0;
}

.slider-container {
    height: 30px;
    margin: 0 10px;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 5px;
    background: #e0e0e0;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.slider-range {
    position: absolute;
    height: 100%;
    background: #4361ee;
    border-radius: 5px;
    top: 0;
    z-index: 2;
}

.slider-thumb {
    position: absolute;
    width: 100%;
    height: 5px;
    background: transparent;
    -webkit-appearance: none;
    z-index: 3;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
}

.slider-thumb::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4361ee;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    pointer-events: auto;
}

.slider-thumb::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4361ee;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    pointer-events: auto;
}

#min-budget-slider {
    z-index: 4;
}

#max-budget-slider {
    z-index: 3;
}


.featuredBG {
    position: relative;
}

.featuredBG::before {
    z-index: -1;
    background: url('../images/featured-bg.webp') no-repeat center center;
    background-size: cover;
    content: "";
    opacity: .15;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ProjectTabs {
    justify-content: center;
}

.ProjectTabs .nav-link {
    color: #9c9b9b !important;
}

.ProjectTabs .nav-link.active,
.ProjectTabs .nav-link:hover {
    color: #064E3B !important;
}

.timelineWraper {
    position: relative !important;
}

.timelineWraper::before {
    background: url('../images/timeline.webp') no-repeat center center;
    z-index: -1;
    background-size: cover;
    content: "";
    opacity: .2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.contactPage-info li a {
    color: black;
    font-weight: 500;
}

.contactPage-info li {
    transition: all 0.3s ease;
}

.contactPage-info li:hover {
    margin-left: 15px !important;
}


.text-greenPrimary {
    color: #064E3B !important;
}

.text-greenPrimary:hover {
    color: #D4AF37 !important;
}


/* Admin Side */


/* #navbarNav.admin {
display: none ;
} */


.dashboardSidebar .nav-link {
    color: black;
    border-bottom: 1px solid #e5e5ea;
    padding: 20px;
    transition: 0.3s all;
}


.dashboardSidebar .nav-link:hover {
    color: black !important;
    padding-left: 35px;
}

.kpiCard {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}


.cstmMinHeight #sidebar {
    min-height: calc(100vh - 62px);
    position: fixed;
    background-color: white !important;
}

.remove-gallery-image-btn {
    padding: 0 !important;
    height: 30px !important;
    width: 30px !important;
}

.remove-gallery-image-btn i {
    pointer-events: none;
}

.pagination a {
    color: #064E3B !important;
}

.pagination .page-item.active>a {
    color: white !important;
    background-color: #064E3B !important;
    border-color: #064E3B !important;
}

/* Swiper Slider */
.swiper-button-prev:after,
.swiper-rtl,
.swiper-button-next:after {
    font-size: 20px !important;
    color: white !important;
}

.swiper-slide {
    padding: 10px;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: rgba(0, 0, 0, 0.486) !important;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px !important;
    height: 40px !important;
    width: 40px !important;
}

.swiper-button-prev {
    left: 0 !important;
}

.swiper-button-next {
    right: 0 !important;
}

/* Gradient Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, #064E3B 0%, #D4AF37 100%) !important;
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: #f8fafc !important;
}

.newsletter-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.newsletter-input {
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px 0 0 12px !important;
    padding: 18px 24px !important;
    background: #ffffff !important;
    color: #1a202c !important;
    font-size: 16px !important;
    transition: all 0.3s ease;
    height: 60px;
}

.newsletter-input:focus {
    border-color: var(--color-secondary) !important;
    box-shadow: 0 0 0 3px rgba(15, 110, 88, 0.1) !important;
    background: #ffffff !important;
    outline: none;
}

.newsletter-input::placeholder {
    color: #64748b !important;
    font-weight: 400;
}

.btn-subscribe {
    border-radius: 0 12px 12px 0 !important;
    padding: 18px 32px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: var(--color-secondary) !important;
    border: none !important;
    color: white !important;
    font-size: 16px !important;
    height: 60px;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(15, 110, 88, 0.2);
}

.btn-subscribe:hover {
    background: var(--color-primary) !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.newsletter-title {
    color: var(--color-text) !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

.newsletter-text {
    color: #64748b !important;
    font-size: 1.2rem !important;
    line-height: 1.6;
    margin-bottom: 2.5rem !important;
}

.alert-rounded {
    border-radius: 12px !important;
    border: none;
    font-weight: 500;
}

#newsletterForm {
    gap: 0;
    max-width: 650px;
    margin: 0 auto;
}

#newsletterForm .flex-grow-1 {
    flex: 1;
}

@media (max-width: 576px) {


    .newsletter-input {
        border-radius: 12px !important;
        margin-bottom: 16px;
        height: 56px;
    }

    .btn-subscribe {
        border-radius: 12px !important;
        width: 100%;
        height: 30px;
    }

    #newsletterForm {
        flex-direction: column;
        gap: 16px;
    }

    .newsletter-title {
        font-size: 2rem !important;
    }

    .newsletter-text {
        font-size: 1.1rem !important;
    }
}


.btn.btn-outline-secondary.active,
.btn.btn-outline-secondary:hover {
    background-color: #064E3B !important;
}

/* Blog Category Filter Buttons */
.category-filter-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.category-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.category-filter-buttons .btn-sm {
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.category-filter-btn.active,
.category-filter-btn.active:hover {
    background-color: #064E3B !important;
    color: white !important;
    border: 1px solid #064E3B !important;
}

.category-filter-btn {
    border: 1px solid #064E3B !important;
    color: black !important;
    transition: 0.3s all;
}

.category-filter-btn:hover {
    background-color: #064E3B;
    color: white !important;
    border: 1px solid #064E3B !important;
}

/* 
.category-filter-buttons .btn-outline-primary {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    background-color: transparent;
}

.category-filter-buttons .btn-outline-primary:hover {
    background-color: #D4AF37;
    border-color: #D4AF37;
    color: white;
    transform: translateY(-1px);
}

.category-filter-buttons .btn-primary {
    background-color: #D4AF37;
    border: 2px solid #D4AF37;
    color: white;
}

.category-filter-buttons .btn-primary:hover {
    background-color: #B8941F;
    border-color: #B8941F;
    transform: translateY(-1px);
} */

.category-filter-buttons .badge {
    font-size: 0.75rem;
    border-radius: 10px;
}

/* Blog post animations & styles */
.blog-post-item {
    transition: all 0.28s ease;
    background: var(--color-surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 23, 42, 0.03);
    position: relative;
}

.blog-post-item .card-body {
    padding: 20px;
}

.blog-post-item.fade-out {
    opacity: 0;
    transform: scale(0.98);
}

.blog-post-item.fade-in {
    opacity: 1;
    transform: scale(1);
}

.blog-post-item .post-meta {
    color: var(--color-secondary);
    font-weight: 600;
}

/* Category badges on posts */
.badge.bg-secondary {
    background-color: var(--color-secondary) !important;
    color: #fff !important;
    font-size: 0.7rem;
}

@media (max-width: 768px) {

    .breadcrumbContainer {
        height: 250px;
    }

    .breadcrumbContainer h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    
    #headerLogo {
        max-width: 120px;
    }

    .category-filter-section {
        padding: 15px;
    }

    .category-filter-buttons {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .category-filter-buttons h6 {
        margin-bottom: 10px;
    }

    .alert h5 {
        font-size: 14px;
    }
}


@media (max-width: 568px) {

    .breadcrumbContainer {
        height: 200px;
    }
}


.blog-category {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Offcanvas surface theme */
.offcanvas.bg-surface {
    background-color: var(--color-surface) !important;
    color: var(--color-text);
}

.offcanvas.bg-surface .offcanvas-title,
.offcanvas.bg-surface .offcanvas-header,
.offcanvas.bg-surface .offcanvas-body {
    color: var(--color-text);
}

.offcanvas.bg-surface .nav-link {
    color: var(--color-text);
}

.offcanvas.bg-surface .nav-link:hover,
.offcanvas.bg-surface .nav-link:focus {
    color: var(--color-secondary);
}

.offcanvas.bg-surface .btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.offcanvas.bg-surface .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Offcanvas dark/header theme */
.offcanvas.bg-header {
    background-color: var(--color-header-bg) !important;
    color: var(--color-header-text) !important;
}

.offcanvas.bg-header .offcanvas-title,
.offcanvas.bg-header .offcanvas-header,
.offcanvas.bg-header .offcanvas-body {
    color: var(--color-header-text);
}

.offcanvas.bg-header .nav-link {
    color: rgba(255, 255, 255, 0.94);
}

.offcanvas.bg-header .nav-link:hover,
.offcanvas.bg-header .nav-link:focus {
    color: var(--color-primary);
}

.offcanvas.bg-header .btn-close {
    filter: invert(1);
}

.offcanvas.bg-header .btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.offcanvas.bg-header .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Force outline primary and related buttons to use brand colors (override Bootstrap defaults that use blue) */
.btn-outline-primary:hover,
.btn-outline-primary:focus,
a.btn-outline-primary:hover,
button.btn-outline-primary:hover,
.btn-outline-primary:active {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #0b1220 !important;
}

/* Ensure focus ring uses brand color instead of blue */
.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.18) !important;
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.12) !important;
}




/* CTA Section */
.cta-section {
    position: relative;
    color: white;
    padding: 100px 0 !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}


.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/cta2.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(2px);
    /* transform: scale(1.1); */
    /* prevents edge blur cut */
    z-index: -1;
}


.founderImg {
    max-height: 500px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 568px) {

    #projectsTab {
        flex-wrap: nowrap;
    }

    #projectsTab .nav-link {
        white-space: nowrap;
        font-size: 14px !important;
    }
}