@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;
            --environment-green: #2e8b57;
            --theatre-purple: #6a5acd;
            --charity-red: #b22222;
            --ict-teal: #20b2aa;
            --pta-orange: #ff8c00;
            --unesco-blue: #1e90ff;
            --innovation-pink: #ff1493;
            --health-green: #32cd32;
            --science-purple: #8a2be2;
            --economics-orange: #ff4500;
        }
        
        body {
            background-color: var(--light-bg);
            color: #333;
            line-height: 1.6;
        }
        
        /* 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 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 */
        
        .logo:hover {
            transform: rotate(0deg);
        }
        
        @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%;
        }
        
        /* Back to Top Button Styles */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(26, 58, 95, 0.3);
            border: 3px solid var(--accent-gold);
            transition: all 0.3s ease;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            background-color: var(--secondary-blue);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(26, 58, 95, 0.4);
        }
        
        .back-to-top:active {
            transform: scale(0.95);
        }
        
        /* Add a subtle animation for the icon */
        .back-to-top i {
            transition: transform 0.3s ease;
        }
        
        .back-to-top:hover i {
            transform: translateY(-3px);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(26, 58, 95, 0.9), rgba(26, 58, 95, 0.9)), 
                        url('../images/1.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 30px 20px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .page-header p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Student Spotlight */
        .student-spotlight {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }
        
        .spotlight-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .spotlight-header h2 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .spotlight-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .spotlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .spotlight-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .spotlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .spotlight-image {
            height: 200px;
            overflow: hidden;
        }
        
        .spotlight-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .spotlight-card:hover .spotlight-image img {
            transform: scale(1.05);
        }
        
        .spotlight-content {
            padding: 25px;
        }
        
        .spotlight-content h3 {
            color: var(--primary-blue);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .spotlight-content p {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.7;
        }
        
        .spotlight-tag {
            display: inline-block;
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--accent-gold);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Student Life Tabs */
        .student-life-tabs {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }
        
        .tabs-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .life-tab-btn {
            background-color: var(--white);
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .life-tab-btn i {
            font-size: 1.2rem;
        }
        
        .life-tab-btn:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .life-tab-btn.active {
            background-color: var(--accent-gold);
            color: #333;
            border-color: var(--accent-gold);
        }
        
        .life-tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .life-tab-content.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Clubs & Activities */
        .clubs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .club-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid var(--diamond-blue);
        }
        
        .club-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        
        .club-icon {
            font-size: 2.5rem;
            color: var(--diamond-blue);
            margin-bottom: 20px;
        }
        
        .club-card h3 {
            color: var(--primary-blue);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .club-card p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .club-details {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.9rem;
            margin-top: 15px;
        }
        
        /* Club Specific Colors */
        .club-environmental {
            border-top-color: var(--environment-green);
        }
        
        .club-theatre {
            border-top-color: var(--theatre-purple);
        }
        
        .club-charity {
            border-top-color: var(--charity-red);
        }
        
        .club-ict {
            border-top-color: var(--ict-teal);
        }
        
        .club-pta {
            border-top-color: var(--pta-orange);
        }
        
        .club-unesco {
            border-top-color: var(--unesco-blue);
        }
        
        .club-innovation {
            border-top-color: var(--innovation-pink);
        }
        
        .club-health {
            border-top-color: var(--health-green);
        }
        
        .club-science {
            border-top-color: var(--science-purple);
        }
        
        .club-economics {
            border-top-color: var(--economics-orange);
        }
        
        /* View More Button */
        .view-more-btn {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background-color 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
        }
        
        .view-more-btn:hover {
            background-color: var(--secondary-blue);
        }
        
        /* Club Details Modal */
        .club-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            overflow-y: auto;
            padding: 20px;
        }
        
        .club-modal.active {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }
        
        .modal-content {
            background-color: white;
            border-radius: 10px;
            width: 90%;
            max-width: 800px;
            margin: 50px auto;
            padding: 40px;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            animation: modalFadeIn 0.3s ease;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            z-index: 1001;
        }
        
        .modal-close:hover {
            color: var(--primary-blue);
        }
        
        .modal-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #eee;
        }
        
        .modal-title {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        
        .modal-subtitle {
            color: #666;
            font-style: italic;
        }
        
        .modal-section {
            margin-bottom: 25px;
        }
        
        .modal-section h3 {
            color: var(--primary-blue);
            margin-bottom: 10px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .modal-section ul {
            list-style-type: none;
            padding-left: 20px;
        }
        
        .modal-section li {
            margin-bottom: 8px;
            padding-left: 15px;
            position: relative;
        }
        
        .modal-section li:before {
            content: "•";
            color: midnightblue;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .members-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        .members-table th {
            background-color: rgba(26, 58, 95, 0.1);
            color: var(--primary-blue);
            text-align: left;
            padding: 12px 10px;
            font-weight: 600;
        }
        
        .members-table td {
            padding: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .members-table tr:hover {
            background-color: #f9f9f9;
        }
        
        /* Student Council */
        .student-council {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .council-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .council-header h2 {
            color: var(--primary-blue);
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .council-members {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .council-member {
            text-align: center;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        
        .council-member:hover {
            transform: translateY(-5px);
        }
        
        .member-role {
            color: deepskyblue;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .member-name {
            color: var(--primary-blue);
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .member-year {
            color: #666;
            font-size: 0.9rem;
            margin-top: 5px;
        }
        
        /* Student Support */
        .student-support {
            margin: 60px 0;
        }
        
        .support-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .support-header h2 {
            color: var(--primary-blue);
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .support-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .support-card:hover {
            transform: translateY(-5px);
        }
        
        .support-card h3 {
            color: var(--primary-blue);
            font-size: 1.4rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .support-card h3 i {
            color: var(--accent-gold);
        }
        
        /* Student Portal */
        .student-portal {
            background: linear-gradient(135deg, var(--primary-blue), white);
            color: midnightblue;
            border-radius: 10px;
            padding: 50px 40px;
            margin: 60px 0;
            text-align: center;
        }
        
        .student-portal h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }
        
        .student-portal p {
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
            font-size: 1.1rem;
        }
        
        .portal-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .portal-feature {
            text-align: center;
            padding: 20px;
        }
        
        .portal-feature i {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
        }
        
        /* Student Achievements */
        .student-achievements {
            margin: 60px 0;
        }
        
        .achievements-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .achievements-header h2 {
            color: var(--primary-blue);
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .achievement-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-left: 5px solid var(--accent-gold);
        }
        
        .achievement-card h3 {
            color: var(--primary-blue);
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .achievement-meta {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 50px 0 20px;
            margin-top: 80px;
        }
        
        .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;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            background-color: var(--primary-blue);
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn:hover {
            background-color: var(--secondary-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-gold {
            background-color: var(--accent-gold);
            color: #333;
        }
        
        .btn-gold:hover {
            background-color: #c4a027;
        }
        
        .btn-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background-color: white;
            color: var(--primary-blue);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .tabs-container {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
            }
            
            .life-tab-btn {
                flex-shrink: 0;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .page-header p {
                font-size: 1.1rem;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 10px;
                font-size: 2.5rem;
            }
            
            .school-name h1 {
                font-size: 1.8rem;
            }
            
            nav a {
                padding: 8px 12px;
                font-size: 0.9rem;
                margin: 2px;
            }
            
            .spotlight-header h2, .council-header h2, 
            .support-header h2, .achievements-header h2 {
                font-size: 2rem;
            }
            
            .student-council, .student-portal {
                padding: 30px 20px;
            }
            
            .clubs-grid, .support-grid, .achievements-grid {
                grid-template-columns: 1fr;
            }
            
            .portal-features {
                grid-template-columns: 1fr;
            }
            
            .modal-content {
                padding: 30px 20px;
                width: 95%;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 480px) {
            .page-header {
                padding: 60px 15px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .spotlight-header h2, .council-header h2, 
            .support-header h2, .achievements-header h2,
            .student-portal h2 {
                font-size: 1.8rem;
            }

            
            .life-tab-btn {
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .club-card, .support-card, .achievement-card {
                padding: 20px;
            }
            
            .members-table {
                font-size: 0.8rem;
            }
            
            .members-table th, .members-table td {
                padding: 8px 5px;
            }
            
            .back-to-top {
                bottom: 15px;
                right: 15px;
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
        }
           
           
            
            
           