@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import 'theme.css';

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-light);
    font-family: var(--font-sans);
    color: var(--color-dark);
    line-height: 1.6;
}

/* ---------- Tailwind custom utilities via CSS vars ---------- */
.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-light {
    background-color: var(--color-light);
}

.bg-accent {
    background-color: var(--color-accent) !important;
}

.bg-blue-off {
    background-color: var(--bg-color-blue) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-accent {
    color: var(--color-accent) !important;
}

.text-accent-dark {
    color: var(--color-accent-dark) !important;
}

.border-primary {
    border-color: var(--color-primary) !important;
}

.border-accent {
    border-color: var(--color-accent) !important;
}

/* ------------upper blue / green header------- */

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-accent:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* ---------- Navbar ---------- */
#navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    /* background: white; */
    /* color: black; */
}

#navbar.scrolled {
    background-color: var(--color-light);
    box-shadow: var(--shadow-md);
    color: #020a10;
}

.dark #navbar.scrolled {
    background-color: var(--color-dark-2);
    box-shadow: var(--shadow-md);
    color: var(--color-white);
}

/* ---------- Hero ---------- */
.hero-section {
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.50;
}

/* Buy / Rent tab group */
.hero-tab-group {
    background: rgb(255 255 255 / 39%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px 20px 0 0;
    padding: 5px 5px;
    gap: 4px;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
}

.hero-tab {
    position: relative;
    padding: 8px 28px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.hero-tab.active {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero-tab-dot {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e53e3e;
}

/* Category pills */
.hero-pill {
    padding: 8px 24px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.hero-pill:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Search bar */
.hero-search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 0 var(--radius-full) var(--radius-full) var(--radius-full);
    padding: 6px 16px;
    gap: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-city-select {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 4px;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
}

.hero-city-select select {
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

/* Stats strip */
.hero-stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--bg-color-blue);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    backdrop-filter: blur(6px);
    border: 1px solid #6b7280;
}

.hero-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    gap: 2px;
    text-align: center;
}

@media (min-width: 640px) {
    .hero-stat {
        flex-direction: row;
        text-align: left;
    }
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--color-accent);
    margin: 0 16px;
    flex-shrink: 0;
}

/* ---------- Section ---------- */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--color-gray);
    font-size: 1.05rem;

}

.accent-line {
    width: 56px;
    height: 4px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    /* margin: 12px 80px 24px; */
}

/* ---------- Cards ---------- */
.card {
    background-color: #25559b17;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(11, 78, 157, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.whe-card {
    background: rgba(139, 165, 201, 0.164);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.whe-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 32px rgba(246, 129, 34, 0.12);
    transform: translateY(-2px);
}

.whe-card-top {
    padding: 24px 24px 20px;
}

.whe-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.whe-card:hover .whe-icon {
    transform: scale(1.1);
}

.whe-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0026ff;
}

.whe-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.whe-chevron {
    margin-top: 16px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    transition: transform 0.4s ease, color 0.3s ease;
}

.whe-card:hover .whe-chevron {
    transform: rotate(180deg);
    color: var(--color-accent);
}

/* Expand area — hidden by default, revealed on hover */
.whe-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.35s ease,
        opacity 0.35s ease;
    padding: 0 24px;
    opacity: 0;
    border-top: 1px solid transparent;
}

.whe-card:hover .whe-expand {
    max-height: 260px;
    padding: 18px 24px 24px;
    opacity: 1;
    border-top-color: rgba(255, 255, 255, 0.06);
}

