.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #f1913d;
    color: #fff;
}

.btn-primary:hover {
    background-color: #ffb45c;
}

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

.btn-outline:hover {
    background: #fff;
    color: #f1913d;
}

.counter_values {
    font-size: 50px;
    font-weight: 400;

}

.counter-section {
    background-color: rgb(10, 30, 10);
    padding-top: 50px;
    padding-bottom: 45px;
}

.icon-phone:before {
    content: "\e911";

}

.icon-email:before {
    content: "\e912";
}

.icon-arrow-left-3 {
    color: white;
}

.icon-arrow-right-3 {
    color: white;
}

.testimonial-sub-content {
    color: #19421c;
    font-size: 17px;
    font-weight: 500;
}


.mela-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.mela-popup {
    background: #ffffff;
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* vertical layout */
    position: relative;
    /* needed for close button */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: popupFade 0.4s ease;
}

/* Animation */
@keyframes popupFade {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

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

/* Close Button */
.mela-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: #ffffff;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.mela-close:hover {
    background: #096400 !important;
    color: #fff;
    transform: rotate(90deg);
}

/* Image Section */
.mela-image {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.mela-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Section */
.mela-content {
    /* padding: 35px 30px 40px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mela-content h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.mela-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 22px;
}

/* CTA Button */
.mela-btn {
    background: #f1913d;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 260px;
    display: inline-block;
}

.mela-btn:hover {
    background: #ffb45c;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
    .mela-popup {
        max-width: 95%;
    }

    .mela-content {
        padding: 25px 20px 30px;
    }

    .mela-image {
        height: 180px;
    }
}

/* Popup hidden state */
.mela-popup {
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: all 0.4s ease;
}

/* When popup shows */
.mela-popup.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}





.section-appraisal {
    padding-top: 75px;
}

.career-form-wrapper {
    padding: 40px 0;
}

.career-side-image {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .career-form-wrapper {
        text-align: center;
    }
}

.blog-image {
    width: 400px;
    height: 240px;
    object-fit: fill;
}






.contact-marker {
    width: 20px;
    height: 20px;
    background-color: #0d6efd;
    border-radius: 50%;
    border: 3px solid #fff;
    cursor: pointer;
}

.contact-popup {
    font-family: sans-serif;
    max-width: 220px;
}

.contact-popup h4 {
    margin-bottom: 6px;
    font-size: 15px;
}

.contact-popup p {
    margin: 2px 0;
    font-size: 13px;
}

.contact-popup a {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.contact-popup-card {
    width: 220px;
    max-width: 90vw;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    padding: 12px 16px;
    text-align: left;
}

.contact-popup-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.contact-popup-card p {
    margin: 4px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-popup-card .popup-btn {
    display: block;
    text-align: center;
    margin-top: 8px;
    padding: 6px 12px;
    background-color: #007BFF;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-popup-card .popup-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}


.icons-box.style-2:hover h5 {
    color: #ffff;
}

.image-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.image-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.image-popup-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    border-radius: 8px;
}

.image-popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    border: none;
    font-size: 22px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

.preview-hover {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.preview-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-hover:hover .preview-overlay {
    opacity: 1;
}

.preview-overlay i {
    color: #fff;
    font-size: 32px;
}

.marquee-wrapper {
    overflow: hidden;
    background: #0f3d2e;
    padding: 22px 0;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    /* controlled spacing between tags */
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    /* PC font size */
    white-space: nowrap;
}

.star-icon {
    width: 18px;
    /* increased star size */
    height: 18px;
    object-fit: contain;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .marquee span {
        font-size: 14px;
        padding: 0 12px;
    }

    .star-icon {
        width: 14px;
        height: 14px;
    }
}

.projects-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    /* Desktop - 4 cards */
}

/* Large Tablet / Small Laptop */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.box-house>.content {
    height: 315px;
}

.proj-content {
    height: 315px !important;
}


.bot.flex {
    max-height: 50px;
}

.blog-description {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.blog-description p {
    margin-bottom: 14px;
}

.blog-description h1,
.blog-description h2,
.blog-description h3,
.blog-description h4,
.blog-description h5,
.blog-description h6 {
    margin-top: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

/* Reduce heading sizes (since you said too big) */
.blog-description h1 {
    font-size: 26px;
}

.blog-description h2 {
    font-size: 22px;
}

.blog-description h3 {
    font-size: 20px;
}

.blog-description h4 {
    font-size: 18px;
}

.blog-description h5 {
    font-size: 16px;
}

.blog-description h6 {
    font-size: 15px;
}

.blog-description ul,
.blog-description ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

.blog-description li {
    margin-bottom: 6px;
}

.blog-description img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}

.blog-description a {
    color: #c29b40;
    /* change to your theme color */
    text-decoration: underline;
}

.blog-description blockquote {
    border-left: 4px solid #c29b40;
    padding-left: 12px;
    margin: 16px 0;
    color: #666;
    font-style: italic;
}

/* Hero Swiper Wrapper */
.hero-swiper {
    position: relative;
}

/* Individual Slide */
.hero-slide {
    width: 100%;
    aspect-ratio: 4947 / 2503;
    max-height: 774px;
    min-height: 360px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .hero-slide {
        background-position: center top;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        aspect-ratio: auto;
        height: 40vh;
        min-height: 260px;
        background-size: contain;
        background-position: center center;
        background-color: #000;

        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        height: 30vh;
        min-height: 140px;
        padding: 0 15px;
    }
}

.sidebar-suggested {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.suggested-project {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}

.suggested-project:hover {
    transform: translateY(-3px);
}

.suggested-thumb img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.suggested-info h6 {
    font-size: 15px;
    margin: 0 0 4px;
    color: #222;
}

.suggested-info .location {
    font-size: 13px;
    color: #777;
}

/* amenities and nearby places icon */
.feature-item {
    list-style: none;
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 17px;
    color: #444;
}

.amenities-list .feature-item::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    font-weight: bold;
    color: #16a34a;
}

.nearby-list .feature-item::before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 16px;
}

/* Navigation Button Row */
.project-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 30px;
}

/* Buttons */
.project-nav-buttons button {
    padding: 15px 18px;
    border-radius: 30px;
    border: 1px solid #e5e5e5;
    background: #005508;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffff;
}

/* Hover Effect */
.project-nav-buttons button:hover {
    background: #002202;
    color: #fff;
    border-color: #002202;
}

/* Active section feel when clicked */
.project-nav-buttons button:focus {
    background: #002202;
    color: #fff;
    border-color: #002202;
}

/* Tablet */
@media (max-width: 991px) {
    .project-nav-buttons {
        gap: 10px;
    }

    .project-nav-buttons button {
        font-size: 13px;
        padding: 9px 16px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .project-nav-buttons {
        justify-content: center;
    }

    .project-nav-buttons button {
        flex: 1 1 auto;
        text-align: center;
        padding: 10px;
        font-size: 13px;
    }
}

.mela-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    align-items: flex-start;
    justify-content: space-between;
}

.mela-content-area {
    flex: 1;
    min-width: 300px;
}

.mela-content-html {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
}

/* Paragraphs */
.mela-content-html p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #333;
}

/* Headings */
.mela-content-html h1,
.mela-content-html h2,
.mela-content-html h3,
.mela-content-html h4 {
    margin-top: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #222;
}

/* Links */
.mela-content-html a {
    color: #f1913d;
    text-decoration: underline;
}

/* Images */
.mela-content-html img {
    max-width: 100%;
    height: auto;
    margin: 12px 0;
    border-radius: 8px;
}

/* Unordered lists with icons */
.mela-content-html ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.mela-content-html ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

/* Default icon for list items */
.mela-content-html ul li::before {
    content: "✔";
    /* Default check icon */
    position: absolute;
    left: 0;
    top: 0;
    color: #f1913d;
    font-weight: bold;
}

/* Special icons for amenities vs nearby places */
.mela-content-html ul.amenities li::before {
    content: "🏡";
    /* House icon for amenities */
}

.mela-content-html ul.nearby-places li::before {
    content: "📍";
    /* Pin icon for nearby places */
}

/* Ordered lists */
.mela-content-html ol {
    padding-left: 30px;
    margin-bottom: 16px;
}

.mela-content-html ol li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

/* Form Area */
.mela-form-area {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
}

.mela-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mela-form-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #19421c;
}

