body {
    font-family: Georgia, serif !important;
    overflow-x: hidden;
}

.navbar-container {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
    background: white;
    padding: 0px !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    transform: translateX(-100px);
}

.navbar-title {
    color: #E7752D;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
}

.logo {
    height: 100px;
}

.nav-link {
    position: relative;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f0e0e !important;
    margin-left: 10px;
    transform: translateX(40px);
    padding-bottom: 8px;
    transition: color 0.25s ease, font-weight 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 2px;
    height: 2px;
    background-color: #287CC5;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: #287CC5 !important;
    font-weight: 700;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
}

.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.nav-item.dropdown:hover .nav-link {
    color: #287CC5;
    font-weight: bold;
}

.nav-link.current-page {
    color: #287CC5 !important;
    font-weight: bold;
    border-top: 2px solid #287CC5;
}

.nav-link.current-page::after {
    transform: scaleX(1);
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 80%;
    left: 0;
    width: auto;
    border: 1px solid #287CC5 !important;
    border-radius: 0px !important;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 999;
    pointer-events: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-item {
    font-size: 1rem;
    color: #efeaea;
    padding: 12px 20px;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.nav-item.dropdown:hover .nav-link,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-item.dropdown:hover,
.nav-item.dropdown .dropdown-menu:hover {
    display: block;
}

.dropdown-item:focus,
.dropdown-item:active {
    background-color: transparent !important;
    color: #287CC5 !important;
    outline: none;
}

.dropdown-item:hover {
    background-color: transparent;
    color: #287CC5 !important;
    padding-left: 25px;
    text-decoration: underline;
    font-weight: 700;
}

.dropdown-item.current-page {
    background-color: transparent;
    color: #287CC5;
    font-weight: bold;
    padding-left: 25px;
    text-decoration: underline;
}

.nav-item.dropdown:hover .nav-link {
    color: #287CC5;
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav-link {
        font-size: 1rem;
        margin-right: 10px;
    }

    .logo {
        max-height: 40px;
    }

    .navbar-brand {
        padding-left: 15px;
    }

    .navbar-nav {
        padding-right: 20px;
    }
}

.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 9999;
    border: none;
    outline: none;
    background-color: #e55e0a;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 16px;
    transition: opacity 0.3s, background-color 0.3s;
}

#scrollToTopBtn:hover {
    background-color: #f8792a;
}

.no-right-click {
    pointer-events: none;
}

.footer {
    position: relative;
    bottom: 0;
    left: 0;
    background-color: #111827;
    padding: 0;
    z-index: 1000;
    font-family: Georgia, serif;
    color: #ffffff;
}

.footer-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 40px 22px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.9fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 420px;
}

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo-wrap:hover {
    text-decoration: none;
}

.footer-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-brand-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.footer-brand-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 22px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 18px;
    max-width: 380px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background-color: #1f2937;
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social-link:hover {
    background-color: #263244;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.footer-social-link i {
    display: block;
    line-height: 1;
}

.footer-links-col h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 18px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.25s ease, font-weight 0.25s ease;
}

.footer-links-col ul li a:hover {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-disabled-link {
    pointer-events: none;
    cursor: default;
}

.footer-disabled-link:hover {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 400;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 22px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 6px;
}

.footer-bottom-left p:last-child {
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.fa {
    padding: 10px;
    font-size: 20px;
    width: 40px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 10px;
}

.fa:hover {
    color: #0f0f0f;
}

.fa-tweet {
    background-image: linear-gradient(black, white, black);
    color: white;
}

.fa-linkedin {
    background: #016998;
    color: white;
}

.fa-facebook {
    background: linear-gradient(#7cade9, #3074d9, #0d2ed6);
    color: white;
}

ul {
    list-style: none;
    padding-inline-start: 0px;
}

.icon {
    color: black;
    width: 30;
    height: 30;
}

.parent-element {
    text-align: center;
}

.copyright {
    font-size: 18px;
    display: inline-block;
    color: white;
}

@media (max-width: 767px) {
    .logo {
        padding-left: 10%;
        max-height: 80px;
    }

    .creative__text--animation-1 {
        font-size: 20px;
    }

    .header-navbar {
        padding: 10px 0;
    }

    .header-navbar .nav-link {
        color: #ffffff;
        padding: 0rem;
    }

    .navbar-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding-left: 15px;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .brand-tagline {
        font-size: 0.65rem;
        white-space: normal;
        color: #000000 !important;
        opacity: 1 !important;
        font-weight: 600;
    }

    .footer-container {
        padding: 30px 22px 22px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-links-col h4 {
        font-size: 16px;
    }

    .footer-links-col ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-bottom-links {
        gap: 14px;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .logo {
        padding-left: 15%;
        max-height: 100px;
    }

    .creative__text--animation-1 {
        font-size: 20px;
    }

    .header-navbar {
        padding: 15px 0;
    }

    .footer-container {
        padding: 34px 30px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .logo {
        padding-left: 10%;
    }
}

.content-wrapper {
    font-family: Georgia, serif;
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0d6efd !important;
    letter-spacing: 0.5px;
    line-height: 1.9;
}

.brand-tagline {
    font-size: 0.73rem;
    font-weight: 500;
    color: #000000 !important;
    opacity: 1 !important;
    line-height: 1;
    margin-top: 0.08rem;
    white-space: nowrap;
    padding-right: 40px;
}