.whe-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.whe-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whe-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.whe-list li i {
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Touch devices — keep expand always accessible */
@media (hover: none) {
    .whe-card .whe-expand {
        max-height: none;
        padding: 18px 24px 24px;
        opacity: 1;
        border-top-color: rgba(255, 255, 255, 0.06);
    }

    .whe-card .whe-chevron {
        display: none;
    }
}

/* ---------- Stats ---------- */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

/* ---------- Footer ---------- */
footer {
    /* background-color: #000; */
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT491VUKYcQeIkWn23CARETi2ySaNmysiMKMA&s'); */
    background-repeat: repeat;
    background-size: 28px 28px;
    opacity: 0.40;
    pointer-events: none;
    z-index: 0;
}

footer>* {
    position: relative;
    z-index: 1;
}

.icon-f:hover {
    transform: translateY(-8%);
    transition: all 0.2s ease-in-out;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

/* ---------- Property Cards ---------- */

.property-card {
    background-color: var(--color-dark-3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 542px;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.property-img-wrap {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--color-dark-2), var(--color-dark-3));
}

.property-img-wrap img {
    width: 100%;
    height: 180%;
    object-fit: cover;
}

.property-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #fff;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- Contact & Blog Section ---------- */
/* .contact-blog-section {
    background: linear-gradient(135deg, var(--color-dark-2) 0%, var(--color-dark) 100%);
} */

/* Service tag infinite scroll */
.service-tag-track {
    display: flex;
    width: max-content;
    gap: 12px;
    animation: tagScroll 18s linear infinite;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    /* /* border: 1px solid rgba(255, 255, 255, 0.12); */
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.service-tag:hover {
    border-color: var(--color-accent);
    background: #26bb708f;
}

@keyframes tagScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Blog Scroll Area */
.blog-scroll-area {
    overflow-y: auto;
    max-height: 520px;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--color-dark-3);
}

.blog-scroll-area::-webkit-scrollbar {
    width: 5px;
}

.blog-scroll-area::-webkit-scrollbar-track {
    background: var(--color-dark-3);
    border-radius: 3px;
}

.blog-scroll-area::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}

/* Blog Cards */
.blog-card {
    background-color: rgba(128, 128, 128, 0.208);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.blog-card-img {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, var(--color-dark-2), var(--color-dark-3));
}

.blog-img-placeholder {
    width: 100%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

/* ---------- City Picker Dropdown ---------- */
.hero-city-select {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: background 0.2s;
    user-select: none;
    white-space: nowrap;
}

.hero-city-select:hover {
    background: rgba(0, 0, 0, 0.05);
}

.city-picker-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    min-width: 320px;
    background: #0f1923;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 999;
    overflow: hidden;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.city-picker-dropdown.hidden {
    display: none;
}

.city-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.city-picker-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 2px 4px;
    transition: color 0.2s;
}

.city-picker-close:hover {
    color: var(--color-accent);
}

.city-picker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 12px;
}

@media (max-width: 640px) {
    .city-picker-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .city-picker-dropdown {
        min-width: 280px;
    }
}

.city-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    text-align: center;
}

.city-item svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.city-item:hover {
    background: rgba(11, 78, 157, 0.25);
    border-color: var(--color-primary);
    color: #fff;
}

.city-item:hover svg {
    color: var(--color-accent);
}

.city-item.selected {
    background: rgba(246, 129, 34, 0.15);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.city-item.selected svg {
    color: var(--color-accent);
}

/* ---------- Navbar Action Buttons ---------- */

/* Shared base for icon buttons */
.nav-btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #3b2f6e;
    color: #fff;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-btn-icon:hover {
    background: #4e3d8f;
    transform: translateY(-1px);
}

/* Get a Quote */
.nav-btn-quote {
    padding: 10px 22px;
    border-radius: 10px;
    background: var(--color-accent-dark);
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-btn-quote:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
}

/* Hire Us */
.nav-btn-hire {
    padding: 10px 22px;
    border-radius: 10px;
    background: #25559B;
    color: #fff;
    border: 2px solid #0026ff;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-btn-hire:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translateY(-1px);
}

/* AI Services — rainbow animated border */
.nav-btn-ai {
    position: relative;
    padding: 10px 22px;
    border-radius: 10px;
    background: #0d0d1a;
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    z-index: 0;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.nav-btn-ai::before {
    content: '';
    position: absolute;
    inset: -1.2px;
    border-radius: 10px;
    background: conic-gradient(from var(--angle, 0deg),
            #ff0080, #ff8c00, #ffe600, #00ff88,
            #00cfff, #7b2fff, #ff0080);
    z-index: -1;
    animation: rotateBorder 2.5s linear infinite;
}

.nav-btn-ai::after {
    content: '';
    position: absolute;
    inset: 1.2px;
    border-radius: 8px;
    background: #0d0d1a;
    z-index: -1;
}

.nav-btn-ai:hover {
    transform: translateY(-1px);
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorder {
    to {
        --angle: 360deg;
    }
}

/* ========== MEGA MENU ========== */
.mega-trigger {
    display: flex;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.2s;
    white-space: nowrap;
    color: inherit;
    text-decoration: none;
}

.mega-trigger:hover,
.mega-parent.open .mega-trigger {
    color: var(--color-accent-dark);
}

.mega-chevron {
    transition: transform 0.25s ease;
}

.mega-parent.open .mega-chevron {
    transform: rotate(180deg);
}

/* The mega panel — anchored dropdown, not full width */
.mega-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 96vw);
    z-index: 900;
    background: var(--color-accent);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--color-accent);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
    overflow: hidden;

    /* Slide-in from left */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    pointer-events: none;
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease;
}

