/* Mouqab Al Noor - Premium Styles (Refactored) */
:root {
    --primary-rgb: 43, 121, 139;
    /* #2b798b */
    --secondary-rgb: 174, 150, 90;
    /* #ae965a */
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-color);
    background-color: #fdfdfd;
    overflow-x: hidden;
    line-height: 1.7;
}

/* --- Utilities --- */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* --- Buttons --- */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #236876);
    border: none;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #236876, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* --- Navbar --- */
/* --- Navbar (Theme-Matched) --- */
/* --- Header Styles moved to assets/css/header.css --- */

/* --- Hero Section (Premium Animated) --- */
.hero-section {
    position: relative;
    background: url('../images/hero-bg-penthouse.png') center/cover no-repeat fixed;
    min-height: 100vh;
    overflow: hidden;
}

/* Dynamic Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, rgba(20, 30, 48, 0.9), rgba(36, 59, 85, 0.9), rgba(43, 121, 139, 0.8));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: 1;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Shapes Animation */
.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    z-index: 1;
    animation: floatShape 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -50px;
    animation-delay: -10s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(50px, 50px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Content Styles */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.bg-white-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.border-glass {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Search Box Premium */
.search-box-wrapper {
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.search-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}

.search-box .form-control,
.search-box .form-select,
.search-box .input-group-text {
    height: 60px;
    background: #fff;
    font-size: 1rem;
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    box-shadow: none;
    border: 2px solid var(--primary-color);
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.clear-input {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ccc;
    transition: var(--transition);
    z-index: 5;
    display: none;
    padding: 5px;
}

.clear-input:hover {
    color: var(--primary-color);
}

.search-box .form-control {
    padding-right: 40px !important;
}

.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.4);
    transform: translateY(-2px);
}

.search-box .btn-search {
    height: 55px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(45deg, var(--secondary-color), #d4b06a);
    border: none;
    position: relative;
    overflow: hidden;
}

.search-box .btn-search::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: 0.3s;
}

.search-box .btn-search:hover::after {
    opacity: 1;
}

.search-box .btn-search:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(174, 150, 90, 0.4);
}

/* --- Cards --- */
.property-card {
    background: #fff;
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
}

.property-img-wrapper {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.property-card:hover .property-img {
    transform: scale(1.15);
}

.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.price-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(43, 121, 139, 0.95);
    color: white;
    padding: 6px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.card-body {
    padding: 30px;
}

.property-features {
    display: flex;
    justify-content: center;
    /* Center items to keep them near each other */
    align-items: center;
    gap: 15px;
    /* Add explicit gap */
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.feature-item {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 12px;
    width: auto;
    flex: 0 1 auto;
    /* Don't stretch */
    margin: 0;
    /* Let gap handle spacing */
    display: flex;
    flex-direction: column;
    /* Icon on top */
    justify-content: center;
    align-items: center;
    border: 1px solid #f0f0f0;
    font-size: 0.85rem;
    min-width: 80px;
    /* Ensure uniform look */
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-right: 0;
    margin-bottom: 5px;
    /* Space below icon */
}

/* Remove :last-child margin for clean fit */
.feature-item:first-child {
    margin-left: 0;
}

.feature-item:last-child {
    margin-right: 0;
}

/* --- Section Headers --- */
.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* --- Feature Boxes (Redesigned) --- */
.features-section {
    background: #fdfdfd;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-image:
        radial-gradient(at 0% 0%, rgba(var(--primary-rgb), 0.05) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(var(--secondary-rgb), 0.05) 0, transparent 50%);
}

.features-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), transparent);
    border-radius: 50%;
    filter: blur(80px);
}

