* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.public-header {
    background: #BE0127;
    color: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px; /* Added gap for spacing between text elements */
}

/* Removed header-logo styles and image */

.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: opacity 0.3s;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.8;
}

.nav-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.3);
}

.language-switcher {
    margin-left: 20px;
}

.language-switcher select {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.header-title-link,
.header-subtitle-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header-title-link:hover,
.header-subtitle-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.language-switcher select option {
    background: #BE0127;
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #BE0127 0%, #8B001C 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    min-height: 400px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://cleversoindia.com/home-banner-new.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo-section {
    text-align: center;
    margin-bottom: 30px;
}

/* Removed hero-logo styles and image */

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Banner Buttons */
.banner-buttons {
    margin: 40px 0 20px 0;
}

.top-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banner-btn {
    padding: 25px 20px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    min-width: 200px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-icon {
    font-size: 32px;
    filter: brightness(0) invert(1);
    display: block;
    line-height: 1;
}

.btn-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    display: block;
}

.playstore-icon {
    width: 32px;
    height: 32px;
    filter: none !important;
}

.banner-btn.mobile .btn-icon {
    filter: none;
}

.banner-btn.outline .btn-icon {
    filter: brightness(0) invert(1);
}

.banner-btn.primary {
    background: #28a745;
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.banner-btn.primary:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.banner-btn.secondary {
    background: #17a2b8;
    color: white;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.banner-btn.secondary:hover {
    background: #138496;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

.banner-btn.mobile {
    background: #ffc107;
    color: #212529;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.banner-btn.mobile:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.banner-btn.outline {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    min-width: 150px;
}

.banner-btn.outline:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* Form Styles */
.breadcrumb {
    background: #e9ecef;
    padding: 10px 0;
    font-size: 14px;
}

.breadcrumb span {
    margin: 0 5px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: none;
    min-height: calc(100vh - 140px);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #BE0127;
    font-size: 28px;
    margin-bottom: 15px;
}

.form-header p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.user-selection-section {
    margin-bottom: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.user-selection-section h3 {
    color: #BE0127;
    font-size: 24px;
    margin-bottom: 15px;
}

.user-selection-section p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.user-type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.user-type-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-type-card:hover {
    border-color: #BE0127;
    transform: translateY(-2px);
}

.user-type-card h4 {
    color: #BE0127;
    font-size: 20px;
    margin-bottom: 10px;
}

.user-type-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.select-type-btn {
    background: #BE0127;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.select-type-btn:hover {
    background: #9a0120;
}

.back-section {
    margin-bottom: 20px;
}

.back-btn {
    background: #6c757d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.back-btn:hover {
    background: #5a6268;
}

.user-type-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #BE0127;
}

/* Upload Section */
.upload-section {
    margin-top: 10px;
}

.upload-area {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.upload-area:hover {
    border-color: #BE0127;
}

.upload-placeholder {
    color: #666;
}

.upload-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.photo-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
}

/* Location Section */
.location-section {
    margin-top: 10px;
}

.map-container {
    width: 100%;
    height: 300px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f0f0f0;
}

.detect-btn {
    background: #17a2b8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.detect-btn:hover {
    background: #138496;
}

.submit-btn {
    background: #BE0127;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #9a0120;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.form-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #f5c6cb;
    animation: slideDown 0.3s ease;
}

.form-success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    text-align: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #BE0127;
    box-shadow: 0 0 5px rgba(190, 1, 39, 0.3);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.loading-spinner::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #BE0127;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Ensure page loads properly */
body {
    min-height: 100vh;
    opacity: 1;
    transition: opacity 0.3s ease;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Press Release & Links */
.press-release,
.important-links {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.press-release h2,
.important-links h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.press-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.press-item {
    height: 300px;
    background: #f0f0f0;
    border-radius: 8px;
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
}

.press-item.featured-image {
    background: none;
}

.press-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.press-item:hover .press-image {
    transform: scale(1.05);
}

.press-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.press-item:hover .press-overlay {
    transform: translateY(0);
}

.press-overlay h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.press-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.links-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.link-item {
    text-align: center;
    max-width: 120px;
}

.link-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    background: #f0f0f0;
    border-radius: 50%;
}

.link-item p {
    font-size: 12px;
    color: #666;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.chief-minister-section {
    background: #BE0127;
    padding: 20px 0;
    border-top: 1px solid #444;
}

.minister-info {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.minister-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
}

.minister-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
}

.minister-text p {
    font-size: 16px;
    color: #f0f0f0;
}

/* Chief Minister Footer Section */
.chief-minister-footer {
    text-align: center;
}

.minister-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.minister-footer-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: block;
    background: white;
}

.minister-name {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #BE0127;
    text-decoration: underline;
}

/* About Page Specific Styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #BE0127;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 400;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
}

.item-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-item h3 {
    font-size: 24px;
    color: #BE0127;
    margin-bottom: 15px;
}

.about-item p {
    color: #666;
    line-height: 1.6;
}

.features-section {
    margin: 60px 0;
}

.features-section h2 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin: 0 auto 20px;
    display: block;
    text-align: center;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature-card h4 {
    font-size: 20px;
    color: #BE0127;
    margin-bottom: 10px;
}

.statistics-section {
    background: #BE0127;
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin: 60px 0;
    text-align: center;
}

.statistics-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.departments-section {
    margin: 60px 0;
}

.departments-section h2 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
}

.departments-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.department-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #BE0127;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.department-item h4 {
    color: #BE0127;
    font-size: 18px;
    margin-bottom: 10px;
}

.department-item p {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Page Content Styles */
.page-content {
    background: #e9ecef;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: white;
    padding: 15px 20px;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.breadcrumb span {
    color: #BE0127;
}

/* About Page Styles */
.about-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-section h2 {
    color: #BE0127;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.about-section > p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.about-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #BE0127;
}

.about-item h3 {
    color: #BE0127;
    font-size: 20px;
    margin-bottom: 15px;
}

.about-item p {
    color: #666;
    line-height: 1.6;
}

/* Navigation active state - removed for nav-link, kept only for nav-btn */
.nav-btn.active {
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-section {
        padding: 20px;
    }

    .about-section h2 {
        font-size: 24px;
    }
}

/* Authentication Page Styles */
.auth-container {
    max-width: 500px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.auth-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.auth-tab {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.auth-tab.active {
    color: #BE0127;
    border-bottom-color: #BE0127;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    color: #BE0127;
    margin-bottom: 10px;
}

.auth-form p {
    color: #666;
    margin-bottom: 30px;
}

.auth-btn {
    background: #BE0127;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background 0.3s;
}

.auth-btn:hover {
    background: #9a0120;
}

.forgot-password {
    text-align: right;
    margin: 10px 0;
}

.forgot-password a {
    color: #BE0127;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-footer p {
    color: #666;
    margin-bottom: 10px;
}

.guest-link {
    color: #BE0127;
    text-decoration: none;
    font-weight: 600;
}

.guest-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-link,
    .nav-btn {
        font-size: 16px;
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .top-buttons,
    .bottom-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .banner-btn {
        min-width: 280px;
        padding: 30px 25px;
        min-height: 140px;
        flex-direction: column;
        gap: 15px;
    }

    .btn-icon {
        font-size: 36px;
    }

    .playstore-icon {
        width: 36px;
        height: 36px;
    }

    .btn-text {
        font-size: 15px;
    }

    .form-container {
        margin: 20px;
        padding: 20px;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* Mobile App Promotion */
.mobile-app-promo {
    background: linear-gradient(135deg, #BE0127 0%, #8B001C 100%);
    color: white;
    padding: 20px 0;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(190, 1, 39, 0.3);
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.promo-text h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
}

.promo-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

.promo-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-mobile {
    background: #fff;
    color: #667eea;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #667eea;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .promo-content {
        text-align: center;
        flex-direction: column;
    }

    .promo-actions {
        justify-content: center;
        width: 100%;
    }

    .mobile-app-promo {
        display: none; /* Hide on mobile since they're already redirected */
    }
}

.media-slide {
    min-width: 350px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.media-slide:hover {
    transform: translateY(-5px);
}

.media-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.media-slide-content {
    padding: 20px;
}

.media-slide-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.4;
}

.media-slide-content .date {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.media-slide-content a {
    color: #BE0127;
    text-decoration: none;
    font-weight: 500;
}

.media-slide-content a:hover {
    text-decoration: underline;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    background: rgba(190, 1, 39, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(190, 1, 39, 1);
}

.carousel-btn.prev {
    margin-left: -25px;
}

.carousel-btn.next {
    margin-right: -25px;
}

/* Header text styles added */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    padding: 3px;
}

.header-text h1 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.header-text p {
    font-size: 26px;
    color: white;
    margin: 0;
    font-weight: 700;
}

/* Searchable Dropdown Styles */
.searchable-select {
    position: relative;
    width: 100%;
}

.searchable-select-trigger {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.3s ease;
}

.searchable-select-trigger:hover {
    border-color: #BE0127;
}

.searchable-select-trigger.active {
    border-color: #BE0127;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.searchable-select-trigger .selected-text {
    flex: 1;
    text-align: left;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.searchable-select-trigger .selected-text.placeholder {
    color: #999;
}

.searchable-select-trigger .dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666;
    transition: transform 0.3s ease;
}

.searchable-select-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.searchable-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #BE0127;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.searchable-select-dropdown.show {
    display: block;
}

.searchable-select-search {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.searchable-select-search input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.searchable-select-search input:focus {
    border-color: #BE0127;
}

.searchable-select-search input::placeholder {
    color: #999;
}

.searchable-select-options {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #BE0127 #f0f0f0;
}

.searchable-select-options::-webkit-scrollbar {
    width: 8px;
}

.searchable-select-options::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.searchable-select-options::-webkit-scrollbar-thumb {
    background: #BE0127;
    border-radius: 4px;
}

.searchable-select-options::-webkit-scrollbar-thumb:hover {
    background: #9a0120;
}

.searchable-select-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
}

.searchable-select-option:last-child {
    border-bottom: none;
}

.searchable-select-option:hover {
    background-color: #fff0f2;
}

.searchable-select-option.selected {
    background-color: #BE0127;
    color: white;
}

.searchable-select-option.no-results {
    color: #999;
    font-style: italic;
    cursor: default;
}

.searchable-select-option.no-results:hover {
    background-color: transparent;
}

/* Hide the original select */
.searchable-select select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}