


    .feature-card, .pricing-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .feature-card:hover, .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .features-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        background-color: #fff;
    }
    .feature-icon {
        font-size: 2.5rem;
        color: var(--bs-primary);
        margin-bottom: 1rem;
    }
    .data-tables-section {
        background: linear-gradient(to bottom, #f5f5f5 0%, #e8f0f2 100%);
        padding: 6rem 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    .data-table-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
        border-radius: 1rem;
    }
    .data-table-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    .data-table-category {
        font-size: 1.25rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1.5rem;
    }
    .pricing-section {
        background: linear-gradient(to bottom, #4db6ac 0%, #26a69a 100%);
        color: #fff;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 6rem 0;
    }
    .pricing-section .card {
        border-radius: 1rem;
        border: none;
        background: rgba(255, 255, 255, 0.95);
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .pricing-section .card-body {
        color: #333;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .pricing-card {
        border-radius: 1rem;
        border: none;
        background: rgba(255, 255, 255, 0.95);
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .pricing-card .card-body {
        color: #333;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .pricing-card .card-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--bs-secondary);
    }
    .pricing-card .card-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .pricing-card h3 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--bs-secondary);
    }
    .pricing-card ul {
        font-size: 1rem;
        margin-bottom: 2rem;
        flex-grow: 1;
    }
    .pricing-card .btn {
        background-color: var(--bs-secondary);
        border-color: var(--bs-secondary);
        color: #fff;
        font-weight: 600;
        border-radius: 2rem;
        padding: 0.75rem 2rem;
        align-self: center;
    }
    .pricing-card .btn:hover {
        background-color: #1d7a70;
        border-color: #1d7a70;
    }
    /* Hero Image Styles */
    .hero-icon-container {
        position: relative;
        width: 100%;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero-icon {
        font-size: 10rem;
        color: rgba(255, 255, 255, 0.9);
        animation: float 3s ease-in-out infinite;
        z-index: 2;
    }
    .hero-papers {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 50%;
        background: linear-gradient(to top, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
        clip-path: polygon(0 60%, 20% 40%, 40% 60%, 60% 40%, 80% 60%, 100% 40%, 100% 100%, 0 100%);
        opacity: 0.5;
        z-index: 1;
    }
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }
    /* Updated Section Headings */
    .section-heading {
        font-size: 3rem; /* Bigger font */
        font-weight: 800; /* Bolder */
        margin-bottom: 3rem; /* More spacing */
    }

    html {
        scroll-behavior: smooth;
      }

/* ============================================
   BLM MAP PROMOTIONAL SECTION
   ============================================ */
.blm-map-promo-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f3 100%);
    position: relative;
    overflow: hidden;
}

.blm-map-promo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(38, 166, 154, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blm-map-promo-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blm-promo-content {
    position: relative;
    z-index: 2;
}

.blm-badge .badge {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
}

.blm-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blm-features > div:hover .blm-icon-box {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blm-map-visual {
    position: relative;
    z-index: 2;
}

.blm-visual-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(38, 166, 154, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.blm-map-illustration {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.blm-map-icon-container {
    position: relative;
    display: inline-block;
}

.blm-main-icon {
    position: relative;
    z-index: 3;
    animation: float-icon 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(38, 166, 154, 0.3));
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.blm-ping-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid var(--bs-primary);
    border-radius: 50%;
    opacity: 0;
    animation: ping-animation 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.blm-ping-delay {
    animation-delay: 1.5s;
}

@keyframes ping-animation {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    75%, 100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.blm-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.blm-float-icon {
    position: absolute;
    animation: float-around 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.blm-float-1 {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.blm-float-2 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1.3s;
}

.blm-float-3 {
    top: 30%;
    left: 5%;
    animation-delay: 2.6s;
}

@keyframes float-around {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-5px) translateX(-5px);
    }
    75% {
        transform: translateY(-15px) translateX(0px);
    }
}

/* Button Enhancements */
.blm-map-promo-section .btn-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #1d7a70 100%);
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.blm-map-promo-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.blm-map-promo-section .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.blm-map-promo-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(38, 166, 154, 0.4);
}

.blm-map-promo-section .btn-outline-primary {
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.blm-map-promo-section .btn-outline-primary:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(38, 166, 154, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .blm-map-illustration {
        margin-bottom: 2rem;
    }

    .blm-main-icon {
        font-size: 6rem !important;
    }

    .blm-float-icon i {
        font-size: 1.5rem !important;
    }
}