 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f0f4f8;
            color: #333;
        }

        .content-wrapper {
            background-color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 1;
            flex-grow: 1;
            padding-top: 50px;
        }

        .navbar {
            background-color: #002244;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 0.5rem 1rem;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-size: 1.2rem;
            color: #fff;
            text-decoration: none;
        }

        .navbar-brand img {
            height: 40px;
            width: auto;
            margin-right: 10px;
        }

        .navbar-nav {
            display: flex;
            list-style-type: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            margin-left: 1rem;
        }

        .nav-link {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            padding: 0.5rem 0;
            display: block;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #003673;
            min-width: 160px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            display: none;
        }

        .dropdown-item {
            color: #fff;
            padding: 0.5rem 1rem;
            display: block;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .nav-item:hover .dropdown-menu {
            display: block;
        }

        .search-form {
            display: flex;
            align-items: center;
        }

        .search-input {
            padding: 0.3rem 0.5rem;
            border: none;
            border-radius: 3px 0 0 3px;
        }

        .search-button {
            background-color: #4a90e2;
            color: #fff;
            border: none;
            padding: 0.3rem 0.5rem;
            border-radius: 0 3px 3px 0;
            cursor: pointer;
        }

        header {
          
            padding: 100px 20px;
            text-align: center;
            animation: fadeIn 2s ease-in-out;
            background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(86, 136, 194, 0.8)), url('./images/grap.jpg');
            background-size: cover;
            background-position: center;
        }

        header h1 {
            color: #fff;
            font-size: 3rem;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        main {
            padding: 50px;
            animation: slideInUp 1.5s ease-in-out;
        }

        h2 {
            font-size: 2rem;
            color: #002244;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #002244;
        }

        p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        ul {
            list-style-type: none;
            margin-left: 0;
        }

        li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: #002244;
            position: absolute;
            left: 0;
        }

        section {
            margin-bottom: 50px;
            background-color: #fff;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .call-to-action {
            text-align: center;
            background-color: #002244;
            color: #fff;
            padding: 50px;
            border-radius: 5px;
        }

        .call-to-action h2 {
            color: #fff;
        }

        .call-to-action h2::after {
            background-color: #fff;
        }

        .cta-btn {
            background-color: #fff;
            color: #06305f;
            border: none;
            padding: 15px 30px;
            font-size: 1.2rem;
            cursor: pointer;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-btn:hover {
            background-color: #002244;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .slider-container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto 50px;
            overflow: hidden;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slider img {
            width: 100%;
            height:30;
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }

        .slider-nav-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-nav-btn.active {
            background-color: #fff;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideInUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            main {
                padding: 20px;
            }

            h2 {
                font-size: 1.8rem;
            }

            p,
            li {
                font-size: 1rem;
            }

            .slider-container {
                margin-bottom: 30px;
            }

            .navbar-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .navbar-nav {
                display: none;
                flex-direction: column;
                width: 100%;
            }

            .navbar-nav.active {
                display: flex;
            }

            .nav-item {
                margin-left: 0;
                margin-top: 0.5rem;
            }

            .dropdown-menu {
                position: static;
                width: 100%;
            }

            .footer-column {
                flex-basis: 100%;
            }
        }

        .footer {
            background-color: #002244;
            color: white;
            padding: 3rem 0;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 2rem;
        }

        .footer h5 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .footer ul {
            list-style-type: none;
            padding: 0;
        }

        .footer li {
            margin-bottom: 0.5rem;
        }

        .footer a {
            color: #ffffff;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .copyright {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 1rem 0;
            text-align: center;
            width: 100%;
            padding: 1rem 0;
            margin-top: 3rem;
            height: 80px;
 
        }