@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* =========================================
   1. Variables & Base Setup
   ========================================= */
:root {
    --primary-color: #0b3d91;
    /* Academic Blue */
    --secondary-color: #2e8b57;
    /* Sustainability Green */
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f4f7f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #fff;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. Navbar Styling
   ========================================= */
nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 14px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Active Nav Link */
.nav-links a.active {
    color: var(--primary-color);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.external-link {
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 8px 12px;
    border-radius: 4px;
}

.external-link:hover {
    background: var(--secondary-color) !important;
}

/* =========================================
   3. SPA Layout & General Sections
   ========================================= */
#main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-section {
    display: none;
}

.page-section.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.section-content {
    padding: 60px 20px;
    min-height: calc(100vh - 80px);
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* =========================================
   4. Buttons
   ========================================= */
.btn-primary,
.btn-secondary {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* =========================================
   5. Home Page Specifics
   ========================================= */

/* Hero Banner */
.hero {
    height: calc(100vh - 80px);
    background: linear-gradient(rgba(11, 61, 145, 0.8), rgba(46, 139, 87, 0.8)), url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content {
    width: 100%;
}

.hero-date {
    display: inline-block !important;
    /* ڕێگری دەکات لە شارنەوەی لە هەر شاشەیەکدا */
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 15px 20px 15px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 15px;
    border-radius: 20px;
    color: #fff;
    /* زەمانەتی ئەوە دەکات ڕەنگەکەی سپی بێت */
    position: relative;
    /* زۆر پێویستە بۆ ئەوەی زێد-ئیندێکس کار بکات */
    z-index: 10;
    /* دەیهێنێتە پێشەوەی هەموو شتێک تا نەچێتە پشتەوە */
}

.hero-date i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-intro,
.hero-location {
    display: none;
    /* شاردنەوەی دەقی زییادە لە هیرۆ */
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.countdown div {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.countdown span:first-child {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.countdown span.label {
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Location Box (Overlapping Hero) */
/* Location Box (Separate Section) */
.home-location {
    margin-top: 60px;
    /* گۆڕیمان بۆ موجەب بۆ ئەوەی بۆشایی هەبێت لەگەڵ هیرۆ */
    margin-bottom: 60px;
}

.location-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
}

.location-text {
    flex: 1;
    padding: 30px;
    background: var(--primary-color);
    color: #fff;
}

.location-text h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.location-text i {
    margin-right: 10px;
}

.venue-details {
    font-size: 0.9rem !important;
    opacity: 0.8;
}

.location-map {
    flex: 1;
    min-height: 200px;
}

/* Personality Cards (Speakers & Chairs) */
.home-keynotes {
    padding: 60px 0;
}

.subsection-title {
    text-align: center;
    font-size: 1.5rem;
    color: #555;
    margin: 30px 0 20px;
}

.chair-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.keynote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.person-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.person-card:hover {
    transform: translateY(-5px);
}

.executive-card {
    border-top: 4px solid var(--secondary-color);
    max-width: 350px;
    width: 100%;
}

.person-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-light);
}

.person-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.person-card p {
    font-size: 0.9rem;
    color: #666;
}

.view-more-container {
    text-align: center;
    margin-top: 30px;
}

/* Organizers Logos */
.home-organizers {
    padding: 60px 0;
    background: #fff;
}

/* ڕێکخستنی بەشی ڕێکخەرەکان بۆ دوو ڕیزی ٤ دانەیی */
.organizers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* زۆرکردنی بۆ ٤ ستوون لە شاشەی گەورەدا */
    gap: 25px;
    /* کەمێک بۆشایی نێوانیانمان زیاد کرد بۆ جوانی */
    align-items: stretch;
    justify-content: center;
}

/* ڕێکخستنی مۆبایل و شاشەی مامناوەند بۆ ئەوەی تێک نەچێت */
@media screen and (max-width: 900px) {
    .organizers-grid {
        grid-template-columns: repeat(3, 1fr);
        /* لە ئایپاد دەبێت بە ٣ ستوون */
    }
}

@media screen and (max-width: 600px) {
    .organizers-grid {
        grid-template-columns: repeat(2, 1fr);
        /* لە مۆبایل دەبێت بە ٢ ستوون */
    }
}

.organizer-logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 20px 10px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.organizer-logo-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.organizer-logo-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.org-abbr {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.org-name {
    font-size: 0.8rem;
    color: #666;
}

/* =========================================
   6. Responsive Media Queries
   ========================================= */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1200px) {
    .nav-links {
        position: absolute;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .burger {
        display: block;
        position: relative;
        z-index: 2000;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .countdown {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .location-box {
        flex-direction: column;
    }

    .hero-actions {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero {
        height: auto;
        padding: 60px 0;
    }
}



/* =========================================
   Executive Chair Highlight Card (New Design)
   ========================================= */
.chair-highlight-container {
    display: flex;
    justify-content: center;
    margin: 20px 0 60px 0;
    padding: 0 20px;
}

.chair-highlight-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(11, 61, 145, 0.1);
    /* سێبەرێکی شین بۆ زەقکردنەوە */
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-left: 6px solid var(--primary-color);
}

.chair-img-box {
    flex: 0 0 220px;
    /* پانی وێنەکە */
    height: 100%;
    min-height: 220px;
}

.chair-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chair-info-box {
    padding: 30px 40px;
    flex: 1;
}

.chair-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chair-info-box h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.chair-title {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 15px;
}

.chair-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustment for the Chair Card */
@media screen and (max-width: 768px) {
    .chair-highlight-card {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 6px solid var(--primary-color);
    }

    .chair-img-box {
        flex: auto;
        width: 100%;
        height: 250px;
    }

    .chair-info-box {
        padding: 25px 20px;
    }
}


/* =========================================
   7. Footer Styling
   ========================================= */
.site-footer {
    background-color: #082b66;
    /* شینێکی تۆختر لە primary-color */
    color: #e0e0e0;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 5px solid var(--secondary-color);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-col h3 span {
    color: var(--secondary-color);
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    background-color: #051d45;
    /* شینێکی زۆر تۆخ بۆ کۆتایی */
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   8. About Section Specific Styles
   ========================================= */

.about-intro-text {
    margin-bottom: 50px;
}

.about-intro-text p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* Vision Box */
.about-vision-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.05), rgba(46, 139, 87, 0.05));
    border-left: 5px solid var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 60px;
    gap: 20px;
}

.about-vision-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.about-vision-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-vision-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Mission Section */
.about-subsection-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-mission-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.about-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-mission-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-mission-card h4 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-mission-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjust for Vision box */
@media screen and (max-width: 768px) {
    .about-vision-box {
        flex-direction: column;
        text-align: center;
    }
}



/* =========================================
   9. Scope Section Specific Styles
   ========================================= */
.scope-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    /* بۆ ئەوەی پەڕەکە زۆر کورت دەرنەکەوێت */
}

.scope-content-box {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    border-top: 5px solid var(--primary-color);
}

.scope-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -90px auto 30px auto;
    /* بۆ ئەوەی ئایکۆنەکە بچێتە سەرەوەی بۆکسەکە */
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.scope-icon-wrap i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.scope-text {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.8;
    font-weight: 300;
}




/* =========================================
   10. Committees Section Specific Styles
   ========================================= */
.committee-group {
    margin-bottom: 60px;
}

.committee-heading {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    display: inline-block;
}

/* List Style for Organizing Committee */
.committee-list-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.committee-list {
    list-style: none;
}

.committee-list li {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.05rem;
    color: #444;
}

.committee-list li:last-child {
    border-bottom: none;
}

.committee-list li strong {
    color: var(--primary-color);
}

.committee-list.alt-bg li:nth-child(even) {
    background-color: var(--bg-light);
}

/* Grid List for Scientific Committees */
.committee-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 15px;
}

.grid-list-item {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
}

.grid-list-item span {
    font-weight: 400;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}



/* =========================================
   11. Tracks Section Specific Styles
   ========================================= */
.tracks-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.tracks-intro p {
    margin-bottom: 15px;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
}

.track-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.track-icon {
    width: 65px;
    height: 65px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}

.track-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: color 0.3s;
}

/* ئەنیمەیشنی گۆڕینی ڕەنگ کاتێک ماوس دەچێتە سەری */
.track-card:hover .track-icon {
    background: var(--secondary-color);
}

.track-card:hover .track-icon i {
    color: #fff;
}

.track-details {
    flex: 1;
}

.track-number {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.track-details h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 600;
}




/* =========================================
   12. Fees Section Specific Styles
   ========================================= */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid #eee;
}

.fees-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    text-align: left;
}

