/* Modern Offers Page Styling */
.offers-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.offers-hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.offers-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out;
}

.offers-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-crop-overlay {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.scheme-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.scheme-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    margin-bottom: 4rem;
    transition: transform 0.3s ease;
}

.scheme-container:hover {
    transform: translateY(-5px);
}

.scheme-header {
    margin-bottom: 2.5rem;
    border-bottom: 3px solid #0a8d9a;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.scheme-icon {
    font-size: 2.5rem;
    color: #0a8d9a;
}

.scheme-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Beautiful Responsive Table */
.custom-table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.custom-table th {
    background: #0a8d9a;
    color: white;
    padding: 1.2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.custom-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
    color: #444;
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.custom-table tr:nth-child(even) {
    background: #fdfdfd;
}

.custom-table tr:hover {
    background: #f1f8f9;
}

.amount-nepali {
    font-weight: 700;
    color: #0a8d9a;
}

.terms-box {
    margin-top: 3rem;
    background: #fff9f0;
    border-left: 5px solid #f39c12;
    padding: 2rem;
    border-radius: 0 15px 15px 0;
}

.terms-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d35400;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #555;
    font-size: 1rem;
}

.terms-list i {
    color: #f39c12;
    margin-top: 5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .offers-hero-title {
        font-size: 2.2rem;
    }

    .scheme-container {
        padding: 1.5rem;
    }

    .scheme-title {
        font-size: 1.5rem;
    }
}