:root {
    --primary-color: #287e4c;
    --secondary-color: #346ea7;
    --tertiary-color: #f88d3b;
    --quaternary-color: #1f3859;
    --text-color: #333333;
    --background-color: #e9e5df;
}


body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fa;
}

nav {
    border-bottom: 3px solid black;
}



.navbar .auth-button {
    background-color: var(--secondary-color);
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}


/* Media Queries for phone */

@media (max-width: 767px) {
    .navbar .auth-button {
        border-radius: none;
        padding-left: 6px;
    }
}

.navbar .auth-button:hover {
    border-radius: 20px;
}

.navbar .auth-button a {
    color: white;

}

.navbar .auth-button a:hover {
    color: white;
    font-weight: bold;
}

.nav-item {
    font-weight: bold;

}


.nav-item a:hover {
    color: var(--primary-color);
    font-weight: 300;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--tertiary-color);
}

.clickable{
    cursor: pointer;
}


.main-content {
    background-color: #e9e5df;
}

.card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    transition: 0.3s ease;
}

.mobile-bottom-nav {
    height: 60px;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    z-index: 1050;
}

.mobile-bottom-nav a {
    color: #6c757d;
    text-decoration: none;
    flex-direction: column;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: #39753a;
}

.mobile-bottom-nav i {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

.md-icon{
    max-height: 100px;
    max-width: 100px;
}

.footer {
    border-top: 3px solid black;
    background-color: white;
    color: #000000;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-container h3,
.footer-container h2 {
    color: #000000;
    margin-bottom: 15px;
}

.footer-container ul {
    list-style: none;
    padding: 0;
}

.footer-container ul li {
    margin-bottom: 10px;
}

.footer-container a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-container a:hover {
    color: #fff;
}




.footer-social a {
    margin-right: 15px;
    font-size: 20px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover,
.footer a:hover {
    color: var(--primary-color);
}

.feature-section h5 {
    color: var(--quaternary-color);
    font-weight: bold;
}

section {
    width: 90%;
    margin: auto;
    padding: 2rem 0;
    margin-bottom: 2rem;
}


.section-title {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 3px solid var(--secondary-color);
}

.section-wrapper {
    background-color: #f9f6f2;
    border-radius: 10px;
}



.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .footer {
        display: none;
    }
}