/* CSS Variables for Sahara Desert Theme */
:root {
    /* Sahara Desert Color Palette */
    --sand-light: #f4f1eb;
    --sand-medium: #e6d7c3;
    --sand-dark: #d4c4a8;
    --ochre: #c17f59;
    --terracotta: #a0522d;
    --deep-brown: #8b4513;
    --desert-sky: #87ceeb;
    --desert-sky-dark: #4682b4;
    --white: #ffffff;
    --black: #2c2c2c;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #495057;
    
    /* Typography */
    --font-primary: 'Orbitron', 'Montserrat', Arial, sans-serif;
    --font-secondary: 'Lato', Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

/* High Contrast Mode */
[data-theme="high-contrast"] {
    --sand-light: #ffffff;
    --sand-medium: #e0e0e0;
    --sand-dark: #c0c0c0;
    --ochre: #ff8c00;
    --terracotta: #ff4500;
    --deep-brown: #8b0000;
    --desert-sky: #0000ff;
    --desert-sky-dark: #000080;
    --black: #000000;
    --white: #ffffff;
}

/* Skip Links for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--africa-green);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

.skip-link:hover {
    background: var(--ochre);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary) !important;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    box-shadow: var(--shadow-light);
}

.btn-primary {
    background: linear-gradient(135deg, var(--ochre), var(--terracotta));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--ochre);
    border: 2px solid var(--ochre);
}

.btn-secondary:hover {
    background: var(--ochre);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-light);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.logo-text {
    font-weight: 600;
    color: var(--ochre);
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--ochre);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ochre);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--ochre);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
    overflow: hidden;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(161, 76, 101, 0.18) 0%, rgba(193,127,89,0.18) 100%);
    z-index: 2;
}

.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 L20,10 M10,0 L10,20" stroke="rgba(70,130,180,0.2)" stroke-width="0.5" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    z-index: 3;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    display: block;
    font-size: 2.5rem;
    color: var(--ochre);
    font-weight: 500;
}

.hero-description {
    font-size: 1.5rem;
    color: var(--terracotta); 
   
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-intro {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.hero-intro p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
}

.hero-intro-highlight {
    color: #1db954;
    font-weight: 600;
    font-size: 1.18rem;
    text-shadow: 0 2px 8px #1db95433, 0 1px 2px #0002;
    letter-spacing: 0.5px;
}

/* Countdown */
.countdown-container {
    margin-bottom: 3rem;
}

.countdown-container h3 {
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ochre);
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ochre);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--ochre), var(--terracotta));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--gray-light);
}

.about-flex {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-visual {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
}

.about-img {
    max-width: 350px;
    border-radius: 18px;
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

.about-main {
    flex: 2 1 500px;
}

.about-title {
    font-size: 2.2rem;
    color: var(--ochre);
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1.1rem;
    color: var(--deep-brown);
    margin-bottom: 2rem;
}

.about-text h3 {
    color: var(--deep-brown);
    margin-bottom: 2rem;
}

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

.objective-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition-fast);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.objective-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ochre), var(--terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.objective-card h4 {
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--sand-medium), var(--sand-dark));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ochre);
    font-size: 3rem;
    box-shadow: var(--shadow-medium);
}

.image-placeholder p {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--deep-brown);
}

/* Thematic Tracks Styles */
.thematic-tracks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.track-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition-fast);
    border-left: 4px solid var(--africa-green);
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.track-header {
    background: linear-gradient(135deg, var(--africa-green), var(--ochre));
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-header i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.track-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.track-content {
    padding: 1.5rem;
}

.track-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.track-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--sand-light);
    color: var(--gray-dark);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.track-content li:last-child {
    border-bottom: none;
}

.track-content li::before {
    content: '•';
    color: var(--africa-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .thematic-tracks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .track-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .track-header h3 {
        font-size: 1rem;
    }
}

/* Important Dates Section */
.important-dates {
    background: var(--gray-light);
    padding: var(--section-padding);
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.date-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-fast);
    border-left: 4px solid var(--africa-green);
}

