/*
Theme Name:     FilGlobal Child
Theme URI:      https://fil-global.com
Description:    A child theme for Astra
Author:         Fil-Global Web Team
Author URI:     https://fil-global.com
Template:       astra
Version: 4.11.5
Text Domain:    filglobal-child
*/

/* Container for the image and the links */
.custom-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
}

/* Image styling */
.custom-image-container img {
    width: 100%;
    height: auto;
    transition: filter 0.3s ease;
}

/* Common Link Styling */
.custom-link-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: transparent;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    visibility: hidden;
    z-index: 1;
    transition: color 0.3s ease, font-size 0.3s ease;
    display: block;
    margin: 5px 0;
    white-space: nowrap;
    /* Prevents text wrapping */
}

/* Styling for the Learn More button */
.custom-learn-more {
    top: 60%;
}

/* Hover effect on image */
.custom-image-container:hover img {
    filter: brightness(60%);
}

/* Hover effect on links */
.custom-image-container:hover .custom-link-text {
    visibility: visible;
    color: #FFA500;
}

/* Underline effect */
.custom-link-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    /* Adjusted for better visibility */
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: #FFA500;
    transition: width 0.3s ease;
}

/* Hover and focus effect */
.custom-link-text:hover::after,
.custom-link-text:focus::after {
    width: 100%;
}

/* Responsive: Adjust font size for smaller screens */
@media (max-width: 768px) {
    .custom-link-text {
        font-size: 22px;
        /* Adjust for tablets */
    }
}

@media (max-width: 480px) {
    .custom-link-text {
        font-size: 14px;
        /* Adjust for mobile */
    }
}









/* Default grid layout */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns by default */
    gap: 20px;
}

/* Responsive layout for tablets */
@media (max-width: 1024px) {
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
    }
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
    .agents-grid {
        grid-template-columns: 1fr;
        /* 1 column for mobile */
    }
}

