.media-section {
    overflow: hidden;
}

/* Heading */
.media-section h2 {
    font-size: 40px;
    color: blue !important;
}

/* Title */
.line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff5f6d, #ff9966);
}

.section-head p {
    color: #666;
}

/* Card */
.annual-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    height: 100%;
    border: 1px solid black;
}

.annual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* Drive Icon */
.report-icon {
    font-size: 55px;
    margin-bottom: 15px;
}

.report-icon.drive {
    color: #1a73e8; /* Google Drive blue */
}

/* Text */
.report-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.report-content .year {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

/* Button */
.media-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #1a73e8;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.media-btn:hover {
    background: #1558b0;
    color: #fff;
}
