/* ========================================
   NVIA Website - Complete Stylesheet
   Based on NVMA Design Pattern
======================================== */

/* ========================================
   1. RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ========================================
   2. HEADER STYLES
======================================== */
.site-header {
    background-color: #67cff5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
}

.logo-section {
    flex-shrink: 0;
}

.site-logo {
    height: 50px;
    width: auto;
}

.main-navigation {
    flex-grow: 1;
    margin: 0 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    color: #1a365d;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #0d1b2a;
}

.nav-menu li a.active {
    background-color: #ffffff;
    color: #3182ce;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.language-switcher a {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.3rem 0.5rem;
    color: #1a365d;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.language-switcher a.active {
    background-color: #ffffff;
    color: #3182ce;
}

.language-switcher .separator {
    color: #1a365d;
    font-size: 0.85rem;
}

/* ========================================
   3. HERO SECTION
======================================== */
 .hero-section {
 display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(110deg, #3182ce 0%, #e4f6fd 95%);
  position: relative;
  padding: 2.6rem var(--space-xs) 2.6rem var(--space-xs);
  margin-bottom: var(--space-md);
  text-align: center;
  min-height: 180px;
  border-radius: 0.8rem;
  box-shadow: var(--shadow-md);
}
.page-hero h1 {
  font-size: 1.34rem;
  font-weight: 800;
  color: #233876;
  text-shadow: 0 2px 7px rgba(39,67,147, 0.07);
  margin-bottom: 0.2em;
}
.page-hero .lead, .page-hero p {
  font-size: 1.06rem;
  color: #3a5564;
  margin-bottom: 0.16em;
  font-weight: 500;
  line-height: 1.55;
}

/* ========================================
   4. MAIN CONTENT AREA
======================================== */
.main-content {
    min-height: 60vh;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* ========================================
   5. SECTION HEADINGS
======================================== */
.section-heading {
    background: linear-gradient(to right, #e3f2fd 0%, #f0f8ff 100%);
    padding: 1rem 2rem;
    margin: 2rem 0 1.5rem 0;
    border-radius: 5px;
    border-left: 4px solid #3182ce;
}

.section-heading h2 {
    color: #1a365d;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.section-heading h3 {
    color: #1a365d;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

/* Content Sections */
.content-section {
    background-color: #f7fafc;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
}

.content-section p {
    margin: 1rem 0;
    line-height: 1.8;
    color: #2d3748;
}

/* ========================================
   6. LISTS & BULLET POINTS
======================================== */
.content-list {
    padding: 1rem 0;
}

.content-
list {
    list-style: none;
    padding-left: 0;
}

.content-list li {
    padding: 0.5rem 0 0.5rem 2.5rem;
    position: relative;
    line-height: 1.8;
    color: #2d3748;
}

.content-list li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: #3182ce;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Highlighted items */
.highlight-item {
    background-color: #fff3cd;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    font-weight: 600;
    color: #856404;
}

/* ========================================
   7. CTA (CALL TO ACTION) SECTION
======================================== */
.cta-section {
    background-color: #fff8e7;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ffe4b5;
}

.cta-section h2 {
    color: #6b4423;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    color: #5a3d1f;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background-color: #fdbe43;
    color: #5a3d1f;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(253, 190, 67, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #f9a825;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(253, 190, 67, 0.4);
}

.cta-button-outline {
    display: inline-block;
    background-color: transparent;
    color: #3182ce;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3182ce;
    cursor: pointer;
}

.cta-button-outline:hover {
    background-color: #3182ce;
    color: #ffffff;
}

/* ========================================
   8. FOOTER STYLES
======================================== */
.site-footer {
    background-color: #67cff5;
    color: #1a365d;
    padding: 3rem 2rem 1rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #0d1b2a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: #1a365d;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: #1a365d;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0d1b2a;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(26, 54, 93, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #1a365d;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-links a {
    color: #1a365d;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0d1b2a;
}

.footer-links span {
    color: #1a365d;
}

/* ========================================
   9. FORMS
======================================== */
.form-container {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.submit-button {
    background-color: #fdbe43;
    color: #5a3d1f;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(253, 190, 67, 0.3);
}

.submit-button:hover {
    background-color: #f9a825;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(253, 190, 67, 0.4);
}

/* ========================================
   10. CARDS & GRID LAYOUTS
======================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.card p {
    color: #4a5568;
    line-height: 1.6;
}

/* ========================================
   11. TABLES
======================================== */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

table th {
    background-color: #3182ce;
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3748;
}

table tr:hover {
    background-color: #f7fafc;
}

/* ========================================
   12. UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }

/* ========================================
   13. RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .main-navigation {
        order: 3;
        flex-basis: 100%;
        margin: 0;
    }
    
    .nav-menu {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-menu li a {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .content-container {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .site-logo {
        height: 40px;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .section-heading h2 {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   14. ANIMATIONS
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ========================================
   15. PRINT STYLES
======================================== */
@media print {
    .site-header,
    .site-footer,
    .cta-section,
    .language-switcher {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    /* ========================================
   FOOTER UPDATES - Logo & Social Media
======================================== */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.social-media-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.contact-highlight {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #fdbe43;
}

.contact-link {
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    padding: 0.2rem 0;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fdbe43 !important;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-icon-inline {
    width: 20px;
    height: 20px;
}
/* ========================================
   HERO SECTION - REDUCED HEIGHT (UPDATED)
======================================== */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(110deg, #3182ce 0%, #e4f6fd 95%);
    position: relative;
    padding: 2.6rem 1rem 2.6rem 1rem;
    margin-bottom: 2rem;
    text-align: center;
    min-height: 180px;
    border-radius: 0.8rem;
    box-shadow: 0 4px 10px rgba(49, 130, 206, 0.12);
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 2.2rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.1rem;
    color: #2d3748;
    margin: 0;
}

/* ========================================
   FOOTER UPDATES - Logo & Social Media (CORRECTED)
======================================== */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 45px;  /* REDUCED from 60px */
    width: auto;
    margin-bottom: 1rem;
}

.social-media-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 28px28px !important;  /* REDUCED from 32px */
    height: 228px !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.contact-highlight {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #fdbe43;
}

.contact-link {
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    padding: 0.2rem 0;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fdbe43 !important;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-icon-inline {
    width: 28px !important;  /* REDUCED from 20px */
    height: 128px !important;
}

/* ========================================
   CONTACT PAGE HIGHLIGHTS
======================================== */
.contact-info-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border-left: 4px solid #3182ce;
}

.contact-info-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.contact-info-highlight {
    background-color: #fff3cd;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    margin: 0.5rem 0;
    border-left: 3px solid #fdbe43;
}

.contact-info-highlight strong {
    color: #856404;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-info-highlight a {
    color: #3182ce;
    font-weight: 600;
    font-size: 1.1rem;
}

.whatsapp-contact-card {
    background-color: #d4edda;
    border-left-color: #25d366;
}

.whatsapp-contact-card a {
    color: #155724;
}

/* ========================================
   RESPONSIVE UPDATES
======================================== */
@media (max-width: 1024px) {
    .hero-section {
        padding: 2rem 1rem 2rem 1rem;
        min-height: 150px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 0.8rem 1.5rem 0.8rem;
        min-height: 130px;
        border-radius: 0.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .social-media-links {
        justify-content: center;
    }
    
    .footer-logo-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1.03rem 0.2rem 1.45rem 0.2rem;
        min-height: 110px;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .whatsapp-icon-inline {
        width: 16px;
        height: 16px;
    }
    /* ========================================
   CONTACT PAGE STYLES
======================================== */
.contact-info-block {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(49, 130, 206, 0.15);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    color: #1a365d;
    font-weight: 700;
    margin-right: 0.5rem;
}

.contact-item a {
    transition: all 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
}

/* Info Card Styling */
.info-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}
/* ========================================
   ALERT MESSAGES
======================================== */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin: 1rem 0 2rem 0;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

}



/* ========================================
   EVENT CARDS WITH FEATURED IMAGES
   ======================================== */

.event-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.event-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.event-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-featured-image {
    transform: scale(1.05);
}

.event-image-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    font-size: 48px;
}

.event-card-content {
    padding: 20px;
}

.event-date {
    color: #667eea;
    font-weight: 600;
    margin: 8px 0;
    font-size: 14px;
}

.event-location {
    color: #6b7280;
    font-size: 14px;
    margin: 8px 0;
}

.event-description {
    color: #4b5563;
    line-height: 1.6;
    margin: 12px 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .event-card {
        margin-bottom: 16px;
    }
    
    .event-image-container {
        height: 180px;
    }
    
    .event-image-placeholder {
        height: 180px;
        font-size: 36px;
    }
    
    .event-card-content {
        padding: 16px;
    }
}

/* ========================================
   AWARD CARDS WITH SEARCH
   ======================================== */

.award-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.award-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.award-card h3 {
    color: #1e3a8a;
    margin-bottom: 12px;
    font-size: 18px;
}

.award-recipient, .award-year, .award-description {
    margin: 8px 0;
    font-size: 14px;
    color: #4b5563;
}

.award-recipient strong, .award-year strong {
    color: #1e3a8a;
}

.view-award {
    display: inline-block;
    margin-top: 12px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-award:hover {
    color: #5568d3;
}

/* Search Section */
.awards-search-section {
    background: #f3f4f6;
    padding: 40px 0;
    margin: 30px 0;
    border-radius: 8px;
}

.search-form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.search-input-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 8px;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
}

.search-button {
    padding: 12px 24px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.search-button:hover {
    background: #5568d3;
}

.search-results-info {
    margin-top: 16px;
    color: #4b5563;
    font-size: 14px;
}

.clear-search {
    margin-left: 12px;
    color: #667eea;
    text-decoration: underline;
    cursor: pointer;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-input {
        width: 100%;
    }
    
    .search-button {
        width: 100%;
    }
    
    .award-card {
        padding: 16px;
    }
}