/* Header */
.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 135px;
    z-index: 1000;
    background: #fff;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    margin-right: 1rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Mobile Offcanvas Menu */
.offcanvas {
    max-width: 280px;
    width: 80%;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
    padding: 1rem 1.5rem;
}

.offcanvas-title {
    font-weight: 600;
    color: #2e95b5;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav .nav-item {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav .navigation-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #333 !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav .navigation-link i {
    transition: transform 0.3s ease;
}

.mobile-nav .navigation-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-nav .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    padding-left: 1rem;
    opacity: 0; /* Initially hidden */
}

/* When the collapse is shown, apply the appropriate styles */
.mobile-nav .collapse.show .submenu {
    max-height: 500px; /* Or a value that comfortably fits the content */
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-out;
}

/* Navigation links style */
.mobile-nav .submenu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-left: 2px solid #e0e0e0;
    margin-left: 0.5rem;
}

.mobile-nav .submenu li a:hover {
    background-color: #f0f0f0;
    color: #2e95b5;
    padding-left: 2rem;
    border-left-color: #2e95b5;
}

/* Arrow rotation for expanded items */
.mobile-nav .navigation-link[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-nav .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Adjust header for mobile */
@media (max-width: 767.98px) {
    .header-transparent {
        padding: 0.5rem 0;
    }

    .header-row {
        height: auto;
        padding: 0.5rem 0;
    }

    .logo-img {
        height: 80px;
        width: 80px;
        margin-top: 0;
    }

    .header-right {
        padding: 0.5rem 0;
    }
}

/* Ensure desktop menu is hidden on mobile */
@media (max-width: 767.98px) {
    .header-right.d-none.d-md-flex {
        display: none !important;
    }
}

.header-transparent.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Row */
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
    padding: 100px 5%
}

/* Logo */
.logo-img {
    height: 70px;
    width: 300px;
    margin-top: -35px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1001;
}

