/* CSS Variables for Dynamic Theme */
:root {
    --primary-color: #D4AF37;
    --secondary-color: #B8860B;
    --accent-color: #FFD700;
    --text-color: #1a1a1a;
    --background-color: #ffffff;
    --header-bg-color: #ffffff;
    --footer-bg-color: #1a1a1a;
    --button-color: #D4AF37;
    --link-color: #D4AF37;
    --border-color: #e9ecef;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #1a1a1a;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --gold-light: #F4E4BC;
    --gold-medium: #D4AF37;
    --gold-dark: #B8860B;
    --black-primary: #1a1a1a;
    --black-secondary: #2d2d2d;
    --white-primary: #ffffff;
    --white-secondary: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-gold: linear-gradient(135deg, #F4E4BC 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--header-bg-color, #ffffff);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(var(--primary-color-rgb, 212, 175, 55), 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-logo h2 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    touch-action: pan-y pinch-zoom;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateX(0);
}

.hero-slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Make first slide visible by default */
.hero-slide:first-child {
    opacity: 1;
}

.hero-slide.active {
    opacity: 1;
}

/* Fallback gradients for missing images */
.hero-slide:nth-child(1) {
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-slide:nth-child(2) {
    background-image: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hero-slide:nth-child(3) {
    background-image: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    padding-top: 120px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero-slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-slide-content .cta-button {
    animation: fadeInUp 1s ease 0.4s both;
}

/* Hero Slider Controls */
.hero-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-btn.prev {
    left: 20px;
}

.hero-slider-btn.next {
    right: 20px;
}

.hero-slider-btn i {
    font-size: 18px;
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Design for Hero Slider */
@media (max-width: 768px) {
    .hero-slide-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-slide-content p {
        font-size: 1rem;
    }
    
    .hero-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider-btn.prev {
        left: 10px;
    }
    
    .hero-slider-btn.next {
        right: 10px;
    }
    
    .hero-slider-dots {
        bottom: 20px;
    }
    
    .hero-slides {
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 480px) {
    .hero-slide-content h1 {
        font-size: 2rem;
    }
    
    .hero-slide-content p {
        font-size: 0.9rem;
    }
    
    .hero-slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .hero-slider-btn.prev {
        left: 5px;
    }
    
    .hero-slider-btn.next {
        right: 5px;
    }
    
    .hero-slider-dots {
        bottom: 15px;
    }
    
    .hero-slides {
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Hero Call to Action */
.hero-cta {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 10;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    color: white;
}

.btn-large {
    padding: 20px 45px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Fallback gradients for missing images */
.hero-slide:nth-child(1) {
    background-image: var(--gradient-primary);
}

.hero-slide:nth-child(2) {
    background-image: var(--gradient-gold);
}

.hero-slide:nth-child(3) {
    background-image: var(--gradient-primary);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb, 212, 175, 55), 0.8) 0%, rgba(var(--secondary-color-rgb, 184, 134, 11), 0.8) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-slide-content .cta-button {
    animation: fadeInUp 1s ease 0.4s both;
}

/* Custom Slider Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100px);
    }
}

/* Enhanced slider transitions */
.hero-slides {
    will-change: transform;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.hero-slide {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    background: var(--button-color, #D4AF37);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23D4AF37" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="%23B8860B" opacity="0.05"/><circle cx="40" cy="60" r="0.5" fill="%23D4AF37" opacity="0.03"/><circle cx="60" cy="40" r="0.5" fill="%23B8860B" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-size: 1.3rem;
    color: var(--gold-medium);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    position: relative;
    font-weight: 700;
    line-height: 1.2;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(135deg, var(--gold-medium), var(--gold-dark));
    border-radius: 3px;
}

#about-video {
    margin: 2.5rem 0;
}

#about-video iframe {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#about-video iframe:hover {
    transform: scale(1.02);
}

.about-text p {
    font-size: 1.15rem;
    color: var(--gray-medium);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 1.75rem;
}

.about-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(184, 134, 11, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0 2px 2px 0;
}

.about-features .feature-item:hover {
    transform: translateX(12px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-features .feature-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.75rem;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.about-features .feature-item h4 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-features .feature-item p {
    color: var(--gray-medium);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* About Image Logo */
.about-image-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
    max-width: 80%;
}

.about-image-logo img {
    display: block;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    max-height: 300px;
    width: auto;
}

.about-image-logo:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

/* Responsive design for about image logo */
@media (max-width: 768px) {
    .about-image-logo {
        padding: 1rem;
        transform: translate(-50%, -50%) scale(0.8);
        max-width: 90%;
    }
    
    .about-image-logo:hover {
        transform: translate(-50%, -50%) scale(0.85);
    }
    
    .about-image-logo img {
        max-height: 150px !important;
        width: auto !important;
    }
}

@media (max-width: 480px) {
    .about-image-logo {
        padding: 0.75rem;
        transform: translate(-50%, -50%) scale(0.7);
        max-width: 95%;
    }
    
    .about-image-logo:hover {
        transform: translate(-50%, -50%) scale(0.75);
    }
    
    .about-image-logo img {
        max-height: 120px !important;
        width: auto !important;
    }
}

/* Statistics Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.08"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.08"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-item:hover::before {
    opacity: 0.8;
}

.stat-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Categories Section */
.categories-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white-secondary) 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="categories-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23667eea" opacity="0.05"/><circle cx="70" cy="70" r="1" fill="%23764ba2" opacity="0.05"/><circle cx="50" cy="20" r="0.5" fill="%23667eea" opacity="0.03"/><circle cx="20" cy="50" r="0.5" fill="%23764ba2" opacity="0.03"/><circle cx="80" cy="50" r="0.5" fill="%23667eea" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23categories-pattern)"/></svg>');
    pointer-events: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.category-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: -1;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.category-card:hover::after {
    transform: scale(1.5);
}

.category-icon {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #FFD700;
    font-size: 2.2rem;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 3px solid #FFD700;
    z-index: 2;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border-radius: 50%;
    z-index: 1;
}

.category-icon i {
    position: relative;
    z-index: 3;
}

.category-card h3 {
    color: var(--text-color);
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.category-card p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.category-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Jury Section */
.jury-section {
    padding: 6rem 0;
    background: var(--white);
}

.jury-slider {
    margin-top: 3rem;
}

.jury-slide {
    padding: 1rem;
}

/* Jury Page Specific Styles */
.jury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.jury-grid .jury-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.jury-grid .jury-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.jury-grid .jury-photo {
    margin-bottom: 1.5rem;
}

.jury-grid .jury-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.jury-grid .jury-avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border: 4px solid var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.jury-avatar-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.jury-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.jury-member:hover {
    transform: translateY(-5px);
}

.jury-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.jury-member h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.jury-member h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.jury-company {
    color: var(--gray-medium);
    font-weight: 500;
    margin-bottom: 1rem;
}

.jury-bio {
    color: var(--gray-medium);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Sponsors Section */
.sponsors-section {
    padding: 6rem 0;
    background: var(--gray-light);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sponsor-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 15px 15px 0 0;
}

.sponsor-card.gold::before {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.sponsor-card.silver::before {
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
}

.sponsor-card.bronze::before {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.sponsor-logo img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.sponsor-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sponsor-card p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sponsor-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sponsor-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Application and Voting Section */
.application-voting-section {
    padding: 80px 0;
    background: var(--white);
}

.application-voting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.application-card,
.voting-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.application-card::before,
.voting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.application-card:hover,
.voting-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: white;
}

.application-card .card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.voting-card .card-icon {
    background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-dark) 100%);
}

.application-card h3,
.voting-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.application-card p,
.voting-card p {
    color: var(--gray-medium);
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature i {
    color: var(--success-color);
    font-size: 16px;
}

.feature span {
    color: var(--text-color);
    font-weight: 500;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.application-card .card-button {
    background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-dark) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.application-card .card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    color: white;
}

.voting-card .card-button {
    background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-dark) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.voting-card .card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    color: white;
}

/* Responsive Design for Application and Voting Section */
@media (max-width: 768px) {
    .application-voting-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .application-card,
    .voting-card {
        padding: 30px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Application CTA Section */
.application-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: var(--accent-color);
    color: var(--text-color);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--text-color);
}

/* News Section */
.news-section {
    padding: 6rem 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.news-content p {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.news-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--secondary-color);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Application Form Styles */
.application-section {
    padding: 4rem 0;
    background: white;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.form-info {
    background: var(--white-secondary);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold-medium);
}

.form-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.form-info ul {
    list-style: none;
}

.form-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-info i {
    color: var(--gold-medium);
    width: 20px;
}

.application-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-medium);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-dark) 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Bank Info Styles */
.bank-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.bank-info h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.bank-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.bank-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e1e5e9;
}

.bank-item:last-child {
    border-bottom: none;
}

.bank-item strong {
    color: #333;
    font-weight: 600;
}

.bank-item span {
    color: #666;
    font-family: 'Courier New', monospace;
}

/* Footer Styles */
.footer {
    background: var(--gray-dark);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 237, 78, 0.3);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}





.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.8;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-dark) 100%);
    color: white;
    padding: 6rem 0 3rem;
    text-align: center;
}

.page-content {
    padding: 3rem 0;
    background: white;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: var(--black-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--gold-medium);
    padding-bottom: 0.5rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #666;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card h3 {
    color: var(--gold-medium);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Jury Members */
.jury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .jury-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .jury-member {
        padding: 1.5rem;
    }
    
    .jury-member img,
    .jury-avatar-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .jury-photo-img {
        width: 120px;
        height: 120px;
    }
}

.jury-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.jury-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.jury-member:hover .jury-photo img,
.jury-member:hover .jury-avatar-placeholder {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.jury-photo {
    margin-bottom: 1.5rem;
}

.jury-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold-medium);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.jury-member h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.jury-member h4 {
    color: var(--gold-medium);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.jury-contact {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.jury-contact p {
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.jury-contact i {
    color: var(--gold-medium);
    width: 16px;
}

.jury-avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border: 4px solid var(--gold-medium);
}

.jury-photo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border: 4px solid var(--gold-medium);
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--gray-medium);
}

.loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold-medium);
}

.no-data {
    text-align: center;
    padding: 3rem;
    color: var(--gray-medium);
}

.no-data i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold-medium);
}