.mega-menu.open {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
    pointer-events: all;
}

.mega-inner {
    padding: 24px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 0;
}

/* On medium screens hide promo panel, go single column */
@media (max-width: 1024px) {
    .mega-menu {
        width: min(680px, 96vw);
    }

    .mega-inner {
        grid-template-columns: 1fr;
    }

    .mega-promo {
        display: none;
    }

    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .mega-grid {
        grid-template-columns: 1fr;
    }
}

/* Left promo panel */
.mega-promo {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 28px;
}

.mega-promo-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.mega-promo-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    flex: 1;
}

.mega-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background 0.2s;
    align-self: flex-start;
    margin-top: 4px;
}

.mega-promo-btn:hover {
    background: var(--color-accent-dark);
}

/* Right content area */
.mega-content {
    padding-left: 4px;
}

.mega-section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-dark);
    transition: background 0.18s;
}

.mega-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mega-item i {
    font-size: 1rem;
    color: var(--color-accent-dark);
    margin-top: 2px;
    width: 18px;
    flex-shrink: 0;
}

.mega-item span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-item strong {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
}

.mega-item small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.3;
}

/* ========== Mobile Menu Accordion ========== */
.mob-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    text-align: left;
}

.mob-link:hover,
.mob-acc-trigger.open {
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.03);
}

.mob-acc-icon {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
    color: rgba(255, 255, 255, 0.4);
}

.mob-acc-trigger.open .mob-acc-icon {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.mob-acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.mob-acc-panel.open {
    max-height: 400px;
}

.mob-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px 9px 28px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: color 0.2s, background 0.2s;
}

.mob-sub-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.mob-sub-link i {
    width: 14px;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ========== Contact Hero Section ========== */
.contact-hero-section {
    position: relative;
    min-height: 75vh;
    /* background: linear-gradient(135deg, var(--color-dark) 0%, #0d1520 60%, var(--color-dark-2) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 24px 48px;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: url('https://images.unsplash.com/photo-1579684453423-f84349ef60b0?q=80&w=1191&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat; */
    opacity: 0.50;
}


/* Center text */
.ch-center {
    text-align: center;
    z-index: 2;
    position: relative;
}

.ch-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.ch-dot-icon {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 10px 0 12px;
}

.ch-sub {
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
}

/* Floating chips */
.ch-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1a2230;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 6px 14px 6px 6px;
    z-index: 3;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: chipShake 5s ease-in-out infinite;
}

/* Icon-only chips (no text) */
.ch-chip:not(:has(.ch-chip-text)) {
    padding: 6px;
    border-radius: 50%;
}

