/* Roadmap Interactivity */
.roadmap-item {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid var(--light);
    border-radius: 15px;
    transition: 0.3s;
}

.roadmap-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 9, 83, 0.1);
}

.roadmap-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--light);
    border-radius: 50%;
    margin: 0 auto;
    transition: 0.3s;
}

.roadmap-item:hover .roadmap-icon {
    background: var(--primary);
}

.roadmap-item:hover .roadmap-icon i {
    color: #fff !important;
}

/* Case Card Hover */
.case-card {
    transition: 0.4s;
}

.case-card:hover {
    background: var(--dark) !important;
}

.case-card:hover h4, 
.case-card:hover p {
    color: #fff !important;
}

/* Button Pulse Animation */
.btn-dark:hover {
    animation: pulse-dark 1.5s infinite;
}

@keyframes pulse-dark {
    0% { box-shadow: 0 0 0 0 rgba(1, 26, 65, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(1, 26, 65, 0); }
    100% { box-shadow: 0 0 0 0 rgba(1, 26, 65, 0); }
}


/* Glassmorphism Effect for Global Section */
.map-wrapper {
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'), var(--dark);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    width: 80%;
    transition: 0.4s;
}

.glass-card:hover {
    background: rgba(234, 9, 83, 0.15);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Professional Table Styling */
.table {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(1, 26, 65, 0.05);
}

.table td {
    padding: 20px 15px;
    vertical-align: middle;
}

.table thead th {
    border: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-hover tbody tr:hover {
    background-color: rgba(223, 228, 253, 0.3);
}