@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

html, body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    position: relative;
    min-height: 100%;
    margin: 0;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.main-navrbar{
    border : 99px solid red;
}

a {
    color: #0077cc;
}

    a.navbar-brand {
        white-space: normal;
        text-align: center;
        word-break: break-word;
        font-weight: 700;
    }

.navbar-text {
    font-weight: 500;
}

.navbar-nav .nav-link {
    font-weight: 700;
    font-size: 14px;
    color: black;
}

.navbar-toggler {
    background-color: #EFDBB2;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
    border-radius: 0;
}

    .navbar-toggler:focus,
    .navbar-toggler:active {
        background-color: #EFDBB2;
        outline: none;
        box-shadow: none;
        border: none;
    }

.custom-toggler-icons svg {
    display: block;
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .custom-toggler-icons svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 576px) {
    .custom-toggler-icons svg {
        width: 20px;
        height: 20px;
    }
}

.navbar-logo {
    height: 50px;
    max-width: 100%;
}

@media (min-width: 768px) {
    .navbar-logo {
        height: 60px;
    }
}

@media (min-width: 1024px) {
    .navbar-logo {
        height: 70px;
    }
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: white;
}

.custom-navbar {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

@media (max-width: 768px) {
    .custom-navbar .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn-outline-dark {
    border: 2px solid black;
    background-color: transparent;
    color: black;
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-block;
}

    .btn-outline-dark:hover {
        background-color: black;
        color: white;
    }

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.site-footer {
    background-color: white;
    color: black;
    padding: 1.5rem 2rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

    .footer-nav a {
        color: black;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-nav a:hover {
            color: #777;
        }

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: bold;
    color: black;
    font-size: 0.95rem;
}

.email-icon {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #555;
}

    .footer-bottom small a {
        color: #555;
        text-decoration: none;
    }

        .footer-bottom small a:hover {
            color: #777;
        }

@media (max-width: 868px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo img {
        max-height: 50px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
        font-size: 1rem;
    }

    .email-icon {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 1024px) {
    .footer-nav a {
        font-size: 0.9rem;
    }

    .footer-contact {
        font-size: 0.9rem;
    }

    .email-icon {
        width: 18px;
        height: 18px;
    }
}

.mobile-footer-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-footer-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: black;
        padding: 0.5rem 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        text-align: center;
    }

    .site-footer {
        padding-bottom: 4.7rem;
    }

    .cta-button {
        background-color: black;
        color: #EFDBB2;
        border: 2px solid #EFDBB2;
        padding: 0.75rem;
        font-size: 0.8rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 12px;
        cursor: pointer;
        font-family: 'Montserrat', sans-serif;
        max-width: 320px;
        display: inline-block;
    }

        .cta-button:hover {
            background-color: #EFDBB2;
            color: black;
        }
}
@media (max-width: 767.98px) {
    .sticky-header nav.navbar {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .navbar-logo,
    .navbar-brand img {
        height: 47px !important;
        max-height: 47px;
    }

    .btn-outline-dark {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}