/* Individual agent card layout */
.agent-card {
    display: flex;
    gap: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    align-items: center;
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Left column for the image */
.left-col {
    flex-shrink: 0;
}

.left-col img.agent-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Right column for agent details */
.right-col {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-col strong {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
}

.right-col p {
    margin: 5px 0;
    color: black;
    font-size: 0.9em;
}

/* Common styles for lead and team titles */
.lead-title,
.team-title {
    background: linear-gradient(90deg, #0E0EB4, #06064E);
    color: white;
    font-weight: 600;
    /* Semi-bold */
    padding: 10px 50px;
    /* Compact padding */
    border-radius: 25px;
    /* Rounded corners */
    text-align: center;
    display: inline-block;
    /* Adjust width to content */
    min-width: 150px;
    /* Default button width */
    margin-bottom: 20px;
    margin-top: 20px;
}













.careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Always 3 columns */
    gap: 20px;
    padding: 20px;
}

@media (max-width: 1024px) {
    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .careers-grid {
        grid-template-columns: repeat(1, 1fr);
        /* 1 column on mobile */
    }
}

.career-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    /* Align text to start */
    transition: transform 0.2s ease-in-out;
    padding: 15px;
    /* Standard padding for text */
}

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

.career-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.career-content {
    padding: 15px;
}

.career-content h3 {
    color: #06064E;
    /* Job title color */
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.career-content p {
    color: #000;
    /* Department text in black */
    font-size: 1rem;
    margin-bottom: 10px;
}

.career-button {
    display: block;
    /* Full width */
    padding: 12px;
    margin-top: 10px;
    text-align: center;
    background: linear-gradient(to right, #991B1B, #DC2626);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.career-button:hover {
    opacity: 0.9;
    color: #fff;
}











.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Always 3 columns */
    gap: 20px;
    padding: 20px;
    align-items: stretch;
    /* Ensure equal height */
}

@media (max-width: 1024px) {
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.branch-card,
.branch-card-first {
    border: 2px solid #1E3A8A;
    border-radius: 25px;
    padding: 20px;
    text-align: start;
    transition: transform 0.2s ease-in-out;
    background: #fff;
    color: #1E3A8A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Ensures spacing */
    height: 100%;
    /* Make all cards the same height */
}

.branch-card-first {
    background: linear-gradient(to right, #1D4ED8, #1E3A8A);
    color: #fff;
}

.branch-card:hover,
.branch-card-first:hover {
    transform: translateY(-5px);
}

.branch-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.branch-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Standard spacing */
    flex-grow: 1;
    /* Ensures text fills space evenly */
}

.branch-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: inherit;
}

/* Set branch name to white only on the first card */
.branch-card-first .branch-content h3 {
    color: #fff;
}

.branch-content p {
    font-size: 1rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .elementor-header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
        background: white;
        /* Adjust background color */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    body {
        padding-top: 60px;
        /* Adjust based on header height */
    }
}


.promo-card {
    width: 280px;
    background: white;
    /* White background on all screens */
    border-radius: 10px;
    border: 2px solid red;
    /* Solid red border */
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
    /* Permanent shadow */
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* Background image (only on larger screens) */
    background: url('https://www.fil-global.com/wp-content/uploads/2025/02/promo-bg.png') no-repeat center center;
    background-size: cover;
}

.promo-card-test {
    width: 280px;
    background: white;
    /* White background on all screens */
    border-radius: 10px;
    border: 2px solid red;
    /* Solid red border */
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
    /* Permanent shadow */
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* Background image (only on larger screens) */
    background: url('https://www.fil-global.com/wp-content/uploads/2025/02/promo-bg.png') no-repeat center center;
    background-size: cover;
}

/* Override for mobile */
@media (max-width: 768px) {
    .promo-card {
        background: white !important;
        /* Force white background on mobile */
        padding-left: 0 !important;
        /* Remove left padding */
    }
}


/* Ensure the parent container does not clip the shadow */
.promo-cards {
    overflow: visible;
    background: #f5f5f5;
    /* Light grey to make the shadow more visible */
    padding: 20px;
    /* Add some space to see the shadow effect */
}



.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    /* More pronounced shadow on hover */
}


.promo-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo-card p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo-card strong {
    color: #222;
    font-weight: 600;
}

/* Ensure padding on the right */
.promo-card-body {
    padding-left: 105px;
}

/* Remove border-bottom from the header */
.promo-card-header {
    color: #06064E;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: none !important;
    /* Remove border */
}


/* Make the menu scrollable */
.mega-menu .mega-sub-menu {
    max-height: 300px;
    /* Adjust as needed */
    overflow-y: auto;
    /* Enable scrolling */
}


.event-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    /* Center by default */
    align-items: flex-start;
}

/* Align to the start if there are only 1 or 2 cards */
@media (min-width: 600px) {
    .event-container:has(.event-card:nth-child(2)) {
        justify-content: flex-start;
    }
}

.event-card {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1),
        0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

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

/* Title - Black text, no background */
.event-card-header {
    color: #000;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.event-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align the cards */
    gap: 20px;
    /* Spacing between cards */
    width: 100%;
}

.event-card {
    width: 100%;
    max-width: 600px;
    /* Set a max width for better readability */
    background: #fff;
    /* Optional: Add background */
    border-radius: 8px;
    /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional: Add shadow for depth */
    overflow: hidden;
    /* Ensures no content overflows */
}

.event-card-body {
    padding: 20px;
    text-align: center;
}

.event-card-body p {
    margin: 8px 0;
    color: #333;
    /* Slightly darker text for readability */
    font-size: 14px;
}

