:root{
    --hero-heading-font-size:6rem;
    --title-lg-font-size: 2.0rem !important;
    --my-global-color-secondary : rgb(241 244 248);
    --my-global-color-primary: rgb(50, 51, 140);
    --global-primary-white: rgb(255, 255, 255);
    --font-family-spartan: "Spartan"
}
.announcement-bar {
    background-color: var(--my-global-color-secondary) !important;
}

.work-v1-section .work-cards-wrapper .image-box-content .icon {
    width: -moz-max-content;
    width: max-content;
    font-size: 7rem;
    height: 7rem;
    color: var(--my-global-color-secondary) !important;
    fill: var(--my-global-color-secondary) !important;

}

.work-v1-section .work-cards-wrapper .reveal {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    cursor: pointer;
    background-color: var(--my-global-color-secondary) !important;
    border-radius: 50%;
    transition: all .25s ease;
    --size: 20px;
    --width: calc(20px* 0.6);
    --height: calc(20px* 0.1);
    width: 20px;
    height: 20px;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .nav-link.active .icon, .toggle-card-section .toggle-card-wrapper .rodio-tabs .nav-link:hover .icon {
    fill: var(--my-global-color-secondary)  !important;
}

.work-v1-section .work-cards-wrapper .image-box-content h4 {
    font-size: 2.0rem !important;
    font-family: var(--font-family-spartan) !important;
    line-height: 4rem !important;
    font-weight: 600 !important;
    color: var(--global-primary-white) !important;
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}


.hero-section-1 .hs1 .hs1-content .hs1-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform-origin: center center !important;
    animation-name: bgAnim1 !important;
    animation-iteration-count: infinite !important;
    animation-duration: 10s !important;
    animation-direction: alternate !important;
    animation-timing-function: linear !important;
    filter: grayscale(100%) !important; /* Apply grayscale effect */
}

.hero-section-1 .hs1 .hero-main-content {
    position: relative; /* Ensure content is above overlay */
    overflow: hidden; /* Prevents any overflow caused by background positioning */
}

.hero-section-1 .hs1 .hero-main-content .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('your-image-path.jpg'); /* Update with your actual image path */
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) !important; /* Apply grayscale effect */
    z-index: 1; /* Keeps the background below the text */
    animation-name: bgAnim1 !important;
    animation-iteration-count: infinite !important;
    animation-duration: 10s !important;
    animation-direction: alternate !important;
    animation-timing-function: linear !important;
}

/* Add overlay to make text more visible */
.hero-section-1 .hs1 .hero-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.1); /* Dark semi-transparent overlay */
    z-index: 2; /* Overlay above the background, but below the text */
}

/* Styling the text (Headings) */
.hero-section-1 .hs1 .hero-main-content .headings {
    position: relative !important;
    z-index: 3 !important; /* Ensure the text is above the overlay */
    padding: 25px !important;
}

.hero-section-1 .hs1 .hero-main-content .headings .hero--heading {
    font-family: var(--font-family-spartan) !important;
    font-size: var(--hero-heading-font-size) !important;
    font-weight: 600 !important;
    line-height: 100px !important;
    color: var(--global-primary-white) !important;
    margin-bottom: 5rem !important;
    max-width: 75% !important;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Add text shadow to enhance visibility */
}

@media(max-width: 991px) {
    .hero-section-1 .hs1 .hero-main-content .headings .hero--heading {
        font-size: 4rem !important;
        line-height: 60px !important;
    }
}

@media(max-width: 767px) {
    .hero-section-1 .hs1 .hero-main-content .headings .hero--heading {
        max-width: 100% !important;
    }
}

.work-v1-light-section .work-v1-section2{
    padding: 2rem 0rem 1rem 0rem !important;
    background-color: var(--global-primary-white) !important;
}






.work-v1-section .work-cards-wrapper .image-box-team {
    width:calc(50.0% - 3rem) !important;
    position:relative;
    z-index:2;
    cursor:pointer;
    margin-top:4rem;
    margin-bottom:3rem;
    margin-left:auto;
    margin-right:auto
}
@media(max-width: 991px){
    .work-v1-section .work-cards-wrapper .image-box-team {
        width:calc(50% - 3rem) !important
    }
}
@media(max-width: 767px){
    .work-v1-section .work-cards-wrapper .image-box-team {
        width:100% !important
    }
}
@media(max-width < 767px){
    .work-v1-section .work-cards-wrapper .image-box-team {
        width:100% !important
    }
}
.work-content-block .rodio-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px; /* Adjust spacing between buttons */
}

.work-content-block .rodio-tabs .nav-link {
    background-color: var(--global-color-dark);
    color: var(--color-paragraph-1);
    fill: var(--color-paragraph-1);
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    padding: 3.5rem 3rem 2.1rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Ensures vertical centering */
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    cursor: pointer;
    flex: 1 1 22%; /* Distribute equally among four columns */
    height: 200px; /* Set a fixed height for equal-sized boxes */
    min-height: 200px;
}

@media (max-width: 768px) {
    .work-content-block .rodio-tabs {
        flex-direction: column;
    }

    .work-content-block .rodio-tabs .nav-link {
        flex: 1 1 100%;
        height: auto; /* Allows responsiveness for mobile */
    }
}

.services--heading {
    font-family: var(--font-family-spartan) !important;
    color: var(--global-color-heading) !important;
    font-size: 3rem !important; /* Reduced size as per your request */
    line-height: 5rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    letter-spacing: -1px !important;
    margin-bottom: 30px !important;
    position: relative;
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack text and after element */
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically (if needed) */
}

.services--heading::after {
    content: "" !important;
    display: block !important;
    width: 8.9rem !important;
    height: 0.3rem !important;
    background-color: var(--global-color-primary) !important;
    margin-top: 1.2rem !important;
}

.news-card-wrapper .news-card .news-content h4 {
    text-align: center !important;
    font-family: var(--font-family-spartan) !important;
    font-size: var(--title-lg-font-size) !important;
    font-weight: 600 !important;
    line-height: 4rem !important;
    color: var(--global-color-secondary) !important;
    margin-top: 1.4rem !important;
    letter-spacing: -0.1rem !important;
    word-break: break-word !important;
}