.ch-chip-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.ch-chip-text {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* Chip positions */
.ch-chip--tl1 {
    top: 14%;
    left: 6%;
    transform: rotate(-8deg);
    animation-delay: 0s;
}

.ch-chip--ml1 {
    top: 38%;
    left: 4%;
    transform: rotate(-5deg);
    animation-delay: 0.4s;
}

.ch-chip--bl1 {
    bottom: 14%;
    left: 5%;
    transform: rotate(6deg);
    animation-delay: 0.8s;
}

.ch-chip--tr1 {
    top: 12%;
    right: 5%;
    transform: rotate(8deg);
    animation-delay: 0.2s;
}

.ch-chip--mr1 {
    top: 30%;
    right: 3%;
    transform: rotate(5deg);
    animation-delay: 0.6s;
}

.ch-chip--br1 {
    bottom: 12%;
    right: 4%;
    transform: rotate(-6deg);
    animation-delay: 1s;
}

.ch-chip--x {
    top: 52%;
    left: 22%;
    transform: rotate(-3deg);
    animation-delay: 1.2s;
}

.ch-chip--li {
    top: 48%;
    right: 22%;
    transform: rotate(3deg);
    animation-delay: 1.6s;
}

@keyframes chipShake {

    0%,
    100% {
        transform: translate(0, 0) rotate(var(--r, 0deg));
    }

    15% {
        transform: translate(-3px, -2px) rotate(var(--r, 0deg));
    }

    30% {
        transform: translate(3px, 2px) rotate(var(--r, 0deg));
    }

    45% {
        transform: translate(-2px, 3px) rotate(var(--r, 0deg));
    }

    60% {
        transform: translate(2px, -3px) rotate(var(--r, 0deg));
    }

    75% {
        transform: translate(-1px, 2px) rotate(var(--r, 0deg));
    }

    88% {
        transform: translate(1px, -1px) rotate(var(--r, 0deg));
    }
}

.ch-chip--tl1 {
    --r: -8deg;
}

.ch-chip--ml1 {
    --r: -5deg;
}

.ch-chip--bl1 {
    --r: 6deg;
}

.ch-chip--tr1 {
    --r: 8deg;
}

.ch-chip--mr1 {
    --r: 5deg;
}

.ch-chip--br1 {
    --r: -6deg;
}

.ch-chip--x {
    --r: -3deg;
}

.ch-chip--li {
    --r: 3deg;
}

/* Responsive — hide outer chips on small screens */
@media (max-width: 768px) {

    .ch-chip--tl1,
    .ch-chip--tr1,
    .ch-chip--br1 {
        display: none;
    }

    .ch-chip--ml1 {
        left: 2%;
        top: 20%;
    }

    .ch-chip--bl1 {
        left: 2%;
        bottom: 10%;
    }

    .ch-chip--mr1 {
        right: 2%;
        top: 20%;
    }

    .ch-chip--x {
        left: 5%;
        top: 60%;
    }

    .ch-chip--li {
        right: 5%;
        top: 60%;
    }

    .contact-hero-section {
        min-height: 220px;
        padding: 80px 16px 36px;
    }
}

@media (max-width: 480px) {

    .ch-chip--ml1,
    .ch-chip--mr1,
    .ch-chip--x,
    .ch-chip--li {
        display: none;
    }

    .ch-chip--bl1 {
        left: 4%;
        bottom: 8%;
    }
}

/* ========== Map & Branch Section ========== */
.map-branch-section {
    padding: 60px 0;
    /* background: var(--color-dark-2); */
}

/* City tab pills */
.branch-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-bottom: 32px;
}

.branch-tabs::-webkit-scrollbar {
    display: none;
}

.branch-tab {
    padding: 8px 28px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.branch-tab:hover {
    border-color: var(--color-accent);
    color: var(--color-accent-dark);
}

.branch-tab.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    font-weight: 600;
}

/* Panels */
.branch-panel {
    display: none;
}

.branch-panel.active {
    display: block;
}

/* Map + Info grid */
.branch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    min-height: 420px;
}

@media (max-width: 768px) {
    .branch-grid {
        grid-template-columns: 1fr;
    }
}

.branch-map {
    min-height: 320px;
}

.branch-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
}

/* Info panel */
.branch-info {
    background: #25559b17;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.branch-city-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #26bb70;
    margin: 0;
}

.branch-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.branch-detail-block {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.branch-area-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary-light, #5b9bd5);
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.branch-address,
.branch-contact {
    font-size: 0.82rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    line-height: 1.5;
}

.branch-address i,
.branch-contact i {
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
}

.branch-contact a {
    text-decoration: none;
    transition: color 0.2s;
}

.branch-contact a:hover {
    color: var(--color-accent);
}

.branch-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
    margin-top: 4px;
}

.branch-enquire-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}


/* ========== Get a Quote Modal ========== */
.quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.quote-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.quote-modal-box {
    position: relative;
    background: var(--color-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px 32px;
    width: 100%;
    max-width: 460px;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.28s ease, opacity 0.28s ease;
    opacity: 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(11, 78, 157, 0.25);
}

.quote-modal-overlay.open .quote-modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* accent top bar */
.quote-modal-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 0 0 4px 4px;
}

.quote-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 1;
    letter-spacing: 0.5px;
}

.quote-modal-close:hover {
    background: var(--color-accent-dark);
    transform: scale(1.1);
}

.quote-modal-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.quote-modal-title span {
    color: var(--color-accent);
}