.mela-form-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

.mela-grid-2 {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.mela-grid-2 fieldset {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mela-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #19421c;
    font-size: 14px;
}

.mela-input {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 100%;
}

.mela-input:focus {
    border-color: #f1913d;
    outline: none;
}

.mela-btn-wrap {
    margin-top: 15px;
}

.mela-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    padding: 12px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background-color: #f1913d;
    color: #fff;
    transition: all 0.3s ease;
    width: 100%;
}

.mela-btn:hover {
    background-color: #ffb45c;
}

/* Responsive */
@media (max-width: 992px) {
    .mela-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .mela-content-area,
    .mela-form-area {
        max-width: 100%;
    }

    .mela-content-html {
        padding: 20px;
    }
}

.contact-popup-card {
    max-width: 250px;
    /* default max width */
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    overflow-wrap: break-word;
}

.contact-popup-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #19421c;
    font-weight: 600;
}

.contact-popup-card p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    word-wrap: break-word;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.contact-popup-card span {
    flex-shrink: 0;
}

.contact-popup-card .popup-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #f1913d;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.contact-popup-card .popup-btn:hover {
    background-color: #ffb45c;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-popup-card {
        max-width: 200px;
        /* reduce width for mobile */
        padding: 12px;
    }

    .contact-popup-card h4 {
        font-size: 14px;
    }

    .contact-popup-card p {
        font-size: 13px;
        gap: 4px;
    }

    .contact-popup-card .popup-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (min-width:920px) {
    .header-logo {
        padding-left: 50px !important;
    }
}

