/* ================================================
   SDBQL 2026 - AMÉLIORATIONS
   Mode sombre + Compte à rebours + Icônes modernes
   ================================================ */

/* ========================================
   0. WIDGET COUNTDOWN HEADER & STICKY BAR
   ======================================== */

/* Widget Countdown en Haut */
.countdown-widget-header {
    position: sticky;
    top: 73px;
    z-index: 99;
    background: linear-gradient(135deg, #001a17, #003d35);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 2px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

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

/* Côté Gauche - Titre et Info */
.countdown-widget-left {
    flex: 1;
    min-width: 0;
}

.countdown-widget-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.countdown-widget-info {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Séparateur Vertical */
.countdown-widget-divider {
    width: 2px;
    height: 45px;
    background: rgba(255,255,255,0.3);
    border-radius: 1px;
}

/* Côté Droit - Countdown */
.countdown-widget-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.countdown-widget-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
}

.countdown-widget-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Courier New', monospace;
}

.countdown-widget-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 38px;
}

.countdown-widget-value {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.countdown-widget-label-item {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ========================================
   BANDE FILANTE PARTENAIRES - CORRIGÉ
   ======================================== */

.partners-ticker-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef0 50%, #f0f3f5 100%);
    padding: 12px 0;
    border-top: 3px solid #e0e0e0;
    border-bottom: 3px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.partners-ticker-label {
    text-align: center;
    color: #004d40;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.partners-ticker-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden; /* Important : cache le défilement */
    /* Suppression du max-width pour laisser la bande utiliser toute la largeur écran */
    margin: 0 auto;
}

.partners-ticker-content {
    display: flex;
    gap: 40px;
    /* Correction : width: max-content force tous les logos sur une seule ligne */
    width: max-content; 
    animation: scroll-left 40s linear infinite; /* Augmenté à 25s pour que ce soit lisible */
    padding: 20px 0;
    will-change: transform;
}

/* Pause au survol */
.partners-ticker-banner:hover .partners-ticker-content {
    animation-play-state: paused;
}

.partner-ticker-item {
    flex-shrink: 0; /* Empêche les logos de rétrécir */
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-image {
    max-width: 180px;
    max-height: 80px; /* Taille légèrement réduite pour l'harmonie */
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-ticker-item:hover .partner-logo-image {
    transform: translateY(-5px);
    filter: drop-shadow(0 6px 12px rgba(0,77,64,0.2));
}

/* Animation du défilement - LA CLÉ DU SUCCÈS */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        /* On déplace de la moitié (le premier set de logos) */
        transform: translateX(-50%);
    }
}

/* Mode Sombre */
body.dark-mode .partners-ticker-banner {
    background: #1e1e1e;
    border-top-color: #333333;
    border-bottom-color: #333333;
}

body.dark-mode .partners-ticker-label {
    color: #00bfa5;
}

/* ========================================
   SECTION CONGRESS HIGHLIGHT
   ======================================== */

.congress-highlight-section {
    background: linear-gradient(135deg, rgba(0,26,23,0.35), rgba(0,150,136,0.3)), url('images/5.jpg') center/cover;
    background-attachment: fixed;
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
}

.congress-highlight-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,191,165,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.congress-highlight-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,77,64,0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.congress-highlight-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Logo du Congrès - Style circulaire professionnel */
.congress-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    margin: 0 auto 25px;
    display: block;
    animation: logoReveal 1.2s ease-out forwards, logoGlow 2s ease-in-out infinite 1.2s;
    opacity: 0;
}

/* Animation d'entrée professionnelle */
@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    80% {
        transform: scale(0.95) rotate(-3deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Animation de lueur dorée professionnelle */
@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 212, 170, 0.2);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 212, 170, 0.5);
    }
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .congress-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
}

.congress-highlight-text {
    text-align: center;
}

.congress-highlight-subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00d4aa;
    margin: 0 0 15px 0;
    animation: slideInDown 0.8s ease-out;
}

.congress-highlight-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.3;
    animation: slideInUp 0.8s ease-out 0.2s backwards, titleShine 6s ease-in-out infinite 0.8s;
    background: linear-gradient(135deg, #ffffff 0%, #00d4aa 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.congress-highlight-description {
    font-size: 18px;
    color: #e0e0e0;
    margin: 0 0 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeIn 0.8s ease-out 0.4s backwards;
    font-family: 'Brush Script MT', 'Lucida Handwriting', 'Lucida Calligraphy', cursive;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.congress-info-block {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.congress-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideInUp 0.8s ease-out 0.6s backwards;
}

.congress-info-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.congress-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.congress-info-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00d4aa;
    margin-bottom: 3px;
}

