.card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.col-md-6, .col-lg-4 {
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-body {
    position: relative;
    padding: 2rem !important;
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(249,249,249,1) 100%);
}

/* Redesigned status badge and container */
.status-badge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.status-badge {
    position: relative;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 120px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.destination {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    width: 100%;
    word-wrap: break-word;
    margin: 0;
    line-height: 1.4;
}

.info-label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-weight: 500;
}

.info-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.quota {
    font-size: 0.95rem;
    color: #495057;
    padding: 0.75rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
}

.quota .number {
    color: #198754;
    font-weight: 700;
    font-size: 1.1rem;
}

.quota .total-seats {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.1rem;
}

.quota.low {
    background: #fff5f5;
}

.btn {
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, #fe8b5e, #ff7043);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(254, 139, 94, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(254, 139, 94, 0.4);
    background: linear-gradient(45deg, #ff7043, #fe8b5e);
}

.btn-secondary {
    background: linear-gradient(45deg, #6c757d, #495057);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 10px;
    opacity: 0.9;
}

.parallax-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 230px 0;
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/madina.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.7);
    z-index: -1;
}

.parallax-content {
    position: relative;
    z-index: 1;
}

.parallax-title {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.parallax-title h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.parallax-title p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .parallax-title h1 {
        font-size: 2rem;
    }
    .parallax-title p {
        font-size: 1rem;
        padding: 0 20px;
    }
    .card-body {
        padding: 1.5rem !important;
    }
    
    .destination {
        font-size: 1.1rem;
    }
    
    .info-value {
        font-size: 1rem;
    }
    
    .price {
        font-size: 1.8rem;
        padding: 1.2rem 0;
        margin: 1.2rem 0;
    }
    
    .status-badge-container {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .status-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    .icon-circle {
        width: 45px;
        height: 45px;
    }
}

/* Updated badge styles */
.bg-success.status-badge {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
    border: 1px solid rgba(255,255,255,0.2);
}

.bg-secondary.status-badge {
    background: linear-gradient(45deg, #6c757d, #495057) !important;
    border: 1px solid rgba(255,255,255,0.2);
}

.bg-success {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #005749;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    border-top: 2px solid #e9ecef;
    border-bottom: 2px solid #e9ecef;
    text-align: center;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, rgba(0,87,73,0.05), rgba(0,87,73,0), rgba(0,87,73,0.05));
}

.price::before {
    content: '';
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sold-out-message {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.sold-out-message p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}

/* Seminar List Styles */

.container {
    padding: 3rem 1.5rem;
}

.card-content {
    margin-bottom: 3rem;
}

.button-wrapper {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

.btn-details {
    background: linear-gradient(45deg, #ef9168, #ef9168);
    border: none;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    box-shadow: 0 3px 6px rgba(239, 145, 104, 0.2);
    transition: all 0.3s ease;
    color: #ffffff !important;
    text-decoration: none;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(239, 145, 104, 0.3);
    background: linear-gradient(45deg, #ef9168, #ef9168);
    color: #ffffff !important;
    text-decoration: none;
}

.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edf2f0;
    margin-right: 1.5rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.icon-circle i {
    font-size: 1.4rem;
    color: #235649;
}

.seminar-title {
    color: #1a273b;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}

.text-muted-custom {
    color: #506584;
    font-size: 1rem;
    font-weight: 500;
}

.badge-custom {
    background-color: #f8f9fa;
    color: #506584;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: inline-block;
    margin-top: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.location-wrapper {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.badge-custom i {
    color: #235649;
}

.gap-3 {
    gap: 1.5rem !important;
}

/* Seminar specific styles */
.seminar-heading {
    color: #005749;
}

.seminar-card {
    border-radius: 15px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.seminar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.event-icon {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.event-icon i {
    color: #005749;
    font-size: 24px;
}

.seminar-card:hover .event-icon {
    background: #005749;
}

.seminar-card:hover .event-icon i {
    color: #fff;
}

.seminar-title {
    font-weight: bold;
    color: #005749;
    margin-bottom: 0.25rem;
}

.seminar-date {
    color: #6c757d;
}

.location-info {
    margin: 1.5rem 0;
}

.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.icon-wrapper {
    width: 20px;
    margin-right: 1rem;
}

.icon-wrapper i {
    color: #fe8b5e;
}

.location-text {
    font-weight: 500;
    color: #2c3e50;
}

.location-detail {
    color: #6c757d;
}

.button-container {
    text-align: right;
    margin-top: 2rem;
}

.btn-register {
    background: #fe8b5e;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: #e67d52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254,139,94,0.3);
    color: #fff;
}

.seminar-empty {
    text-align: center;
    padding: 3rem 0;
}

.seminar-empty img {
    max-width: 200px;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.seminar-empty h2 {
    color: #005749;
    margin-bottom: 1rem;
}

.seminar-empty p {
    color: #6c757d;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .seminar-card {
        margin-bottom: 1rem;
    }
    
    .event-icon {
        padding: 12px;
    }
    
    .event-icon i {
        font-size: 20px;
    }
    
    .seminar-title {
        font-size: 1.1rem;
    }
    
    .button-container {
        text-align: center;
    }
}

