/*
 * Alliance Grant Support — Global Brand & Theme Stylesheet
 * Primary: #df3128 (Crimson / Vibrant Red)
 * Website: #0e69c9 (Azure / Professional Blue)
 */

:root {
    --primary-color: #df3128;
    --primary-hover: #c4251e;
    --website-color: #0e69c9;
    --website-hover: #0b57a8;
    --wpo-theme-color: #df3128;
    --wpo-theme-color-s2: #0e69c9;
    --accent-color: #0e69c9;
    --dark-footer: #09243f;
    --surface-light: #f4f8fd;
}

/* 1. Preloader Suppression */
.preloader {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* 2. Prominent, Crisp Logo Sizing */
.wpo-site-header .navbar-header .navbar-brand {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 0 !important;
}

.wpo-site-header .navbar-header .navbar-brand img,
.navbar-brand img {
    height: 85px !important;
    max-height: 95px !important;
    width: auto !important;
    max-width: 400px !important;
    object-fit: contain !important;
    display: block !important;
    transition: transform 0.25s ease;
}

.wpo-site-header .navbar-header .navbar-brand:hover img {
    transform: scale(1.03);
}

.wpo-cta-footer .wpo-lower-footer .footer-bottom .logo img,
.footer-bottom .logo img,
.wpo-site-footer .logo img {
    height: 80px !important;
    max-height: 90px !important;
    width: auto !important;
    max-width: 360px !important;
    object-fit: contain !important;
    display: block !important;
}

@media (max-width: 991px) {
    .wpo-site-header .navbar-header .navbar-brand img,
    .navbar-brand img {
        height: 65px !important;
        max-height: 72px !important;
        max-width: 280px !important;
    }
    .wpo-cta-footer .wpo-lower-footer .footer-bottom .logo img,
    .footer-bottom .logo img,
    .wpo-site-footer .logo img {
        height: 65px !important;
        max-height: 72px !important;
        max-width: 280px !important;
    }
}

@media (max-width: 480px) {
    .wpo-site-header .navbar-header .navbar-brand img,
    .navbar-brand img {
        height: 52px !important;
        max-height: 58px !important;
        max-width: 220px !important;
    }
    .wpo-cta-footer .wpo-lower-footer .footer-bottom .logo img,
    .footer-bottom .logo img,
    .wpo-site-footer .logo img {
        height: 52px !important;
        max-height: 58px !important;
        max-width: 220px !important;
    }
}

/* 3. Primary (#df3128) and Website Theme (#0e69c9) Elements */

/* Primary Buttons */
.theme-btn,
.wpo-btn,
button.theme-btn,
a.theme-btn {
    background-color: #df3128 !important;
    color: #ffffff !important;
    border: 2px solid #df3128 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.theme-btn:hover,
.wpo-btn:hover,
button.theme-btn:hover,
a.theme-btn:hover {
    background-color: #0e69c9 !important;
    border-color: #0e69c9 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(14, 105, 201, 0.25) !important;
}

/* Secondary Buttons */
.theme-btn-s2,
a.theme-btn-s2 {
    background-color: #0e69c9 !important;
    color: #ffffff !important;
    border: 2px solid #0e69c9 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.theme-btn-s2:hover,
a.theme-btn-s2:hover {
    background-color: #df3128 !important;
    border-color: #df3128 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(223, 49, 40, 0.25) !important;
}

/* Navigation Links & Hover */
.wpo-site-header .navigation {
    padding: 0 15px !important;
}

.wpo-site-header .navbar-header {
    display: flex !important;
    align-items: center !important;
}

.wpo-site-header #navbar {
    display: flex !important;
    justify-content: center !important;
}

.wpo-site-header #navbar .navbar-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin: 0 !important;
}

@media screen and (min-width: 992px) {
    .wpo-site-header #navbar > ul > li > a {
        padding: 30px 11px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #1a202c !important;
        display: flex !important;
        align-items: center !important;
        transition: color 0.25s ease !important;
    }
    
    .wpo-site-header #navbar > ul > li > a:hover,
    .wpo-site-header #navbar > ul > li.current-menu-item > a,
    .wpo-site-header #navbar > ul > li > a.active {
        color: #df3128 !important;
    }

    .wpo-site-header #navbar > ul .sub-menu {
        border-radius: 12px !important;
        box-shadow: 0 12px 32px rgba(14, 105, 201, 0.12) !important;
        border: 1px solid rgba(14, 105, 201, 0.08) !important;
        padding: 12px 0 !important;
        top: 100% !important;
    }

    .wpo-site-header #navbar > ul .sub-menu li a {
        padding: 10px 22px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        color: #2d3748 !important;
        transition: all 0.2s ease !important;
    }

    .wpo-site-header #navbar > ul .sub-menu li a:hover {
        color: #df3128 !important;
        background-color: #f0f6ff !important;
        padding-left: 26px !important;
    }
}