.feature-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px 40px;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.feature-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent, rgba(var(--secondary-rgb), 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: 0.4s;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(var(--primary-rgb), 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.feature-box:hover::after {
    opacity: 1;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #236876);
    color: white;
    border-radius: 24px;
    font-size: 2.2rem;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(-5deg);
}

.feature-box:hover .icon-circle {
    transform: rotate(0deg) scale(1.1);
    background: linear-gradient(135deg, var(--secondary-color), #d4b06a);
    box-shadow: 0 15px 30px rgba(var(--secondary-rgb), 0.4);
    border-radius: 50%;
}

.feature-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.feature-box p {
    line-height: 1.8;
}

/* --- About Section (V2: Geometric Luxury) --- */
.about-section {
    padding: 160px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Background Large Text */
.about-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(var(--primary-rgb), 0.03);
    white-space: nowrap;
    z-index: 0;
    user-select: none;
    letter-spacing: -10px;
}

.about-collage {
    position: relative;
    padding-right: 60px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 550px;
}

.collage-main {
    grid-column: 1 / 10;
    grid-row: 1 / 10;
    border-radius: 40px 0 40px 0;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.collage-sub-1 {
    grid-column: 7 / 13;
    grid-row: 6 / 12;
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 8px solid #fff;
}

.collage-sub-2 {
    grid-column: 1 / 6;
    grid-row: 8 / 13;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border: 6px solid #fff;
}

.about-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-collage div:hover img {
    transform: scale(1.1);
}

.about-experience-badge {
    position: absolute;
    top: -40px;
    right: 0;
    width: 180px;
    height: 180px;
    background: var(--primary-color);
    border: 10px solid #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.3);
    animation: rotateBadge 20s linear infinite;
}

.badge-content {
    animation: keepUpright 20s linear infinite;
    text-align: center;
}

@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes keepUpright {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.about-experience-badge .num {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .txt {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-text-content {
    position: relative;
    z-index: 2;
}

.editorial-header {
    position: relative;
    margin-bottom: 40px;
}

.editorial-header .outline-txt {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.editorial-header h2 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-color);
}

.stat-pill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.stat-pill {
    background: #fbfbfb;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-pill:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.stat-pill i {
    width: 45px;
    height: 45px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-pill span {
    font-weight: 700;
    color: var(--dark-color);
}

.about-action {
    margin-top: 50px;
}

.btn-luxury {
    background: var(--dark-color);
    color: white;
    padding: 20px 45px;
    border-radius: 0 30px 0 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
    border: none;
}

.btn-luxury:hover {
    background: var(--primary-color);
    color: white;
    border-radius: 30px 0 30px 0;
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.4);
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #1a4d59);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: white;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.png') center/cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    padding: 18px 50px;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

/* --- Testimonials --- */
.testimonial-section {
    background: #111;
    padding: 120px 0;
    color: white;
}

.testimonial-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.quote-icon {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

/* --- Media Queries --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .search-box {
        padding: 25px;
    }

    .hero-section {
        padding-bottom: 50px;
    }

    .search-container {
        transform: none;
        margin-top: -30px;
        padding-bottom: 30px;
    }
}

/* --- Properties Page Specifics --- */
.filter-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: fit-content;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.filter-sidebar h4,
.filter-sidebar h6 {
    color: var(--dark-color);
    font-weight: 700;
}

.pagination .page-link {
    color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    margin: 0 5px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.pagination .page-link:hover {
    background-color: #f8f9fa;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.results-count {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Mobile Filter Sidebar */
@media (max-width: 992px) {
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        border-radius: 0;
    }

    .filter-sidebar.show {
        left: 0;
    }

    .filter-toggle {
        display: block;
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 999;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--primary-color);
        color: white;
        border: none;
        font-size: 1.5rem;
        box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
        transition: var(--transition);
        display: flex;
        /* Flex center */
        align-items: center;
        justify-content: center;
    }

    .filter-toggle:hover {
        transform: scale(1.1);
        background: var(--secondary-color);
    }

    .filter-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        z-index: 999;
    }

    .filter-overlay.show {
        display: block;
    }
}

/* --- Midnight Elegance Footer --- */
.footer {
    background: linear-gradient(135deg, #0a0e10 0%, #162024 100%);
    color: #a0a8b0;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(174, 150, 90, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0.5;
}

.footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
}

.footer p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer h5 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer .col-lg-2:hover h5::after,
.footer .col-lg-3:hover h5::after {
    width: 60px;
}

[dir="rtl"] .footer h5::after {
    left: auto;
    right: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #a0a8b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

[dir="rtl"] .footer ul li a:hover {
    transform: translateX(-5px);
}

.footer ul li i {
    color: var(--secondary-color);
    width: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(174, 150, 90, 0.3);
    border-color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: #6a767e;
    font-size: 0.95rem;
}

.footer-bottom-links a {
    color: #6a767e;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Glass Accent Layer */
.footer-glass {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(43, 121, 139, 0.05) 0%, transparent 70%);
    pointer-events: none;
}