.quote-modal-sub {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.quote-modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-input {
    width: 100%;
    background: var(--color-dark-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 0.88rem;
    color: #fff;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
}

.quote-input::placeholder {
    color: var(--color-gray);
}

.quote-input:focus {
    border-color: var(--color-primary);
    background: #1a2535;
}

.quote-textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-submit-btn {
    width: 100%;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.3px;
}

.quote-submit-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
}


/* ========== Right Sidebar Drawer ========== */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.right-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #0d1117;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 9999;
    padding: 56px 24px 24px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

.right-sidebar.open {
    transform: translateX(0);
}

.sidebar-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.sidebar-close-btn:hover {
    background: var(--color-accent-dark);
    transform: scale(1.1);
}

.sidebar-section {
    display: flex;
    flex-direction: column;
}

.sidebar-heading {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Quick links */
.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.sidebar-links li a i {
    color: var(--color-accent);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-links li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Contact list */
.sidebar-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.sidebar-contact-list li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-contact-list li a:hover {
    color: var(--color-accent);
}

.sidebar-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(246, 129, 34, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-accent);
    font-size: 0.75rem;
}

/* Social buttons */
.sidebar-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sidebar-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.sidebar-social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* ========== Phone Hover Dropdown ========== */
.phone-dropdown-wrap {
    position: relative;
    align-items: center;
}

.phone-dropdown-card {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

/* small arrow */
.phone-dropdown-card::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 14px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
}

.phone-dropdown-wrap:hover .phone-dropdown-card {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.phone-dropdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.phone-dropdown-line {
    display: inline-block;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    border-radius: 2px;
    flex-shrink: 0;
}

.phone-dropdown-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
}

.phone-dropdown-group {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 12px 0 8px;
}

.phone-dropdown-group:first-of-type {
    margin-top: 0;
}

.phone-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 6px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.18s;
}

.phone-dropdown-item:hover {
    background: #f5f7ff;
}

.phone-dropdown-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--color-primary);
    flex-shrink: 0;
    background: #fff;
}

.phone-dropdown-item span:last-child {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.phone-dropdown-item small {
    font-size: 0.72rem;
    color: #9ca3af;
    font-weight: 500;
}

.phone-dropdown-item strong {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
}


/* ========== Contact Details Timeline ========== */
.cd-timeline {
    position: relative;
    padding-left: 28px;
}

/* vertical line */
.cd-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent-dark), var(--color-accent));
    border-radius: 2px;
}

.cd-item {
    position: relative;
    padding-bottom: 28px;
    display: flex;
}

.cd-item--last {
    padding-bottom: 0;
}

/* dot */
.cd-dot {
    position: absolute;
    left: -28px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    background: var(--color-dark-2);
    box-shadow: 0 0 0 3px rgba(11, 78, 157, 0.2);
    z-index: 1;
}

/* inner filled circle */
.cd-dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--color-accent);
}

.cd-label {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.cd-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.cd-text a {
    text-decoration: none;
    transition: color 0.2s;
}

.cd-text a:hover {
    color: var(--color-accent);
}

.cd-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.cd-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--color-dark-3);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.cd-social-btn:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}


/* ========== Welcome Promo Popup ========== */
.promo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.promo-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.promo-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-light);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.94) translateY(16px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    border: 2px solid var(--color-dark-2);
}

.promo-overlay.open .promo-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

@media (max-width: 640px) {
    .promo-box {
        grid-template-columns: 1fr;
    }

    .promo-img-panel {
        display: none;
    }
}

.promo-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}

.promo-close:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

/* Left image panel */
.promo-img-panel {
    position: relative;
    /* background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0a2a5e 100%); */
    min-height: 420px;
}

.promo-img-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-img-placeholder {
    flex: 1;
    display: flex;
    align-items: normal;
    justify-content: center;
    background: linear-gradient(105.74deg, #4D6770 10.05%, #6F8591 94.38%);
}

.promo-img-badge {
    padding: 20px 20px 0;
}

.promo-badge-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #25559B;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.promo-badge-title span {
    color: var(--color-accent);
}