/* Button with gradient and NO hover effect */
.event-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    /* Reduced padding for a smaller button */
    background: linear-gradient(90deg, #991B1B, #DC2626);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    /* Slightly smaller rounded corners */
    width: auto;
    /* Makes the button fit its text content */
    font-size: 14px;
    /* Reduced font size */
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

/* Optional: Subtle hover effect */
.event-btn:hover {
    opacity: 0.9;
}



.promo-container {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    gap: 20px;
    width: 100%;
    max-width: 800px;
    /* Adjust for better readability */
    margin: 0 auto;
    /* Center the container */
}

.promo-card {
    display: block;
    width: 100%;
    /* Makes the card full width */
    background: #ffffff;
    /* Clean white background */
    border-radius: 12px;
    /* Slightly rounded edges */
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    /* Soft shadow */
    text-decoration: none;
    /* Remove underline */
    color: inherit;
    /* Keep text colors */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
    /* Slightly deeper shadow on hover */
}

.promo-card-header {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin-bottom: 8px;
    padding-left: 15px;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 16px;
    /*     color: #444; */
    gap: 6px;
    padding-left: 15px;
}

.promo-card-body p {
    margin: 3px 0;
    font-size: 15px;
    line-height: 1.4;
}

.promo-card-body strong {
    color: #000;
    font-weight: 600;
}

/* Mobile Styling */
@media (max-width: 768px) {
    .promo-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .promo-card {
        padding: 18px;
    }

    .promo-card-header {
        font-size: 18px;
        padding-left: 10px;
    }

    .promo-card-body {
        font-size: 14px;
        padding-left: 10px;
    }
}


.payments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Always 3 columns */
    gap: 20px;
    padding: 20px;
}

@media (max-width: 900px) {

    /* Adjust breakpoint as needed */
    .payments-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Switch to 2 columns */
    }
}

@media (max-width: 600px) {
    .payments-grid {
        grid-template-columns: repeat(1, 1fr);
        /* Switch to 1 column */
    }
}


.payment-card {
    text-align: center;
    padding: 30px;
    /* Reduced padding to make it more balanced */
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* Ensures even spacing */
}

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

.payment-circle {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 15px;
    /* Adjusted spacing */
}

.payment-circle img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.payment-title {
    color: #06064E;
    margin: 10px 20px;
    font-size: 18px;
    font-weight: bold;
}


.pay-now-btn {
    background: linear-gradient(to right, #991B1B, #DC2626);
    color: white;
    border: none;
    padding: 18px 25px;
    width: 100%;
    border-radius: 15px;
    margin-top: 15px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
}

.payments-title {
    color: #06064E;
    text-align: center;
    font-size: 24px;
    /* Adjust size if needed */
    font-weight: bold;
    margin-bottom: 20px;
    /* Add spacing */
}


















/* Modal Styling */
/* Modal Styling */
.payment-modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    /* Use fixed instead of absolute */
    z-index: 9999;
    /* Ensure it's on top */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    /* Hide initially */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    padding: 20px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.payment-modal.active {
    visibility: visible;
    opacity: 1;
    display: flex;
}

/* When modal is active */
.payment-modal.active {
    visibility: visible;
    opacity: 1;
    display: flex;
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    border-radius: 15px;
    max-height: 85vh;
    /* Prevent modal from overflowing on mobile */
    overflow-y: auto;
    /* Enable scrolling inside modal */
    position: relative;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: white;
    color: #DC2626;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.close-btn:hover {
    background: #B91C1C;
    color: white;
    transform: scale(1.1);
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 15px;
}

.modal-header-logo img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Payment Icon */
.modal-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 10px;
}

.modal-circle img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
}

/* QR Code Container */
.qr-container {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    max-width: 200px;
}

.qr-text {
    color: #06064E;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.qr-code {
    max-width: 150px;
    width: 100%;
    display: block;
    border-radius: 8px;
}

/* Pay Now Button */
.pay-now-btn {
    background: linear-gradient(to right, #991B1B, #DC2626);
    color: white;
    border: none;
    padding: 18px 25px;
    width: 100%;
    border-radius: 15px;
    margin-top: 15px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .modal-content {
        width: 90%;
        padding: 15px;
        max-height: 85vh;
    }

    .qr-container {
        max-width: 160px;
    }

    .qr-text {
        font-size: 16px;
    }
}



/* Mobile Payments Grid */

.payments-title-mobile {
    color: #06064E;
    text-align: center;
    font-size: 22px;
    /* Adjust font size for mobile */
    font-weight: bold;
    margin-bottom: 15px;
    /* Adjust spacing */
}

@media (max-width: 480px) {
    .payments-title-mobile {
        font-size: 18px;
        /* Smaller size for smaller screens */
        margin-bottom: 10px;
    }
}




.payments-grid-mobile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px;
}

