:root {
            --primary-color: #1a237e;
            --secondary-color: #ff5722;
            --accent-color: #4caf50;
            --light-color: #f5f5f5;
            --dark-color: #212121;
            --text-color: #333;
            --text-light: #777;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.8rem;
            position: relative;
            padding-bottom: 15px;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        h3 {
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        .btn {
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition);
            border: none;
            font-family: 'Montserrat', sans-serif;
        }
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }
        .btn-primary:hover {
            background-color: #0d1a6b;
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
            color: white;
        }
        .btn-secondary:hover {
            background-color: #e64a19;
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        section {
            padding: 100px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .bg-light {
            background-color: var(--light-color);
        }
        .bg-dark {
            background-color: var(--dark-color);
            color: white;
        }
        .bg-dark h2, .bg-dark h3, .bg-dark h4 {
            color: white;
        }
        .navbar {
            padding: 20px 0;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        .navbar.scrolled {
            padding: 15px 0;
            background-color: rgba(255,255,255,0.98);
        }
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            padding: 8px 20px;
            color: var(--dark-color);
            transition: var(--transition);
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
        }
        .navbar-toggler {
            border: none;
            padding: 0;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }
        .hero h1 {
            color: white;
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: rgba(255,255,255,0.9);
        }
        .hero .btn {
            margin: 0 10px 15px;
        }
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .about-img img {
            transition: var(--transition);
            width: 100%;
            height: auto;
        }
        .about-img:hover img {
            transform: scale(1.05);
        }
        .about-content {
            padding-left: 30px;
        }
        .stats {
            display: flex;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        .stat-item {
            flex: 0 0 50%;
            margin-bottom: 30px;
            padding-right: 20px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .stat-text {
            font-weight: 600;
            color: var(--dark-color);
        }
        .team-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .team-img {
            height: 250px;
            overflow: hidden;
        }
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .team-card:hover .team-img img {
            transform: scale(1.1);
        }
        .team-content {
            padding: 25px;
        }
        .team-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        .academy-feature {
            text-align: center;
            padding: 30px 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        .academy-feature:hover {
            transform: translateY(-10px);
        }
        .academy-feature i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .academy-feature h3 {
            font-size: 1.5rem;
        }
        .news-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        .news-card:hover {
            transform: translateY(-10px);
        }
        .news-img {
            height: 220px;
            overflow: hidden;
        }
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .news-card:hover .news-img img {
            transform: scale(1.1);
        }
        .news-content {
            padding: 25px;
        }
        .news-date {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }
        .news-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        .partner-logo {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #eee;
        }
        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .partner-logo img {
            max-width: 100%;
            max-height: 70px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition);
        }
        .partner-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        .contact-info {
            margin-bottom: 40px;
        }
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
        }
        .contact-details h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .form-control {
            padding: 15px;
            border-radius: 4px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.25);
        }
        footer {
            background-color: #111;
            color: #aaa;
            padding: 80px 0 30px;
        }
        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            color: white;
            margin-bottom: 25px;
            display: inline-block;
        }
        .footer-logo span {
            color: var(--secondary-color);
        }
        .footer-about {
            margin-bottom: 30px;
        }
        .footer-links h3,
        .footer-newsletter h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            position: relative;
        }
        .footer-links h3:after,
        .footer-newsletter h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #aaa;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .social-links {
            display: flex;
            margin-top: 25px;
        }
        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
            transition: var(--transition);
        }
        .social-links a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        .newsletter-form {
            display: flex;
            margin-top: 25px;
        }
        .newsletter-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
        }
        .newsletter-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .newsletter-form button:hover {
            background-color: #e64a19;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #888;
        }
        .friendlink {
            background-color: var(--light-color);
        }
        .flink-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .flink {
            background-color: white;
            border-radius: 8px;
            padding: 20px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 calc(25% - 20px);
            min-width: 200px;
        }
        .flink:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: var(--primary-color);
        }
        .flink a {
            color: var(--dark-color);
            font-weight: 600;
            text-align: center;
        }
        .flink:hover a {
            color: var(--primary-color);
        }
        @media (max-width: 1199px) {
            h1 {
                font-size: 3rem;
            }
            h2 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 991px) {
            section {
                padding: 80px 0;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .about-content {
                padding-left: 0;
                margin-top: 40px;
            }
            .flink {
                flex: 0 0 calc(33.333% - 20px);
            }
        }
        @media (max-width: 767px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .hero {
                height: auto;
                min-height: auto;
                padding: 150px 0 100px;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .stats {
                margin-top: 30px;
            }
            .stat-item {
                flex: 0 0 100%;
            }
            .contact-form {
                padding: 30px 20px;
            }
            .flink {
                flex: 0 0 calc(50% - 20px);
            }
        }
        @media (max-width: 575px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero .btn {
                display: block;
                width: 80%;
                margin: 0 auto 15px;
            }
            .flink {
                flex: 0 0 100%;
            }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #0d1a6b;
        }