.promo-badge-sub {
    font-size: 0.78rem;
    color: #25559B;
    /* text-transform: uppercase; */
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.promo-offer-bar {
    /* background: #acb3b1f0; */
    background: linear-gradient(105.74deg, #4D6770 10.05%, #6F8591 94.38%);
    padding: 12px 20px;
    margin-top: 16px;
}

.promo-offer-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.promo-offer-sub {
    font-size: 0.72rem;
    color: #000;
    margin-top: 2px;
}

/* Right detail panel */
.promo-detail-panel {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    overflow-y: auto;
}

.promo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(11, 78, 157, 0.2);
    border: 1px solid rgba(11, 78, 157, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.promo-brand-name {
    font-size: 0.95rem;
    font-weight: 700;
    /* color: var(--color-accent); */
}

.promo-property-name {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.promo-property-loc {
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-property-desc {
    font-size: 0.83rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.promo-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.promo-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.promo-stat strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: #25559B;
}

.promo-stat small {
    font-size: 0.72rem;
    color: #25559B;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.promo-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
}

.promo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
}

.promo-cta-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
}

.promo-dont-show {
    font-size: 0.75rem;
    color: rgba(59, 57, 57, 0.704);
    margin: 0;
}

.promo-dont-show label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.promo-dont-show input[type="checkbox"] {
    accent-color: var(--color-accent);
    cursor: pointer;
}


/* ========== About / Stacked Card Section ========== */
.about-stack-section {
    padding: 80px 0;
    /* background: var(--color-light); */
    overflow: hidden;
}

.about-stack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-stack-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.about-us {
    min-height: 70vh;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 60%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: url('https://images.pexels.com/photos/4371750/pexels-photo-4371750.jpeg') center/cover no-repeat; */
    opacity: 0.40;
}

/* ---- Stacked Carousel ---- */
.stack-carousel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.stack-carousel {
    position: relative;
    width: 385px;
    height: 500px;
}

.stack-card {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    will-change: transform, opacity;
}

/* stacking positions — set via JS */
.stack-card[data-pos="0"] {
    /* front */
    transform: translateX(0) scale(1) rotate(0deg);
    z-index: 4;
    opacity: 1;
}

.stack-card[data-pos="1"] {
    transform: translateX(-28px) scale(0.93) rotate(-4deg);
    z-index: 3;
    opacity: 0.85;
}

.stack-card[data-pos="2"] {
    transform: translateX(-52px) scale(0.86) rotate(-8deg);
    z-index: 2;
    opacity: 0.6;
}

.stack-card[data-pos="3"] {
    transform: translateX(-72px) scale(0.79) rotate(-12deg);
    z-index: 1;
    opacity: 0.35;
}

/* exit animation — front card flies out to the right */
.stack-card.exiting {
    transform: translateX(320px) scale(0.9) rotate(8deg) !important;
    opacity: 0 !important;
    z-index: 5 !important;
}

/* all cards transition smoothly */
.stack-card {
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.55s ease;
}

.stack-card-bg {
    position: absolute;
    inset: 0;
}

.stack-card-content {
    position: relative;
    z-index: 1;
    padding: 24px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.stack-card-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.stack-card-content p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
}

/* ---- Right content ---- */
.about-stack-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #26bb70;
    line-height: 1.15;
    margin: 6px 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.about-stack-desc {
    line-height: 1.75;
    margin-bottom: 12px;
}

.about-stack-stats {
    display: flex;
    gap: 28px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.about-stack-stats div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.about-stack-stats strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-accent);
}

.about-stack-stats span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ========== FAQ Section ========== */
.faq-section {
    padding: 80px 0;
    /* background: var(--color-dark); */
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Left */
.faq-left-title {
    font-size: 1.8rem;
    font-weight: 900;
    /* color: #fff; */
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.faq-left-desc {
    font-size: 0.88rem;
    /* color: rgba(255, 255, 255, 0.6); */
    line-height: 1.75;
}

.faq-left-desc a {
    /* color: var(--color-accent); */
    text-decoration: none;
}

.faq-left-desc a:hover {
    text-decoration: underline;
}

/* Right */
.faq-heading {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    /* background: ; */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: rgba(246, 129, 34, 0.4);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
    font-family: inherit;
}

.faq-trigger:hover {
    color: var(--color-accent-dark);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, color 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 18px;
}

.faq-panel p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    padding-bottom: 16px;
    margin: 0;
}

.faq-item.open .faq-panel {
    max-height: 200px;
    padding-top: 0;
}


/* Property type tab active state */
.prop-type-tab.active-tab {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

/* ========== Property Tokenization Section ========== */
.ptok-section {
    padding: 80px 0;
    background: var(--color-dark);
}

/* ── Timeline container ── */
.ptok-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* Vertical line running through center */
.ptok-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--color-primary) 10%,
            var(--color-accent) 90%,
            transparent 100%);
}

/* ── Each step row ── */
.ptok-step {
    display: grid;
    grid-template-columns: 1fr 64px 1fr;
    align-items: center;
    gap: 0;
    padding: 40px 0;
    position: relative;
}

/* ── Center node ── */
.ptok-node {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.ptok-node-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-dark);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(72, 245, 216, 0.1);
    transition: background 0.3s, box-shadow 0.3s;
}