.error {
    text-align: center;
    padding: 3rem;
    color: var(--danger-color);
}

.error i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.jury-company {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

.jury-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.jury-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: #f8f9fa;
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e1e5e9;
}

/* Evaluation Process */
.evaluation-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.process-step h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Criteria Details */
.criteria-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.criteria-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.criteria-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.criteria-item h4 i {
    color: #667eea;
}

.criteria-item p {
    color: #666;
    line-height: 1.6;
}

/* Ethics Section */
.ethics-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ethics-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.ethics-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ethics-item h4 i {
    color: #667eea;
}

.ethics-item p {
    color: #666;
    line-height: 1.6;
}

/* Category Icons */
.category-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #FFD700;
    font-size: 1.5rem;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.category-card ul {
    list-style: none;
    margin-top: 1rem;
}

.category-card li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.category-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.step h4 {
    color: #333;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Criteria Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.criteria-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.criteria-item h4 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.criteria-item h4 i {
    color: #667eea;
}

.criteria-item p {
    color: #666;
    line-height: 1.6;
}

/* Download Section */
.download-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Sponsors Styles */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sponsor-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid;
}

.sponsor-card:hover {
    transform: translateY(-5px);
}

.sponsor-card.gold {
    border-top-color: #FFD700;
}

.sponsor-card.silver {
    border-top-color: #C0C0C0;
}