/* ===== SECTION BACKGROUND ===== */

.global-branches .tf-container {
    position: relative;
    z-index: 2;
}

/* ===== GRID ===== */

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* ===== CARD BASE ===== */

.branch-card {
    position: relative;
    display: block;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 28px 24px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
}

/* Ripple circle (Uiverse effect) */
.branch-card:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #004100, #085a23);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.45s ease-out;
}

/* EXPAND RIPPLE */
.branch-card:hover:before {
    transform: scale(28);
}

/* Lift */
.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/* Text turns white on hover */
.branch-card:hover h3,
.branch-card:hover h4,
.branch-card:hover p,
.branch-card:hover a {
    color: rgba(255, 255, 255, 0.95);
    transition: color 0.3s ease;
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 36px;
    height: 36px;
    top: 0;
    right: 0;
    background: #007bff;
    border-radius: 0 14px 0 32px;
}

.go-arrow {
    color: #fff;
    font-size: 16px;
    margin-top: -2px;
    margin-right: -2px;
}

/* ===== TEXT STYLES ===== */

.branch-city {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.branch-company {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #004100;
}

.branch-info p {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    color: #444;
}

.branch-info span {
    font-size: 16px;
}

.branch-info a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 576px) {
    .branch-card {
        padding: 20px;
    }
}

/* ===== GRID LAYOUT CONTROL ===== */

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 cards on desktop */
    gap: 28px;
}

/* Tablet */
@media (max-width: 992px) {
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row */
    }
}

/* Mobile */
@media (max-width: 576px) {
    .branches-grid {
        grid-template-columns: 1fr;
        /* 1 per row */
    }
}

/* ================= LEGAL PAGE STYLING ================= */

.legal-section {
    background: #e0e0e1;
    padding: 60px 0;
}

.legal-content {
    background: #ffffff;
    padding: 10px 50px 10px 50px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    font-size: 16px;
    color: #444;
}

/* Headings from React Quill */
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 700;
    color: #111;
}