.date-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.date-card.conference-date {
    border-left: 4px solid var(--ochre);
    background: linear-gradient(135deg, rgba(29,185,84,0.05), rgba(193,127,89,0.05));
}

.date-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--africa-green), var(--ochre));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.date-content h3 {
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.date {
    color: var(--africa-green);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.date-content p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .dates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .date-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .date-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Partners Section - Smooth Scrolling Slider */
.partners {
    padding: 5rem 0;
    background: var(--sand-light);
    position: relative;
}

.partners .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners .section-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0 20px;
}

.slider-items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    animation: scrolling 20s linear infinite;
    padding: 20px 0;
    width: 200%;
}

.slider-items:hover {
    animation-play-state: paused;
}

.partner-logo {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    overflow: hidden;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@keyframes scrolling {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--deep-brown);
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ochre), var(--terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-details h4 {
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray-medium);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.contact-form h3 {
    color: var(--deep-brown);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-brown);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--sand-medium);
    border-radius: 8px;
    font-family: var(--font-secondary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ochre);
    box-shadow: 0 0 0 3px rgba(193, 127, 89, 0.1);
}

/* Footer */
.footer {
    background: var(--deep-brown);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--sand-light);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--sand-medium);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--sand-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--ochre);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-medium);
    color: var(--sand-medium);
}

/* Accessibility Toggle */
.accessibility-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--ochre);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
    z-index: 1000;
    display: none;
}

.accessibility-toggle:hover {
    background: var(--terracotta);
    transform: scale(1.1);
}

/* Scroll Up Button */
.scroll-up-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ochre), var(--terracotta));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-up-btn:hover {
    background: linear-gradient(135deg, var(--terracotta), var(--deep-brown));
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.scroll-up-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-up-btn:focus {
    outline: 2px solid var(--desert-sky);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition-medium);
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .program-cards {
        grid-template-columns: 1fr;
    }

/* Responsive Design for Partners Slider */
@media (max-width: 1024px) {
    .partners .section-header h1 {
        font-size: 2.8rem;
    }
    
    .slider {
        width: 85%;
        height: 180px;
    }
    
    .slider-items {
        gap: 35px;
    }
    
    .partner-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .partners .section-header h1 {
        font-size: 2.5rem;
    }
    
    .slider {
        width: 90%;
        height: 150px;
        padding: 0 15px;
    }
    
    .slider-items {
        gap: 25px;
        padding: 15px 0;
    }
    
    .partner-logo {
        width: 65px;
        height: 65px;
        border-radius: 10px;
    }
    
    .partner-logo img {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .partners .section-header h1 {
        font-size: 2rem;
    }
    
    .slider {
        width: 95%;
        height: 120px;
        padding: 0 10px;
        border-radius: 12px;
    }
    
    .slider-items {
        gap: 15px;
        padding: 10px 0;
    }
    
    .partner-logo {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }
    
    .partner-logo img {
        border-radius: 4px;
    }
    
    .partner-logo:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 360px) {
    .partners .section-header h1 {
        font-size: 1.8rem;
    }
    
    .slider {
        width: 98%;
        height: 100px;
        padding: 0 8px;
    }
    
    .slider-items {
        gap: 12px;
        padding: 8px 0;
        animation-duration: 15s; /* Faster animation for small screens */
    }
    
    .partner-logo {
        width: 45px;
        height: 45px;
        border-radius: 6px;
    }
    
    .partner-logo img {
        border-radius: 3px;
    }
}

/* Adjust animation speed for mobile devices */
@media (max-width: 768px) {
    .slider-items {
        animation-duration: 18s; /* Slightly faster for mobile */
    }
}

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 0.8rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Speakers Section */
.speakers {
    background: var(--desert-sky);
    background: linear-gradient(180deg, var(--desert-sky) 0%, var(--sand-light) 100%);
    padding: var(--section-padding);
}

.speakers .section-header h2 {
    color: var(--white);
}

.speakers .btn-secondary {
    background: var(--deep-brown);
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    padding: 8px 20px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
}

.speakers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem 3rem;
    margin-bottom: 2.5rem;
}

.speaker-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 270px;
    min-width: 220px;
    text-align: center;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.speaker-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-6px) scale(1.03);
}

