
        :root {
            --primary-color: #1c1924;
            --secondary-color: #d83038;
            --accent-color: #f8f9fa;
            --text-color: #333;
            --light-text: #f8f9fa;
            --nigerian-green: #008753;
            --nigerian-white: #ffffff;
            --topbar-bg: #0f0d15;
            --instagram-gradient: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 130px;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .primary-bg {
            background-color: var(--primary-color);
        }
        
        .secondary-bg {
            background-color: var(--secondary-color);
        }
        
        .primary-text {
            color: var(--primary-color);
        }
        
        .secondary-text {
            color: var(--secondary-color);
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 5px;
        }
        
        /* Top Bar */
        .top-bar {
            background-color: var(--topbar-bg);
            color: var(--light-text);
            padding: 0.6rem 0;
            font-size: 0.9rem;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1030;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-bar-left {
            display: flex;
            align-items: center;
        }
        
        .top-bar-right {
            display: flex;
            align-items: center;
        }
        
        .top-bar-item {
            display: flex;
            align-items: center;
            margin-right: 1.5rem;
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .top-bar-item:last-child {
            margin-right: 0;
        }
        
        .top-bar-item i {
            color: var(--secondary-color);
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }
        
        .top-bar-item:hover {
            color: var(--secondary-color);
        }
        
        .top-bar-divider {
            height: 15px;
            width: 1px;
            background-color: rgba(255, 255, 255, 0.2);
            margin: 0 1rem;
        }
        
        .login-buttons {
            display: flex;
            gap: 0.8rem;
        }
        
        .login-btn {
            background-color: transparent;
            color: var(--light-text);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 0.3rem 1rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .login-btn i {
            color: var(--light-text);
            font-size: 0.8rem;
        }
        
        .login-btn:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: var(--light-text);
            transform: translateY(-2px);
        }
        
        .social-icons {
            display: flex;
            gap: 0.8rem;
            margin-left: 1.5rem;
        }
        
        .social-icon {
            width: 30px;
            height: 30px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-text);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* Header & Navigation */
        .navbar {
            padding: 0.8rem 0;
            transition: all 0.3s ease;
            background-color: rgba(28, 25, 36, 0.98);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 40px;
            left: 0;
            width: 100%;
            z-index: 1020;
        }
        
        
        
        
        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 900;
            font-size: 1.8rem;
        }
        
        .navbar-brand span {
            color: var(--secondary-color);
        }
        
        .nav-link {
            font-weight: 600;
            margin: 0 0.5rem;
            color: var(--light-text) !important;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--secondary-color);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        /* Custom Toggler */
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
            position: relative;
            width: 40px;
            height: 40px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        .navbar-toggler-icon {
            background-image: none;
            width: 24px;
            height: 2px;
            background-color: var(--light-text);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2px;
            background-color: var(--light-text);
            left: 0;
            transition: all 0.3s ease;
        }
        
        .navbar-toggler-icon::before {
            top: -8px;
        }
        
        .navbar-toggler-icon::after {
            top: 8px;
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
            background-color: transparent;
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
            transform: rotate(45deg);
            top: 0;
            background-color: var(--secondary-color);
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
            transform: rotate(-45deg);
            top: 0;
            background-color: var(--secondary-color);
        }
        
        /* Hero Banner */
        .hero-banner {
            position: relative;
            height: 90vh;
            min-height: 700px;
            overflow: hidden;
            margin-top: -130px;
            display: flex;
            align-items: center;
        }
        
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        

        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(28, 25, 36, 0.85) 0%, rgba(28, 25, 36, 0.7) 50%, rgba(28, 25, 36, 0.4) 100%);
            z-index: 2;
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            color: var(--light-text);
            padding: 2rem;
            max-width: 700px;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 900;
            line-height: 1.2;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            font-weight: 500;
            max-width: 600px;
        }
        
        .slider-controls {
            position: absolute;
            bottom: 30px;
            right: 30px;
            display: flex;
            gap: 15px;
            z-index: 4;
        }
        
        .slider-control {
            width: 50px;
            height: 50px;
            background-color: rgba(28, 25, 36, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .slider-control:hover {
            background-color: var(--secondary-color);
            transform: scale(1.1);
        }
        
        .slider-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 4;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--secondary-color);
            transform: scale(1.2);
        }
        
        /* CTA Buttons */
        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            text-decoration: none;
            margin: 0.5rem 0.5rem 0.5rem 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
        }
        
        .cta-primary {
            background-color: var(--secondary-color);
            color: var(--light-text);
            border: 2px solid var(--secondary-color);
        }
        
        .cta-primary:hover {
            background-color: transparent;
            color: var(--secondary-color);
        }
        
        .cta-secondary {
            background-color: transparent;
            color: var(--light-text);
            border: 2px solid var(--light-text);
        }
        
        .cta-secondary:hover {
            background-color: var(--light-text);
            color: var(--primary-color);
        }
        
        /* Section Styling */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title h2 {
            display: inline-block;
            font-size: 2.8rem;
            position: relative;
            padding-bottom: 1rem;
            font-weight: 800;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background-color: var(--secondary-color);
        }
        
        section {
            padding: 6rem 0;
        }
        
        /* Enhanced About Section */
        .about-section {
            position: relative;
            overflow: hidden;
        }
        
        .about-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f2f5 100%);
            z-index: -1;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .about-image {
            position: relative;
            padding: 2rem;
        }
        
        .about-img-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 30px 30px 0px rgba(216, 48, 56, 0.1), 0px 0px 60px rgba(0, 0, 0, 0.15);
            transform: rotate(-2deg);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            position: relative;
            z-index: 2;
        }
        
        .about-img-container:hover {
            transform: rotate(0deg);
            box-shadow: 40px 40px 0px rgba(216, 48, 56, 0.15), 0px 0px 80px rgba(0, 0, 0, 0.2);
        }
        
        .about-img-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-img-container:hover img {
            transform: scale(1.05);
        }
        
        .image-decoration {
            position: absolute;
            width: calc(100% - 30px);
            height: calc(100% - 30px);
            border: 5px solid var(--secondary-color);
            border-radius: 20px;
            top: 15px;
            left: 15px;
            z-index: 1;
        }
        
        .about-text {
            padding-left: 3rem;
            position: relative;
        }
        
        .about-text h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            color: var(--primary-color);
        }
        
        .about-text h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        
        .about-feature {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid var(--secondary-color);
        }
        
        .about-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .about-feature h5 {
            color: var(--secondary-color);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.2rem;
        }
        
        .about-feature h5 i {
            font-size: 1.5rem;
        }
        
        /* Graduate Testimonials */
        .graduates-section {
            background-color: #f9f9f9;
        }
        
        .graduate-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            height: 100%;
            border-left: 6px solid var(--secondary-color);
            position: relative;
            transition: transform 0.3s ease;
            overflow: hidden;
        }
        
        .graduate-card:hover {
            transform: translateY(-10px);
        }
        
        .graduate-card:before {
            content: "\201C";
            font-size: 5rem;
            color: var(--secondary-color);
            opacity: 0.3;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
        }
        
        .graduate-content {
            margin-top: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .graduate-content p {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .graduate-info {
            display: flex;
            align-items: center;
            margin-top: 2rem;
        }
        
        .graduate-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1.5rem;
            border: 4px solid var(--secondary-color);
            flex-shrink: 0;
        }
        
        .graduate-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .graduate-details h5 {
            margin-bottom: 0.3rem;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .graduate-details .graduate-degree {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .graduate-details .graduate-university {
            color: #666;
            font-size: 1rem;
            margin-bottom: 0;
            font-weight: 500;
        }
        
        .graduate-year {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }
        
        /* Why Choose Us - Tabbed Section */
        .why-choose-section {
            background-color: var(--primary-color);
            color: var(--light-text);
        }
        
        .why-choose-section .section-title h2 {
            color: var(--light-text);
        }
        
        .why-choose-section .section-title h2::after {
            background-color: var(--secondary-color);
        }
        
        .why-choose-container {
            display: flex;
            flex-wrap: wrap;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .why-tabs {
            width: 35%;
            background-color: rgba(0, 0, 0, 0.3);
            padding: 3rem 0;
        }
        
        .why-tab {
            display: flex;
            align-items: center;
            padding: 1.5rem 2rem;
            color: var(--light-text);
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 5px solid transparent;
            cursor: pointer;
        }
        
        .why-tab:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .why-tab.active {
            background-color: rgba(216, 48, 56, 0.2);
            border-left-color: var(--secondary-color);
        }
        
        .why-tab-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
            font-size: 1.3rem;
            color: var(--secondary-color);
            transition: all 0.3s ease;
        }
        
        .why-tab.active .why-tab-icon {
            background-color: var(--secondary-color);
            color: var(--light-text);
            transform: scale(1.1);
        }
        
        .why-tab-content {
            width: 65%;
            padding: 4rem;
            display: none;
        }
        
        .why-tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .why-tab-content h3 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--light-text);
        }
        
        .why-tab-content h3 span {
            color: var(--secondary-color);
        }
        
        .why-tab-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #ddd;
        }
        
        .why-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .why-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .why-feature i {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-top: 0.3rem;
        }
        
        .why-feature h5 {
            margin-bottom: 0.5rem;
            font-weight: 700;
            color: var(--light-text);
        }
        
        .why-feature p {
            color: #aaa;
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        
        /* Instagram Feed Section */
        .instagram-section {
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f2f5 100%);
        }
        
        .instagram-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .instagram-header h2 {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-size: 2.8rem;
            background: var(--instagram-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 900;
        }
        
        .instagram-feed {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .instagram-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .instagram-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
        }
        
        .instagram-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .instagram-item:hover img {
            transform: scale(1.1);
        }
        
        .instagram-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .instagram-item:hover .instagram-overlay {
            opacity: 1;
        }
        
        .instagram-icon {
            width: 50px;
            height: 50px;
            background: var(--instagram-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .instagram-item:hover .instagram-icon {
            transform: translateY(0);
        }
        
        .instagram-cta {
            text-align: center;
        }
        
        .instagram-cta .btn-instagram {
            background: var(--instagram-gradient);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 10px 20px rgba(193, 53, 132, 0.3);
        }
        
        .instagram-cta .btn-instagram:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(193, 53, 132, 0.4);
        }
        
        /* NEW: Student Gallery Section */
        .student-gallery-section {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .student-gallery-section .section-title h2 {
            color: var(--light-text);
        }
        
        .student-gallery-section .section-title h2::after {
            background-color: var(--secondary-color);
        }
        
        .gallery-container {
            position: relative;
            margin: 3rem 0;
        }
        
        .moving-gallery {
            display: flex;
            gap: 20px;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .gallery-track {
            display: flex;
            gap: 20px;
            animation: scrollGallery 40s linear infinite;
        }
        
        .gallery-track:hover {
            animation-play-state: paused;
        }
        
        @keyframes scrollGallery {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-250px * 6));
            }
        }
        
        .gallery-item {
            flex: 0 0 250px;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            z-index: 10;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: white;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
            transform: translateY(0);
        }
        
        .gallery-overlay h5 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .gallery-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .gallery-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .gallery-btn {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .gallery-btn:hover {
            background-color: var(--secondary-color);
            transform: scale(1.1);
        }
        
        /* NEW: Educational Partners Section */
        .partners-section {
            background-color: #f9f9f9;
            padding: 5rem 0;
        }
        
        .partners-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .partners-header h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }
        
        .partners-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background-color: var(--secondary-color);
        }
        
        .logos-container {
            position: relative;
            height: 200px;
            overflow: hidden;
            margin: 2rem 0;
        }
        
        .logos-track {
            display: flex;
            align-items: center;
            position: absolute;
            top: 0;
            left: 0;
            animation: scrollLogos 30s linear infinite;
            gap: 60px;
        }
        
        .logos-track:hover {
            animation-play-state: paused;
        }
        
        @keyframes scrollLogos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 8));
            }
        }
        
        .partner-logo {
            flex: 0 0 200px;
            height: 120px;
            background-color: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
        }
        
        .partner-logo img {
            max-width: 100%;
            max-height: 80px;
            filter: grayscale(100%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        .logo-text {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary-color);
            text-align: center;
        }
        
        .partners-description {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            color: #666;
        }
        
        /* NEW: Latest News Section */
        .news-section {
            padding: 5rem 0;
            background-color: white;
        }
        
        .news-section .section-title h2 {
            color: var(--primary-color);
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 2rem;
        }
        
        .news-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            background-color: white;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .news-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .news-image {
            height: 220px;
            overflow: hidden;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-card:hover .news-image img {
            transform: scale(1.1);
        }
        
        .news-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-date {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .news-date i {
            font-size: 1rem;
        }
        
        .news-content h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            line-height: 1.4;
            color: var(--primary-color);
        }
        
        .news-content p {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .news-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .news-tag {
            background-color: rgba(216, 48, 56, 0.1);
            color: var(--secondary-color);
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .read-more {
            color: var(--secondary-color);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            color: var(--primary-color);
            gap: 12px;
        }
        
        .news-cta {
            text-align: center;
            margin-top: 3rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 5rem 0 2rem;
        }
        
        .footer-logo {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
        }
        
        .footer-links h5 {
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.8rem;
            font-weight: 700;
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .contact-info i {
            color: var(--secondary-color);
            margin-right: 1rem;
            width: 20px;
        }
        
        .social-links a {
            display: inline-block;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            margin-right: 0.8rem;
            color: var(--light-text);
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .social-links a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-8px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1rem;
            color: #aaa;
        }
        
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 55px;
            height: 55px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            border: none;
        }
        
        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            background-color: var(--primary-color);
            transform: translateY(-8px);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .why-tabs {
                width: 40%;
            }
            
            .why-tab-content {
                width: 60%;
                padding: 3rem;
            }
            
            .instagram-feed {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .news-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3rem;
                text-align: center;
            }
            
            .hero-content p {
                text-align: center;
                max-width: 100%;
            }
            
            .cta-buttons {
                text-align: center;
            }
            
            .why-choose-container {
                flex-direction: column;
            }
            
            .why-tabs {
                width: 100%;
                padding: 2rem 0;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .why-tab {
                flex: 0 0 33.333%;
                border-left: none;
                border-bottom: 5px solid transparent;
                flex-direction: column;
                text-align: center;
                padding: 1rem;
            }
            
            .why-tab.active {
                border-left: none;
                border-bottom-color: var(--secondary-color);
            }
            
            .why-tab-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .why-tab-content {
                width: 100%;
                padding: 3rem;
            }
            
            .instagram-feed {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                padding-left: 0;
                padding-top: 3rem;
            }
            
            .top-bar-content {
                flex-direction: column;
                text-align: center;
                gap: 0.8rem;
            }
            
            .top-bar-left, .top-bar-right {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .top-bar-item {
                margin-right: 1rem;
            }
            
            .social-icons {
                margin-left: 0;
                justify-content: center;
            }
            
            .gallery-item {
                flex: 0 0 200px;
                height: 250px;
            }
            
            @keyframes scrollGallery {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-200px * 6));
                }
            }
            
            .partner-logo {
                flex: 0 0 180px;
                height: 110px;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 170px;
            }
            
            .navbar {
                top: 80px;
            }
            
            .hero-banner {
                margin-top: -170px;
                height: 80vh;
                min-height: 600px;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 4rem 0;
            }
            
            .why-tab {
                flex: 0 0 50%;
            }
            
            .why-features {
                grid-template-columns: 1fr;
            }
            
            .why-tab-content {
                padding: 2rem;
            }
            
            .instagram-feed {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .instagram-item {
                height: 200px;
            }
            
            .scroll-to-top {
                bottom: 25px;
                right: 25px;
                width: 50px;
                height: 50px;
            }
            
            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 0.9rem;
            }
            
            .graduate-img {
                width: 80px;
                height: 80px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .top-bar {
                padding: 0.8rem 0;
            }
            
            .top-bar-left {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
            }
            
            .top-bar-item {
                margin-right: 0.8rem;
            }
            
            .top-bar-divider {
                display: none;
            }
            
            .login-buttons {
                gap: 0.5rem;
            }
            
            .login-btn {
                padding: 0.3rem 0.8rem;
                font-size: 0.75rem;
            }
            
            .gallery-item {
                flex: 0 0 180px;
                height: 220px;
            }
            
            .partner-logo {
                flex: 0 0 150px;
                height: 100px;
            }
            
            .logos-track {
                gap: 40px;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        
        @media (max-width: 576px) {
            body {
                padding-top: 200px;
            }
            
            .navbar {
                top: 100px;
            }
            
            .hero-banner {
                margin-top: -200px;
                height: 70vh;
                min-height: 500px;
            }
            
            .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem; /* Use rem for scalability */
}

.hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem; /* This creates space BEFORE the button */
    line-height: 1.5; /* Better readability */
}

.cta-button {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    display: block; /* Ensures it's on its own line */
    margin-top: 1.5rem; /* Space above the button */
    margin-bottom: 1rem; /* Space below the button */
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem; /* Ensures space between p and button */
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 13px;
        margin-top: 1.2rem; /* Extra space on mobile */
        width: 100%; /* Full width on mobile */
    }
}
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .why-tab {
                flex: 0 0 100%;
            }
            
            .instagram-feed {
                grid-template-columns: 1fr;
            }
            
            .instagram-item {
                height: 250px;
            }
            
            .top-bar {
                font-size: 0.8rem;
            }
            
            .top-bar-item {
                margin-right: 0.5rem;
            }
            
            .top-bar-item i {
                margin-right: 0.3rem;
            }
            
            .social-icon {
                width: 25px;
                height: 25px;
                font-size: 0.8rem;
            }
            
            .graduate-info {
                flex-direction: column;
                text-align: center;
            }
            
            .graduate-img {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .gallery-item {
                flex: 0 0 150px;
                height: 200px;
            }
            
            .partner-logo {
                flex: 0 0 120px;
                height: 80px;
            }
            
            .logos-track {
                gap: 30px;
            }
        }

        .subtitle {
            font-size: 0.8rem;
            color: #ddd;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            .logo-subtitle {
                font-size: 0.7rem;
            }
        }
        
        /* Fix for hero banner */


.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
} 

.hero-slide {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Ensure proper z-index */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(28, 25, 36, 0.85) 0%, rgba(28, 25, 36, 0.7) 50%, rgba(28, 25, 36, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--light-text);
    padding: 2rem;
    max-width: 700px;
}