.wpo-site-header .header-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.wpo-site-header .header-right .close-form {
    margin: 0 !important;
    float: none !important;
}

.wpo-site-header .header-right .close-form .theme-btn {
    padding: 12px 28px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    background-color: #df3128 !important;
    border: 2px solid #df3128 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 14px rgba(223, 49, 40, 0.2) !important;
    transition: all 0.3s ease !important;
}

.wpo-site-header .header-right .close-form .theme-btn:hover {
    background-color: #0e69c9 !important;
    border-color: #0e69c9 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(14, 105, 201, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* Star Ratings & Highlights */
.testimonial-item .icon li i,
.wpo-testimonial-section .icon li i,
.icon .flaticon-star {
    color: #df3128 !important;
}

/* CTA Footer Styling */
.wpo-cta-footer {
    background: #09243f !important;
}

.wpo-cta-footer .wpo-cta-wrap {
    background: linear-gradient(135deg, #0e69c9 0%, #084c94 60%, #df3128 160%) !important;
    box-shadow: 0 16px 36px rgba(14, 105, 201, 0.2) !important;
}

.wpo-cta-footer .wpo-lower-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.wpo-cta-footer .wpo-lower-footer .right li a:hover {
    color: #df3128 !important;
}

.wpo-cta-footer .wpo-lower-footer .copyright a {
    color: #5bb3ff !important;
}

.wpo-cta-footer .wpo-lower-footer .copyright a:hover {
    color: #df3128 !important;
}

/* Accent Badges, Service Cards & Active States */
.wpo-section-title span,
.wpo-section-title-s2 span,
.section-title span {
    color: #df3128 !important;
}

.service-card:hover,
.grant-card:hover,
.wpo-features-item:hover {
    border-color: #0e69c9 !important;
}

/* 4. Partners Page Big Number Badge */
.partner-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 800;
    color: #df3128;
    background: #f0f6ff;
    border: 2px solid rgba(14, 105, 201, 0.2);
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(14, 105, 201, 0.08);
    transition: all 0.3s ease;
    font-family: 'Parkinsans', 'Inter', -apple-system, sans-serif;
    line-height: 1;
}

.service-item:hover .partner-number {
    background: #df3128;
    color: #ffffff;
    border-color: #df3128;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(223, 49, 40, 0.25);
}

.wpo-service-section-s2 .service-item .service-content .service-text {
    padding-top: 20px !important;
}

/* 5. Testimonial Client Text (No Avatar) */
.testimonial-card .client {
    display: flex !important;
    align-items: center !important;
    padding-top: 25px !important;
}

.testimonial-card .client .client-text {
    margin-left: 0 !important;
}

.testimonial-card .client .client-text h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    margin: 0 0 4px !important;
}

