body {
    font-family: 'Roboto', sans-serif;
}

/*-----------header----------------------*/

li.nav-item.active a {
    font-weight: 700;
    color: #00529C;
}

.navbar-toggler,
.navbar-toggler:focus {
    border: none;
}

.footer {
    background-color: #004a99;
    color: white;
    padding: 30px 0;
}

.footer-logo {
    max-width: 452px;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-left: 90px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

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

.map-container {
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 18px;
}

.w-80 {
    width: 80%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

section {
    position: relative;
    width: 100%;
}

.header .nav-item a {
    font-size: 16px;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    background-color: white;
}

.page-link:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

/* Active page styling */
.page-item.active .page-link {
    background-color: #0891b2;
    border-color: #0891b2;
    color: white;
}

.page-item.active .page-link:hover {
    background-color: #0e7490;
    border-color: #0e7490;
}

/* Disabled state styling */
.page-item.disabled .page-link {
    background-color: #f9fafb;
    border-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.page-item.disabled .page-link:hover {
    background-color: #f9fafb;
    border-color: #e5e7eb;
}

/* Arrow styling */
.page-link.arrow {
    font-size: 16px;
    font-weight: normal;
}

/* Demo container */
.demo-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.demo-title {
    text-align: center;
    margin-bottom: 30px;
    color: #1f2937;
    font-size: 20px;
    font-weight: 600;
}


@media (max-width: 768px) {
    .footer-links {
        margin-left: 0px;
    }

    .footer h5 {
        font-size: 25px;
    }

    .footer {
        font-size: 16px;
    }
}

.owl-carousel {
    position: relative;
}

.owl-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
}

.banner-section .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.banner-section .owl-dot,

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff !important;
    border: 2px solid transparent;
}

.banner-section .owl-dot.active,
span.gallery-dot.active {
    background: #0092c7 !important;
    border-color: #0092c7;
    transform: scale(1.2);
}

.banner-section .owl-dot:hover {
    background: #ffffff;
    opacity: 0.8;
}

.gallery-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}