  :root {
            --brand-red: #e6403a;
            --brand-blue: #0f5b88;
            --text-dark: #0b2238;
            --text-light: #f8fbff;
            --bg-overlay: rgba(9, 29, 47, 0.45);
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: 'Poppins', Arial, Helvetica, sans-serif; 
            color: var(--text-dark);
        }
a{ 
    text-decoration: none;
}
        .container {
            width: 100%;
            max-width: 1200px;
            padding: 0 24px;
            margin: 0 auto;
        }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 20;
        }

        .site-header.scrolled .topbar {
            display: none;
        }

        .site-header.scrolled {
            background: #ffffff;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .site-header.scrolled .navrow {
            background: transparent;
            border-bottom: none;
        }

        .site-header.scrolled .nav-list a {
            color: var(--brand-red);
        }

        .site-header.scrolled .nav-list a:hover {
            color: #c73631;
        }

        .site-header.scrolled .nav-list a.active {
            color: var(--brand-red);
        }

        .topbar {
            background: transparent;
        }

        .topbar-inner {
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            border-bottom: 1px solid rgba(255, 255, 255, 0.35);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .navrow {
            background: transparent;
            backdrop-filter: none;
            border-bottom: none;
        }

        .brand-logo,.custom-logo-link img {
            height: 46px;
            width: auto;
            display: block;
            border: none;
        }

        .nav-toggle {
            display: none;
            background: transparent;
            border: 0;
            padding: 8px;
            cursor: pointer;
            position: relative;
            z-index: 30;
        }

        .nav-toggle .bar {
            display: block;
            width: 22px;
            height: 2px;
            background: #ffffff;
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        .site-header.scrolled .nav-toggle .bar {
            background: var(--brand-red);
        }

        .nav-toggle.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

        .nav {
            margin-left: 24px;
        }

        .nav-list {
            list-style: none;
            display: flex;
            gap: 28px;
            padding: 0;
            margin: 0;
        }

        .nav-list a {
            text-decoration: none;
            color: rgba(239, 255, 255, 0.85);
            font-weight: 400;
            font-size: 14px;
        }

        .nav-list a.active {
            color: #EFF3F5;
            font-weight: 600;
        }

        .nav-list a:hover {
            color: #EFFFFF;
        }

        .toll-free {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #FFE8DC;
            font-size: 12px;
        }

        .toll-free .icon {
            color: #FFE8DC;
        }

        .toll-free .label {
            color: #FFE8DC;
        }

        .toll-free strong {
            color: #FFF8F4;
            font-size: 12px;
        }

        /* Hero */
        .hero {
            position: relative;
            background-image: url('./images/image_banner-2.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 400px;
            width: 100%;
            display: flex;
            align-items: center;
        }

        .hero .overlay {
            position: absolute;
            inset: 0;
            background: var(--bg-overlay);
        }

        .hero-content {
            position: relative;
            padding-top: 200px;
            padding-bottom: 48px;
            color: var(--text-light);
        }

        .hero-title {
            margin: 0 0 12px 0;
            font-size: 60px;
            line-height: 1.1;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            margin: 0 0 28px 0;
            font-size: 22px;
            font-weight: 400;
        }

        .search-block {
            background: rgba(255, 255, 255, 0.14);
            padding: 16px;
            border-radius: 10px;
            backdrop-filter: blur(4px);
            max-width: 800px;
        }

        .search-title {
            margin: 0 0 10px 0;
            font-weight: 500;
        }

        .agent-form {
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 12px;
            box-shadow: none;
            border: 1px solid rgba(184, 184, 184, 0.5);
            background-color: #f5f5f5;
            padding: 25.6px;
            border-radius: 8px;
            position: relative;
            margin-top:40px;
            margin-bottom:20px;
        }

        .agent-form .field select {
            width: 100%;
            height: 44px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.9);
            padding: 0 12px;
            font-size: 14px;
        }
        #posts-per-page{
           height: 30px;
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.5);
            background: rgba(255, 255, 255, 0.9);
            padding: 0 12px;
            font-size: 14px; 
        }
        #keyword-search{
            width: 100%;
            max-width:320px;
            height: 44px;
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.5);
            background: rgba(255, 255, 255, 0.9);
            padding: 0 12px;
            font-size: 14px;
        }

        .btn-primary {
            height: 44px;
            border: none;
            border-radius: 8px;
            background: var(--brand-red);
            color: #fff; 
            padding: 0 22px;
            font-weight: 600;
            cursor: pointer;
        }
        .agent-results-header p {
    font-size: 14px;
    margin-top: 20px;
}
table{
    width:100%;
}
table tbody tr:nth-child(even) {
    background-color: #f1f1f1;
}
table td, table th {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
table tbody th, table tbody td {
    padding: 0.5rem 0.625rem 0.625rem;
}
@media(max-width:767px){
	table tbody th, table tbody td{
			white-space:nowrap;
	}
}
table {
    clear: both;
    margin: 0.5em 0 !important;
    max-width: none !important;
    width: 100%;
}
table th{
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold;
    text-align: left;
}
/* Dropdown Menu Styles */
.has-dropdown,.menu-item-has-children {
    position: relative;
}

.dropdown-menu,.sub-menu {
    list-style: none;
    padding: 8px 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 91, 136, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-,.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li,.menu-item-has-children li {
    border-bottom: none;
}

.dropdown-menu a ,.menu-item-has-children .sub-menu a{
    display: block;
    padding: 12px 20px;
    color: rgba(239, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover,.menu-item-has-children .sub-menu  a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #EFFFFF;
    padding-left: 24px;
}

/* Scrolled header dropdown */
.site-header.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .dropdown-menu a {
    color: var(--brand-red);
}

.site-header.scrolled .dropdown-menu a:hover {
    background: rgba(230, 64, 58, 0.1);
    color: #c73631;
}

/* Mobile Dropdown Styles */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        min-width: auto;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 200px;
        margin-top: 8px;
    }

    .dropdown-menu a {
        padding: 12px 20px 12px 40px;
        font-size: 14px;
    }

    .dropdown-menu a:hover {
        padding-left: 44px;
    }

    .site-header.scrolled .dropdown-menu {
        background: rgba(0, 0, 0, 0.03);
    }

    .has-dropdown > a::after {
        content: '▼';
        font-size: 10px;
        margin-left: 8px;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .has-dropdown.active > a::after {
        transform: rotate(180deg);
    }
}
        /* Header & Hero Responsive Styles */
@media (max-width: 992px) {
    .topbar-inner {
        height: 32px;
        font-size: 11px;
    }

    .toll-free {
        font-size: 10px;
        gap: 6px;
    }

    .toll-free strong {
        font-size: 10px;
    }

    .header-inner {
        height: 64px;
    }

    .nav-toggle {
        display: block;
        order: -1;
    }

    .brand,.custom-logo-link {
        flex: 1;
        text-align: center;
    }

    .brand-logo,.custom-logo-link img {
        height: 40px;
    }

    .nav {
        position: fixed;
        top: 96px;
        left: 0;
        right: 0;
        background: rgba(15, 91, 136, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        margin-left: 0;
        z-index: 25;
    }

    .site-header.scrolled .nav {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav.nav-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 24px;
    }

    .nav-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-header.scrolled .nav-list li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-list a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
    }

    .hero {
        min-height: 70vh;
        align-items:flex-end;
        padding-bottom:30px;
    }

    .hero-content {
        padding-top: 130px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .agent-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .search-block {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        height: 28px;
        font-size: 10px;
    }

    .toll-free {
        font-size: 9px;
        gap: 4px;
    }

    .toll-free strong {
        font-size: 9px;
    }

    .header-inner {
        height: 60px;
        padding: 0 16px;
    }

    .container {
        padding: 0 16px;
    }

    .brand-logo,.custom-logo-link img {
        height: 36px;
    }

    .nav {
        top: 88px;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding-top: 110px;
        padding-bottom: 32px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .search-block {
        padding: 14px;
    }

    .search-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .topbar-inner {
        height: 26px;
        font-size: 9px;
        justify-content: center;
    }

    .toll-free {
        font-size: 8px;
        gap: 3px;
    }

    .toll-free .label {
        display: none;
    }

    .toll-free strong {
        font-size: 9px;
    }

    .header-inner {
        height: 56px;
    }

    .brand-logo,.custom-logo-link img {
        height: 32px;
    }

    .nav {
        top: 82px;
    }

    .nav-list {
        padding: 0 16px;
    }

    .nav-list a {
        padding: 14px 0;
        font-size: 15px;
    }

    .hero {
        min-height: 55vh;
    }

    .hero-content {
        padding-top: 150px;
        padding-bottom: 24px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .search-block {
        padding: 12px;
        border-radius: 8px;
    }

    .search-title {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .agent-form .field select {
        height: 40px;
        font-size: 13px;
        padding: 0 10px;
    }

    .btn-primary {
        height: 40px;
        padding: 0 18px;
        font-size: 14px;
    }
}

        /* Demo Info */
        .demo-info {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--brand-red);
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            font-size: 14px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 100;
        }

        @media (max-width: 768px) {
            .demo-info {
                bottom: 10px;
                right: 10px;
                left: 10px;
                font-size: 12px;
                padding: 12px 15px;
            }
        }

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}
.about-content p {
    font-size: 18px;
    line-height: normal;
}
.about-title {
    font-size: 42px;
    font-weight: 400;
    color: #333;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.about-title .highlight {
    color: #dc3545;
    font-weight: 400;
}

.about-content {
    margin: 0 auto 40px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-weight: 400;
}

.about-button {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #dc3545;
    color: #dc3545;
    background-color: transparent;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 400;
}

.about-button:hover {
    background-color: #dc3545;
    color: white;
}
.statsNumber strong{
    font-size: 20px;
    font-weight: 400;
    color: #dc3545;
}
.statsNumber{
    font-weight: 400;
}
/* Features */
.features {
    background: #F5F5F5;
    padding: 96px 0 112px; /* increased vertical spacing */
}

.feat-title {
    margin: 0 0 18px 0;
    font-size: 32px;
    font-weight: 400; /* thinner */
    color: #2a3a4f;
}

.feat-title span {
    color: var(--brand-red);
}

.feat-desc {
    margin: 0 0 30px 0;
    max-width: 440px; /* narrower so it wraps to ~3 lines */
    color: #4a5a6f;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* more vertical space between items */
    max-width: 440px; /* match desc width so icons sit under it in one line */
    margin-top: 6px;
}

.feat-item { text-align: center; }
.feat-icon { margin-bottom: 10px; }
.feat-icon img { width: 28px; height: 28px; object-fit: contain; display: inline-block; }
.feat-label { color: #2a3a4f; font-weight: 300; }
#partnersSlider img {
    height: 85px;
}
.cont {
            max-width: 1400px;
            margin: 0 auto;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
        }

        .blog-card {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .blog-card:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        .blog-title {
            font-size: 1.5rem;
            color: #E53935;
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.4;
        }

        .blog-date {
            font-size: 0.95rem;
            color: #999;
            margin-bottom: 12px;
            display: block;
        }

        .blog-excerpt {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
                overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
        }

        .read-more-btn {
            display: inline-block;
            padding: 10px 28px;
            border: 2px solid #E53935;
            color: #E53935;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
            background: white;
            cursor: pointer;
        }

        .read-more-btn:hover {
            background: #E53935;
            color: white;
        }
.about-content img {
    display: block;
}
        /* Tablet */
        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 30px;
            }

            .blog-card {
                padding: 35px;
            }

            .blog-title {
                font-size: 1.35rem;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .blog-card {
                padding: 30px 25px;
            }

            .blog-title {
                font-size: 1.25rem;
            }

            .blog-excerpt {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            

            .blog-card {
                padding: 25px 20px;
            }

            .blog-title {
                font-size: 1.15rem;
            }

            .blog-date {
                font-size: 0.9rem;
            }

            .blog-excerpt {
                font-size: 0.9rem;
            }

            .read-more-btn {
                padding: 9px 24px;
                font-size: 0.95rem;
            }
        }
@media (max-width: 768px) {
    .features { padding: 80px 0 100px; }
    .feat-grid { grid-template-columns: repeat(3, 1fr); }
}


.random-background {
    background-color: #F5F5F5;
    /* padding: 60px 0; */
}
 .services-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            background-color: #F5F5F5;
        }

        .services-title {
            font-size: 36px;
            font-weight: 400;
            color: #333;
            margin-bottom: 50px;
            letter-spacing: -0.5px;
        }

        .services-title .highlight {
            color: #dc3545;
            font-weight: 400;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 380px));
            gap: 25px;
            max-width: 900px;
        }

        .service-card {
            background: white;
            border-radius: 8px;
            padding: 30px 28px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            display: block;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 55px;
            height: 55px;
            margin-bottom: 20px;
            object-fit: contain;
        }

        .service-title {
            font-size: 19px;
            color: #dc3545;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .service-description {
            font-size: 14px;
            line-height: 1.6;
            color: #555;
            font-weight: 400;
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 50px 20px;
            }

            .services-title {
                font-size: 28px;
                margin-bottom: 35px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .service-card {
                padding: 25px 22px;
            }

            .service-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 18px;
            }

            .service-title {
                font-size: 17px;
                margin-bottom: 10px;
            }

            .service-description {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .services-section {
                padding: 35px 15px;
            }

            .services-title {
                font-size: 24px;
                margin-bottom: 25px;
            }

            .service-card {
                padding: 22px 18px;
            }

            .service-icon {
                width: 45px;
                height: 45px;
            }

            .service-title {
                font-size: 16px;
            }

            .service-description {
                font-size: 12px;
            }
        }



      .swiper-container {
            width: 100%;
            height: 92vh;
            position: relative;
            overflow: hidden;
            background-color: #000;
            touch-action: pan-y;
        }

        .swiper-container::before,
        .swiper-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 12%;
            height: 100%;
            z-index: 5;
            pointer-events: none;
        }

        .swiper-container::before {
            left: 0;
            background: linear-gradient(to right, 
                rgba(255, 192, 203, 0.9) 0%,
                rgba(255, 192, 203, 0.7) 30%,
                rgba(255, 192, 203, 0.4) 60%,
                transparent 100%
            );
        }

        .swiper-container::after {
            right: 0;
            background: linear-gradient(to left, 
                rgba(255, 192, 203, 0.9) 0%,
                rgba(255, 192, 203, 0.7) 30%,
                rgba(255, 192, 203, 0.4) 60%,
                transparent 100%
            );
        }
.agent-pagination-info {
    font-size: 12px;
    text-align: right;
}
.agent-pagination-links{
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
    gap:10px;
    margin-top:10px;
}
.agent-pagination-links a {
    padding: 6px;
    background-color: red;
    margin: 2px;
    max-height: 40px;
    min-width: 32px;
    display: inline-flex
;
    text-align: center;
    color: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    font-size: 12px;
}
table thead, table tfoot {
    background: #f8f8f8;
    color: #0a0a0a;
}
/* Table header sorting styles */
.agent-results-table th {
    position: relative;
    cursor: pointer;
    padding-right: 25px !important;
    user-select: none;
    transition: background-color 0.2s ease;
}

.agent-results-table th:hover {
    background-color: #f5f5f5;
}

.sort-caret {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #666;
    transition: all 0.2s ease;
}

/* Default state (both carets) */
.agent-results-table th .sort-caret::before {
    content: "▲";
    opacity: 0.3;
    display: block;
    line-height: 0.5;
    font-size: 10px;
}

.agent-results-table th .sort-caret::after {
    content: "▼";
    opacity: 0.3;
    display: block;
    line-height: 0.5;
    font-size: 10px;
}
footer .wp-block-image img {
    object-fit: contain;
}
/* Active ascending sort */
.agent-results-table th.sorted-asc .sort-caret::before {
    opacity: 1;
    color: #007cba;
}

.agent-results-table th.sorted-asc .sort-caret::after {
    opacity: 0.3;
}

/* Active descending sort */
.agent-results-table th.sorted-desc .sort-caret::before {
    opacity: 0.3;
}

.agent-results-table th.sorted-desc .sort-caret::after {
    opacity: 1;
    color: #007cba;
}

/* Alternative using single character with rotation */
.agent-results-table th .sort-caret.single {
    transition: transform 0.2s ease;
}

.agent-results-table th.sorted-asc .sort-caret.single {
    transform: translateY(-50%) rotate(0deg);
    color: #007cba;
}

.agent-results-table th.sorted-desc .sort-caret.single {
    transform: translateY(-50%) rotate(180deg);
    color: #007cba;
}

.agent-results-table th:not(.sorted-asc):not(.sorted-desc) .sort-caret.single {
    opacity: 0.3;
}
.no-results > p:nth-child(1) {
    color: red;
    margin-top: 16px;
    font-size: 14px;
}
        @media (max-width: 1024px) {
            .swiper-container {
                height: 60vh;
                padding: 0 6%;
            }

            .swiper-container::before,
            .swiper-container::after {
                width: 6%;
            }

            
        }

        @media (max-width: 768px) {
            .swiper-container {
                height: 50vh;
                padding: 0 5%;
            }

            .swiper-container::before,
            .swiper-container::after {
                width: 5%;
            }

            .swiper-container::before {
                background: linear-gradient(to right, 
                    rgba(245, 245, 245, 1) 0%,
                    rgba(245, 245, 245, 0.7) 50%,
                    transparent 100%
                );
            }

            .swiper-container::after {
                background: linear-gradient(to left, 
                    rgba(245, 245, 245, 1) 0%,
                    rgba(245, 245, 245, 0.7) 50%,
                    transparent 100%
                );
            }

            
        }

        @media (max-width: 480px) {
            .swiper-container {
                height: 40vh;
                padding: 0 4%;
            }

            .swiper-container::before,
            .swiper-container::after {
                width: 4%;
            }

            .swiper-container::before {
                background: linear-gradient(to right, 
                    rgba(245, 245, 245, 1) 0%,
                    rgba(245, 245, 245, 0.6) 60%,
                    transparent 100%
                );
            }

            .swiper-container::after {
                background: linear-gradient(to left, 
                    rgba(245, 245, 245, 1) 0%,
                    rgba(245, 245, 245, 0.6) 60%,
                    transparent 100%
                );
            }

            
        }

        /* Responsive adjustments for slider: center it and make ~80% width on small screens with reduced height */
@media (max-width: 992px) {
    .swiper-container {
        width: 85%;
        margin: 0 auto;
        padding: 0; /* remove outer paddings so width behaves */
        height: 50vh; /* reduced height for tablets */
        border-radius: 14px;
        overflow: hidden;
    }

    .swiper-container::before,
    .swiper-container::after {
        display: none; /* hide side gradients on smaller screens */
    }

    

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

@media (max-width: 480px) {
    .swiper-container {
        width: 80%;
        height: 30vh; /* small height for mobile */
        padding: 0;
        border-radius: 12px;
        -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
    }

    .swiper-slide {
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

    .swiper-slide img {
        object-position: center top; /* show top part if vertical crop occurs */
    }
}

/* Ensure container stays centered inside page layout */
.swiper-container {
    box-sizing: border-box;
    display: block;
}

.swiper-wrapper { display: flex; width: 100%; height: 100%; }
.swiper-slide img { display: block; width: 100%; height: 100%; object-fit: contain; }





 .partners-section {
            width: 100%;
            padding: 80px 20px;
            background-color:#FAFAFA;
        }

        .partners-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .partners-title {
            font-size: 22px;
            font-weight: 400;
            color: #333;
            margin-bottom: 24px;
            text-align: left;
            letter-spacing: -0.5px;
        }

        .partners-title .highlight {
            color: #dc3545;
            font-weight: 400;
        }

        .partners-slider-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
            cursor: grab;
            padding: 20px 0;
        }

        .partners-slider-wrapper:active {
            cursor: grabbing;
        }

        .partners-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
            user-select: none;
        }

        .partner-slide {
            min-width: 200px;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .partner-logo {
            width: 100%;
            max-width: 160px;
            height: auto;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            transform: scale(1.05);
        }

        @media (max-width: 1024px) {
            .partners-section {
                padding: 60px 20px;
            }

            .partners-title {
                font-size: 36px;
                margin-bottom: 50px;
            }

            .partner-slide {
                min-width: 180px;
                padding: 0 18px;
            }

            .partner-logo {
                max-width: 140px;
            }
        }

        @media (max-width: 768px) {
            .partners-section {
                padding: 50px 20px;
            }

            .partners-title {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .partner-slide {
                min-width: 150px;
                padding: 0 15px;
            }

            .partner-logo {
                max-width: 120px;
            }
        }

        @media (max-width: 480px) {
            .partners-section {
                padding: 40px 15px;
            }

            .partners-title {
                font-size: 28px;
                margin-bottom: 35px;
            }

            .partner-slide {
                min-width: 130px;
                padding: 0 12px;
            }

            .partner-logo {
                max-width: 100px;
            }
        }






.footer {
  background: #FAFAFA;
  padding: 0px 174px;
  color: #333;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 300px;
  margin: 10px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.footer-column ul {
    margin-left: -0;
  list-style: none;
  padding-left: 0;
}

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

.footer-column ul li a {
  text-decoration: none;
  color: #ff0000;
  font-size: 15px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
}

.sister-org p {
  font-size: 17px;
  margin-bottom: 10px;
  
  color: #333;
}

.sister-org img {
  width: 120px;
  margin-top: 5px;
}

.social-icons {
  margin: 25px 0 10px 0;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  /* background-color: #f2f2f2; */
  color: #333;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  transition: 0.3s ease;
}
.social-icons a i img {
  display: inline-block;
  margin: 0 10px;
  /* background-color: #f2f2f2; */
  color: #333;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  /* background-color: #d40000; */
  color: #fff;
}

.footer p.copyright {
  font-size: 15px;
  color: #444;
  margin-top: 10px;
}
.wp-block-social-links .wp-social-link svg {
    height: 2em;
    width: 2em;
}
.text-white{
    color: #fff;
}
.text-center{
    text-align: center;
}
.position-relative{
position: relative;
z-index: 1;
}
.form-section p{
    margin: 0;
}
.form-group br {
    display: none;
}
input.wpcf7-form-control[type="submit"] {
    display: inline-block;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    transition: background-color 0.25s 
ease-out, color 0.25s 
ease-out;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 0.85em 1em;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    background-color: #ED2124;
    color: #fefefe;
}
.about-content h5 {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 0;
}


.about-content a {
    color: #ED2124;
}
/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 30px 40px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .sister-org img {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px;
  }

  .footer-column h3 {
    font-size: 18px;
  }

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

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}