.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    width: 150px;
    margin-right: 15px;
}

.text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.main-title {
    font-size: 18px;
    font-weight: bold;
}

.sub-title {
    font-size: 14px;
    color: #ddd;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    margin-top: -0.1rem;
    display: none;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

.display-5 {
    line-height: 1.2
}

.display-5 {
    font-weight: 300
}

.display-5 {
    font-size: 2.5rem
}

footer h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #fff;
}

footer p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

footer a {
    color: #ff7eb3;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.embed-responsive {
    border: 4px solid #fff;
    border-radius: 8px;
}

.section-content {
    text-align: left;
    padding: 20px;
    border-radius: 8px;
}

.section-content.section-border-left {
    border-left: 8px solid #07085d;
}

.section-content.section-border-right {
    border-right: 8px solid #07085d;
}

.section-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    color: #07085d;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-content .divider {
    width: 70px;
    height: 4px;
    margin: 10px 0;
    background: linear-gradient(90deg, #07085d, #ff7eb3);
    border-radius: 2px;
}

.section-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.section-content ul {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    color: #444;
    line-height: 1.8;
    list-style: none;
    padding-left: 20px;
}

.section-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.section-content ul li::before {
    content: "•";
    color: #07085d;
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.8;
}

.section-marquee {
    overflow: hidden;
    .marquee {
        animation: marquee 30s linear infinite;
        display: inline-block;
        white-space: nowrap;
        box-sizing: border-box;
        &:hover {
            animation-play-state: paused;
        }
    }
}

@keyframes marquee {
    0% {
        margin-left: 100%;
        transform: translateX(0%);
    }
    100% {
        margin-left: 0;
        transform: translateX(-100%);
    }
}

.zoom-hover {
    transition: transform 0.3s ease;
}

.zoom-hover:hover {
    transform: scale(1.1);
}

.container-medium {
    padding-right: 200px;
    padding-left: 200px;
    margin-right: auto;
    margin-left: auto;
    width: 100%
}

@media (max-width: 768px) {
    .section-content h1 {
        font-size: 28px;
    }

    .section-content p, .section-content ul li {
        font-size: 16px;
    }

    .section-content {
        padding: 15px;
    }
}

.card-horizontal {
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.card-horizontal .card-img-left {
    flex: 0 0 30%;
    max-width: 30%;
    height: auto;
    overflow: hidden;
    padding-bottom: 30%;
    position: relative;
}

.card-horizontal .card-img-left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-horizontal .card-body {
    flex: 1;
}


@media (max-width: 768px) {
    .card-horizontal {
        flex-direction: column;
    }

    .card-horizontal .card-img-left {
        flex: 0 0 auto;
        max-width: 100%;
        height: 0;
        padding-bottom: 100%;
    }
}

.custom-pagination {
    background-color: #00205b;
    padding: 10px;
    border-radius: 5px;
}

.custom-pagination .page-link {
    color: #fff;
    background-color: transparent;
    border: none;
    transition: all 0.3s ease-in-out;
}

.custom-pagination .page-item.active .page-link {
    background-color: #f51086;
    color: #00205b;
    border-color: #f51086;
    font-weight: bold;
}

.custom-pagination .page-item.disabled .page-link {
    color: #888;
}

.custom-pagination .page-link:hover {
    color: #f51086;
    text-decoration: none;
}

.card-img-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}