﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 2px solid #394cc5;
    position: fixed;
    width: 100%;
    background-color: white;
}

.navbar-logo .logo {
    height: 50px;
    margin-left: 20px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.Signup-btn {
    background-color: #394cc5;
    border: none;
    padding: 10px 23px;
    color: white;
    font-weight: 700;
    border-radius: 5px;
}

    .Signup-btn:hover {
        background-color: #6674cc;
    }

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
    }

    .navbar-logo .logo {
        max-width: 120px;
    }

    .signup-btn {
        padding: 8px 16px;
    }
}
/*
*********** footer Css ****************/

.footer {
    text-align: left;
    color: #333;
    background-color: #eff3ff;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    background-color: #eff3ff;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 70px;
}


.footer-column h2 {
    margin-top: 0;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: blue;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-column ul li {
        margin-bottom: 10px;
    }

        .footer-column ul li a {
            color: black;
            text-decoration: none;
            transition: color 0.3s;
        }

            .footer-column ul li a:hover {
                color: cornflowerblue;
            }

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    background-color: #394cc5;
    color: white;
    padding: 20px 0;
}

    .footer-bottom p {
        margin: 0;
    }

@media (max-width: 768px) {
    .footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