.sponsor-card.bronze {
    border-top-color: #CD7F32;
}

.sponsor-logo {
    margin-bottom: 1.5rem;
}

.sponsor-logo img {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
}

.sponsor-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sponsor-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sponsor-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.benefit-tag {
    background: #f8f9fa;
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e1e5e9;
}

/* Sponsorship Packages */
.sponsorship-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-header {
    padding: 2rem;
    text-align: center;
    color: white;
}

.gold-package .package-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.silver-package .package-header {
    background: linear-gradient(135deg, #C0C0C0 0%, #A9A9A9 100%);
}

.bronze-package .package-header {
    background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
}

.package-header h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
}

.package-benefits {
    padding: 2rem;
    list-style: none;
}

.package-benefits li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-benefits i {
    color: #667eea;
    width: 20px;
}

.package-btn {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.package-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Become a Sponsor */
.become-sponsor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.sponsor-info, .sponsor-contact {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sponsor-info h3, .sponsor-contact h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.sponsor-info ul {
    list-style: none;
}

.sponsor-info li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sponsor-info i {
    color: #667eea;
    width: 20px;
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-info p {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #667eea;
    width: 20px;
}

.sponsor-contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sponsor-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Application Steps */
.application-steps {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.application-steps h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.application-steps ol {
    list-style: none;
    counter-reset: step-counter;
}

.application-steps li {
    counter-increment: step-counter;
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 2rem;
}

.application-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
}

/* Bank Note */
.bank-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
}

.bank-note p {
    margin: 0;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bank-note i {
    color: #f39c12;
}

/* FAQ Section */
.faq-section {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h4 i {
    color: #667eea;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    background: transparent;

    border-radius: 10px;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #667eea;
    font-size: 1.2rem;
    width: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-slide-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .form-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .bank-details {
        grid-template-columns: 1fr;
    }

    .bank-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .application-form,
    .form-info,
    .bank-info {
        padding: 1.5rem;
    }
}

/* Awards Page Styles */
.awards-night {
    padding: 4rem 0;
}

.awards-content {
    display: grid;
    gap: 3rem;
}

.award-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--gold-medium);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.awards-program {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.program-timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.timeline-item:last-child {
    border-bottom: none;
}

.time {
    background: var(--gold-medium);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}

.event {
    font-weight: 500;
    color: #333;
}

.awards-categories {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.category-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
}

.registration-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

/* Gallery Page Styles */
.gallery {
    padding: 4rem 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--gold-medium);
    color: var(--gold-medium);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-medium);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
}

.gallery-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold-medium);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* Contact Page Styles */
.contact {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--gold-medium);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-container h3 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-medium);
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.map-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.map-section h3 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
}

