body {
    background: linear-gradient(120deg, #6a8dff 0%, #7f53ac 100%);
    min-height: 100vh;
    font-family: 'Cairo', 'Tajawal', 'Segoe UI', Arial, sans-serif;
}
.navbar-custom {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 16px rgba(31,38,135,0.08);
    padding: 0.7rem 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: #1e3a8a !important;
    letter-spacing: 1px;
}
.navbar-brand img {
    height: 38px;
    margin-left: 12px;
}
.nav-btns .btn {
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 26px;
    margin-left: 10px;
    transition: all 0.2s;
}
.nav-btns .btn-login {
    background: #fff;
    color: #1e3a8a;
    border: 1.5px solid #1e3a8a;
}
.nav-btns .btn-login:hover {
    background: #1e3a8a;
    color: #fff;
}
.nav-btns .btn-register {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    border: none;
}
.nav-btns .btn-register:hover {
    background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
    color: #fff;
}
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    padding-top: 60px;
}
@keyframes colorize {
    0% { color: #ffffff; text-shadow: 2px 2px 8px rgba(0,0,0,0.6); }
    33% { color: #f97316; text-shadow: 2px 2px 10px rgba(249, 115, 22, 0.7); }
    66% { color: #1e3a8a; text-shadow: 2px 2px 10px rgba(30, 58, 138, 0.7); }
    100% { color: #ffffff; text-shadow: 2px 2px 8px rgba(0,0,0,0.6); }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    animation: colorize 10s infinite linear;
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-desc {
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 10px 24px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}
.hero-org {
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 10px 24px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}
.hero-date {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
/* Info Cards */
.info-card-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 320px;
}

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

.info-card-icon {
    font-size: 2.5rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.info-card-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.date-card .info-card-icon {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
}

.location-card .info-card-icon {
    background: linear-gradient(45deg, #10b981, #059669);
}

.countdown-section {
    padding: 2rem 0;
}

.countdown-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.countdown-number::before, .countdown-number::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 50%;
    overflow: hidden;
}

.countdown-number::before {
    top: 0;
    background: rgba(0,0,0,0.1);
}

.countdown-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-btn {
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 36px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 1.2rem;
    box-shadow: 0 2px 8px rgba(34,197,94,0.15);
    transition: background 0.3s;
}
.cta-btn:hover {
    background: #16a34a;
    color: #fff;
}
.section-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}
.program-section {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    padding: 2.5rem 1.5rem;
    margin: 2rem auto;
    max-width: 900px;
}
.program-title {
    background: linear-gradient(90deg, #3b82f6 0%, #1e3a8a 100%);
    color: #fff;
    border-radius: 18px 18px 0 0;
    padding: 1.2rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}
.program-block {
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 1.2rem;
    padding: 1.2rem 1rem;
    box-shadow: 0 2px 8px rgba(59,130,246,0.07);
}
.program-block.yellow { background: #fef9c3; }
.program-block.blue { background: #dbeafe; }
.program-block.green { background: #dcfce7; }
.program-block.red { background: #fee2e2; }
.program-block.purple { background: #ede9fe; }
.program-block .icon { font-size: 1.3rem; margin-left: 8px; }
.program-block .time { font-weight: bold; color: #1e3a8a; }
.program-block .desc { color: #374151; }
.program-block .title { font-weight: bold; color: #1e3a8a; font-size: 1.1rem; }
@media (max-width: 600px) {
    .hero-title { font-size: 2rem; }
    .program-section { padding: 1rem 0.3rem; }
}
@keyframes glass-pop {
    0% { opacity: 0; transform: scale(0.95) translateY(30px); }
    80% { opacity: 1; transform: scale(1.07) translateY(-8px); }
    100% { opacity: 1; transform: scale(1.03) translateY(0); }
}
.glass-card {
    background: rgba(59,130,246,0.13);
    border-radius: 18px;
    padding: 14px 28px;
    display: inline-block;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px 0 rgba(59,130,246,0.13), 0 1.5px 8px rgba(34,197,94,0.10);
    border: 1.5px solid rgba(255,255,255,0.18);
    animation: glass-pop 1.1s cubic-bezier(.4,2,.3,1);
}
@media (max-width: 767px) {
    .hero-logo { display: none !important; }
}
@media (min-width: 768px) {
    .hero-logo { display: block !important; }
}

.official-announcement-title {
    color: #facc15;
    font-size: 1.5rem;
    font-weight: 700;
}

.official-announcement-card {
    background: #fef9c3;
    border-radius: 20px;
    max-width: 340px;
}

.official-announcement-img-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fde047;
    box-shadow: 0 2px 12px #facc1533;
}

.official-announcement-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.official-announcement-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.official-announcement-role {
    color: #a16207;
    font-size: 1rem;
}

.official-announcement-badge {
    font-size: 0.95em;
    font-weight: 600;
}

.session-title {
    color: #3b82f6;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.session-card {
    background: #dbeafe;
}

.session-img-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #60a5fa;
}

.session-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.session-name {
    font-weight: 700;
}

.session-role {
    font-size: 0.97em;
    color: #2563eb;
}

.speaker-title {
    color: #22c55e;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.speaker-card {
    background: #dcfce7;
}

.speaker-img-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4ade80;
}

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

.speaker-name {
    font-weight: 700;
}

.speaker-role {
    font-size: 0.97em;
    color: #16a34a;
}

.partners-section {
    background: #f7fafd;
    padding: 70px 0 40px 0;
}

.partners-section-title {
    color: #232b3b;
}

.sponsor-category-title {
    font-weight: 700;
}

.sponsor-platinium-title {
    font-size: 1.3rem;
    color: #7c3aed;
}

.sponsor-platinium-card {
    background: #ede9fe;
}

.sponsor-img {
    max-width: 110px;
    max-height: 80px;
    display: block;
    margin: 0 auto 10px auto;
}

.sponsor-name {
    font-weight: 700;
}

.sponsor-gold-title {
    font-size: 1.2rem;
    color: #eab308;
}

.sponsor-gold-card {
    background: #fef9c3;
}

.sponsor-silver-title {
    font-size: 1.2rem;
    color: #64748b;
}

.sponsor-silver-card {
    background: #f1f5f9;
}

.sponsor-silver-img {
    max-width: 100px;
    max-height: 60px;
    display: block;
    margin: 0 auto 10px auto;
}

/* Partners Section */
.partners-logos-section {
    background: #fafdff;
    padding: 60px 0 40px 0;
}

.partner-logo-wrapper {
    height: 90px;
}

.partner-logo {
    max-width: 90px;
    max-height: 60px;
    object-fit: contain;
}

/* Media Partners Section */
.media-partners-section {
    background: #f7fafd;
    padding: 40px 0 30px 0;
}

.media-partner-title {
    color: #232b3b;
    font-size: 2rem;
}

.media-partner-logo-wrapper {
    height: 80px;
}

.media-partner-logo {
    max-width: 90px;
    max-height: 50px;
    object-fit: contain;
}

/* Strategic Objectives Section */
.strategic-objectives-section {
    background: #f7fafd;
    padding: 70px 0 40px 0;
}

.strategic-objectives-title {
    color: #232b3b;
    font-size: 2.5rem;
}

.strategic-objectives-subtitle {
    color: #64748b;
    font-size: 1.25rem;
}

.objective-card {
    min-height: 180px;
}

.objective-icon {
    font-size: 2.2rem;
}

.objective-card-title {
    font-size: 1.15rem;
}

.objective-card-text {
    color: #374151;
}

.border-primary {
    border-color: #3b82f6 !important;
}

.text-primary {
    color: #3b82f6 !important;
}

.border-success {
    border-color: #22c55e !important;
}

.text-success {
    color: #22c55e !important;
}

.border-info {
    border-color: #06b6d4 !important;
}

.text-info {
    color: #06b6d4 !important;
}

.border-warning {
    border-color: #f59e0b !important;
}

.text-warning {
    color: #f59e0b !important;
}


.hero-section .container {
    min-height: 170px;
}

.hero-logo-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 170px;
    width: 170px;
    object-fit: contain;
    z-index: 2;
}

.hero-title {
    margin-bottom: 0;
    display: inline-block;
    z-index: 3;
    position: relative;
}

.hero-logo-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 170px;
    width: 170px;
    object-fit: contain;
    z-index: 2;
}

.hero-logo-sm {
    height: 110px;
    width: 110px;
    object-fit: contain;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-desc {
    background: rgba(0,0,0,0.25);
    border-radius: 16px;
    padding: 15px 35px;
    font-size: 1.3rem;
    color: #f0f0f0;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-org-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-org {
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    padding: 12px 25px;
    font-size: 1.1rem;
    color: #1e3a8a;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-org.patronage {
    background: rgba(255, 215, 0, 0.95);
    color: #333;
}

.hero-date.glass-card {
    font-size: 1.18rem;
    color: #fff;
    font-weight: 600;
    background: rgba(59,130,246,0.13);
    border-radius: 18px;
    padding: 14px 28px;
    display: inline-block;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px 0 rgba(59,130,246,0.13),0 1.5px 8px rgba(34,197,94,0.10);
    border: 1.5px solid rgba(255,255,255,0.18);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(120deg, #2563eb 0%, #60a5fa 100%);
    padding: 60px 0;
}

.stat-card {
    background: rgba(255,255,255,0.13);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border: 1.5px solid #fff;
    text-align: center;
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    min-height: 160px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.4,2,.3,1), box-shadow 0.4s;
    will-change: transform, opacity;
    opacity: 0;
    transform: translateY(40px);
}

.stat-card .stat-number {
    font-size: 2.7rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.stat-card .stat-label {
    color: #fff;
    letter-spacing: 2px;
    font-size: 1.1rem;
    font-weight: 600;
}

.stat-card.animated {
    opacity: 1 !important;
    transform: translateY(0) scale(1.04);
    box-shadow: 0 12px 36px 0 rgba(34,197,94,0.13), 0 2px 8px rgba(59,130,246,0.07);
    animation: stat-pop 0.7s cubic-bezier(.4,2,.3,1);
}

@keyframes stat-pop {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); }
    80% { opacity: 1; transform: translateY(-8px) scale(1.07); }
    100% { opacity: 1; transform: translateY(0) scale(1.04); }
}

.frame-animate {
    animation: frame-in 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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