.testimonial-card .client .client-text span {
    color: #df3128 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* 6. Hero & Breadcrumbs Background Images & Alignment */
.wpo-hero-static,
.wpo-hero-slider {
    position: relative !important;
    background-image: url('../img/WhatsApp Image 2026-08-28 at 12.26.55 PM.jpeg') !important;
    /* background-position: center center !important; */
    background-size: cover !important;
    background-repeat: no-repeat !important;
    min-height: 750px !important;
    height: 80vh !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    border-radius: 30px !important;
    margin: 0 30px 40px !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.wpo-hero-static::before,
.wpo-hero-slider::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, rgba(7, 24, 44, 0.65) 0%, rgba(9, 30, 52, 0.45) 55%, rgba(0, 0, 0, 0.15) 100%) !important;
    z-index: 1 !important;
    border-radius: 30px !important;
}

.wpo-hero-static .container-fluid,
.wpo-hero-slider .container-fluid {
    position: relative !important;
    z-index: 2 !important;
    padding: 0 !important;
    width: 100% !important;
}

.wpo-hero-static .hero-item,
.wpo-hero-slider .hero-item {
    margin-left: 80px !important;
}

.wpo-hero-static .hero-content,
.wpo-hero-slider .hero-content {
    text-align: start !important;
    padding-bottom: 80px !important;
    max-width: 720px !important;
}

.wpo-hero-static .hero-content p,
.wpo-hero-slider .hero-content p {
    margin: 0 0 20px 0 !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    background: rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    display: inline-block !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
}

.wpo-hero-static .hero-content .text-item,
.wpo-hero-slider .hero-content .text-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 35px !important;
}

.wpo-hero-static .hero-content h2,
.wpo-hero-slider .hero-content h2 {
    margin: 0 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 58px !important;
    line-height: 1.15 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35) !important;
    letter-spacing: -0.5px !important;
}

.wpo-hero-static .hero-content h2 span,
.wpo-hero-slider .hero-content h2 span {
    color: #df3128 !important;
    position: relative !important;
    display: inline-block !important;
}

.wpo-hero-static .hero-content h2 span::after,
.wpo-hero-slider .hero-content h2 span::after {
    display: none !important;
}

.wpo-hero-static .hero-btn,
.wpo-hero-slider .hero-btn {
    margin-top: 0 !important;
}

.wpo-hero-static .hero-btn ul,
.wpo-hero-slider .hero-btn ul {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-wrap: wrap !important;
}

.wpo-hero-static .hero-btn ul li,
.wpo-hero-slider .hero-btn ul li {
    display: inline-block !important;
}

@media (max-width: 1199px) {
    .wpo-hero-static,
    .wpo-hero-slider {
        margin: 0 15px 30px !important;
        border-radius: 20px !important;
    }
    .wpo-hero-static::before,
    .wpo-hero-slider::before {
        border-radius: 20px !important;
    }
    .wpo-hero-static .hero-item,
    .wpo-hero-slider .hero-item {
        margin-left: 30px !important;
    }
    .wpo-hero-static .hero-content h2,
    .wpo-hero-slider .hero-content h2 {
        font-size: 46px !important;
    }
}

@media (max-width: 767px) {
    .wpo-hero-static,
    .wpo-hero-slider {
        margin: 0 0 20px !important;
        border-radius: 0 !important;
        min-height: 580px !important;
        height: auto !important;
        padding-top: 130px !important;
        padding-bottom: 60px !important;
    }
    .wpo-hero-static::before,
    .wpo-hero-slider::before {
        border-radius: 0 !important;
    }
    .wpo-hero-static .hero-item,
    .wpo-hero-slider .hero-item {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }
    .wpo-hero-static .hero-content,
    .wpo-hero-slider .hero-content {
        padding-bottom: 0 !important;
    }
    .wpo-hero-static .hero-content h2,
    .wpo-hero-slider .hero-content h2 {
        font-size: 34px !important;
        line-height: 1.25 !important;
    }
    .wpo-hero-static .hero-btn ul,
    .wpo-hero-slider .hero-btn ul {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    .wpo-hero-static .hero-btn ul li a,
    .wpo-hero-slider .hero-btn ul li a {
        width: 100% !important;
        text-align: center !important;
    }
}


.wpo-page-title {
    background-image: url('../img/WhatsApp Image 2026-08-28 at 12.26.48 PM.jpeg');
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    min-height: 400px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 140px 0 90px 0 !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

/* Lightened breadcrumb overlay */
.wpo-page-title:before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(8, 22, 38, 0.28) 0%, rgba(12, 50, 95, 0.22) 100%) !important;
    opacity: 0.85 !important;
    z-index: 1 !important;
}