.faq-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-section h3 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 1rem;
    display: none;
    background: white;
}

.faq-answer p {
    color: #666;
    margin: 0;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .award-info,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .time {
        min-width: auto;
    }
    
    .gallery-filters {
        justify-content: center;
    }
    
    .filter-btn {
        margin-bottom: 0.5rem;
    }
}

/* Forms Section - Enhanced Design */
.forms-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.forms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.form-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.form-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.form-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: -1;
}

.form-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.form-card:hover::after {
    transform: scale(1.5);
}

.candidate-card::before {
    background: linear-gradient(135deg, var(--gold-medium), var(--gold-dark));
}

.voting-card::before {
    background: linear-gradient(135deg, var(--gold-medium), var(--gold-dark));
}

.form-card-header {
    padding: 2.5rem 2.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    position: relative;
}

.form-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 1px;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1), transparent);
}

.form-card-icon {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.form-card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 20px;
}

.candidate-card .form-card-icon {
    background: linear-gradient(135deg, var(--gold-medium), var(--gold-dark));
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.voting-card .form-card-icon {
    background: linear-gradient(135deg, var(--gold-medium), var(--gold-dark));
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.form-card-title h3 {
    color: var(--text-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.form-card-title p {
    color: var(--gray-medium);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.5;
}

.form-card-content {
    padding: 0 2.5rem 2rem;
}

.form-description {
    margin-bottom: 2.5rem;
}

.form-description h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 1.25rem;
}

.form-description h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.form-description p {
    color: var(--gray-medium);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Process Timeline */
.process-timeline {
    margin-bottom: 2.5rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.06));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 65px;
    width: 2px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

.step-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.25);
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 16px;
}

.step-content h5 {
    color: var(--text-color);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Voting Info */
.voting-info {
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.03), rgba(245, 87, 108, 0.03));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 4px solid #f093fb;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.06), rgba(245, 87, 108, 0.06));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(240, 147, 251, 0.25);
    position: relative;
    overflow: hidden;
}

.info-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 12px;
}

