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

body {
    font-family: 'Cairo', Arial, sans-serif;
    direction: rtl;
    text-align: right;
    text-align: justify;
    line-height: 1.6;
    color: #333;
}

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

/* Header and Navigation */
header {
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
}

.lang-btn {
    background: #007bff;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Video Background Styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Video Fallback */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1564769625392-651b2c0b8b6b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    height: 250px;
    margin-bottom: 20px;
}

.hero-logo h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-info h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFD700;
}

.hero-info p {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
}

.btn-secondary {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Graphic Elements */
.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.graphic-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.graphic-element.orange {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.graphic-element.blue {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.graphic-element.green {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, #A8E6CF, #7FCDCD);
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.graphic-element.red {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #FF8A80, #FF5722);
    top: 40%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FF6B35;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
}

.about-graphics {
    position: relative;
    height: 400px;
}

.graphic-element-large {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
}

.graphic-element-large.orange {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    top: 0;
    right: 0;
}

.graphic-element-large.blue {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    top: 50%;
    right: 30%;
}

.graphic-element-large.green {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #A8E6CF, #7FCDCD);
    bottom: 20%;
    left: 20%;
}

.graphic-element-large.red {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF8A80, #FF5722);
    bottom: 0;
    right: 50%;
}

/* Statistics Section */
.stats-section {
    padding: 100px 0;
    background: white;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    color: #4ECDC4;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

/* Forum Info Section */
.forum-info {
    padding: 100px 0;
    background: #f8f9fa;
}

.forum-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.forum-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.forum-logo img {
    height: 80px;
}

.forum-logo h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #FF6B35;
}

.forum-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.forum-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Location and Schedule Section */
.location-schedule {
    padding: 100px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-logo {
    margin-bottom: 30px;
}

.location-logo img {
    height: 60px;
}

.location-info p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-right: 4px solid #4ECDC4;
}

.date {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
}

.time {
    font-size: 1.1em;
    color: #666;
}

.location-map {
    background: #f0f0f0;
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #666;
    font-size: 1.2em;
}

/* Landmarks Section */
.landmarks {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.landmarks-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1542816417-0983c9c9ad53?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.landmarks-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.landmarks-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.landmarks-content h2 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-discover {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-discover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Partners and Sponsors Sections */
.partners-section,
.sponsors-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.sponsors-section {
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 60px;
}

.partners-grid,
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

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

.partner-item,
.sponsor-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.partner-item:hover,
.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partner-item img,
.sponsor-item img {
    max-width: 100%;
    height: auto;
    max-height: 200;
    object-fit: contain;
}

/* Previous Forum Link Section */
.previous-forum-link {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.previous-forum-content h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
}

.previous-forum-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-previous {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-previous:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 40px 0;
}

footer p {
    font-size: 1.1em;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-logo h1 {
        font-size: 2.5em;
    }
    
    .hero-info h2 {
        font-size: 2em;
    }
    
    .about-content,
    .forum-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .landmarks-content h2 {
        font-size: 2em;
    }
}




/* Page Header Styles */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.3em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.previous-forum-header {
    background: #0f0e0e;
background: linear-gradient(90deg,rgba(15, 14, 14, 1) 45%, rgba(87, 199, 133, 1) 100%, rgba(237, 221, 83, 1) 100%);
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.header-stats .stat {
    text-align: center;
}

.header-stats .number {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    color: #FFD700;
}

.header-stats .label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Visitor Info Styles */
.visitor-info {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Registration Process Styles */
.registration-process {
    padding: 80px 0;
    background: white;
}

.registration-process h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

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

/* Accommodation Styles */
.accommodation {
    padding: 80px 0;
    background: #f8f9fa;
}

.accommodation h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 60px;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.accommodation-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accommodation-card h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.accommodation-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.accommodation-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.accommodation-card li:last-child {
    border-bottom: none;
}

/* Contact Styles */
.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 40px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

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

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

.btn-submit {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto 0;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 40px;
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #666;
    text-align: center;
}

/* Previous Forum Specific Styles */
.event-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 30px;
}

.overview-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sponsors Section Detailed */
.sponsors-section-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-category {
    margin-bottom: 60px;
}

.sponsor-category h3 {
    font-size: 2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

.sponsor-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sponsor-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.sponsor-card h4 {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.sponsor-card p {
    color: #666;
    font-size: 0.9em;
}

/* Supporting Organizations */
.supporting-organizations {
    padding: 80px 0;
    background: white;
}

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

.supporter-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.supporter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.supporter-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.supporter-card h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.supporter-card p {
    color: #666;
    font-size: 0.9em;
}

/* Participating Companies */
.participating-companies {
    padding: 80px 0;
    background: #f8f9fa;
}

.participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.participant-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.participant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.participant-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.participant-card h5 {
    font-size: 1em;
    font-weight: 600;
    color: #333;
}

.view-all-participants {
    text-align: center;
}

.btn-view-all {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Media Gallery */
.media-gallery {
    padding: 80px 0;
    background: white;
}

.gallery-section {
    margin-bottom: 60px;
}

.gallery-section h3 {
    font-size: 2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    text-align: center;
}

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

.video-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #333;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin: 20px 20px 10px;
}

.video-item p {
    color: #666;
    margin: 0 20px 20px;
    font-size: 0.9em;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.story-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.story-quote {
    font-size: 4em;
    color: #4ECDC4;
    font-weight: 700;
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0.3;
}

.story-card p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.story-author h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.story-author span {
    color: #666;
    font-size: 0.9em;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    opacity: 0.7;
}

#modalCaption {
    color: white;
    font-size: 1.2em;
    margin-top: 20px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .header-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .sponsors-grid.platinum,
    .sponsors-grid.gold,
    .sponsors-grid.silver {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .video-gallery {
        grid-template-columns: 1fr;
    }
}



/* Forum Page Styles */
.forum-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.forum-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.forum-main-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.forum-announcements,
.forum-topics {
    margin-bottom: 40px;
}

.forum-announcements h2,
.forum-topics h2 {
    font-size: 2em;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 30px;
}

.announcement-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.announcement-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.announcement-item h3 a {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.announcement-item h3 a:hover {
    color: #4ECDC4;
}

.announcement-item p {
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
}

.announcement-item .date {
    font-size: 0.9em;
    color: #999;
    display: block;
    margin-top: 10px;
}

.topic-list .topic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.topic-list .topic-item:last-child {
    border-bottom: none;
}

.topic-info h3 a {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.topic-info h3 a:hover {
    color: #4ECDC4;
}

.topic-info p {
    font-size: 0.9em;
    color: #777;
    margin-top: 5px;
}

.topic-stats span {
    font-size: 0.9em;
    color: #555;
    margin-left: 15px;
}

.forum-sidebar {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-card {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.sidebar-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-card h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card ul li {
    margin-bottom: 10px;
}

.sidebar-card ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-card ul li a:hover {
    color: #4ECDC4;
}

.sidebar-card p span {
    font-weight: 600;
    color: #333;
}

.btn-join-forum {
    display: block;
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-join-forum:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Media Page Styles */
.news-press-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.news-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.news-item h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin: 20px 20px 10px;
}

.news-item h3 a {
    text-decoration: none;
    color: inherit;
}

.news-item .news-date {
    font-size: 0.9em;
    color: #999;
    margin: 0 20px 10px;
}

.news-item p {
    color: #666;
    line-height: 1.6;
    margin: 0 20px 20px;
}

.news-item .read-more {
    display: block;
    text-align: right;
    color: #4ECDC4;
    text-decoration: none;
    font-weight: 600;
    margin: 0 20px 20px;
}

.view-all-news {
    text-align: center;
    margin-top: 40px;
}

.media-resources-section {
    padding: 80px 0;
    background: white;
}

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

.resource-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    margin-bottom: 20px;
}

.resource-item h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.resource-item p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.resource-item .download-link {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-item .download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.media-contact-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.media-contact-section .contact-details p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
}

.media-contact-section .contact-details strong {
    color: #333;
}

/* Registration Page Styles */
.registration-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.registration-form-section .form-container {
    max-width: 900px;
}

.registration-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-left: 10px;
}

.checkbox-group label a {
    color: #4ECDC4;
    text-decoration: none;
}

.why-register-section {
    padding: 80px 0;
    background: white;
}

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

.why-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-icon {
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

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

/* Participate Page Styles */
.participation-options-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.option-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.option-icon {
    margin-bottom: 20px;
}

.option-card h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.option-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.option-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.option-card ul li {
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-right: 20px;
}

.option-card ul li::before {
    content: '✔';
    color: #4ECDC4;
    position: absolute;
    right: 0;
}

.btn-option {
    display: inline-block;
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.participation-contact-section {
    padding: 80px 0;
    background: white;
}

.participation-contact-section .form-container {
    max-width: 800px;
}

/* Responsive Design for new pages */
@media (max-width: 768px) {
    .forum-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid,
    .resources-grid,
    .why-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-form .form-row {
        grid-template-columns: 1fr;
    }
}



/* Mobile Navigation Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 80px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        height: 0; /* Start hidden */
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }

    .nav-menu.active {
        height: auto; /* Expand when active */
        padding-bottom: 20px;
    }

    .nav-menu .nav-item {
        text-align: center;
        margin: 10px 0;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 15px;
        border-radius: 0;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: linear-gradient(45deg, #FF6B35, #F7931E);
    }

    .lang-switch {
        display: none;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


 * {
	 padding: 0px;
	 margin: 0px;
	 box-sizing: border-box;
	 list-style: none;
	 text-decoration: none;
	 outline: none;
	 -webkit-user-select: none;
}
 /* body {
	 font-family: 'Montserrat', sans-serif;
} */
 h2 {
	 color: #979797;
}
 h2, a, p, h1, span {
	 -weblit-user-select: none;
}
/***start body > header ***/
 body > header {
	 background-color: #38403500;
	 padding: 20px 0px;
}
 header .container {
	 width: 80%;
	 margin: auto;
	 display: flex;
	 align-items: center;
	 position: relative;
}
/* start header .container .logo */
 header .container .logo {
	 cursor: pointer;
}
 header .container .logo h2 {
	 -webkit-text-stroke: 1.5px black;
	 font-size: 25px;
	 color: #fff;
}
 header .container input[type="checkbox"] {
	 display: none;
}
/* start header .container .menu_toggle */
 header .container .menu_toggle {
	 cursor: pointer;
	 width: 30px;
	 height: 21px;
	 position: absolute;
	 right: 0px;
	 display: none;
	 flex-direction: column;
	 justify-content: space-between;
	 overflow: hidden;
	 cursor: pointer;
}
 header .container .menu_toggle .bar {
	 width: 100%;
	 height: 3px;
	 background-color: white;
	 border-radius: 7px;
}
/* start header .container .list */
 header .container .list {
	 overflow: hidden;
	 transition: 1.1s;
	 transition-timing-function: ease-in-out;
}
 header .container .list li {
	 display: inline-block;
	 font-size: 18px;
	 margin-right: 15px;
}
 header .container .list li:last-child {
	 margin-right: 0px;
}
 header .container .list li:first-child .link {
	 color: white;
}
 header .container .list li .link {
	 display: inline-block;
	 color: #817f73;
}
 header .container .list li .link:hover {
	 color: #fff;
	 transition: color 1s;
}
/* start media_query */
 @media (min-width: 300px) and (max-width: 850px) {
	 header {
		 padding: 20px 0px;
	}
	 header .container {
		 flex-direction: column;
		 align-items: flex-start;
	}
	 header .container .menu_toggle {
		 display: flex;
		 margin-top: 6px;
		 overflow: visible;
	}
	 header .container .menu_toggle:hover .bar {
		 background-color: yellow;
		 box-shadow: 0px 0px 3px 1px black;
	}
	 header .container .list {
		 width: 100%;
		 margin-top: 0px;
		 max-height: 0px;
	}
	 header .container .list li {
		 display: block;
		 margin-top: 10px;
		 border-bottom: 0.1px solid #525962;
	}
	 header .container .list li:last-child {
		 border-bottom: transparent;
	}
	 header .container .list li .link {
		 width: 100%;
		 padding: 12px 0px;
		 display: block;
	}
	 header .container #check:checked + .list {
		 max-height: 20em;
	}
}
/***end header***/
 