.speaker-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem auto;
    border: 4px solid var(--desert-sky-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.speaker-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.flag-icon {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    margin-left: 0.3rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    vertical-align: middle;
}

.speaker-card p {
    font-size: 0.97rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    min-height: 80px;
}

.speaker-link {
    color: var(--desert-sky-dark);
    font-weight: 500;
    text-decoration: underline;
    font-size: 0.97rem;
    transition: color var(--transition-fast);
}

.speaker-link:hover {
    color: var(--terracotta);
}

.speakers-footer {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.speakers-footer .btn-primary {
    min-width: 140px;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .speakers-grid {
        gap: 2rem 1.5rem;
    }
    .speaker-card {
        max-width: 220px;
        min-width: 160px;
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .speaker-img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .speakers-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .speaker-card {
        width: 100%;
        max-width: 350px;
        min-width: 0;
    }
}

/* Partners Carousel */
.partners-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 3rem 0;
    padding: 0 2rem;
}

.partners-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    animation: autoScroll 30s linear infinite;
}

.partners-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    min-width: 280px;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--africa-green), var(--ochre));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
    border-color: var(--africa-green);
}

.partner-card:hover .partner-logo::before {
    opacity: 1;
}

.partner-card:hover .partner-logo {
    transform: rotate(360deg) scale(1.1);
}