.fees-table th,
.fees-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.fees-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.fees-table tbody tr:hover {
    background-color: var(--bg-light);
}

.fees-table tbody tr:last-child td {
    border-bottom: none;
}

.fees-notes-box {
    background-color: rgba(46, 139, 87, 0.05);
    /* سەوزێکی زۆر کاڵ */
    border-left: 4px solid var(--secondary-color);
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 40px;
}

.fees-notes-box h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fees-notes-list {
    list-style: none;
}

.fees-notes-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    color: #444;
    line-height: 1.6;
}

.fees-notes-list li::before {
    content: '\f058';
    /* ئایکۆنی ڕاستکردنەوە (Check circle) */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
}

.edas-registration-box {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.edas-registration-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.edas-registration-box p {
    color: #666;
    margin-bottom: 25px;
}

/* =========================================
   13. Important Dates (Timeline) Styles
   ========================================= */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* هێڵەکەی ناوەڕاستی تایملاین */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50px;
    margin-left: -2px;
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-left: 100px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

/* بازنەکەی سەر هێڵەکە */
.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border: 4px solid #fff;
    border-radius: 50%;
    top: 25px;
    left: -60px;
    /* ڕێکخستن لەگەڵ هێڵەکە */
    z-index: 1;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.2);
}

.timeline-date {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: inline-block;
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 4px;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #555;
    font-size: 0.95rem;
}