/* Dedicated breadcrumb background images for each grant */
.wpo-page-title.page-title-business {
    background-image: url('../img/breadcrumb-business.jpg') !important;
}

.wpo-page-title.page-title-education {
    background-image: url('../img/breadcrumb-education.jpg') !important;
}

.wpo-page-title.page-title-disaster {
    background-image: url('../img/breadcrumb-disaster.jpg') !important;
}

.wpo-page-title.page-title-individual {
    background-image: url('../img/breadcrumb-individual.jpg') !important;
}

.wpo-page-title.page-title-grants {
    background-image: url('../img/breadcrumb-business.jpg') !important;
}

.wpo-page-title.page-title-partners {
    background-image: url('../img/breadcrumb-partners.jpg') !important;
}

.wpo-page-title .container,
.wpo-page-title .wpo-breadcumb-wrap {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
}

.wpo-page-title .wpo-breadcumb-wrap h2 {
    color: #ffffff !important;
    font-size: 52px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.wpo-page-title .wpo-breadcumb-wrap ol {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50px !important;
    padding: 8px 24px !important;
    margin: 0 auto !important;
    list-style: none !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
}

.wpo-page-title .wpo-breadcumb-wrap ol li {
    font-size: 15px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 0 !important;
}

.wpo-page-title .wpo-breadcumb-wrap ol li a {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: color 0.2s ease !important;
}

.wpo-page-title .wpo-breadcumb-wrap ol li a:hover {
    color: #df3128 !important;
}

.wpo-page-title .wpo-breadcumb-wrap ol li:after {
    content: "•" !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px !important;
    margin: 0 10px !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    display: inline-block !important;
}

.wpo-page-title .wpo-breadcumb-wrap ol li:last-child:after {
    display: none !important;
}

@media (max-width: 767px) {
    .wpo-page-title {
        min-height: 300px !important;
        padding: 120px 0 60px 0 !important;
    }
    .wpo-page-title .wpo-breadcumb-wrap h2 {
        font-size: 34px !important;
    }
    .wpo-page-title .wpo-breadcumb-wrap ol {
        padding: 6px 16px !important;
    }
    .wpo-page-title .wpo-breadcumb-wrap ol li {
        font-size: 13px !important;
    }
}

/* 7. Service Item Full Div Images & Equal Alignment */
.wpo-service-section .wpo-service-wrap .row,
.wpo-service-section-s2 .wpo-service-wrap .row {
    display: flex;
    flex-wrap: wrap;
}

.wpo-service-section .service-item,
.wpo-service-section-s2 .service-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 16px 16px 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.wpo-service-section .service-item:hover,
.wpo-service-section-s2 .service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(14, 105, 201, 0.15);
}

.wpo-service-section .service-item .icon,
.wpo-service-section-s2 .service-item .icon {
    width: 100% !important;
    height: 200px !important;
    max-height: 220px !important;
    margin: 0 0 20px 0 !important;
    overflow: hidden !important;
    border-radius: 14px !important;
}

.wpo-service-section .service-item .icon img,
.wpo-service-section-s2 .service-item .icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    display: block !important;
    transition: transform 0.4s ease !important;
}

.wpo-service-section .service-item:hover .icon img,
.wpo-service-section-s2 .service-item:hover .icon img {
    transform: scale(1.08) !important;
}

.wpo-service-section .service-item .service-content,
.wpo-service-section-s2 .service-item .service-content {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    justify-content: space-between !important;
    height: 100% !important;
}

.wpo-service-section .service-item .service-content .service-text,
.wpo-service-section-s2 .service-item .service-content .service-text {
    padding-top: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    justify-content: space-between !important;
}

.wpo-service-section .service-item .service-content .service-text h3,
.wpo-service-section-s2 .service-item .service-content .service-text h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    padding-bottom: 0 !important;
}

