/* DCB Cards Page Styles */

/* Breadcrumb */
.breadcrumb-section {
    background: #f9fafb;
}

.breadcrumb-section a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

/* Cards Hero Section */
.cards-hero {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 0 0 50px 50px;
}

/* Section Intro Animation */
.section-intro {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Item Styles */
.card-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    background: white;
}

.card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #1e3a8a;
}

/* Card Image Hover Effect */
.card-item img {
    transition: transform 0.4s ease;
}

.card-item:hover img {
    transform: scale(1.1);
}

/* Know More Button */
.know-more-btn {
    border: 2px solid #1e3a8a;
    color: #1e3a8a;
    padding: 8px 28px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
}

.know-more-btn:hover {
    background: #1e3a8a;
    color: white;
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .cards-hero {
        border-radius: 0 0 30px 30px;
    }
}

@media (max-width: 768px) {
    .card-item {
        margin-bottom: 1.5rem;
    }
    
    .cards-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .cards-hero {
        border-radius: 0;
    }
}

/* Staggered Animation for Cards */
.card-item:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.card-item:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.card-item:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.card-item:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.4s both;
}