@media (max-width: 767.98px) {
    .logo-img {
        height: 60px;
        width: 200px;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.logo-img:hover {
    transform: scale(1.05); /* Subtle hover effect */
}

/* Right Section (Social Icons, Contact, Nav) */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Social Icons */
.social-icon-header {
    width: 28px;
    height: 28px;
    background: #145f92;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-header:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Contact Number */
.contact-number {
    font-weight: 600;
    color: #145f92;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Navbar */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navigation-link {
    color: #2e95b5 !important;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.navigation-link:hover,
.navigation-link.active {
    color: #145f92 !important;
}

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

.form-control {
    font-size: 0.8rem !important;
}

.dropdown-toggle:hover {
    color: #2e95b5 !important;
}

.dropdown-menu {
    display: none;
    padding: 0.5rem 0;
    margin: 0;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: #57595c;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #2e95b5;
    color: white;
}

/* Avatar Button */
.avatar-btn {
    width: 28px;
    padding: 16px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #145f92, #145f92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 8px #145f92;
    transition: all 0.3s ease;
}

.avatar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px #145f92;
}

.avatar-btn i {
    font-size: 1rem;
}

/* Footer  */

.footer {
    background: #2e95b5;
}

.social-links {
    margin-top: 1.5rem !important;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.linkedin {
    background-color: #0077b5;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-social {
    position: absolute;
    left: 10%;
    text-align: left;
    padding: 20px 0 10px;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.agent-2:hover .profile-social {
    bottom: 0;
    opacity: 1;
}

.profile-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 16px;
    color: #fff;
    margin: 0 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.2);
}

.profile-social a:hover {
    transform: translateY(-3px) scale(1.1);
    text-decoration: none !important;
}

.profile-social .facebook-bg {
    background-color: #3b5998;
}

.profile-social .twitter-bg {
    background-color: #1da1f2;
}

.profile-social .linkedin-bg {
    background-color: #0077b5;
}

.profile-social .instagram-bg {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 6px;
    font-size: 13px;
}

.contact-info a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #4e66f8;
    text-decoration: none;
}

.contact-info i {
    width: 16px;
    color: #4e66f8;
    font-size: 14px;
}

.main-title {
    margin-bottom: 30px;
    text-align: center;
}

.main-title h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.main-title p {
    color: #6c757d;
    font-size: 15px;
}

.footer-discover-title {
    margin-bottom: 10px;
    padding-left: 0;
}

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

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

.footer-discover-link {
    display: block;
    padding-left: 0;
    text-decoration: none;
    color: #C5CDD9;
}

.footer-discover-link:hover {
    color: #fff;
}

/* office show */
.profile-social-office {
    position: absolute;
    bottom: 0;
    left: 4%;
    text-align: left;
    padding: 20px 0 10px;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.office-page .detail h2 {
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 15px;
}

.office-page .detail h4 {
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.office-page .contact ul li {
    margin-bottom: 10px;
    color: #636e72;
    line-height: 1.6;
}

.office-page .manager-info {
    border-left: 3px solid #4e66f8;
}

.office-page .btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.office-page .btn-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.property-item-2 {
    margin-bottom: 20px;
    transition: all 0.3s;
}

.property-item-2:hover {
    transform: translateY(-5px);
}

.property-item-2 .card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.property-item-2 .card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}


/* Contact Form Styles */
.contact-widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.contact-widget .sidebar-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3436;
    position: relative;
    padding-bottom: 10px;
}

.contact-widget .s-border,
.contact-widget .m-border {
    height: 2px;
    display: block;
    margin: 5px 0 20px;
    position: relative;
}

.contact-widget .s-border {
    width: 40px;
    background-color: #4e66f8;
}

.contact-widget .m-border {
    width: 80px;
    background-color: #4e66f8;
    opacity: 0.7;
    margin-top: -2px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-control {
    height: 45px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: #4e66f8;
    box-shadow: 0 0 0 0.2rem rgba(78, 102, 248, 0.25);
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn-primary {
    background-color: #4e66f8;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.contact-form .btn-primary:hover {
    background-color: #3a4fd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 102, 248, 0.3);
}

.contact-form .btn-block {
    display: block;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-widget {
        margin-top: 40px;
    }
}

/* Crew Card - Now used for Real Estate Agents */
.crew-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.crew-card:hover {
    transform: translateY(-10px);
}

.crew-image {
    margin-bottom: 15px;
}

.crew-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
}

.crew-name {
    font-size: 18px;
    font-weight: bold;
    color: #2e95b5;
}

.crew-title {
    font-size: 14px;
    color: #777;
    margin-top: 0;
    margin-bottom: 2px;
}

.crew-location {
    font-size: 14px;
    color: #777;
}

.btn-primary {
    background-color: #2e95b5;
    border: none;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #027f7f;
}

/* Media Upload */
.custom-file-upload {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background-color: #f9fafb;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.custom-file-upload:hover {
    border-color: #9ca3af;
    background-color: #f3f4f6;
}

.custom-file-upload.drag-over {
    border-color: #3b82f6;
    background-color: #e0e7ff;
}

.custom-file-upload-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 1rem;
    cursor: pointer;
}

.custom-file-input {
    display: none;
}

.custom-file-browse-btn {
    display: inline-block;
    padding: 0.5rem;
    border-radius: 6px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-upload-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.video-upload-tab {
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.video-upload-tab.active {
    border-bottom-color: #3b82f6;
    color: #3b82f6;
    font-weight: 500;
}

.video-upload-tab-content {
    display: none;
}

.video-upload-tab-content.active {
    display: block;
}

/* Our Client */
.testimonial-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.client-image {
    margin-bottom: 15px;
}

.client-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.client-name {
    font-weight: bold;
    color: #2e95b5;
}

/* News Event Card */
.featured-properties {
    padding: 40px 0;
}

.event-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(3, 147, 148, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 480px;
    transition: box-shadow 0.3s ease;
    width: 100%;
}

.event-card:hover {
    box-shadow: 0 10px 25px rgba(3, 147, 148, 0.3);
    cursor: pointer;
}

.event-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.event-content {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.event-date-box {
    background-color: #2e95b5;
    color: #fff;
    width: 85px;
    border-radius: 10px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    user-select: none;
    box-shadow: 0 4px 10px rgba(3, 147, 148, 0.4);
    flex-shrink: 0;
}

.event-date-box .month {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.event-date-box .day {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.event-date-box .year {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
}

.event-details {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.event-description {
    font-size: 15px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 15px;

    /* truncate if too long */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* max 3 lines */
    -webkit-box-orient: vertical;
}

.custom-button {
    background-color: #2e95b5;
    border: none;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 0.3rem; /* Bootstrap's btn border-radius */
    font-weight: 600; /* slightly lighter than bold */
    font-size: 0.8rem; /* bigger font size */
    line-height: 1.5; /* vertical alignment */
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-button:hover,
.custom-button:focus {
    background-color: #145F92;
    color: #fff;
    text-decoration: none;
    outline: none;
}

/* Blog Page Styling */
/* Header */
.blogpage-header-title {
    font-weight: 900;
    font-size: 3.5rem;
    color: #1E293B; /* slate-800 */
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    text-align: center;
}

.blogpage-header-subtitle {
    color: #475569; /* slate-600 */
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 5rem auto;
    line-height: 1.6;
    text-align: center;
}

/* Blog Categories */
.blogpage-categories-list {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 3.5rem;
    list-style: none;
}

.blogpage-categories-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    color: #475569;
    background-color: #f3f4f6;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.05);
}

.blogpage-categories-link:hover {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 6px 15px rgb(37 99 235 / 0.4);
}

.blogpage-active,
.blogpage-active:hover {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 8px 20px rgb(37 99 235 / 0.5);
    cursor: default;
}

.blogpage-icon {
    font-size: 1.25rem;
    vertical-align: middle;
}

/* Blog Grid */
.blogpage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* always 3 equal columns */
    gap: 2.5rem;
    min-height: 500px; /* optional, to keep height consistent */
}

/* Articles */
.blogpage-article {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgb(0 0 0 / 0.08);
    transition: box-shadow 0.35s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 500px; /* Fixed height for uniformity */
}

.blogpage-article:hover {
    box-shadow: 0 12px 40px rgb(0 0 0 / 0.15);
}

/* Images */
.blogpage-article-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Featured article image bigger */
.blogpage-article-featured .blogpage-article-img {
    height: 320px;
}

/* Content */
.blogpage-article-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Tags */
.blogpage-tag-featured {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #bfdbfe; /* blue-200 */
    color: #1e40af; /* blue-900 */
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    user-select: none;
    margin-bottom: 1.25rem;
    width: max-content;
}

.blogpage-tag-category {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background-color: #bfdbfe;
    color: #1e40af;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    user-select: none;
}

/* Titles */
.blogpage-article-title,
.blogpage-article-subtitle {
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    transition: color 0.3s ease;
}

.blogpage-article-title:hover,
.blogpage-article-subtitle:hover {
    color: #2563eb;
}

.blogpage-article-title {
    font-size: 2.25rem;
}

.blogpage-article-subtitle {
    font-size: 1.25rem;
}

/* Paragraph */
.blogpage-article-excerpt {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Line clamp */
.blogpage-article-featured .blogpage-article-excerpt {
    -webkit-line-clamp: 5;
}

.blogpage-article-regular .blogpage-article-excerpt {
    -webkit-line-clamp: 3;
}

/* Article header (for regular posts) */
.blogpage-article-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

/* Footer meta */
.blogpage-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
}

.blogpage-post-meta time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blogpage-read-more {
    color: #2563eb;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blogpage-read-more:hover {
    color: #1e40af;
}

.blogshow-container {
    max-width: 800px;
    margin: 3rem auto 6rem;
    padding: 0 1.5rem;
    margin-top: 150px;
}

.blogshow-article {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.blogshow-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1e293b; /* slate-800 */
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.blogshow-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.blogshow-meta {
    display: flex;
    gap: 1.5rem;
    color: #64748b; /* slate-500 */
    font-weight: 600;
    font-size: 0.875rem;
    align-items: center;
}

.blogshow-category i,
.blogshow-date i {
    margin-right: 0.3rem;
    font-size: 1.1rem;
    vertical-align: middle;
}

.blogshow-category {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: capitalize;
}

.blogshow-content {
    color: #334155; /* slate-700 */
    font-size: 0.9rem !important;
    line-height: 1.8;
}

/* Optional: style links inside content */
.blogshow-content a {
    color: #2563eb; /* blue-600 */
    text-decoration: underline;
}

.blogshow-content a:hover {
    color: #1e40af; /* blue-800 */
}

header {
    color: #145f92;
}

/* Feature List - Property Cards */
.slick-custom-img {
    height: 330px;
    object-fit: cover;
}

.slick-info-patch {
    background: #2e95b5;
    padding: 12px 16px;
    color: #fff !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    height: 100px;
}

.slick-boat-name {
    margin: 0 0 6px;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff !important;
    text-decoration: none !important;
}

.slick-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    white-space: nowrap;
}

.slick-price {
    font-weight: 700;
    flex: 1;
    text-align: left;
    color: #fff !important;
}

.slick-measurement {
    flex: 1;
    text-align: center;
    color: #fff !important;
}

.slick-modal-name {
    flex: 1;
    text-align: right;
    color: #fff !important;
}

.slick-slide-item:hover .property-box-3 {
    transform: translateY(-6px);
    transition: transform 0.3s ease;
}

.search-filter-wrapper {
    position: fixed;
    top: 115px;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 10px 15px;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Container for search and filter button */
.search-filter-bar {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
}

/* Search form takes available space */
.search-filter-form {
    flex-grow: 1;
}

/* Search input styling */
.searching-input {
    height: 40px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease;
    margin-top: 10px;
}

.searching-input:focus {
    border-color: #0a6969;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, .25);
    outline: none;
}

/* Search button styling */
.search-btn {
    height: 40px;
    border-radius: 4px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.search-letterspacing {
    letter-spacing: 3px;
}

/* Filter button styling */
.filter-btn {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    white-space: nowrap;
    user-select: none;
    margin-top: 10px;
}

/* Icon spacing in buttons */
.search-btn i,
.filter-btn i {
    font-size: 16px;
}

.global-site-color {
    color: #2e95b5 !important;
}

.global-site-color:hover {
    color: #027a7a !important;
}

.global-site-color-border {
    border-color: #2e95b5 !important;
}

.global-site-color-bg {
    background-color: #2e95b5 !important;
}

.custom-outline-button {
    background-color: transparent;
    border: 2px solid #2e95b5;
    padding: 10px 20px;
    color: #2e95b5;
    text-decoration: none;
    border-radius: 0.3rem;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.5;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-outline-button:hover,
.custom-outline-button:focus {
    background-color: #2e95b5;
    color: #fff;
    text-decoration: none;
    outline: none;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.client-image .img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.pagination .page-link {
    color: #2e95b5;
    background-color: #fff;
    border: 1px solid #2e95b5;
}

.pagination .page-link:hover {
    background-color: #2e95b5 !important;
    color: white;
    border-color: #2e95b5;
}

.pagination .page-item.active .page-link {
    background-color: #2e95b5;
    border-color: #2e95b5;
    color: white;
}

.pagination .page-item {
    margin: 0 5px;
}

.small {
    display: none !important;
}

.mobile-carousel {
    display: none !important;
}

/* Show the carousel only on mobile devices */
@media (max-width: 768px) {
    .mobile-carousel {
        display: block !important;
    }

    .desktop-carousel {
        display: none !important;
    }
}

/* Hero Slider Styles */
.bannerSwiper {
    width: 100%;
    height: 88vh;
    margin: 0;
    padding: 0;
}

.bannerSwiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 88vh;
}

.bannerSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-caption {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    padding: 40px;
    border-radius: 30px;
}

.hero-caption h1 {
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.9);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.property-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.6s ease-out;
    background: linear-gradient(135deg, rgba(46, 149, 181, 0.95), rgba(30, 120, 150, 0.95));
    padding: 10px 30px;
    border-radius: 60px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(46, 149, 181, 0.4);
    letter-spacing: 0.02em;
    font-family: 'Montserrat', sans-serif;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserrat', sans-serif;
}

.property-details {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.detail-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: 'Montserrat', sans-serif;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.detail-item i {
    font-size: 1.3rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 13px 35px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-width: 2px;
    font-family: 'Montserrat', sans-serif;
}

.hero-buttons .btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.hero-buttons .btn-light:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,255,255,0.4);
}

.hero-buttons .btn-outline-light {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

/* Swiper Navigation Styling */
.bannerSwiper .swiper-button-next,
.bannerSwiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.6);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bannerSwiper .swiper-button-next:hover,
.bannerSwiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.bannerSwiper .swiper-button-next:after,
.bannerSwiper .swiper-button-prev:after {
    font-size: 22px;
}

.bannerSwiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.6;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.bannerSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
    width: 30px;
    border-radius: 6px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Enhancements */
.information-section .hero-section { position: relative; }
.information-section .hero-section h1 { line-height:1.1; }
.information-section .hero-section .display-4 { font-size:3.2rem; }
@media (max-width: 992px){ .information-section .hero-section .display-4 { font-size:2.4rem; } }
.information-section .hero-section img { object-fit:cover; max-height:420px; width:100%; }
.information-section .hero-section .lead { font-size:1.05rem; line-height:1.55; }
.information-section .hero-section .custom-button, .information-section .hero-section .custom-outline-button { padding:12px 26px; border-radius:40px; }

.information-section .bg-light { background:linear-gradient(135deg,#f8fafc 0%,#eef4f7 100%) !important; }
.information-section .p-4.rounded-3.shadow-sm.bg-white { transition:transform .35s ease, box-shadow .35s ease; }
.information-section .p-4.rounded-3.shadow-sm.bg-white:hover { transform:translateY(-6px); box-shadow:0 14px 35px rgba(46,149,181,.25); }

.information-section .timeline { padding-left:10px; }
.information-section .timeline:before { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background:linear-gradient(180deg,#2e95b5,#145f92); border-radius:2px; }
.information-section .timeline-item { position:relative; }
.information-section .timeline-item:before { content:''; position:absolute; left:-12px; top:28px; width:14px; height:14px; background:#fff; border:3px solid #2e95b5; border-radius:50%; box-shadow:0 0 0 4px rgba(46,149,181,.15); }
@media (max-width:768px){ .information-section .timeline:before { left:2px; } .information-section .timeline-item:before { left:-6px; } }
.information-section .timeline-item:hover:before { background:#2e95b5; }
.information-section .timeline-item h5 { font-size:1rem; letter-spacing:.25px; }
.information-section .timeline-item p { line-height:1.5; }

.information-section .global-site-color-bg { position:relative; overflow:hidden; }
.information-section .global-site-color-bg:after { content:''; position:absolute; inset:0; background:radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 60%); pointer-events:none; }
.information-section .global-site-color-bg h2 { font-size:2rem; }
@media (max-width:576px){ .information-section .global-site-color-bg h2 { font-size:1.6rem; } }

/* Stats block refinement */
.information-section .h2.fw-bold.mb-1 { font-size:2.1rem; }
@media (max-width:576px){ .information-section .h2.fw-bold.mb-1 { font-size:1.7rem; } }

/* Offices Map Enhancements */
.offices-map { position:relative; border:2px solid #ffffff; }
.offices-map:after { content:''; position:absolute; inset:0; pointer-events:none; box-shadow:inset 0 0 0 2px rgba(46,149,181,.3); border-radius:24px; }

/* Offices Page Refinements */
.offices-page .offices-hero h1 { line-height:1.05; }
.offices-page .offices-hero .lead { font-size:1.02rem; }
@media (max-width:992px){ .offices-page .offices-hero h1 { font-size:2.2rem; } }
.offices-page .offices-map-section { position:relative; }
.offices-page .offices-map { border:2px solid #fff; box-shadow:0 12px 28px rgba(0,0,0,.08); }
.offices-page .office-card { transition:transform .4s ease, box-shadow .4s ease; }
.offices-page .office-card:hover { transform:translateY(-8px); box-shadow:0 22px 40px rgba(0,0,0,.18); }
.offices-page .office-card-img-wrapper img { filter:brightness(0.92); }
.offices-page .office-card:hover .office-card-img-wrapper img { filter:brightness(1); }
.offices-page .office-card h5 { font-size:1rem; }
.offices-page .office-card .badge { background:#f8fafc; }
.offices-page .office-card .btn { border-radius:30px; font-weight:600; }
.offices-page .office-card .btn-outline-secondary { border-color:#d0d7de; color:#445b6e; }
.offices-page .office-card .btn-outline-secondary:hover { background:#445b6e; color:#fff; }
.offices-page .office-card .btn-outline-primary { color:#2e95b5; border-color:#2e95b5; }
.offices-page .office-card .btn-outline-primary:hover { background:#2e95b5; color:#fff; }
.offices-page .office-card .btn-primary { background:#2e95b5; border-color:#2e95b5; }
.offices-page .office-card .btn-primary:hover { background:#145f92; border-color:#145f92; }
.offices-page .offices-grid h2 { letter-spacing:.5px; }
.offices-page .offices-grid p { font-size:.9rem; }
@media (max-width:576px){ .offices-page .office-card-img-wrapper { height:160px !important; } }

/* Offices hero+map combined gradient background */
.offices-page .offices-hero-map { position:relative; background:linear-gradient(135deg,#eef4f7 0%,#dce9ef 100%); }
.offices-page .offices-hero-map .offices-hero-title { font-size:2.7rem; }
@media (max-width:992px){ .offices-page .offices-hero-map .offices-hero-title { font-size:2.2rem; } }
.offices-page .offices-hero-map .offices-hero-lead { max-width:680px; line-height:1.55; }
.offices-page .offices-hero-image-wrapper { min-height:260px; }
.offices-page .offices-hero-image-overlay { position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.55)); }
.offices-page .offices-map-wrapper .offices-map { box-shadow:0 14px 30px rgba(0,0,0,.10); border:2px solid #fff; }

/* Office card overlay refined */
.offices-page .office-card-img-overlay { background:linear-gradient(180deg,rgba(0,0,0,0.0),rgba(0,0,0,.55)); }

/* Coverage CTA rework */
.coverage-cta { position:relative; background:linear-gradient(135deg,#2e95b5 0%,#145f92 100%); overflow:hidden; }
.coverage-cta-overlay { position:absolute; inset:0; background:radial-gradient(1200px 400px at 20% -10%, rgba(255,255,255,.15), transparent), radial-gradient(900px 300px at 90% 110%, rgba(255,255,255,.12), transparent); pointer-events:none; }
.coverage-cta-title { letter-spacing:.3px; }
.coverage-cta-text { line-height:1.6; opacity:.95; }
.coverage-cta .bullet-icon { width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.18); display:inline-flex; align-items:center; justify-content:center; }
.coverage-cta .btn { border-radius:28px; font-weight:700; }

/* Office detail page refinements */
.office-detail-page .office-detail-hero img { display:block; width:100%; }
.office-detail-page .office-detail-hero h1 { letter-spacing:.3px; }
.office-detail-page .p-4.bg-white.rounded-3.shadow-sm { transition:transform .3s ease, box-shadow .3s ease; }
.office-detail-page .p-4.bg-white.rounded-3.shadow-sm:hover { transform:translateY(-4px); box-shadow:0 12px 30px rgba(0,0,0,.1); }

/* Office detail hero heading & button */
.office-detail-page .office-title { font-size:2.75rem; line-height:1.05; text-shadow:0 4px 14px rgba(0,0,0,.4); }
@media (max-width:992px){ .office-detail-page .office-title { font-size:2.2rem; } }
@media (max-width:576px){ .office-detail-page .office-title { font-size:1.85rem; } }
.view-map-btn { border-radius:30px; font-weight:600; padding:6px 18px; box-shadow:0 4px 12px rgba(255,255,255,.25); backdrop-filter:blur(4px); }
.view-map-btn:hover { background:#fff; color:#145f92; box-shadow:0 6px 16px rgba(0,0,0,.25); }

/* Contact page hero */
.contact-hero { background-image:url('https://images.unsplash.com/photo-1501183638710-841dd1904471?auto=format&fit=crop&w=2000&q=70'); background-size:cover; background-position:center; border-radius:0; min-height:340px; }
.contact-hero:before { content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(16,69,112,.72), rgba(22,110,139,.62)); }
.contact-hero .container { position:relative; z-index:2; }
.contact-hero-overlay { position:absolute; inset:0; pointer-events:none; background:radial-gradient(800px 300px at 15% 0%, rgba(255,255,255,.12), transparent), radial-gradient(600px 240px at 95% 100%, rgba(255,255,255,.08), transparent); }
.text-shadow { text-shadow:0 8px 22px rgba(0,0,0,.35); }
.opacity-95 { opacity:.95; }

/* Contact page refinements */
.contact-highlight-card { position:relative; overflow:hidden; transition:transform .4s ease, box-shadow .4s ease; }
.contact-highlight-card:after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(46,149,181,.08),rgba(20,95,146,.08)); opacity:0; transition:opacity .4s ease; }
.contact-highlight-card:hover { transform:translateY(-6px); box-shadow:0 14px 28px rgba(0,0,0,.12); }
.contact-highlight-card:hover:after { opacity:1; }
.contact-highlight-card .highlight-icon { box-shadow:0 6px 18px rgba(46,149,181,.35); }
.contact-widget .form-control { transition:border-color .25s ease, box-shadow .25s ease, background-color .25s; }
.contact-widget .form-control:focus { background:#f8fdff; }
.status-alert { animation:fadeSlide .55s ease; }
@keyframes fadeSlide { from { opacity:0; transform:translateY(-6px);} to { opacity:1; transform:translateY(0);} }
.submit-btn { position:relative; overflow:hidden; }
.submit-btn:before { content:''; position:absolute; top:0; left:-120%; width:120%; height:100%; background:linear-gradient(110deg,rgba(255,255,255,.05),rgba(255,255,255,.35),rgba(255,255,255,.05)); transform:skewX(-20deg); transition:all .85s; }
.submit-btn:hover:before { left:120%; }
@media (max-width: 768px){ .contact-hero { min-height:420px; padding-top:3.5rem!important; } .contact-hero .display-4 { font-size:2.1rem; } }

/* Agent card hover/focus enhancements */
.agent-card:hover { transform: translateY(-6px); box-shadow: 0 16px 30px rgba(0,0,0,.12); }
.agent-card:focus { outline: 2px solid #2e95b5; outline-offset: 2px; }

/* Agent detail page tweaks */
.agent-detail .agent-profile-card { border:1px solid #eef2f6; }
.agent-detail .agent-photo { border:4px solid #fff; box-shadow:0 8px 24px rgba(0,0,0,.08)!important; }
.agent-detail .agent-contact .btn { min-width: 180px; }

/* Agent Hero */
.agent-hero { min-height:320px; position:relative; margin-top:60px; }
.agent-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; filter:brightness(.75); }
.agent-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(20,95,146,.72),rgba(46,149,181,.55)); mix-blend-mode:multiply; }
.agent-hero .breadcrumb a { color:#e2e8f0; text-decoration:none; }
.agent-hero .breadcrumb a:hover { color:#fff; }
.agent-hero .breadcrumb-item.active { color:#f8fafc; }
.agent-profile-card { position:relative; }
.agent-profile-card h2 { letter-spacing:.5px; }
@media (max-width:768px){ .agent-hero { min-height:260px; } .agent-hero .display-5 { font-size:2rem; } }

/* Agent hero gradient background (replaces photo) */
.agent-hero-gradient { background:linear-gradient(135deg,#145f92 0%, #2e95b5 50%, #5bbcd8 100%); }
.agent-hero-bg.agent-hero-gradient { filter:none; }

/* Agent hero mesh gradient & enhancements */
.agent-hero-mesh { background: radial-gradient(circle at 15% 20%, #2e95b5 0%, #145f92 35%, #0d466e 70%), radial-gradient(circle at 85% 30%, #5bbcd8 0%, #2e95b5 40%, rgba(20,95,146,0.4) 75%), linear-gradient(135deg,#145f92,#2e95b5); background-blend-mode: overlay, overlay, normal; animation: meshShift 18s ease-in-out infinite; }
@keyframes meshShift { 0%{ background-position:0% 0%, 100% 50%, 0 0; } 50%{ background-position:50% 50%, 0% 30%, 0 0; } 100%{ background-position:0% 0%, 100% 50%, 0 0; } }
.agent-hero-actions .btn { backdrop-filter: blur(6px); }
.agent-stat-chip { background: rgba(255,255,255,0.18); color:#fff; padding:8px 16px; border-radius:40px; font-size:.75rem; font-weight:600; letter-spacing:.5px; display:inline-flex; align-items:center; box-shadow:0 4px 14px rgba(0,0,0,.25); backdrop-filter: blur(10px); }
.agent-stat-chip .badge { font-size:.65rem; font-weight:700; }
.agent-stat-chip i { font-size:.9rem; }
.agent-subnav-wrapper { position:sticky; top:80px; z-index:50; background:#ffffffeb; backdrop-filter:blur(8px); border-bottom:1px solid #e2e8f0; }
.agent-subnav .nav-link { color:#445b6e; padding:.55rem 1rem; font-weight:600; border-radius:30px; transition:.25s; }
.agent-subnav .nav-link:hover { background:#2e95b5; color:#fff; }
.agent-subnav .nav-link.active { background:#145f92; color:#fff; }
.hero-wave { position:absolute; bottom:-1px; left:0; right:0; line-height:0; }
.hero-wave svg { display:block; width:100%; height:90px; }
@media (max-width:768px){ .agent-stat-chip { padding:6px 12px; font-size:.65rem; } .agent-subnav .nav-link { padding:.45rem .75rem; font-size:.65rem; } }

/* Agents carousel navigation visibility */
.agentsSwiper { position: relative; }
.agentsSwiper .swiper-button-next,
.agentsSwiper .swiper-button-prev {
    color: #ffffff;
    background: rgba(20, 95, 146, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.agentsSwiper .swiper-button-next:hover,
.agentsSwiper .swiper-button-prev:hover {
    background: rgba(20, 95, 146, 1);
}
.agentsSwiper .swiper-button-next:after,
.agentsSwiper .swiper-button-prev:after { font-size: 18px; font-weight: 700; }
@media (max-width: 768px){
    .agentsSwiper .swiper-button-next,
    .agentsSwiper .swiper-button-prev { width: 38px; height: 38px; }
}