.partner-card h4 {
    color: var(--deep-brown);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.partner-card:hover h4 {
    color: var(--africa-green);
}

.partner-card p {
    color: var(--gray-medium);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.partner-type {
    display: inline-block;
    background: linear-gradient(135deg, var(--africa-green), var(--ochre));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.carousel-btn {
    background: var(--white);
    border: 2px solid var(--africa-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--africa-green);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--africa-green);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.partners-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sand-dark);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    transition: var(--transition-fast);
}

.carousel-dot:hover::before {
    background: rgba(29, 185, 84, 0.2);
}

.carousel-dot.active {
    background: var(--africa-green);
    transform: scale(1.2);
}

.carousel-dot.active::before {
    background: rgba(29, 185, 84, 0.3);
}

/* Responsive Design for Partners */
@media (max-width: 768px) {
    .partners-carousel-container {
        padding: 0 1rem;
    }
    
    .partner-card {
        min-width: 250px;
        padding: 2rem 1.5rem;
    }
    
    .partner-logo {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .partner-card h4 {
        font-size: 1.2rem;
    }
    
    .partners-carousel-track {
        gap: 1.5rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partner-card {
        min-width: 220px;
        padding: 1.5rem 1rem;
    }
    
    .partner-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .partner-card h4 {
        font-size: 1.1rem;
    }
    
    .partner-card p {
        font-size: 0.9rem;
    }
}

/* --- AI, Tech, Africa, Morocco Theme Enhancements --- */

/* Highlight Cards for About/Focus Areas */
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0 2rem 0;
}
.highlight-card {
    background: var(--sand-medium);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 5px solid var(--ochre);
    position: relative;
}
.highlight-card i {
    font-size: 2.2rem;
    color: var(--desert-sky-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--ochre), var(--terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.highlight-card h4 {
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}
.highlight-card p {
    color: var(--gray-dark);
    font-size: 0.98rem;
}
.highlight-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px) scale(1.03);
    border-bottom: 5px solid var(--ochre);
}

/* Africa/Morocco Motif Backgrounds */
body::before {
    content: '';
    position: fixed;
    bottom: 0;
    right: 0;
    width: 320px;
    height: 320px;
    background: url('assets/africa-motif.svg') no-repeat bottom right;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    background: url('assets/morocco-mosaic.svg') no-repeat top left;
    background-size: contain;
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}

/* Moroccan Mosaic Divider */
.mosaic-divider {
    width: 100%;
    height: 18px;
    background: url('assets/mosaic-divider.svg') repeat-x center;
    margin: 2.5rem 0 2rem 0;
    opacity: 0.25;
}

/* Section Header Icon */
.section-header .section-icon {
    display: inline-block;
    font-size: 2rem;
    color: var(--ochre);
    margin-bottom: 0.5rem;
}

/* Footer Tagline & Icons */
.footer-tagline {
    text-align: center;
    color: var(--ochre);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.footer-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.7rem;
}
.footer-icons i {
    font-size: 1.4rem;
    color: var(--ochre);
    background: var(--sand-light);
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: var(--shadow-light);
    transition: color 0.2s;
}
.footer-icons i:hover {
    color: var(--ochre);
}

/* Program Panel Icons */
.program-card .panel-icon {
    font-size: 1.5rem;
    color: var(--ochre);
    margin-bottom: 0.5rem;
    display: block;
}

@media (max-width: 900px) {
    .about-highlights {
        flex-direction: column;
        align-items: center;
    }
}

/* Venue & Registration Section */
.venue-registration {
    background: var(--white);
    padding: var(--section-padding);
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.venue-info h3,
.registration-info h3 {
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.venue-card {
    background: var(--gray-light);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--africa-green);
}

.venue-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--africa-green), var(--ochre));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.venue-details h4 {
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.venue-details p {
    color: var(--gray-medium);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.venue-benefits {
    background: var(--sand-light);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid var(--ochre);
}

.venue-benefits h4 {
    color: var(--deep-brown);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.venue-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.venue-benefits li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.venue-benefits li i {
    color: var(--africa-green);
    font-size: 0.9rem;
}

.registration-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.registration-card {
    background: var(--gray-light);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    padding: 1.5rem;
    text-align: center;
    border-left: 4px solid var(--africa-green);
    transition: var(--transition-fast);
}

.registration-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.registration-type {
    color: var(--deep-brown);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.registration-price {
    color: var(--africa-green);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.registration-description {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.registration-note {
    background: rgba(29,185,84,0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.registration-note p {
    color: var(--africa-green);
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .venue-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .venue-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .venue-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
.pricing-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.85;
    z-index: 0;
}
.pricing-section .container {
    position: relative;
    z-index: 2;
}
.pricing-toggle-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.pricing-toggle {
    background: var(--desert-sky-dark);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 0.9rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    opacity: 0.5;
    box-shadow: var(--shadow-light);
}
.pricing-toggle.active {
    background: var(--ochre);
    color: var(--white);
    opacity: 1;
    box-shadow: 0 2px 12px rgba(193,127,89,0.15);
}
.pricing-toggle:not(.active) {
    background: var(--desert-sky-dark);
    color: var(--desert-sky);
    opacity: 0.5;
}
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.pricing-card {
    background: rgba(244, 241, 235, 0.92);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(193,127,89,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    min-width: 270px;
    max-width: 340px;
    text-align: center;
    color: var(--deep-brown);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 2px solid var(--ochre);
}
.pricing-card:hover {
    box-shadow: 0 8px 40px rgba(160,82,45,0.18);
    transform: translateY(-6px) scale(1.03);
    border-color: var(--terracotta);
}
.pricing-type {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: var(--terracotta);
}
.pricing-amount {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--terracotta);
}
.pricing-bar {
    width: 90%;
    height: 10px;
    background: var(--sand-dark);
    border-radius: 8px;
    margin: 0 auto 0.7rem auto;
    overflow: hidden;
    position: relative;
}
.pricing-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ochre) 60%, var(--terracotta) 100%);
    border-radius: 8px;
    transition: width 0.5s;
}
.pricing-availability {
    font-size: 1.1rem;
    color: var(--deep-brown);
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.btn-pricing {
    background: var(--ochre);
    color: var(--white);
    border-radius: 50px;
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    box-shadow: 0 2px 12px rgba(34,139,34,0.10);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.2s, transform 0.2s;
}
.btn-pricing:hover {
    background: var(--ochre);
    color: var(--white);
    transform: scale(1.04);
}
@media (max-width: 1024px) {
    .pricing-cards {
        gap: 1.2rem;
    }
    .pricing-card {
        min-width: 220px;
        max-width: 100%;
        padding: 2rem 1rem 1.5rem 1rem;
    }
}
@media (max-width: 700px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    .pricing-section {
        padding: 60px 0 40px 0;
    }
}

@media (max-width: 900px) {
    .about-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .about-img {
        max-width: 100%;
        width: 100%;
    }
    .about-main {
        width: 100%;
    }
} 

/* Green Loader Styles */
.green-loader {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #1db954;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s;
}
.green-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}
.green-loader .loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.green-loader .africa-icon {
    margin-bottom: 1rem;
    animation: loader-spin 1.2s linear infinite;
}
@keyframes loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.green-loader .loader-text {
    color: #fff;
    font-size: 1.3rem;
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 1px;
}

/* Green Accent Elements */
:root {
    --africa-green: #1db954;
}
.section-divider {
    background: var(--africa-green) !important;
    height: 4px;
    border-radius: 2px;
    margin: 1.5rem 0;
}
.green-btn {
    background: var(--africa-green) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(29,185,84,0.12);
    transition: background 0.2s;
}
.green-btn:hover, .green-btn:focus {
    background: #168f3e !important;
    color: #fff !important;
}
.green-btn-outline {
    border: 2px solid var(--africa-green) !important;
    color: var(--africa-green) !important;
    background: transparent !important;
    transition: background 0.2s, color 0.2s;
}
.green-btn-outline:hover, .green-btn-outline:focus {
    background: var(--africa-green) !important;
    color: #fff !important;
}
.green-highlight {
    border-left: 6px solid var(--africa-green);
    background: rgba(29,185,84,0.07);
    border-radius: 8px;
    padding-left: 1rem;
}
/* Add green accent to hero overlay */
.hero-overlay {
    background: linear-gradient(120deg, rgba(29,185,84,0.18) 0%, rgba(193,127,89,0.18) 100%);
}
/* African motif divider (optional) */
.mosaic-divider {
    background: repeating-linear-gradient(90deg, var(--africa-green), var(--africa-green) 10px, transparent 10px, transparent 20px);
    height: 6px;
    border-radius: 3px;
    margin: 2rem 0;
} 

/* Modern Green Accents and Enhancements */

/* Navigation: green underline and hover */
.nav-link {
    color: var(--black);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--africa-green);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--africa-green);
    transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Section headers: green accent bar */
.section-header h2 {
    color: var(--africa-green);
    letter-spacing: 1px;
}
.section-header .section-icon {
    color: var(--africa-green);
}

/* Modern card shadow and green border for cards */
.program-card, .speaker-card, .partner-card, .pricing-card, .objective-card, .highlight-card {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(29,185,84,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
    border: 1.5px solid rgba(29,185,84,0.13);
    transition: box-shadow 0.3s, border 0.3s;
}
.program-card:hover, .speaker-card:hover, .partner-card:hover, .pricing-card:hover, .objective-card:hover, .highlight-card:hover {
    box-shadow: 0 8px 32px rgba(29,185,84,0.18), 0 2px 8px rgba(0,0,0,0.08);
    border: 1.5px solid var(--africa-green);
}

/* Green icon accent */
.program-card .panel-icon, .highlight-card i, .objective-icon, .contact-avatar, .footer-icons i {
    color: var(--africa-green) !important;
}

/* Green background for hero intro and about highlights */
.hero-intro, .about-highlights, .about-image .image-placeholder {
    background: rgba(29,185,84,0.07);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
}

/* Improved hero section text visibility */
.hero-title {
    color: #fff !important;
    text-shadow: 0 2px 16px #1db954cc, 0 1px 2px #000a !important;
}
.hero-subtitle {
    color: #1db954 !important;
    text-shadow: 0 2px 8px #1db95488, 0 1px 2px #0006 !important;
}
.hero-description {
    color: #e6ffe6 !important;
    text-shadow: 0 1px 8px #1db95455, 0 1px 2px #0005 !important;
}

/* Modern button shadow and green focus */
.btn, .btn-primary, .btn-secondary, .btn-pricing {
    box-shadow: 0 2px 12px rgba(29,185,84,0.10);
    border-radius: 50px;
    outline: none;
}
.btn:focus {
    box-shadow: 0 0 0 3px rgba(29,185,84,0.18);
}

/* Green toggle for pricing */
.pricing-toggle.active {
    background: var(--africa-green);
    color: #fff;
    border: none;
}
.pricing-toggle:not(.active):hover {
    border: 2px solid var(--africa-green);
    color: var(--africa-green);
}

/* Green progress bar in pricing */
.pricing-bar-fill {
    background: linear-gradient(90deg, var(--africa-green) 60%, #c17f59 100%);
}

/* Green dot for carousel */
.carousel-dot.active {
    background: var(--africa-green);
}

/* Footer: green icons and hover */
.footer-icons i {
    color: var(--africa-green);
    transition: color 0.2s;
}
.footer-icons i:hover {
    color: #168f3e;
}

/* Social links: green hover */
.social-links a:hover {
    color: var(--africa-green);
}

/* Scroll up and accessibility buttons: green accent */
.scroll-up-btn, .accessibility-toggle {
    background: var(--africa-green);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(29,185,84,0.12);
}
.scroll-up-btn:hover, .accessibility-toggle:hover {
    background: #168f3e;
}

/* Add green accent to countdown numbers */
.countdown-number {
    color: var(--africa-green);
    font-weight: 700;
}

/* Add green border to about image placeholder */
.about-image .image-placeholder {
    border: 2.5px solid var(--africa-green);
} 

/* Futuristic Loader Spinner */
.futuristic-spinner {
    position: relative;
    width: 64px;
    height: 64px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner-ring {
    position: absolute;
    width: 64px;
    height: 64px;
    border: 4px solid rgba(29,185,84,0.18);
    border-top: 4px solid #1db954;
    border-radius: 50%;
    animation: spinner-rotate 1.2s linear infinite;
    box-shadow: 0 0 16px 4px #1db95444, 0 0 32px 8px #1db95422;
}
.spinner-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #1db954;
    border-radius: 50%;
    box-shadow: 0 0 12px 4px #1db95488, 0 0 24px 8px #1db95444;
    transform: translateX(-50%);
    animation: spinner-dot-move 1.2s linear infinite;
}
@keyframes spinner-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spinner-dot-move {
    0% { top: 8px; }
    50% { top: 44px; }
    100% { top: 8px; }
} 

.custom-loader-img {
    display: block;
    margin: 0 auto;
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
} 

.side-social-bar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.side-social-bar .side-social-link {
    width: 48px;
    height: 48px;
    background: #fff;
    color: #1db954;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 1.7rem;
    transition: background 0.2s, color 0.2s;
    margin: 0;
    padding: 0;
}
.side-social-bar .side-social-link + .side-social-link {
    border-top: 1px solid #eee;
}
.side-social-bar .side-social-link:hover {
    background: #1db954;
    color: #fff;
}
@media (max-width: 600px) {
    .side-social-bar {
        right: 4px;
        top: unset;
        bottom: 10%;
        transform: none;
    }
    .side-social-bar .side-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    .scroll-up-btn {
        display: none;
    }
    .side-social-bar {
        display: none;
    }
} 