.payment-card-mobile {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-circle-mobile {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-circle-mobile img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10%;
}

.payment-title-mobile {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.pay-now-btn-mobile {
    background: linear-gradient(to right, #991B1B, #DC2626);
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}

/* Mobile Payments Grid */
.payments-grid-mobile {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column */
    gap: 10px;
    padding: 10px;
    width: 100%;
    /* Full width */
}

.payment-card-mobile {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* Full width */
}

.payment-circle-mobile {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-circle-mobile img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.payment-title-mobile {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.pay-now-btn-mobile {
    background: linear-gradient(to right, #991B1B, #DC2626);
    text-transform: uppercase;
    color: white;
    border: none;
    padding: 15px;
    width: 80%;
    border-radius: 10px;
    cursor: pointer;
}

/* Mobile Modal Styling */
.payment-modal-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-header-logo-mobile {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    margin-bottom: 15px;
}

.modal-content-mobile {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.close-btn-mobile {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #333;
}

.modal-header-logo-mobile img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.qr-text-mobile {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.info-text-mobile {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.modal-header-mobile {
    margin-bottom: 15px;
}

.modal-circle-mobile {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-circle-mobile img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.qr-container-mobile {
    margin: 15px 0;
}

.qr-container-mobile img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .modal-content-mobile {
        padding: 15px;
    }

    .modal-header-logo-mobile img {
        max-width: 120px;
        /* Adjust as needed */
        height: auto;

    }

    .qr-text-mobile {
        font-size: 16px;
    }

    .info-text-mobile {
        font-size: 12px;
    }
}



/* 📌 Mobile Payment Branches Title */
.payments-title-mobile {
    color: #06064E;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .payments-title-mobile {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* 📌 Payments List Mobile */
.payments-list-mobile {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column layout */
    gap: 10px;
    padding: 10px;
    width: 100%;
}

/* 📌 Individual Payment Card */
.payment-item-mobile {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* 📌 Payment Image */
.payment-image-mobile {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-image-mobile img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* 📌 Payment Branch Title */
.payment-title-mobile {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

/* 📌 Search Branch Button (🔴 Remains Red) */
.search-branch-btn-mobile {
    display: block;
    background: linear-gradient(to right, #991B1B, #DC2626);
    /* Red gradient */
    color: white;
    border: none;
    padding: 12px;
    width: 80%;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin: 10px auto;
    text-decoration: none;
}

.search-branch-btn-mobile:hover {
    opacity: 0.9;
}

/* 📌 How to Pay Link (🔵 Light Blue, No Underline) */
.how-to-pay-link-mobile {
    display: inline-block;
    color: #3B82F6;
    /* Light blue */
    font-size: 14px;
    text-decoration: none;
    /* No underline */
    font-weight: bold;
    margin-top: 5px;
}

.how-to-pay-link-mobile:hover {
    text-decoration: underline;
    /* Optional hover effect */
}

/* 📌 Mobile Modal */
.payment-modal-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* 📌 Modal Content */
.modal-content-mobile {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    height: 500px;
    max-height: 80vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
}

/* 📌 Close Button */
.close-btn-mobile {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* 📌 Payment Branches Title (Desktop & Mobile) */
.payments-title,
.payments-title-mobile {
    color: #06064E;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

@media (max-width: 480px) {

    .payments-title,
    .payments-title-mobile {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* 📌 Payments Grid (Desktop) */
.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 10px;
}

/* 📌 Individual Payment Card (Desktop & Mobile) */
.payment-card,
.payment-item-mobile {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* 📌 Payment Image (Desktop & Mobile) */
/* 📌 Payment Image (Desktop & Mobile) */
.payment-circle,
.payment-image-mobile {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-circle img,
.payment-image-mobile img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* 📌 Payment Branch Title (Desktop & Mobile) */
.payment-title,
.payment-title-mobile {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

/* 📌 Search Branch Button (🔴 No Underline, No Hover) */
.pay-now-btn,
.search-branch-btn-mobile {
    display: block;
    background: linear-gradient(to right, #991B1B, #DC2626);
    color: white;
    border: none;
    padding: 12px;
    width: 80%;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin: 10px auto;
    text-decoration: none !important;
    /* Remove underline */
    pointer-events: auto;
    /* Ensure button is clickable */
}

/* 📌 How to Pay Link (🔵 No Underline, No Hover, Desktop & Mobile) */
.how-to-pay-link,
.how-to-pay-link-mobile {
    display: inline-block;
    color: #3B82F6;
    font-size: 14px;
    text-decoration: none !important;
    /* Remove underline */
    font-weight: bold;
    margin-top: 5px;
    pointer-events: auto;
    /* Ensure link is clickable */
}

.how-to-pay-link:hover,
.how-to-pay-link-mobile:hover,
.how-to-pay-link:active,
.how-to-pay-link-mobile:active {
    text-decoration: none !important;
    color: #1E3A8A;
    /* Slightly darker blue */
}

/* 📌 Mobile Modal */
.payment-modal-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* 📌 Modal Content (Mobile) */
.modal-content-mobile {
    background: #E7E7FF;
    /* Light blue background */
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    text-align: start;
    /* Align text to the left */
    position: relative;
}

/* 📌 Modal Title - How to Pay {Branch Name} */
#modalBranchTitleMobile {
    font-size: 18px;
    font-weight: bold;
    text-align: start;
    /* Align left */
}

/* 📌 Close Button (Mobile) */
.close-btn-mobile {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #333;
}

/* 📌 Scrollbar Styling (Optional) */
.modal-content-mobile::-webkit-scrollbar {
    width: 5px;
}

.modal-content-mobile::-webkit-scrollbar-thumb {
    background: #1E40AF;
    border-radius: 5px;
}

.modal-content-mobile::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* 📌 Responsive Adjustments */
@media (max-width: 480px) {
    .modal-content-mobile {
        width: 90%;
        max-height: 90vh;
        height: auto;
        padding: 15px;
    }

    .close-btn-mobile {
        font-size: 22px;
    }
}




/* Desktop Modal Styles */
.desktop-payment-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.desktop-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}

.desktop-close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.desktop-close-btn:hover,
.desktop-close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Mobile Modal Styles */
.payment-modal-mobile {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content-mobile {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}

.close-btn-mobile {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn-mobile:hover,
.close-btn-mobile:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* BLOGS & NEWS */

/* .custom-blog-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.blog-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.blog-card h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #1a202c;
}

.blog-card p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 10px;
}

.blog-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.blog-card a {
    display: inline-block;
    margin-top: 10px;
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
}

.blog-card a:hover {
    text-decoration: underline;
} */








.custom-post-password-form {
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    background: #fff0f5;
    border: 2px solid #d63384;
    border-radius: 8px;
    font-family: sans-serif;
}

.custom-post-password-form p {
    margin-bottom: 15px;
}

.custom-post-password-form input[type="password"] {
    padding: 8px 10px;
    border: 1px solid #d63384;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.custom-post-password-form input[type="submit"] {
    background: #d63384;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.custom-protected-message {
    font-size: 1rem;
    color: #880e4f;
    font-weight: bold;
}






/* === Responsive === */
@media (max-width: 1024px) {
    .custom-blog-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .custom-blog-list {
        grid-template-columns: 1fr !important;
    }
}


.job-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.job-details h2 {
    margin-bottom: 15px;
    color: #222;
}

.job-details-table {
    width: 100%;
    border-collapse: collapse;
}

.job-details-table th {
    text-align: left;
    width: 150px;
    padding: 8px 0;
    color: #444;
}

.job-details-table td {
    padding: 8px 0;
}

.download-btn {
    background: #0073aa;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
}

.download-btn:hover {
    background: #005c87;
}