/* ======== Global ======== */
body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    font-size: 1.1rem; /* Increased base font size */
}

/* ======== Top Bar ======== */
.top-bar {
    background-color: #004d4d;
    font-size: 1.2rem; /* Increased font size as well */
    padding: 30px 0; /* Doubled height */
    min-height: 76px;
    display: flex;
    align-items: center; /* Better vertical centering */
}

/* ======== Navbar ======== */
.main-navbar {
    background-color: #e8f8f8;
    padding: 10px 0; /* Increased height */
}
.main-navbar .nav-link {
    color: #004d4d;
    font-weight: 600;
    margin: 0 12px; /* Increased spacing */
    font-size: 1.1rem; /* Increased font size */
    transition: color 0.3s;
}
.main-navbar .nav-link:hover {
    color: #007b83;
}
.main-navbar .btn-success {
    background-color: #004d4d;
    border: none;
    font-size: 1.1rem; /* Increased button font size */
    padding: 10px 20px; /* Increased button size */
}
.main-navbar .btn-success:hover {
    background-color: #006666;
}
.logo {
    height: 58px; /* Increased from 45px */
}

/* ======== Footer ======== */
.footer {
    background-color: #004d4d;
    font-size: 1.1rem; /* Increased footer font size */
}
.footer h5 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.3rem; /* Increased heading size */
    margin-bottom: 20px !important;
}
.footer p, .footer li {
    color: #d9e8e8;
    font-size: 1.1rem; /* Increased text size */
    line-height: 1.6; /* Better readability */
}
.footer ul li {
    margin-bottom: 10px; /* Increased spacing */
}
.footer ul li i {
    color: #ffcc00;
    margin-right: 8px; /* Increased icon spacing */
}
.footer .btn-warning {
    background-color: #ff7f00;
    border: none;
    font-size: 1.1rem; /* Increased button font */
    padding: 10px; /* Increased button height */
    font-weight: 600;
}
.footer .btn-warning:hover {
    background-color: #e66e00;
}
.footer-logo {
    height: 70px; /* Increased from 50px */
    width: auto;
}

/* Form controls in footer */
.footer .form-control {
    font-size: 1.1rem; /* Increased form text size */
    padding: 12px; /* Increased form field height */
    margin-bottom: 12px; /* Increased spacing */
}

/* ======== Circle Chevron Button ======== */
.circle-chevron {
    width: 60px; /* Increased from 50px */
    height: 60px; /* Increased from 50px */
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #007b83; /* Thicker border */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
    transition: all 0.3s ease;
    cursor: pointer;
}

.circle-chevron:hover {
    background-color: #007b83;
    transform: scale(1.1);
}

.circle-chevron:hover .chevron {
    border-color: #ffffff;
}

.chevron {
    width: 18px; /* Increased from 15px */
    height: 18px; /* Increased from 15px */
    border: solid #007b83;
    border-width: 0 4px 4px 0; /* Thicker arrow */
    display: inline-block;
    transform: rotate(-135deg); /* ⬆️ Arrow Up */
    transition: border-color 0.3s ease;
}

/* Circle arrow styling for Quick Links */
.circle-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; /* Increased from 20px */
    height: 24px; /* Increased from 20px */
    background-color: white;
    border-radius: 50%;
    color: #000;
    font-size: 12px; /* Increased from 10px */
    flex-shrink: 0;
}

.circle-arrow .bi-chevron-right {
    color: #000 !important;
    margin-left: 2px; /* Adjusted centering */
}

/* Additional spacing improvements */
.container {
    padding-left: 20px;
    padding-right: 20px;
}

/* Improve main content spacing */
main.container {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

/* Alert messages */
.alert {
    font-size: 1.1rem;
    padding: 15px;
}