.ptok-step:hover .ptok-node-num {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 0 0 8px rgba(210, 235, 229, 0.15);
}

/* ── Text side ── */
.ptok-text {
    padding: 0 32px;
}

.ptok-step--right .ptok-text {
    text-align: right;
    padding-right: 40px;
    padding-left: 16px;
}

.ptok-step--left .ptok-text {
    text-align: left;
    padding-left: 40px;
    padding-right: 16px;
}

.ptok-step-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.ptok-step-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ptok-step-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
}

/* ── Detail card ── */
.ptok-card {
    background: var(--color-dark-3);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.ptok-step:hover .ptok-card {
    border-color: rgba(47, 179, 146, 0.649);
    box-shadow: 0 6px 24px rgba(112, 238, 234, 0.08);
}

/* Checklist */
.ptok-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ptok-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.ptok-checklist li i {
    font-size: 0.72rem;
    flex-shrink: 0;
}

/* Code block */
.ptok-code-block {
    background: #0a0f1a;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ptok-code-line {
    color: rgba(255, 255, 255, 0.7);
}

.ptok-indent {
    padding-left: 16px;
}

.ptok-kw {
    color: #14b8a6;
}

.ptok-var {
    color: #a78bfa;
}

.ptok-comment {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

/* Stats grid */
.ptok-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ptok-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
}

.ptok-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ptok-stat-label {
    color: rgba(255, 255, 255, 0.45);
}

.ptok-stat-val {
    font-weight: 700;
}

/* Feature list */
.ptok-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ptok-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.ptok-feat-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(246, 129, 34, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ── Bottom CTA bar ── */
.ptok-cta-bar {
    margin-top: 56px;
    background: var(--color-dark-3);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* ── Tablet (≤ 900px): collapse to single column ── */
@media (max-width: 900px) {
    .ptok-timeline::before {
        left: 24px;
    }

    .ptok-step {
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        gap: 0 16px;
        padding: 28px 0;
    }

    /* node always in col 1 row 1 */
    .ptok-node {
        grid-column: 1;
        grid-row: 1;
        align-self: start;
        margin-top: 4px;
    }

    /* text always in col 2 row 1 */
    .ptok-step--right .ptok-text,
    .ptok-step--left .ptok-text {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        padding: 0 0 12px 0;
    }

    /* card always in col 2 row 2 */
    .ptok-step--right .ptok-card,
    .ptok-step--left .ptok-card {
        grid-column: 2;
        grid-row: 2;
    }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
    .ptok-section {
        padding: 56px 0;
    }

    .ptok-node-num {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .ptok-step-title {
        font-size: 1rem;
    }

    .ptok-cta-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .ptok-cta-bar .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========== 5 Levels of Security Section ========== */
.sec5-section {
    height: 90vh;
    align-items: center;
    overflow: hidden;
}

/* Two-col layout */
.sec5-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
}

/* Left sticky heading */
.sec5-left {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sec5-heading {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #25559B;
    line-height: 1.15;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.sec5-sub {
    font-size: 0.88rem;
    line-height: 1.75;
}

/* Scrolling track wrapper — clips overflow */
.sec5-track-wrap {
    overflow: hidden;
    /* fade edges */
    /* -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); */
}

/* The moving track */
.sec5-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: sec5Scroll 28s linear infinite;

}

.sec5-track:hover {
    animation-play-state: paused;
}

@keyframes sec5Scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Individual card */
.sec5-card {
    position: relative;
    width: 330px;
    flex-shrink: 0;
    background: #25559b17;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 22px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sec5-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 28px rgba(246, 129, 34, 0.1);
}

/* Level badge — top left */
.sec5-level-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-primary-light);
    background: rgba(11, 78, 157, 0.15);
    border: 1px solid rgba(11, 78, 157, 0.25);
    border-radius: var(--radius-full);
    padding: 3px 10px;
    width: fit-content;
}

/* Secured badge — top right */
.sec5-secured-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    padding: 3px 10px;
}

/* Icon box */
/* .sec5-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-top: 4px;
}

.sec5-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.sec5-card-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin: 0;
    flex: 1;
} */

/* Footer: progress */
.sec5-footer {
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}



.sec5-progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.sec5-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-full);
}

