@charset "utf-8";
/* CSS Document */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        
        :root {
            --primary-blue: #1a3a5f;
            --secondary-blue: #2a4a75;
            --accent-gold: #fff;
            --diamond-blue: #4a90e2;
            --light-bg: #f5f5f5;
            --white: #ffffff;
        }
        
        body {
            background-color: var(--light-bg);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
         /* Header Styles */
        header {
            background-color: var(--primary-blue);
            color: white;
            padding: 15px 0;
            border-bottom: 5px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .school-name {
            text-align: center;
            flex-grow: 1;
            position: relative;
        }
        
        .anniversary-badge {
            position: absolute;
            top: -15px;
            right: -10px;
            background: linear-gradient(45deg, var(--primary-blue), var(--diamond-blue));
            color: white;
            font-weight: bold;
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 15px;
            animation: badge-pulse 2s infinite;
            box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
            border: 1px solid var(--accent-gold);
            z-index: 1;
        }
        
        .school-name h1 {
            font-size: 2.2rem;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
        
        .school-name p {
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            opacity: 0.9;
        }

  .logo {
            font-size: 2rem;
            color: var(--accent-silver);
            transition: transform 0.5s;
        }

/* Logo imperial */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px;
}

/* Right logo container */
.header-container .logo:last-child {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px; /* Space between title and right logo */
}
.logo {
    width: 100px; /* Define logo container size */
    height: 100px; /* Define logo container size */
    overflow: hidden; /* Prevents overflow */
    border-radius: 15px; /* Apply corner rounding to the container */
	margin-right: 10px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area */
    transition: transform 0.5s ease; /* Transition for scale effect */
	
    
}


.logo img:hover {
    transform: scale(1.1); /* Slightly enlarges on hover */
}

/* End of logo imperial */
        /* Right logo container */
        .header-container .logo:last-child {
            width: 60px;
            height: 60px;
            border-radius: 6px;
            background: rgba(212, 175, 55, 0.1);
            border: 2px solid rgba(212, 175, 55, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
        }
        
        .header-container .logo:last-child i {
            font-size: 2rem;
            color: var(--accent-gold);
        }
        
        @keyframes badge-pulse {
            0% { transform: scale(1); box-shadow: 0 0 10px rgba(74, 144, 226, 0.5); }
            50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(74, 144, 226, 0.8); }
            100% { transform: scale(1); box-shadow: 0 0 10px rgba(74, 144, 226, 0.5); }
        }
        
        /* Navigation Styles */
        nav {
            background-color: var(--secondary-blue);
            padding: 10px 0;
            box-shadow: 0 3px 5px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0 20px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            margin: 0 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 3px;
            position: relative;
            overflow: hidden;
        }
        
        nav a:hover {
            background-color: #3a5a85;
            transform: translateY(-2px);
        }
        
        nav a.active {
            background-color: var(--accent-gold);
            color: #333;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        /* Under Construction Section */
        .construction-container {
            max-width: 800px;
            margin: 60px auto;
            padding: 40px;
            text-align: center;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            animation: fadeIn 1s ease;
            flex-grow: 1;
        }
        
        .construction-icon {
            font-size: 5rem;
            color: var(--primary-blue);
            margin-bottom: 30px;
            animation: bounce 2s infinite;
        }
        
        .construction-title {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .construction-message {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .construction-details {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
            border-left: 5px solid var(--diamond-blue);
        }
        
        .construction-details h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .construction-details p {
            color: #666;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .countdown-item {
            background: linear-gradient(135deg, var(--primary-blue), var(--diamond-blue));
            color: white;
            padding: 20px 15px;
            border-radius: 10px;
            min-width: 100px;
            box-shadow: 0 5px 15px rgba(26, 58, 95, 0.2);
        }
        
        .countdown-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Back to Home Button */
        .back-home {
            display: inline-block;
            margin-top: 30px;
            padding: 15px 35px;
            background: linear-gradient(135deg, var(--primary-blue), var(--diamond-blue));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(26, 58, 95, 0.2);
        }
        
        .back-home:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(26, 58, 95, 0.3);
            background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
        }
        
        .back-home i {
            margin-right: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 50px 0 20px;
            margin-top: auto;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-column h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-column h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.2rem;
			text-decoration: underline;
			text-decoration-color: #fff; 
    		text-decoration-thickness: 2px;
    		text-underline-offset: 5px;
        }
        .footer-column p {
            margin-bottom: 10px;
            opacity: 0.9;
            line-height: 1.8;
        }
        
        .footer-column a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 8px;
        }
        
        .footer-column a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.8;
            font-size: 0.9rem;
        }
        
        .contact-info {
            margin-top: 10px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--accent-gold);
            width: 20px;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .school-name h1 {
                font-size: 1.8rem;
            }
            
            .construction-title {
                font-size: 2.2rem;
            }
            
            .construction-icon {
                font-size: 4rem;
            }
            
            nav a {
                padding: 8px 12px;
                font-size: 0.9rem;
                margin: 2px;
            }
            
            .construction-container {
                margin: 30px auto;
                padding: 30px 20px;
            }
            
            .countdown-item {
                min-width: 80px;
                padding: 15px 10px;
            }
            
            .countdown-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .construction-title {
                font-size: 1.8rem;
            }
            
            .construction-icon {
                font-size: 3rem;
            }
            
            .construction-message {
                font-size: 1.1rem;
            }
            
            .countdown {
                gap: 10px;
            }
            
            .countdown-item {
                min-width: 70px;
                padding: 12px 8px;
            }
            
            .countdown-number {
                font-size: 1.8rem;
            }
        }
   