body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

main {
    flex: 1; /* Pushes the footer to the bottom */
}

/* Header styles */
header {
    background: #f9f9f9;
    /*padding: 20px;*/
    text-align: center;
    position: relative;
}



nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
}

.logo img {
    height: 100px;
    background-color: #f9f9f9;
    padding: 5px;
    border-radius: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    padding: 10px 15px;
}

.nav-links a:hover, .nav-links a.active {
    color: #fff;
    background: linear-gradient(135deg, #0073e6, #00bfff);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 115, 230, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}



.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 2;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #333;
    margin: 4px 0;
    transition: 0.4s;
}

.header-content {
    padding: 50px 20px;
    background-color: #004080;
    text-align: center;
}

.header-content h1,
.header-content p {
    color: #fff;
}

.header-content h1 {
    font-size: 3em;
    margin: 0;
    animation: fadeInDown 1s ease-in-out;
}

.header-content p {
    font-size: 1.2em;
    margin: 10px 0 0;
    animation: fadeInUp 1s ease-in-out;
}

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
                


        .section-title {
            font-size: 1.75rem;
            font-weight: bold;
            color: #004085;
            margin-bottom: 1rem;
        }

        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            background: white;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: bold;
            color: #004085;
        }

        .btn-primary {
            background: linear-gradient(135deg, #004085, #007bff);
            border: none;
            padding: 0.75rem;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 25px;
            transition: background 0.3s ease;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #003366, #0056b3);
        }

        .row {
            margin-bottom: 2rem;
        }

        footer {
            background: #004080;
            color: white;
            text-align: center;
            padding: 20px 0;
            width: 100%;
        }
        
        footer p {
            margin: 0;
        }

        footer .social-links {
            margin-top: 10px;
        }
        
        footer .social-links a {
            color: white;
            text-decoration: none;
            font-size: 1.5em;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        footer .social-links a:hover {
            color: #0073e6;
        }

        @media (max-width: 768px) {
            .nav-links {
                flex-direction: column;
                position: absolute;
                top: 100px;
                right: 0;
                width: 100%;
                background: #fff;
                text-align: center;
                display: none;
                z-index: 1;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .nav-links a {
                padding: 10px 0;
            }
            .menu-toggle {
                display: flex;
            }
            header h1 {
                font-size: 2rem;
            }

            header p {
                font-size: 1rem;
            }

            .card-title {
                font-size: 1rem;
            }
        }