/* ── Tablet (≤ 1024px): stack layout ── */
@media (max-width: 1024px) {
    .sec5-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sec5-left {
        position: static;
        text-align: center;
    }

    .sec5-track-wrap {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    }
}

/* ── Mobile (≤ 640px): smaller cards ── */
@media (max-width: 640px) {
    .sec5-section {
        padding: 56px 0;
    }

    .sec5-card {
        width: 240px;
        padding: 18px 16px 14px;
    }

    .sec5-track {
        gap: 14px;
    }

    .sec5-heading {
        font-size: 1.8rem;
    }
}

/* Pause on reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .sec5-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }
}

/* ========== 5 Levels of Security Section  ended========== */
/* ========== Team Gallery Scroll (about-us2.html) ========== */
@keyframes scrollLTR {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRTL {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.team-scroll-ltr {
    animation: scrollLTR 28s linear infinite;
}

.team-scroll-rtl {
    animation: scrollRTL 28s linear infinite;
}

.team-scroll-ltr:hover,
.team-scroll-rtl:hover {
    animation-play-state: paused;
}

/* card banner in about us -------- */
.banner-card-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, #25559b26 0%, #26bb701f 60%, #25559b1f 100%);
    position: relative;
    overflow: hidden;
}

.banner-card-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner-hero.jpg') center/cover no-repeat;
    opacity: 0.10;
}

/* Partners Page CSS Start */
.partner-track {
    width: max-content;
    animation: scrollPartners 25s linear infinite;
}

.partner-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    height: 60px;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Animation */
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* services page csss*/
.service-bg {
    min-height: 70vh;
    /* background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 60%, var(--color-dark-3) 100%); */
    background-color: #020a10;
    position: relative;
    overflow: hidden;
}

.service-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/16323438/pexels-photo-16323438.jpeg') center/cover no-repeat;
    opacity: 0.10;
}

/* vision mission cards */
.wedosearch-card {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.wedosearch-card:hover {
    transform: translateY(-25px) scale(1.03) rotate(1deg);
    box-shadow: 0 35px 70px -15px rgb(0 0 0 / 0.5);
}

/* Background Image on Hover */
.wedosearch-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.7s ease;
    z-index: 0;
}

.wedosearch-card:hover .wedosearch-card-bg {
    opacity: 0.10;
}

.wedosearch-card:hover::before {
    opacity: 0.7;
    transform: scale(1.08);
}

.wedosearch-content {
    position: relative;
    z-index: 10;
}

/* ========== Browse By Budget Collage ========== */
.budget-img-top {
    height: 280px;
}

.budget-img-bottom {
    height: 230px;
}

.budget-img-right {
    height: 460px;
    margin-top: 48px;
}

@media (max-width: 1024px) {
    .budget-img-top {
        height: 220px;
    }

    .budget-img-bottom {
        height: 160px;
    }

    .budget-img-right {
        height: 360px;
        margin-top: 36px;
    }
}

@media (max-width: 768px) {
    .budget-collage {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .budget-img-top {
        height: 160px;
    }

    .budget-img-bottom {
        height: 120px;
    }

    .budget-img-right {
        height: 260px;
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .budget-collage {
        grid-template-columns: 1fr;
    }

    .budget-img-top {
        height: 200px;
    }

    .budget-img-bottom {
        display: none;
    }

    .budget-img-right {
        height: 200px;
        margin-top: 0;
    }
}

/* service image  responsive */
@media (max-width:320px) {
    .service-img {
        height: 200px;
    }
}

/* courses css */
.C-banner {
    min-height: 70vh;
    /* background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 60%, var(--color-primary-dark) 100%); */
    position: relative;
    overflow: hidden;
}

.C-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/32213307/pexels-photo-32213307.jpeg') center/cover no-repeat;
    opacity: 0.60;
}

.prop-banner {
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.prop-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: url('https://images.pexels.com/photos/31290499/pexels-photo-31290499.jpeg') center/cover no-repeat; */
    opacity: 0.1;
}

.accordion-content {
    transition: all 0.3s ease-in-out;
}