.timeline-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
    color: #555;
    font-size: 0.95rem;
}

.timeline-content ul li {
    margin-bottom: 5px;
}

/* ڕێکخستنی تایملاین بۆ شاشەی بچووک */
@media screen and (max-width: 600px) {
    .timeline-container::after {
        left: 30px;
    }

    .timeline-item {
        margin-left: 70px;
        padding: 20px;
    }

    .timeline-item::before {
        left: -50px;
    }
}



/* =========================================
   14. Venue Section Specific Styles
   ========================================= */
.venue-hero {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.venue-info {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-info h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.venue-room {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.venue-building {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.venue-address {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.venue-address i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.venue-features span {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e0e0e0;
}

.venue-btn {
    align-self: flex-start;
}

.venue-map-wrapper {
    flex: 1.2;
    min-height: 400px;
    position: relative;
}

/* Venue Gallery */
.venue-gallery {
    margin-top: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive map section */
@media screen and (max-width: 900px) {
    .venue-hero {
        flex-direction: column;
    }

    .venue-map-wrapper {
        min-height: 350px;
    }
}





/* =========================================
   15. Contact Section Specific Styles
   ========================================= */
.contact-wrapper {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    overflow: hidden;
}

.contact-info {
    flex: 1;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), #082b66);
    color: #fff;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-info>p {
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #e0e0e0;
}

.contact-details-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.contact-text p {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-box {
    flex: 1.2;
    padding: 50px;
    background: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.contact-form button {
    align-self: flex-start;
    margin-top: 10px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

@media screen and (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-box {
        padding: 30px;
    }
}

/* New Partners Box in Contact Section */
.contact-partners-box {
    flex: 1.2;
    padding: 50px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partners-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.partners-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* گۆڕدرا بۆ ٤ ستوون */
    gap: 20px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

.partner-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    line-height: 1.2;
}

/* بۆ شاشەی مۆبایل */
@media screen and (max-width: 600px) {
    .partners-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ڕێکخستنی لۆگۆی سەرەوە (Navbar) */
.navbar-logo-img {
    height: 50px;
    /* بەرزی لۆگۆکە. دەتوانیت کەم و زیادی بکەیت بەپێی شێوەی لۆگۆکە */
    width: auto;
    /* بۆ پاراستنی ڕێژەی درێژی و پانی وێنەکە */
    display: block;
    margin-top: 5px;
    /* کەمێک هێنانە خوارەوە بۆ ئەوەی ڕێک بێت لەگەڵ مینیۆکە */
}

/* ڕێکخستنی لۆگۆی خوارەوە (Footer) */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 90px;
    width: auto;
}


/* =========================================
   Publishers & Journals Section
   ========================================= */
.publishers-container {
    padding: 0 20px;
    margin-bottom: 50px;
}

.publishers-grid {
    display: grid;
    /* ئەمە وا دەکات خۆکارانە لەسەر شاشەی گەورە ببن بە چەند ڕیزێک و لەسەر مۆبایل ببن بە یەک ستوون */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    align-items: stretch;
    justify-content: center;
}

.publisher-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--primary-color);
    background: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.publisher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--secondary-color);
}

.publisher-card img {
    max-width: 100%;
    height: 70px;
    /* ڕێکخستنی بەرزی لۆگۆکان بۆ ئەوەی هەموویان یەکسان بن */
    object-fit: contain;
    margin-bottom: 15px;
}

.publisher-card span {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.5;
}


/* =========================================
   Venue & Call For Papers (CFP) Grid
   ========================================= */
.venue-cfp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* دوو ستوونی یەکسان */
    gap: 40px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.venue-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
}

/* دیزاینی کارتی CFP */
.cfp-highlight-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a52b8 100%);
    color: white;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(11, 61, 145, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ئایکۆنێکی گەورە وەک باگراوندی کارتەکە (Watermark) */
.cfp-highlight-card::after {
    content: '\f02d';
    /* ئایکۆنی کتێب */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 12rem;
    opacity: 0.05;
    transform: rotate(-15deg);
    pointer-events: none;
}

.cfp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cfp-header i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.cfp-header h3 {
    font-size: 2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cfp-body {
    position: relative;
    z-index: 2;
}

.cfp-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.cfp-dates {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 15px;
}

.cfp-dates li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.cfp-dates li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.cfp-dates i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.date-value {
    font-weight: 700;
    color: #fff;
}

/* دوگمەی سەر کارتەکە */
.cfp-btn {
    background: var(--secondary-color) !important;
    color: white !important;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent !important;
}

.cfp-btn:hover {
    background: transparent !important;
    border: 2px solid var(--secondary-color) !important;
    transform: translateY(-3px);
}

/* بۆ شاشەی مۆبایل با ببن بە یەک ستوون */
@media screen and (max-width: 900px) {
    .venue-cfp-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* =========================================
   Call For Papers (CFP) Banner - Minimalist
   ========================================= */
.cfp-banner-container {
    max-width: 800px;
    /* قەبارەیەک کە بۆ تێکست زۆر گونجاوە */
    margin: 0 auto;
}

.cfp-banner-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a52b8 100%);
    color: white;
    border-radius: 15px;
    padding: 40px 50px;
    box-shadow: 0 15px 35px rgba(11, 61, 145, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* ئایکۆنی باگراوندی کاڵبووەوە کە هێنراوەتە ناوەڕاست */
.cfp-banner-card::after {
    content: '\f02d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 18rem;
    opacity: 0.04;
    pointer-events: none;
}

.cfp-content-wrapper {
    position: relative;
    z-index: 2;
}

.cfp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cfp-header i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.cfp-header h3 {
    font-size: 2.2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cfp-banner-card p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

/* ڕێکخستن بۆ شاشەی مۆبایل */
@media screen and (max-width: 600px) {
    .cfp-banner-card {
        padding: 30px 20px;
    }

    .cfp-header h3 {
        font-size: 1.8rem;
    }

    .cfp-banner-card p {
        font-size: 1.1rem;
    }
}