.social-list .social-item a svg {
    stroke: #fff;
  }

  .header-navbar .navbar .dropdown-menu .dropdown-item {
    font-weight: var(--bs-body-font-weight);
    min-width: auto;
    padding: 0.18rem 1rem;
}

.vertical-award .award-content {
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.season-container {
    width: 100%; /* Full width */
    max-width: 1200px; /* Optional: set a max-width for very large screens */
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Slightly more prominent shadow for the main container */
    background-color: #ffffff;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.season-container h1 {
    text-align: center;
    color: #2c3e50; /* Darker, more professional heading color */
    margin-bottom: 30px;
    font-size: 2.5em; /* Larger main heading */
}

.season-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px; /* Slightly more rounded corners for cards */
    padding: 25px; /* More padding inside cards */
    margin-bottom: 25px; /* More space between cards */
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.2); /* Softer initial glow */
    transition: box-shadow 0.3s ease-in-out, transform 0.2s ease-in-out; /* Smooth transition for glow and subtle hover effect */
}

.season-card:hover {
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.5); /* Enhanced glow on hover */
    transform: translateY(-3px); /* Subtle lift effect on hover */
}

.season-card h2 {
    color: #007bff; /* Primary blue for season headings */
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.8em; /* Larger season headings */
}

.season-card p {
    line-height: 1.7; /* Improved readability for paragraph text */
    color: #444; /* Slightly darker text for better contrast */
    font-size: 1.1em; /* Slightly larger paragraph font size */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .season-container {
        margin: 15px;
        padding: 15px;
    }

    .season-container h1 {
        font-size: 2em;
    }

    .season-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .season-card h2 {
        font-size: 1.5em;
    }

    .season-card p {
        font-size: 1em;
    }
}

.testing-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 20px;
}

#read-more-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

#read-more-btn:hover {
    background-color: #0056b3;
}

/* WhatsApp Blinking CTA */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.blinking-whatsapp {
    animation: blink 1s infinite;
    height: 24px;          /* control height */
    width: auto;           /* maintain aspect ratio */
    margin-right: 8px;
    max-width: 24px;       /* prevent stretching */
}

.whatsapp-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}