.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #3db5e6 !important;
    opacity: 0.7;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: #3db5e6 !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: #3db5e6 !important;
    opacity: 0.7;
}

.navbar-other .btn {
    background: transparent !important;
    border-color: #3db5e6 !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    transition: color 0.4s ease, border-color 0.4s ease !important;
}

.navbar-other .btn::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: #919191 !important;
    transform: scaleX(0) !important;
    transform-origin: right !important;
    transition: transform 0.4s ease !important;
    z-index: -1 !important;
}

.navbar-other .btn:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: #919191 !important;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
    transition: none !important;
}

.navbar-other .btn:hover::before {
    transform: scaleX(1) !important;
    transform-origin: left !important;
}

.footer-menu-link {
    position: relative;
    text-decoration: none !important;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-menu-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #3db5e6;
    transition: width 0.3s ease, left 0.3s ease;
}

.footer-menu-link:hover {
    color: #3db5e6 !important;
}

.footer-menu-link:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0 20px !important;
        height: auto !important;
    }

    .navbar-brand img {
        width: 120px !important;
        height: auto !important;
    }

    .top-bar {
        display: none !important;
    }
}

.custom-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 245, 245, 0.85);
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 10000;
}

.custom-modal.active {
    display: flex;
}

.modal-content-container {
    background-color: white;
    width: 1100px;
    height: 461px;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.modal-left {
    flex: 0 0 550px;
    padding: 90px 100px 50px 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.modal-left h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
}

.modal-left p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.contact-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
    cursor: pointer;
}

.info-item:hover {
    color: #3db5e6;
}

.info-item i {
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.social-icons a {
    color: #333;
    font-size: 22px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #3db5e6;
    transform: translateY(-5px);
}

.modal-right {
    flex: 0 0 550px;
    background-size: cover;
    background-position: center;
    padding: 100px;
    padding-bottom: 55px;
    height: 100%;
    right: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.modal-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 32px;
    height: 32px;
    background-color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-modal:hover {
    color: #3db5e6;
}

.modal-form {
    width: 100%;
    position: relative;
    z-index: 2;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 10px 25px;
    margin-bottom: 10px;
    border: none;
    background-color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #333;
}

.modal-form textarea {
    resize: none;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: #999;
}

.modal-form button {
    width: 100%;
    padding: 12px;
    background-color: #3db5e6;
    color: #333;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0px;
}

.modal-form button:hover {
    color: white;
}

@media (max-width: 991.98px) {
    .modal-content-container {
        flex-direction: column;
        width: 90%;

        height: 90vh;
        overflow-y: auto;
    }

    .modal-left,
    .modal-right {
        flex: 0 0 auto;
        width: 100%;
        padding: 30px;
    }

    .modal-left h2 {
        font-size: 24px;
    }
}

.privacy-content-section p,
.privacy-content-section li,
.privacy-content-section h3 {
    line-height: 1.8 !important;
}

@media (max-width: 991.98px) {
    section.wrapper.bg-gray {
        padding: 0 20px !important;
    }

    section.wrapper.bg-gray .container {
        padding: 60px 0 !important;
    }

    section.wrapper.bg-gray h1 {
        font-size: 40px !important;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    color: #1a1a1a;
    padding-right: 8px;
    margin-right: 5px;
    font-weight: 700;
    font-size: 12px;
    opacity: 1 !important;
}

.footer-menu-link {
    position: relative;
    text-decoration: none !important;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3db5e6;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.footer-menu-link:hover {
    color: #3db5e6 !important;
}

.footer-menu-link:hover::after {
    transform: scaleX(1);
}