.congress-info-value {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.congress-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #009688 0%, #00bfa5 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(0,150,136,0.3);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out 0.8s backwards;
}

.congress-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.congress-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,150,136,0.4);
}

.congress-cta-button:hover::before {
    left: 100%;
}

.button-text {
    font-weight: 700;
}

.button-arrow {
    font-size: 18px;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.congress-cta-button:hover .button-arrow {
    transform: translateX(5px);
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

@keyframes titleShine {
    0%, 100% {
        background-position: 200% 0%;
    }
    50% {
        background-position: 0% 0%;
    }
}

/* Mode Sombre - Congress Highlight */
body.dark-mode .congress-highlight-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1f2d2d 100%);
}

body.dark-mode .congress-highlight-title {
    background: linear-gradient(135deg, #ffffff 0%, #00bfa5 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .congress-highlight-description {
    color: #4dd0e1;
}

body.dark-mode .congress-info-value {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .congress-highlight-title {
        font-size: 32px;
    }
    
    .congress-highlight-description {
        font-size: 14px;
    }
    
    .congress-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    .congress-info-block {
        flex-direction: column;
        gap: 25px;
    }
    
    .congress-info-item {
        justify-content: center;
    }
    
    .congress-info-text {
        align-items: center;
    }
    
    .congress-cta-button {
        padding: 14px 35px;
        font-size: 15px;
    }
}


/* Barre Sticky avec Titre et Info */
.sticky-header-bar {
    position: sticky;
    top: 73px;
    z-index: 98;
    background: linear-gradient(135deg, rgba(0,77,64,0.98), rgba(0,121,107,0.95));
    backdrop-filter: blur(8px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-header-bar.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

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

.sticky-title h2 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.sticky-title p {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin: 3px 0 0;
    font-weight: 500;
}

.sticky-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.sticky-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
}

.sticky-info-item i {
    font-size: 16px;
}

/* Mode Sombre pour les sticky headers */
body.dark-mode .countdown-widget-header {
    background: linear-gradient(135deg, rgba(0,150,136,0.85), rgba(0,191,165,0.8));
}

body.dark-mode .sticky-header-bar {
    background: linear-gradient(135deg, rgba(0,77,64,0.85), rgba(0,121,107,0.8));
}

/* ========================================
   1. MODE SOMBRE
   ======================================== */

/* Toggle du mode sombre */
.dark-mode-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 9998;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 50px;
    padding: 8px 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dark-mode-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.dark-mode-toggle svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.dark-mode-toggle .sun-icon {
    fill: #ffa726;
}

.dark-mode-toggle .moon-icon {
    fill: #64b5f6;
    display: none;
}

/* Variables du mode sombre */
body.dark-mode {
    --color-primary: #00bfa5;
    --color-primary-dark: #00897b;
    --color-primary-light: #4dd0e1;
    --color-secondary: #26a69a;
    --color-accent: #4dd0e1;
    --color-dark: #e0e0e0;
    --color-text: #b0bec5;
    --color-light: #263238;
    --color-white: #1a1a1a;
    --color-gray: #78909c;
    --color-border: #37474f;
    
    background: #1a1a1a;
    color: #b0bec5;
}

body.dark-mode .dark-mode-toggle {
    background: #263238;
    border-color: #37474f;
}

body.dark-mode .dark-mode-toggle .sun-icon {
    display: none;
}

body.dark-mode .dark-mode-toggle .moon-icon {
    display: block;
}

/* Ajustements spécifiques pour le mode sombre */
body.dark-mode .navbar {
    background: rgba(26, 26, 26, 0.85);
    border-bottom-color: #37474f;
}

body.dark-mode .top-bar {
    background: #263238;
    border-bottom-color: #37474f;
}

body.dark-mode .hero-slider .slide {
    background: linear-gradient(135deg, rgba(0,191,165,0.5), rgba(38,166,154,0.45)), url('images/5.jpg') center/cover !important;
}

body.dark-mode .footer {
    background: #263238;
}

body.dark-mode .btn-light {
    background: #37474f;
    color: #e0e0e0;
    border-color: #546e7a;
}

body.dark-mode .btn-outline {
    border-color: #00bfa5;
    color: #00bfa5;
}

body.dark-mode .btn-outline:hover {
    background: #00bfa5;
    color: #1a1a1a;
}

body.dark-mode .committee-box,
body.dark-mode .theme-box,
body.dark-mode .pricing-box,
body.dark-mode .highlight-box {
    background: #263238;
    border-color: #37474f;
}

body.dark-mode .sdg-ticker-banner {
    background: linear-gradient(135deg, #00897b 0%, #00bfa5 50%, #00897b 100%);
}

body.dark-mode .sdg-widget-toggle {
    background: linear-gradient(135deg, #00897b, #00bfa5);
}

body.dark-mode .sdg-widget-panel {
    background: #263238;
}

body.dark-mode .widget-panel-header {
    background: linear-gradient(135deg, #00897b, #00bfa5);
}

/* ========================================
   2. COMPTE À REBOURS
   ======================================== */

.countdown-container {
    margin: 30px 0 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.countdown-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.countdown-item {
    text-align: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.countdown-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.countdown-label-item {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* Animation du compte à rebours */
@keyframes pulse-countdown {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.countdown-item.pulse {
    /* Animation supprimée - texte simple */
}

/* ========================================
   3. CARTE INTERACTIVE
   ======================================== */

.venue-map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
    border: 3px solid var(--color-border);
}

.venue-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

body.dark-mode .venue-map {
    border-color: #37474f;
}

/* ========================================
   TEXTE EN MODE SOMBRE - Assurer la visibilité
   ======================================== */

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode p,
body.dark-mode span,
body.dark-mode a,
body.dark-mode li,
body.dark-mode td,
body.dark-mode th {
    color: #e0e0e0 !important;
}

body.dark-mode .section-title {
    color: #ffffff !important;
}

body.dark-mode .section-label {
    color: #4dd0e1 !important;
}

body.dark-mode .welcome-section {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .committee-box h3,
body.dark-mode .theme-box h3,
body.dark-mode .pricing-box h3,
body.dark-mode .highlight-box h4 {
    color: #ffffff !important;
}

body.dark-mode .committee-box p,
body.dark-mode .theme-box p,
body.dark-mode .pricing-box p,
body.dark-mode .highlight-box p {
    color: #b0bec5 !important;
}

body.dark-mode .stat-number {
    color: #4dd0e1 !important;
}

body.dark-mode .stat-label {
    color: #b0bec5 !important;
}

body.dark-mode .contact-section {
    background: #1a1a1a;
}

body.dark-mode .contact-info-box {
    background: #263238;
    color: #e0e0e0;
}

body.dark-mode .contact-info-box h3 {
    color: #4dd0e1 !important;
}

body.dark-mode .contact-info-box p {
    color: #b0bec5 !important;
}

body.dark-mode input,
body.dark-mode textarea {
    background: #263238 !important;
    color: #e0e0e0 !important;
    border-color: #37474f !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #78909c !important;
}

/* Instructions de direction */
.map-directions {
    margin-top: 20px;
    padding: 20px;
    background: var(--color-light);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.map-directions h4 {
    margin-bottom: 10px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-directions h4 svg {
    width: 24px;
    height: 24px;
}

.map-directions p {
    margin-bottom: 8px;
    font-size: 14px;
}

.map-directions a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ========================================
   4. ICÔNES SVG MODERNES
   ======================================== */

.svg-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.svg-icon-sm {
    width: 18px;
    height: 18px;
}

.svg-icon-lg {
    width: 32px;
    height: 32px;
}

.svg-icon-xl {
    width: 48px;
    height: 48px;
}

/* Couleurs des icônes */
.icon-primary {
    fill: var(--color-primary);
}

.icon-success {
    fill: #4caf50;
}

.icon-warning {
    fill: #ff9800;
}

.icon-danger {
    fill: #f44336;
}

.icon-info {
    fill: #2196f3;
}

/* ========================================
   5. RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .dark-mode-toggle {
        top: 80px;
        right: 20px;
        padding: 6px 10px;
    }
    
    .dark-mode-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .countdown-item {
        padding: 12px 8px;
    }
    
    .countdown-value {
        font-size: 28px;
    }
    
    .countdown-label-item {
        font-size: 11px;
    }
    
    .venue-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        padding: 20px 15px;
    }
    
    .countdown-value {
        font-size: 24px;
    }
    
    .countdown-label-item {
        font-size: 10px;
    }
    
    .venue-map {
        height: 250px;
    }
}

/* ========================================
   6. ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Transition fluide pour le mode sombre */
body,
.navbar,
.top-bar,
.footer,
.committee-box,
.theme-box,
.pricing-box,
.highlight-box,
.sdg-widget-panel,
.btn-light,
.btn-outline {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