.legal-content h1 {
    font-size: 30px;
}

.legal-content h2 {
    font-size: 24px;
}

.legal-content h3 {
    font-size: 20px;
}

.legal-content h4 {
    font-size: 18px;
}

/* Paragraphs */
.legal-content p {
    margin-bottom: 16px;
}

/* Lists */
.legal-content ul,
.legal-content ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* Links */
.legal-content a {
    color: #007bff;
    text-decoration: underline;
    word-break: break-word;
}

/* Blockquotes */
.legal-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 16px;
    margin: 20px 0;
    color: #555;
    font-style: italic;
    background: #f1f7ff;
    padding: 14px 18px;
    border-radius: 6px;
}

/* Tables (if added in editor) */
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.legal-content table td,
.legal-content table th {
    border: 1px solid #ddd;
    padding: 10px;
}

/* Images inside content */
.legal-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
    }
}


.list-info .icon {
    font-size: 30px;
}

@media (min-width:992px) {
    .section-appraisal {
        margin-top: 4rem;
    }
}

body {
    cursor: auto;
}

/* OUTER RING */
.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid #37c9d4;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition:
        width 0.25s ease,
        height 0.25s ease,
        background 0.25s ease,
        border 0.25s ease;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* INNER DOT */
.cursor-dot {
    position: fixed;
    width: 9px;
    height: 9px;
    background: #37d451;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

/* HOVER GROW EFFECT */
.cursor-hover {
    width: 70px !important;
    height: 70px !important;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid #00ff73;
}

/* CLICK PULSE */
.cursor-click {
    animation: clickPulse 0.4s ease;
}

@keyframes clickPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(0.75);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (hover: none) and (pointer: coarse) {

    .cursor-ring,
    .cursor-dot {
        display: none !important;
    }
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.legal-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

/* Green tick icon */
.legal-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #1fa84a;
    /* brand green */
    font-size: 16px;
    font-weight: bold;
}

.project-media-swiper img,
.project-media-swiper iframe {
    width: 100%;
    border-radius: 12px;
}

@media (max-width: 768px) {

    .project-media-swiper img,
    .project-media-swiper iframe {
        height: 260px !important;
    }
}

.rb-breadcrumb {
    width: 100%;
    height: 316px;
    background-image: url("/images/breadcrumbs/1.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

@media (max-width: 1450px) {
    .rb-breadcrumb {
        height: 210px;
        background-size: contain;
        /* show full SVG */
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .rb-breadcrumb {
        height: 200px;
        background-size: contain;
        /* show full SVG */
    }
}

/* Mobile */
@media (max-width: 768px) {
    .rb-breadcrumb {
        height: 200px;
        background-size: contain;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .rb-breadcrumb {
        height: 170px;
        background-size: contain;
    }
}

.rb-breadcrumb-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    color: #fff;
}

.rb-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rb-links {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}


.rb-breadcrumb-2 {
    width: 100%;
    height: 316px;
    background-image: url("/images/breadcrumbs/2.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.rb-breadcrumb-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    color: #fff;
}

.rb-breadcrumb-3 {
    width: 100%;
    height: 316px;
    background-image: url("/images/breadcrumbs/3.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.rb-breadcrumb-4 {
    width: 100%;
    height: 316px;
    background-image: url("/images/breadcrumbs/4.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.rb-breadcrumb-5 {
    width: 100%;
    height: 316px;
    background-image: url("/images/breadcrumbs/5.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.rb-breadcrumb-6 {
    width: 100%;
    height: 316px;
    background-image: url("/images/breadcrumbs/6.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.project-media-swiper {
    padding: 10px 0;
}

.swiper-media-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.swiper-video-wrapper {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.swiper-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Larger cards on desktop */
@media (min-width: 1024px) {

    .swiper-media-img,
    .swiper-video-wrapper {
        height: 180px;
    }
}

@media(max-width:600px) {
    .email-responsive {
        font-size: 14px !important;
    }
}

@media(max-width:400px) {
    footer {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
}