.info-content h5 {
    color: var(--text-color);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.info-content p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Form Features */
.form-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08), rgba(40, 167, 69, 0.04));
    border-radius: 10px;
    border: 1px solid rgba(40, 167, 69, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.12), rgba(40, 167, 69, 0.06));
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.1);
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.1rem;
    background: rgba(40, 167, 69, 0.15);
    padding: 0.5rem;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.feature-item span {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Form Card Footer */
.form-card-footer {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
    border-top: 1px solid rgba(102, 126, 234, 0.08);
    text-align: center;
    position: relative;
}

.form-card-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 1px;
    background: linear-gradient(135deg, transparent, rgba(102, 126, 234, 0.1), transparent);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Enhanced Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #545b62);
    color: white;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 117, 125, 0.4);
    color: white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .form-card {
        padding: 2rem;
        margin: 0 0.5rem;
        border-radius: 20px;
    }
    
    .form-card-header {
        padding: 2rem 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .form-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .form-card-content {
        padding: 0 2rem 2rem;
    }
    
    .form-card-footer {
        padding: 2rem;
        text-align: center;
    }
    
    .form-card-footer::before {
        left: 2rem;
        right: 2rem;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
    }
    
    .form-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-step,
    .info-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .forms-section {
        padding: 4rem 0;
    }
    
    .form-cards-container {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .form-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .form-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .form-card-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .form-card-footer {
        padding: 1.5rem;
    }
    
    .form-card-footer::before {
        left: 1.5rem;
        right: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card {
    animation: fadeInUp 0.6s ease-out;
}

.form-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Loading animation */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    color: var(--gray-medium);
    font-size: 1.1rem;
}

.loading i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Form tabs (for preview mode) */
.form-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.tab-button {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-button.active,
.tab-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Form containers */
.form-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.form-header p {
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin: 0;
}

/* Footer Links Styles */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-links a i {
    color: var(--accent-color);
    font-size: 0.9rem;
    width: 16px;
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    transform: scale(1.1);
}

/* Footer Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.contact-item strong {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: white;
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Footer Newsletter */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-btn {
    padding: 0.75rem 1rem;
    background: var(--accent-color);
    color: var(--text-color);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
}

.newsletter-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 237, 78, 0.3);
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.newsletter-features .feature i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Footer Back to Top Button */
.back-to-top-btn {
    background: var(--accent-color);
    color: var(--text-color);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.back-to-top-btn:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 237, 78, 0.4);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .newsletter-section {
        margin-top: 1rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .newsletter-section {
        padding: 1rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
}

/* Candidate Application Page Styles */
.candidate-application-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.candidate-application-page .page-header {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #FFD700 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.candidate-application-page .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.candidate-application-page .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.candidate-application-page .page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.candidate-application-page .info-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.candidate-application-page .info-box i {
    color: #D4AF37;
    font-size: 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.candidate-application-page .info-box p {
    margin: 0;
    color: #1a1a1a;
    font-weight: 500;
}

.candidate-application-page .add-section-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.candidate-application-page .add-section-btn:hover {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.candidate-application-page .form-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.candidate-application-page .form-section h3 {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.candidate-application-page .form-section h3 i {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.candidate-application-page .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.candidate-application-page .form-group {
    display: flex;
    flex-direction: column;
}

.candidate-application-page .form-group label {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.candidate-application-page .form-group label.required::after {
    content: ' *';
    color: #dc3545;
}

.candidate-application-page .form-group input,
.candidate-application-page .form-group select,
.candidate-application-page .form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.candidate-application-page .form-group input:focus,
.candidate-application-page .form-group select:focus,
.candidate-application-page .form-group textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.candidate-application-page .submit-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem auto;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.candidate-application-page .submit-btn:hover {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Public Voting Page Styles */
.public-voting-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.public-voting-page .page-header {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #FFD700 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.public-voting-page .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.public-voting-page .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.public-voting-page .page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.public-voting-page .voting-steps {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.public-voting-page .step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.public-voting-page .step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.public-voting-page .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.public-voting-page .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.public-voting-page .step.active .step-number {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.public-voting-page .step.completed .step-number {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.public-voting-page .step-label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9rem;
    text-align: center;
}

.public-voting-page .step.active .step-label {
    color: #D4AF37;
}

.public-voting-page .voting-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.public-voting-page .category-card,
.public-voting-page .candidate-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.public-voting-page .category-card:hover,
.public-voting-page .candidate-card:hover {
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.public-voting-page .category-card.selected,
.public-voting-page .candidate-card.selected {
    border-color: #D4AF37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(184, 134, 11, 0.05));
}

.public-voting-page .voting-rules {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.public-voting-page .voting-rules i {
    color: #D4AF37;
    font-size: 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.public-voting-page .voting-rules p {
    margin: 0;
    color: #1a1a1a;
    font-weight: 500;
}

/* Responsive Design for Application and Voting Pages */
@media (max-width: 768px) {
    .candidate-application-page .page-header h1,
    .public-voting-page .page-header h1 {
        font-size: 2rem;
    }
    
    .candidate-application-page .form-row,
    .public-voting-page .step-indicator {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 1rem;
    }
    
    .candidate-application-page .form-section,
    .public-voting-page .voting-content {
        padding: 1.5rem;
    }
    
    .public-voting-page .step-indicator {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .public-voting-page .step {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .candidate-application-page .page-header,
    .public-voting-page .page-header {
        padding: 3rem 0 2rem;
    }
    
    .candidate-application-page .page-header h1,
    .public-voting-page .page-header h1 {
        font-size: 1.8rem;
    }
    
    .candidate-application-page .form-section,
    .public-voting-page .voting-content {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .candidate-application-page .add-section-btn,
    .candidate-application-page .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    pointer-events: auto;
    user-select: none;
    transition: all 0.3s ease;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -5px);
}

.mobile-menu-toggle:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle.active {
    background: var(--secondary-color);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: 10000;
    transition: left 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-logo h2 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-menu {
    flex: 1;
    padding: 2rem 1.5rem;
}

.mobile-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 0.5rem;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.mobile-nav-menu a i {
    width: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.mobile-language-section {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-language-section h4 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1rem;
    text-align: center;
}

.mobile-language-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-lang-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design for Header */
@media (max-width: 768px) {
    .header {
        display: block !important;
        padding: 0.5rem 0;
        min-height: 60px;
        position: relative;
    }
    
    .header-content {
        justify-content: space-between;
        align-items: center;
        padding: 0;
        flex-wrap: nowrap;
        gap: 1rem;
    }
    
    .logo {
        flex-shrink: 0;
        min-width: 0;
    }
    
    .logo img {
        height: 40px !important;
        width: auto !important;
        max-width: 150px !important;
    }
    
    .logo h1 {
        font-size: 1.2rem !important;
        margin: 0 !important;
        max-width: 150px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    .nav-menu {
        display: none !important;
        flex: 0;
    }
    
    .header-actions {
        display: flex !important;
        align-items: center;
        gap: 1rem;
        justify-content: flex-end;
        flex-shrink: 0;
        min-width: 50px;
        max-width: 60px;
    }
    
    .language-selector {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 1001 !important;
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        width: 40px !important;
        height: 40px !important;
        margin-left: auto !important;
        cursor: pointer !important;
        border-radius: 8px !important;
        padding: 0.5rem !important;
        flex-shrink: 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
    }
    
    .mobile-menu-toggle span {
        background: white !important;
        width: 20px !important;
        height: 3px !important;
        margin: 2px 0 !important;
        border-radius: 2px !important;
        display: block !important;
        transition: 0.3s !important;
    }
    
    /* Main content margin adjustment for mobile */
    main {
        margin-top: 80px !important;
    }
    
    /* Ensure mobile nav is properly positioned */
    .mobile-nav {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        z-index: 99999 !important;
        transition: left 0.3s ease !important;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        will-change: left !important;
    }
    
    .mobile-nav.active {
        left: 0 !important;
        transform: translateX(0) !important;
    }
    
    /* Force mobile menu toggle to be visible and clickable */
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 1001 !important;
        background: var(--primary-color) !important;
        border: 2px solid var(--primary-color) !important;
        width: 44px !important;
        height: 44px !important;
        margin-left: auto !important;
        cursor: pointer !important;
        border-radius: 8px !important;
        padding: 0.5rem !important;
        flex-shrink: 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        min-width: 44px !important;
        min-height: 44px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .mobile-menu-toggle span {
        background: white !important;
        width: 20px !important;
        height: 3px !important;
        margin: 2px 0 !important;
        border-radius: 2px !important;
        display: block !important;
        transition: 0.3s !important;
        pointer-events: none !important;
    }
    
    /* Mobile menu toggle hover effects */
    .mobile-menu-toggle:hover {
        background: var(--secondary-color) !important;
        transform: scale(1.05) !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.95) !important;
    }
    
    .mobile-menu-toggle.active {
        background: var(--secondary-color) !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 5px) !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -5px) !important;
    }
}