.wpo-service-section .service-item .service-content .service-text h3 a,
.wpo-service-section-s2 .service-item .service-content .service-text h3 a {
    color: #1a202c !important;
    transition: color 0.3s ease !important;
}

.wpo-service-section .service-item .service-content .service-text h3 a:hover,
.wpo-service-section-s2 .service-item .service-content .service-text h3 a:hover {
    color: #df3128 !important;
}

.wpo-service-section .service-item .service-content .service-text p,
.wpo-service-section-s2 .service-item .service-content .service-text p {
    flex-grow: 1 !important;
    margin-bottom: 18px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #555555 !important;
}

.wpo-service-section .service-btn,
.wpo-service-section-s2 .service-btn {
    margin-top: auto !important;
    padding-top: 8px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.wpo-service-section .read-more-btn,
.wpo-service-section-s2 .read-more-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: var(--wpo-theme-color, #df3128) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    padding: 4px 0 !important;
    text-decoration: none !important;
}

.wpo-service-section .read-more-btn i,
.wpo-service-section-s2 .read-more-btn i {
    font-size: 12px !important;
    transition: transform 0.3s ease !important;
}

.wpo-service-section .read-more-btn:hover,
.wpo-service-section-s2 .read-more-btn:hover {
    color: #0e69c9 !important;
    transform: translateX(4px) !important;
}

.wpo-service-section .read-more-btn:hover i,
.wpo-service-section-s2 .read-more-btn:hover i {
    transform: translateX(3px) !important;
}

/* 8. Service Sidebar Category Icon Alignment */
.service-catagory ul li a i.ti-book {
    font-size: 19px !important;
    line-height: 1 !important;
    vertical-align: middle !important;
    display: inline-block !important;
    width: 24px !important;
    text-align: center !important;
}

.service-catagory ul li a i[class^="flaticon-"] {
    width: 24px !important;
    display: inline-block !important;
    text-align: center !important;
    vertical-align: middle !important;
}

/* 9. Topbar Working Hours & Contact Header */
.topbar {
    background: #061b30 !important;
    padding: 7px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.topbar .container-fluid {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.topbar-contact-info ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.topbar-contact-info ul li {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    flex-wrap: wrap !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 12px !important;
    letter-spacing: 0.2px !important;
}

.topbar-contact-info ul li .working-title {
    color: #ffffff !important;
    font-weight: 700 !important;
    margin-right: 3px !important;
    font-size: 12px !important;
}

.topbar-contact-info ul li i.fi,
.topbar-contact-info ul li i.flaticon-clock {
    color: #df3128 !important;
    font-size: 13px !important;
    margin-right: 4px !important;
}

.topbar-contact-info ul li .working-time {
    color: rgba(255, 255, 255, 0.85) !important;
    position: relative !important;
    padding-left: 10px !important;
    font-size: 11.5px !important;
    font-weight: 500 !important;
}

.topbar-contact-info ul li .working-time::before {
    display: none !important;
}

.topbar-contact-info ul li .working-time + .working-time::before {
    content: "|" !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    color: rgba(255, 255, 255, 0.35) !important;
}

.topbar-contact-phone {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.topbar-contact-phone a {
    color: #ffffff !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.topbar-contact-phone a:hover {
    color: #5bb3ff !important;
}

.topbar-contact-phone a i.fi,
.topbar-contact-phone a i.flaticon-phone-call {
    color: #df3128 !important;
    font-size: 12px !important;
}

@media (max-width: 991px) {
    .topbar {
        padding: 6px 10px !important;
    }
    .topbar-contact-info ul {
        justify-content: center !important;
    }
    .topbar-contact-info ul li {
        justify-content: center !important;
        font-size: 11px !important;
        gap: 5px !important;
    }
    .topbar-contact-info ul li .working-time {
        padding-left: 5px !important;
        font-size: 10.5px !important;
    }
    .topbar-contact-phone {
        justify-content: center !important;
        margin-top: 4px !important;
    }
}

/* Header Contact Item with Phone Icon */
.wpo-site-header .header-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 15px !important;
}

.wpo-site-header .header-right .header-contact {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-right: 15px !important;
}

.wpo-site-header .header-right .header-contact .header-contact-icon a {
    width: 40px !important;
    height: 40px !important;
    background: #f0f6ff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #df3128 !important;
    font-size: 15px !important;
    border: 1px solid rgba(14, 105, 201, 0.15) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.wpo-site-header .header-right .header-contact:hover .header-contact-icon a {
    background: #df3128 !important;
    color: #ffffff !important;
    border-color: #df3128 !important;
}

.wpo-site-header .header-right .header-contact .header-contact-text a {
    text-decoration: none !important;
}

.wpo-site-header .header-right .header-contact .header-contact-text span {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    white-space: nowrap !important;
    transition: color 0.25s ease !important;
}

.wpo-site-header .header-right .header-contact:hover .header-contact-text span {
    color: #df3128 !important;
}

@media (max-width: 1199px) {
    .wpo-site-header .header-right .header-contact {
        display: none !important;
    }
}

/* Contact Page Office Info Cards */
.wpo-contact-page .office-info {
    padding-bottom: 50px !important;
}

.wpo-contact-page .office-info .office-info-item {
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    padding: 36px 24px !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
    min-height: 220px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.wpo-contact-page .office-info .office-info-item::before {
    display: none !important;
}

.wpo-contact-page .office-info .office-info-item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 36px rgba(14, 105, 201, 0.12) !important;
    border-color: rgba(14, 105, 201, 0.25) !important;
}

.wpo-contact-page .office-info .office-info-item .office-info-icon {
    width: 60px !important;
    height: 60px !important;
    background: #f0f6ff !important;
    border-radius: 50% !important;
    margin: 0 auto 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(14, 105, 201, 0.15) !important;
    transition: all 0.3s ease !important;
}

.wpo-contact-page .office-info .office-info-item:hover .office-info-icon {
    background: #df3128 !important;
    border-color: #df3128 !important;
}

.wpo-contact-page .office-info .office-info-item .office-info-icon .fi:before {
    font-size: 24px !important;
    color: #0e69c9 !important;
    transition: all 0.3s ease !important;
}

.wpo-contact-page .office-info .office-info-item:hover .office-info-icon .fi:before {
    color: #ffffff !important;
}

.wpo-contact-page .office-info .office-info-item .office-info-text h2,
.wpo-contact-page .office-info .office-info-item .office-info-text h2 span {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    margin: 0 0 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-transform: none !important;
}

.wpo-contact-page .office-info .office-info-item .office-info-text h2 i.fi {
    color: #df3128 !important;
    font-size: 20px !important;
}

.wpo-contact-page .office-info .office-info-item .office-info-text p {
    font-size: 15px !important;
    color: #4a5568 !important;
    margin: 0 !important;
    line-height: 1.75 !important;
}

.wpo-contact-page .office-info .office-info-item .office-info-text p a {
    color: #1a202c !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.wpo-contact-page .office-info .office-info-item .office-info-text p a:hover {
    color: #df3128 !important;
}

/* 10. Service Single Page Title Image Reduced & Refined */
.wpo-service-single-page .service-single-wrap .title-image,
.wpo-service-single-page .case-details-left .title-image {
    max-height: 360px !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    margin-bottom: 25px !important;
}

.wpo-service-single-page .service-single-wrap .title-image img,
.wpo-service-single-page .case-details-left .title-image img {
    width: 100% !important;
    height: 380px !important;
    max-height: 380px !important;
    object-fit: cover !important;
    object-position: center 46% !important;
    border-radius: 16px !important;
}

@media (max-width: 767px) {
    .wpo-service-single-page .service-single-wrap .title-image,
    .wpo-service-single-page .case-details-left .title-image,
    .wpo-service-single-page .service-single-wrap .title-image img,
    .wpo-service-single-page .case-details-left .title-image img {
        max-height: 240px !important;
        height: 240px !important;
    }
}


