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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f5dc 0%, #faf8f0 100%);
    color: #333;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #c41e3a, #d4af37);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #d4af37, #003366);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #003366, #c41e3a);
    bottom: 10%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #d4af37, #c41e3a);
    top: 40%;
    right: 25%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 50px) rotate(90deg); }
    50% { transform: translate(0, 100px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
}

/* Header */
header {
    background: linear-gradient(135deg, #3333FF 0%, #3333FF 100%);
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.header-content {
    position: relative;
    z-index: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.logo-icon {
    font-size: 3em;
    color: #d4af37;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.site-title {
    font-size: 3.5em;
    color: #fff;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideDown 1s ease-out;
}

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

.tagline {
    color: #d4af37;
    font-size: 1.2em;
    letter-spacing: 2px;
    font-weight: 300;
    animation: fadeIn 1.5s ease-out;
}

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

/* Navigation */
.main-nav {
    background: linear-gradient(135deg, #d4af37 0%, #f4d47a 50%, #d4af37 100%);
    padding: 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 28px;
    color: #5a2d0c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c41e3a, #003366);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav a:hover::before,
.main-nav a.active::before {
    transform: scaleX(1);
}

.main-nav a:hover,
.main-nav a.active {
    background-color: rgba(255, 255, 255, 0.4);
    color: #3a1d0c;
    transform: translateY(-2px);
}

.main-nav a i {
    font-size: 1.1em;
}

/* Date Display */
.date-display {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 15px 20px;
    text-align: center;
    border-bottom: 2px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.date-display i {
    color: #c41e3a;
    font-size: 1.2em;
}

.date-display p {
    color: #555;
    font-size: 1em;
    font-weight: 500;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #27ae60;
    font-weight: 600;
    font-size: 0.9em;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #27ae60;
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Page Title */
.page-title {
    text-align: center;
    font-size: 3em;
    color: #c41e3a;
    margin: 40px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.title-decoration {
    color: #d4af37;
    margin: 0 20px;
    display: inline-block;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

/* Welcome Section */
.welcome-section {
    flex: 1;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.welcome-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.welcome-header i {
    color: #d4af37;
    font-size: 1.5em;
}

.welcome-title {
    color: #c41e3a;
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

.welcome-text {
    color: #555;
    font-size: 1.2em;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: linear-gradient(135deg, #f0f0f0 0%, #fff 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.stat-card i {
    font-size: 2.5em;
    color: #c41e3a;
    margin-bottom: 15px;
}

.stat-card h4 {
    font-size: 2em;
    color: #333;
    margin: 10px 0;
    font-weight: 700;
}

.stat-card p {
    color: #666;
    font-size: 1em;
}

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    margin: 30px auto 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.5);
}

.cta-button i {
    transition: transform 0.3s ease;
}

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

/* Sidebar */
.sidebar {
    width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.latest-updates {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.updates-header {
    background: rgba(0,0,0,0.2);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.updates-header i {
    font-size: 1.5em;
    color: #d4af37;
}

.updates-header h4 {
    font-size: 1.3em;
    font-weight: 600;
}

.updates-content {
    padding: 20px 25px;
}

.update-item {
    padding: 18px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;

}

.update-item:hover {
    background: rgba(255,255,255,0.1);
    border-left-color: #d4af37;
    transform: translateX(5px);
}

.update-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #3498db;
    color: white;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    margin-bottom: 8px;

}

.update-badge.new {
    background: #e74c3c;
    animation: blink 2s infinite;
}

.update-badge.event {
    background: #9b59b6;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.update-item p {
    margin: 10px 0;
    font-size: 0.95em;
    line-height: 1.5;
}

.update-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85em;
    color: #bdc3c7;
}

.view-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* Quick Links */
.quick-links {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.quick-links h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c41e3a;
    font-size: 1.3em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: #555;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.quick-links a:hover {
    background: #d4af37;
    color: white;
    transform: translateX(10px);
}

.quick-links a i {
    font-size: 1.2em;
    color: #c41e3a;
    transition: color 0.3s ease;
}

.quick-links a:hover i {
    color: white;
}

/* Feature Section */
.feature-section {
    margin: 60px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.feature-card.card-1:hover { border-color: #e74c3c; }
.feature-card.card-2:hover { border-color: #3498db; }
.feature-card.card-3:hover { border-color: #2ecc71; }
.feature-card.card-4:hover { border-color: #9b59b6; }

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #c41e3a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .card-icon {
    transform: rotateY(360deg);
}

.card-icon i {
    font-size: 2em;
    color: white;
}

.feature-card h3 {
    color: #333;
    font-size: 1.4em;
    margin: 20px 0 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Testimonials */
.testimonials {
    margin: 60px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.section-title {
    text-align: center;
    color: white;
    font-size: 2.5em;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #d4af37;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c41e3a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.8em;
    color: white;
}

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

.author-info p {
    color: #888;
    font-size: 0.95em;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
    color: #d4af37;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-title {
        font-size: 2em;
    }

    .logo-section {
        flex-direction: column;
        gap: 10px;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav a {
        width: 100%;
        justify-content: center;
    }

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

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

    .welcome-section {
        padding: 30px 20px;
    }
}

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

    .site-title {
        font-size: 1.5em;
    }
}


/*
updated
*/
/* Achievements Grid */
/* Achievements Grid */
.achivements-grid {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
     display: flex;
        justify-content: center;
        align-items: center;
}

.visited-images {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.visited-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: imageSlide 25s infinite;
}

.visited-images img:nth-child(1) {
    animation-delay: 0s;
}

.visited-images img:nth-child(2) {
    animation-delay: 5s;
}

.visited-images img:nth-child(3) {
    animation-delay: 10s;
}
.visited-images img:nth-child(4){
    animation-delay:15s;
}
.visited-images img:nth-child(5){
    animation-delay:20s;
}

@keyframes imageSlide {
    0% { opacity: 0; }
    5% { opacity: 1; }
    45% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}
.visited-images .log_image {
    width: 500px;
    height: 400px;
    display: flex;
    margin-left: 150px;
    justify-content: center;
    object-fit: contain;
    border-radius: 15px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visited-images .log_image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}