/* custom css starts here */


/* Please make a note for all members: if you are adding CSS, please add a comment explaining what it is for. */


/* Top Header Section Start Here */

.fheaderToptwo {
    background-color: var(--brand-color-primary);
    padding: 5px 0 7px 0;
}

.social-media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.social-link {
    width: 28px;
    height: 28px;
    background: #fff;
    color: #2b2b73;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.social-link i {
    line-height: 1;
}

.region-headertop>.row {
    justify-content: end;
}

.languagebtn-new ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-left: 9px;
}

.languagebtn-new li {
    list-style: none;
}

.languagebtn-new li a {
    width: 28px;
    height: 28px;
    color: #fff;
    background: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.languagebtn-new li.selected a {
    background: #fff;
    color: #2b2b73;
}

.languagebtn-new li:hover a {
    transform: translateY(-2px);
}


/* Top Header Section End Here */

/* Header Logo design Start Here */

.header-logo-main img {
    max-height: 70px;
    width: auto;
}


/* Header Logo design end Here */


/* Banner Section design starts here */

.hero-content {
    margin-top: 20px;
    color: #fff;
}

.hero-tag {
    display: block;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-content h3 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 30px;
    color: #fff;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 2rem;
    background: #d6e3f3;
    color: #1f3655;
    border-radius: 7px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--brand-color-theme-1);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 2rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.f-banner .fGalleryText {
    position: absolute;
    inset: 0;
    align-content: center;
}

.f-banner.fGalleryImage {
    position: relative;
    display: block;
    overflow: hidden;
}

.f-banner .fGalleryImage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* adjust opacity */
    pointer-events: none;
}

.f-banner .fGalleryImage img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 800px;
}


/* Banner Section design ends here */


/* running ticker starts here */

.news-ticker-wrapper {
    position: relative;
    background: #222;
    border-bottom: 4px solid #fff;
    height: 70px;
    overflow: hidden;
}

.live-news {
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    background: #222;
}

.ticker-tape-container {
    margin-left: 180px;
    height: 70px;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
}

.ticker-tape {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: marquee 30s linear infinite;
}

.ticker-tape-container:hover .ticker-tape {
    animation-play-state: paused;
}

.ticker-tape span {
    color: #fff;
    font-size: 18px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.ticker-tape span::after {
    content: "|";
    color: rgba(255, 255, 255, 0.8);
    margin: 0 50px;
    font-weight: 300;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


/* running ticker ends here */


/* Nav Tab Design starts here */

.custom-tabs {
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.custom-tabs .tab-heading {
    list-style: none;
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.custom-tabs .nav-item {
    margin: 0;
}

.custom-tabs .nav-link {
    border: 0 !important;
    background: transparent !important;
    color: #000;
    font-size: 22px;
    font-weight: 700;
    padding: 0 10px 12px;
    border-radius: 0;
    transition: all .3s ease;
}

.custom-tabs .nav-link.active {
    color: #232b84 !important;
    border-bottom: 2px solid #232b84 !important;
}

.custom-tabs .nav-link:hover {
    color: #232b84;
}

.custom-tab-content {
    margin-top: 20px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.cta-btn {
    min-width: 200px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.cta-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.navy {
    background: #123d7a;
}

.blue {
    background: #465eb0;
}

.sky {
    background: #4f86b7;
}

.teal {
    background: #14a99d;
}

.cyan {
    background: #0f7698;
}


/* Nav Tab Design end here */


/* About Msi Section start Here */

.fGalleryTextnew .fGalleryList {
    padding: 0;
    margin: 0;
}

#fModule--fGalleryItem-396782 .fGalleryImage {
    background: #3c57a5;
}

#fModule--fGalleryItem-396785 .fGalleryImage {
    background: #03a698;
}

#fModule--fGalleryItem-396783 .fGalleryImage {
    background: #4680ae;
}

#fModule--fGalleryItem-396784 .fGalleryImage {
    background: #006786;
}

.fGalleryTextnew .fGalleryImage {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fGalleryTextnew .fGalleryImage img {
    padding: 11px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.fGalleryTextnew .ItemfinnerGallery {
    height: 100%;
    padding: 0;
    transition: all 0.3s ease;
}

.fGalleryTextnew .fGalleryImage {
    display: block;
    margin-bottom: 20px;
}

.fGalleryTextnew .fGalleryText {
    padding-right: 20px;
}

.fGalleryTextnew .fGalleryText h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.fGalleryTextnew .fGalleryText p {
    font-size: 16px;
    line-height: 1.4;
    color: #444;
    margin-bottom: 20px;
}

.fGalleryTextnew .fGalleryText a {
    color: #24348b;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.fGalleryTextnew .fGalleryText a:hover {
    text-decoration: underline;
}

.bgaddnew {
    background-color: #f2f2f2;
}


/* About Msi Section end Here */


/* Message from the CEO section starts here */

/* .msceo img {
    border-radius: 25px !important;
}

.msceo p {
    margin: 0 !important;
    text-align: justify;
}

.msceo h4 {
    margin: 20px 0px 0px 0px;
    color: var(--brand-color-theme-1);
    font-weight: 700;
}

.msceo span {
    margin-top: 7px;
    color: #000;
    text-transform: capitalize !important;
}


.msceo .f-media-image {
    width: 100%;
    max-width: 365px;
    float: left;
    text-align: center;
    padding: 20px 20px 20px 0px;
}

.msceo .f-media-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 0;
} */
/* .msceo img {
    border-radius: 25px !important;
}

.msceo p {
    margin: 0 !important;
    text-align: justify;
}

.msceo h4 {
    margin: 12px 0px 0px 0px;
    color: var(--brand-color-theme-1);
    font-weight: 700;
    text-align: center;
}

.msceo span {
    margin-top: 7px;
    color: #000;
    text-transform: capitalize !important;
}

.msceo .f-media-image {
    width: 100%;
    max-width: 365px;
    float: left;
    text-align: center;
    padding: 20px 20px 20px 0px;
}

.msceo .f-media-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 0;
}


.msceo .f-media-image .f-ceo-caption {
    margin-top: 14px;
    text-align: center;
}

.msceo .f-media-image .f-ceo-caption h4 {
    font-size: 18px;
    margin: 0;
}

.msceo .f-media-image .f-ceo-caption p {
    margin: 4px 0 0 0 !important;
    color: #555;
    font-size: 14px;
    text-align: center;
}


.msceo .f-media-text-body.f-collapsed p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
}


.msceo .f-media-text-body.f-collapsed p:not(:first-of-type) {
    display: none;
}

.msceo .f-read-toggle {
    display: inline-block;
    margin-top: 10px;
    color: var(--brand-color-theme-1);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
} */
/* Message from the CEO section ends here */
.msceo img {
    border-radius: 25px !important;
}

.msceo p {
    margin: 0 !important;
    text-align: justify;
}

.msceo h4 {
    margin: 12px 0px 0px 0px;
    color: var(--brand-color-theme-1);
    font-weight: 700;
    text-align: center;
}

.msceo span {
    margin-top: 7px;
    color: #000;
    text-transform: capitalize !important;
}

.msceo .f-media-image {
    width: 100%;
    max-width: 365px;
    float: left;
    text-align: center;
    padding: 20px 20px 20px 0px;
}

.msceo .f-media-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 0;
}

.msceo .f-media-image .f-ceo-caption {
    margin-top: 14px;
    text-align: center;
}

.msceo .f-media-image .f-ceo-caption h4 {
    font-size: 18px;
    margin: 0;
}

.msceo .f-media-image .f-ceo-caption p {
    margin: 4px 0 0 0 !important;
    color: #555;
    font-size: 14px;
    text-align: center;
}

/* Hide paragraphs after the first one while collapsed */
.msceo .f-media-text-body.f-collapsed p:not(:first-of-type) {
    display: none;
}

.msceo .f-dots {
    color: var(--brand-color-theme-1);
    font-weight: 700;
    cursor: pointer;
}
.msceo .f-read-less {
    display: block;
    margin-top: 10px;
    color: var(--brand-color-theme-1);
    font-weight: 700;
    cursor: pointer;
}
/* msi-membership section starts here */

.msi-membership {
    height: 300px;
}

.msi-membership .fGalleryText {
    position: absolute;
    inset: 0;
    align-content: center;
    text-align: center;
    height: 300px;
    color: #fff;
}

.msi-membership.fGalleryImage {
    position: relative;
    display: block;
    overflow: hidden;
}

.msi-membership .fGalleryImage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #373278e6;
    pointer-events: none;
}

.msi-membership .fGalleryImage img {
    display: block;
    width: 100%;
    height: auto;
}

.newaddbutton {
    background-color: var(--brand-color-theme-2) !important;
    border-color: var(--brand-color-theme-2) !important;
}

.newaddbutton:hover {
    background-color: var(--brand-color-theme-1) !important;
    border-color: var(--brand-color-theme-1) !important;
}

.msi-membership h4 {
    color: #fff;
    font-weight: 700;
}


/* msi-membership section ends here */


/* Data Spotlight Section Starts Here */

.f-main-announcement-and-news {
    background-color: #f2f2f2;
}

/* .stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
} */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.stat-item h3 {
    margin: 0 0 6px;

    font-weight: 700;
    line-height: 1;
}

.stat-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
    color: #2b2b2b;
}


/* Individual colors */

.stat-item:nth-child(1) h3 {
    color: #4560b5;
}

.stat-item:nth-child(2) h3 {
    color: #00a69a;
}

.stat-item:nth-child(3) h3 {
    color: #006e95;
}

.stat-item h3 {

    font-size: 19px;

}

.stats-row {

    gap: 20px;

}

.stat-item:nth-child(4) h3 {
    color: #4560b5;
}

.stat-item:nth-child(5) h3 {
    color: #00a69a;
}

.stat-item:nth-child(6) h3 {
    color: #006e95;
}

/* Data Spotlight Section Ends Here */


/* Training Programmes Section Starts Here */

.f-Training-Programmes .f-list-item-container {
    position: relative;
    border: 2px solid #d9d9d9;
    border-radius: 32px;
    padding: 21px;
    margin: 8px;
    overflow: hidden;
}

.f-Training-Programmes .f-list-item-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 10px;
    background: #232a7c;
}

.f-Training-Programmes .f-list-item-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.f-Training-Programmes .f-list-item-subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.f-Training-Programmes .f-list-item-fields {
    margin-bottom: 11px;
}

.f-Training-Programmes .f-item-node-title {
    display: none;
}

.f-Training-Programmes .f-list-item-fields {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.f-Training-Programmes .f-list-item-field {
    display: flex;
    align-items: center;
    width: auto !important;
    flex: 0 0 auto;
}

.f-Training-Programmes .f-list-item-field:first-child::after {
    content: "to";
    padding: 0 12px;
    font-weight: 500;
    color: #555;
}

.f-Training-Programmes .f-item-node-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.f-Training-Programmes .f-item-node-value::before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333333' stroke-width='1.8'%3E%3Cpath d='M8 2v4M16 2v4M3 9h18M5 4h14a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.f-Training-Programmes .f-list-item-button {
    text-align: right;
}

.f-Training-Programmes .f-list-item-button a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}


/* Training Programmes Section Ends Here */


/* Recent Publications Section Start Here */

.f-Publications .fGalleryList,
.fGalleryContainer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.f-Publications .fGalleryItem {
    width: 100%;
    text-align: center;
}

.f-Publications .fGalleryItem .ItemfinnerGallery {
    background: #d9d9d9;
    padding: 12px;
    margin: 10px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.f-Publications .fGalleryItem:hover .ItemfinnerGallery {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.f-Publications .fGalleryItem .fGalleryImage {
    display: block;
    background: #fff;
    padding: 10px;
    border: 1px solid #cfcfcf;
}

.f-Publications .fGalleryItem .fGalleryImage img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.f-Publications .fGalleryItem .fGalleryText {
    display: none;
}


/* Recent Publications Section Start Here */


/* Recent News Section Design Start Here  */

.inset-full {
    inset: 0;
}

.f-gallery-image .fGalleryItem {
    padding: 12px !important;
}

.f-gallery-image .fGalleryItem .ItemfinnerGallery .fGalleryImage img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.f-gallery-image .fGalleryItem .ItemfinnerGallery .fGalleryText {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
    background-color: #07285d84;
    opacity: 0;
    transition: all .7s;
    scale: 0;
}

.f-gallery-image .fGalleryItem .ItemfinnerGallery:hover .fGalleryText {
    opacity: 1;
    scale: 1;
}

.f-gallery-image .fGalleryItem .ItemfinnerGallery .fGalleryText a {
    color: white;
    font-size: 2rem;
}

.fancybox-slide,
.fancybox-container {
    z-index: 9999999999999999999 !important;
}


/* .f-latest-announcements .fGalleryImage img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
} */

.f-latest-news .f-list-content {
    position: relative;
    padding-left: 40px;
}

.f-latest-news .f-list-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #333;
}

.f-latest-news .f-list-content .f-list-item {
    width: 100%;
    margin-bottom: 19px;
}

.f-latest-news .f-list-content .f-list-item:not(:last-child) {
    border-bottom: 1px solid #8c8c8c;
    padding-bottom: 10px;
}

.f-latest-news .f-list-content .f-list-item-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    margin-bottom: 9px;
}

.f-latest-news .f-list-content .f-list-item-subtitle {
    font-size: 15px;
    line-height: 1.3;
    color: #444;
}

.f-latest-news .f-module-content>p.text-center {
    text-align: center;
}


/* Recent News Section Design end Here  */


/* Steel Price Section Design Starts Here */

/* .f-steal-price .f-module-content {
    position: relative;
    background: rgba(0, 22, 60, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 35px;
    padding: 20px 25px;
    color: #fff;
    overflow: hidden;
}

.f-steal-price .f-price-heading {
    background: #2d2f8f;
    border-radius: 20px;
    padding: 20px 19px;
    margin-bottom: 12px;
    display: flex;
}

.f-steal-price .materials,
.f-steal-price .price {
    color: #9ec5ff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.f-steal-price .f-list-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 18px 0;
}

.f-steal-price .f-list-item:last-child {
    border-bottom: none;
}

.f-steal-price .f-list-item-content-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.f-steal-price .f-list-item-title {
    color: #dbe7ff;
    font-size: 17px;
    font-weight: 400;
    margin: 0;
}

.f-steal-price .f-list-item-subtitle {
    color: #7effb2;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-align: right;
}

.f-steal-price .f-bottom-button-and-text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.f-steal-price .for-members {
    display: none;
}

.f-steal-price .dashboard-button {
    margin-left: auto;
}

.f-steal-price .dashboard-button .fButton {
    background: #d7e4ff;
    color: var(--brand-color-theme-1);
}

.f-steal-price .dashboard-button .fButton:hover {
    background: var(--brand-color-theme-1);
    color: #fff;
    border-color: var(--brand-color-theme-1);
} */
.f-steal-price .f-module-content {
    position: relative;
    background: rgba(0, 22, 60, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 35px;
    padding: 20px 25px;
    color: #fff;
    overflow: hidden;
}

.f-steal-price .f-price-heading {
    background: #2d2f8f;
    border-radius: 20px;
    padding: 20px 19px;
    margin-bottom: 12px;
    display: flex;
}

.f-steal-price .materials,
.f-steal-price .price {
    color: #9ec5ff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.f-steal-price .f-list-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 18px 0;
}

.f-steal-price .f-list-item:last-child {
    border-bottom: none;
}

.f-steal-price .f-list-item-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.f-steal-price .f-list-item-title {
    color: #dbe7ff;
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    flex: 1;
}

.f-steal-price .f-list-item-subtitle {
    color: #7effb2;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-align: right;
    white-space: nowrap;
}

.f-steal-price .f-bottom-button-and-text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.f-steal-price .for-members {
    display: none;
}

.f-steal-price .dashboard-button {
    margin-left: auto;
}

.f-steal-price .dashboard-button .fButton {
    background: #d7e4ff;
    color: var(--brand-color-theme-1);
}

.f-steal-price .dashboard-button .fButton:hover {
    background: var(--brand-color-theme-1);
    color: #fff;
    border-color: var(--brand-color-theme-1);
}
/* .f-steal-price .dashboard-button .fButton::before {
    content: "View Dashboard";
} */


/* Steel Price Section Design Ends Here */


/* Client Logos Section Start Here */

/* .f-clientlogos {
    padding: 40px 0;
    background: #fff;
}

.f-clientlogos .owl-stage {
    display: flex;
    align-items: center;
}

.f-clientlogos .fGalleryItem {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 0 15px;
}

.f-clientlogos .ItemfinnerGallery {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.f-clientlogos .fGalleryImage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.f-clientlogos .fGalleryImage img {
    max-width: 170px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.f-clientlogos .fGalleryImage img:hover {
    transform: scale(1.05);
}

.f-clientlogos .owl-nav,
.f-clientlogos .owl-dots {
    display: none !important;
}

.f-clientlogos .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* Client Logos */
.f-clientlogos {
    padding: 40px 0;
    background: #fff;
}

.f-clientlogos .owl-stage {
    display: flex;
    align-items: center;
}

.f-clientlogos .fGalleryItem {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 0 15px;
}

.f-clientlogos .ItemfinnerGallery {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.f-clientlogos .fGalleryImage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.f-clientlogos .fGalleryImage img {
    max-width: 170px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

/* Logo hover */
.f-clientlogos .fGalleryImage img:hover {
    transform: scale(1.05);
}

/* Make the entire logo area clickable */
.f-clientlogos .fGalleryText {
    position: static;
}

/* Hide the text and make the link cover the whole logo area */
.f-clientlogos .fGalleryText .clientsup-logo {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
    color: transparent;
    text-indent: -9999px;
    text-decoration: none;
}

/* Remove unwanted content */
.f-clientlogos .fGalleryText::before,
.f-clientlogos .fGalleryText::after {
    display: none !important;
    content: none !important;
}

/* Cursor */
.f-clientlogos .ItemfinnerGallery {
    cursor: pointer;
}

/* Hide navigation */
.f-clientlogos .owl-nav,
.f-clientlogos .owl-dots {
    display: none !important;
}

.f-clientlogos .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Client Logos Section end Here */


/* Explore Research starts here */

.f-explore {
    margin: 40px auto;
    background: var(--paper);
    padding: 56px 64px 72px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.f-explore .doc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-color-secondary);
    font-weight: 600;
    border-bottom: 2px solid var(--brand-color-primary);
    padding-bottom: 10px;
    margin-bottom: 32px;
}

.f-explore h1 {
    color: var(--brand-color-primary);
    margin: 0 0 18px;
    font-weight: 700;
}

.f-explore h2 {
    color: var(--brand-color-primary);
    margin: 30px 0px 0px 0px;
    font-size: 1.5rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--rule);
    font-weight: 700;
}

.f-explore h3 {
    color: var(--brand-color-secondary);
    font-weight: 700;
    font-size: 1.4rem;
}

.f-explore p {
    line-height: 1.65;
    margin: 0 0 16px;
    color: #333844;
}

.f-explore p strong.lead {
    color: var(--brand-color-primary);
}

.f-explore table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 8px;
    font-size: 13.5px;
}

.f-explore thead th {
    background: var(--brand-color-primary);
    color: #fff;
    text-align: left;
    padding: 10px 14px;
    font-weight: 600;
}

.f-explore tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--rule);
    vertical-align: top;
}

.f-explore tbody tr:nth-child(even) {
    background: var(--paper-muted);
}

.f-explore tbody td:nth-child(2) {
    color: var(--brand-color-secondary);
    font-weight: 600;
}

.f-explore .research-item {
    margin-bottom: 22px;
}

.f-explore .research-item .item-title {
    font-weight: 700;
    color: var(--brand-color-primary);
}

.f-explore .cluster-tag {
    display: inline-block;
    background: var(--brand-color-secondary);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}


/* Explore Research end here */


/* Cluster section design starts here */

.f-cluster .container {
    background: #ffffff;
    border: 1px solid #e2e4ee;
    border-top: 6px solid var(--brand-color-primary);
    border-radius: 10px;
    box-shadow: 0 12px 28px -14px rgba(37, 38, 120, 0.28);
    overflow: hidden;
}


/* Title banner */

.f-cluster .fModuleTitle {
    background: var(--brand-color-primary);
    padding: 28px 32px;
    position: relative;
}

.f-cluster.title-center .fModuleTitle {
    text-align: center;
}

.f-cluster .fModuleTitle h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.f-cluster .fModuleTitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    background: var(--brand-color-secondary);
    border-radius: 2px 2px 0 0;
}


/* Content area */

.f-cluster .fModuleContent {
    padding: 32px 36px 40px;
}


/* Lead / Agency meta row */

.f-cluster .fModuleContent>div>h3 {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-size: 0.98rem;
    font-weight: 600;
    margin: 0 28px 14px 0;
    padding: 8px 14px;
    background: rgba(0, 153, 153, 0.08);
    border-left: 3px solid var(--brand-color-secondary);
    border-radius: 4px;
    color: var(--brand-color-primary);
}

.f-cluster .fModuleContent>div>h3 span {
    font-weight: 500;
    color: #5a5f77;
}


/* Section headers (Background, Sub-Programmes, Alignment...) */

.f-cluster h4 {
    margin: 28px 0 12px;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--brand-color-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e4ee;
}

.f-cluster h4::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    background: var(--brand-color-secondary);
    border-radius: 50%;
    vertical-align: middle;
}


/* Background paragraph */

.f-cluster h4+p {
    color: #5a5f77;
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0;
}


/* Sub-programme rows (6A, 6B ...) */

.f-cluster p {
    display: flex;
    gap: 10px;
    align-items: baseline;
    background: #f5f6fa;
    border: 1px solid #e2e4ee;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 10px 0;
    line-height: 1.55;
    transition: border-color .15s ease, transform .15s ease;
}

.f-cluster p>span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    padding: 2px 8px;
    background: var(--brand-color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 999px;
}

.f-cluster h4 p>span {
    background: transparent;
    color: var(--brand-color-secondary);
    border: 1.5px solid var(--brand-color-secondary);
    border-radius: 6px;
    font-weight: 700;
    min-width: 46px;
    padding: 3px 8px;
}

@media (max-width: 600px) {
    .f-cluster .fModuleContent {
        padding: 24px 20px 32px;
    }

    .f-cluster .fModuleTitle {
        padding: 22px 20px;
    }

    .f-cluster .fModuleTitle h3 {
        font-size: 1.2rem;
    }
}


/* Cluster section design ends here */


/* Footer logo design start here */

#fFooter {
    background-color: #e6e6e6;
}

.f-socialmediafooter,
.f-organization,
.f-resources {
    padding: 20px 40px;
}

.f-socialmediafooter .f-module-title h3,
.f-organization .f-module-title h3,
.f-resources .f-module-title h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-color-theme-1);
}

.f-socialmediafooter .container {
    padding: 0;
    max-width: 100%;
}

.f-socialmediafooter .f-media {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.f-socialmediafooter .f-media-image img {
    max-width: 260px;
    height: auto;
    display: block;
    margin-bottom: 25px;
}

.f-socialmediafooter .footer-social-media {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.f-socialmediafooter .f-socialmedia {
    width: 24px;
    height: 24px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
}

.f-socialmediafooter .f-socialmedia:hover {
    opacity: 0.8;
}

.f-socialmediafooter .f-media-text p {
    margin: 0;
}

.f-socialmediafooter .f-media-text p a {
    color: var(--brand-color-theme-1);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.f-organization .fMenu,
.f-resources .fMenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-organization .menu-item,
.f-resources .menu-item {
    margin-bottom: 20px;
}

.f-organization .menu-item a,
.f-resources .menu-item a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 33px;
    display: inline-block;
    color: #414144;
}

.f-organization .menu-item a:hover,
.f-resources .menu-item a:hover {
    color: var(--brand-color-theme-2);
}

.f-organization .menu-item-icon,
.f-resources .menu-item-icon {
    display: none;
}

.f-organization {
    padding-left: 80px;
}

.f-resources {
    padding-left: 80px;
}


/* Footer logo design end here */


/* Footer Bottom Design Starts here */

.f-copyright {
    background-color: var(--brand-color-theme-1);
    color: #fff;
    padding: 10px 0px;
    ;
}


/* Footer Bottom Design Starts here */


/* whistleblowing design starts here */


/* ==========================================
   WHISTLEBLOWING POLICY
   ========================================== */

.f-whistleblowing {
    margin: 0 auto;
    padding: 60px 20px;
    color: #333;
}


/* ==========================================
   MAIN TITLE
   ========================================== */

.f-whistleblowing .f-module-title,
.f-whistleblowing h1 {
    position: relative;
    text-align: center;
    color: var(--brand-color-theme-1);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 55px;
    padding-bottom: 20px;
}

.f-whistleblowing .f-module-title::after,
.f-whistleblowing h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 65px;
    height: 4px;
    background: var(--brand-color-theme-2);
    border-radius: 10px;
}


/* ==========================================
   SECTION HEADINGS
   ========================================== */

.f-whistleblowing h3 {
    position: relative;
    color: var(--brand-color-theme-1);
    font-weight: 800;
    line-height: 1.3;
}

.f-whistleblowing h4 {
    color: var(--brand-color-theme-1);
    font-size: 21px;
    font-weight: 750;
    line-height: 1.35;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 3px solid var(--brand-color-theme-2);
}


/* ==========================================
   PARAGRAPHS
   ========================================== */

.f-whistleblowing p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0 0 18px;
}


/* ==========================================
   SPAN / IMPORTANT TEXT
   ========================================== */

.f-whistleblowing span {
    color: var(--brand-color-theme-1);
    font-weight: 700;
}

.f-whistleblowing strong {
    color: var(--brand-color-theme-1);
    font-weight: 800;
}


/* ==========================================
   LIST DESIGN
   ========================================== */

.f-whistleblowing ul,
.f-whistleblowing ol {
    margin: 18px 0 28px;
    padding: 0;
    list-style: none;
}


/* Individual list item */

.f-whistleblowing ul li,
.f-whistleblowing ol li {
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
    padding: 14px 18px 14px 48px;
    background: #f7f9fa;
    border: 1px solid #e8edef;
    border-radius: 6px;
    transition: all 0.25s ease;
}


/* Custom bullet */

.f-whistleblowing ul li::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 20px;
    width: 9px;
    height: 9px;
    background: var(--brand-color-theme-2);
    border-radius: 50%;
}


/* Small line beside bullet */

.f-whistleblowing ul li::after {
    content: "";
    position: absolute;
    left: 23px;
    top: 30px;
    width: 1px;
    height: calc(100% - 30px);
    background: rgba(89, 174, 71, 0.25);
}


/* Remove line from last item */

.f-whistleblowing ul li:last-child::after {
    display: none;
}


/* Hover */

.f-whistleblowing ul li:hover,
.f-whistleblowing ol li:hover {
    background: rgba(89, 174, 71, 0.06);
    border-color: rgba(89, 174, 71, 0.35);
    transform: translateX(4px);
}


/* ==========================================
   ORDERED LIST
   ========================================== */

.f-whistleblowing ol {
    counter-reset: whistle-counter;
}

.f-whistleblowing ol li {
    counter-increment: whistle-counter;
}

.f-whistleblowing ol li::before {
    content: counter(whistle-counter);
    position: absolute;
    left: 13px;
    top: 13px;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-color-theme-1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
}


/* ==========================================
   EMAIL / REPORTING INFORMATION
   ========================================== */

.f-whistleblowing .whistle-email {
    display: block;
    background: rgba(89, 174, 71, 0.08);
    border: 1px solid rgba(89, 174, 71, 0.25);
    border-left: 5px solid var(--brand-color-theme-2);
    padding: 16px 20px;
    margin: 10px 0 25px;
    border-radius: 0 6px 6px 0;
}


/* ==========================================
   IMPORTANT INFORMATION BOX
   ========================================== */

.f-whistleblowing .whistle-box {
    position: relative;
    background: linear-gradient(135deg, rgba(19, 55, 105, 0.05), rgba(89, 174, 71, 0.07));
    border: 1px solid rgba(19, 55, 105, 0.12);
    border-left: 5px solid var(--brand-color-theme-1);
    padding: 22px 25px;
    margin: 28px 0;
    border-radius: 0 8px 8px 0;
}

.f-whistleblowing .whistle-box p {
    margin-bottom: 0;
}


/* ==========================================
   SUB SECTIONS
   ========================================== */

.f-whistleblowing .sub-section {
    margin-top: 25px;
}


/* ==========================================
   LINKS
   ========================================== */

.f-whistleblowing a {
    color: var(--brand-color-theme-1);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--brand-color-theme-2);
    text-underline-offset: 3px;
    word-break: break-word;
    transition: all 0.2s ease;
}

.f-whistleblowing a:hover {
    color: var(--brand-color-theme-2);
}


/* ==========================================
   ATTACHMENT / FORM BUTTON
   ========================================== */

.f-whistleblowing .attachment-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--brand-color-theme-1);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 8px 0 20px;
    transition: all 0.3s ease;
}

.f-whistleblowing .attachment-link:hover {
    background: var(--brand-color-theme-2);
    color: #fff;
    transform: translateY(-2px);
}


/* ==========================================
   DIVIDER
   ========================================== */

.f-whistleblowing .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #dfe5e8, transparent);
    border: 0;
    margin: 45px 0;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 991px) {
    .f-whistleblowing {
        padding: 50px 25px;
    }

    .f-whistleblowing .f-module-title,
    .f-whistleblowing h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .f-whistleblowing h2 {
        font-size: 24px;
    }

    .f-whistleblowing h3 {
        font-size: 20px;
    }

    .f-whistleblowing p,
    .f-whistleblowing li {
        font-size: 15.5px;
    }
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 767px) {
    .f-whistleblowing {
        padding: 35px 18px;
    }

    .f-whistleblowing .f-module-title,
    .f-whistleblowing h1 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .f-whistleblowing h2 {
        font-size: 21px;
        margin-top: 32px;
        margin-bottom: 16px;
        padding: 11px 14px;
        border-left-width: 4px;
    }

    .f-whistleblowing h3 {
        font-size: 18px;
        margin-top: 25px;
    }

    .f-whistleblowing p {
        font-size: 15px;
        line-height: 1.7;
    }

    .f-whistleblowing ul,
    .f-whistleblowing ol {
        margin-top: 15px;
    }

    .f-whistleblowing ul li,
    .f-whistleblowing ol li {
        font-size: 15px;
        padding: 13px 14px 13px 43px;
        margin-bottom: 10px;
    }

    .f-whistleblowing ul li::before {
        left: 16px;
        top: 19px;
        width: 8px;
        height: 8px;
    }

    .f-whistleblowing ul li::after {
        left: 20px;
    }

    .f-whistleblowing ol li::before {
        left: 11px;
        top: 11px;
        width: 26px;
        height: 26px;
    }

    .f-whistleblowing .whistle-box {
        padding: 17px 18px;
    }

    .f-whistleblowing .whistle-email {
        padding: 13px 15px;
    }

    .f-whistleblowing .section-divider {
        margin: 30px 0;
    }
}


/* whistleblowing design ends here */


/* ==========================================
   WHISTLEBLOWING FORM
   ========================================== */

.f-Whistleblowingform {
    padding: 40px 0;
}


/* ==========================================
   IMAGE BOX
   ========================================== */

.f-Whistleblowingform .f-media-image {
    padding: 25px;
    background: #f7f9fa;
    border: 1px solid rgba(19, 55, 105, 0.12);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.f-Whistleblowingform .f-media-image-link {
    display: block;
    width: 100%;
    text-align: center;
}


/* Full image - NO CROPPING */

.f-Whistleblowingform .f-media-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: initial;
}


/* ==========================================
   CONTENT
   ========================================== */

.f-Whistleblowingform .f-media-text {
    text-align: center;
    flex: 0 0 50%;
    padding: 20px 10px;
}

.f-Whistleblowingform .f-media-text h3 {
    color: var(--brand-color-theme-1);
    font-weight: 800;
    line-height: 1.25;
}

.f-Whistleblowingform .f-media-text h4 {
    color: #555;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.f-Whistleblowingform .f-media-text h4 a {
    display: inline-block;
    margin-left: 5px;
    padding: 8px 18px;
    background: var(--brand-color-theme-1);
    color: #fff;
    text-decoration: none !important;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.f-Whistleblowingform .f-media-text h4 a:hover {
    background: var(--brand-color-theme-2);
    color: #fff;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 991px) {
    .f-Whistleblowingform .f-media {
        gap: 25px;
    }

    .f-Whistleblowingform .f-media-image {
        padding: 20px;
    }

    .f-Whistleblowingform .f-media-text h3 {
        font-size: 27px;
    }
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 767px) {
    .f-Whistleblowingform {
        padding: 25px 0;
    }

    .f-Whistleblowingform .f-media {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .f-Whistleblowingform .f-media-image {
        width: 100%;
        flex: 0 0 100%;
        padding: 15px;
    }

    .f-Whistleblowingform .f-media-text {
        width: 100%;
        flex: 0 0 100%;
        padding: 5px 10px 20px;
        text-align: center;
    }

    .f-Whistleblowingform .f-media-text h3 {
        font-size: 25px;
    }

    .f-Whistleblowingform .f-media-text h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .f-Whistleblowingform .f-media-text h4 {
        font-size: 15px;
    }

    .f-Whistleblowingform .f-media-text h4 a {
        margin-top: 8px;
    }
}


/*  */


/* ==========================================
   RMK12 PROGRAMME
   ========================================== */

.f-rkme {
    padding: 50px 0;
}

.f-rkme .f-module-title {
    text-align: center;
    margin-bottom: 35px;
}

.f-rkme .f-module-title h3 {
    color: var(--brand-color-theme-1);
    font-weight: 800;
    margin: 0;
}


/* ==========================================
   CARD
   ========================================== */

.f-rkme .fGalleryItem {
    margin-bottom: 25px;
}

.f-rkme .ItemfinnerGallery {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(19, 55, 105, 0.12);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}


/* Hover */

.f-rkme .ItemfinnerGallery:hover {
    transform: translateY(-5px);
    border-color: var(--brand-color-theme-2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}


/* ==========================================
   IMAGE
   ========================================== */

.f-rkme .fGalleryImage {
    display: block;
    width: 100%;
    background: #f5f7f8;
    overflow: hidden;
}

.f-rkme .fGalleryImage img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.f-rkme .ItemfinnerGallery:hover .fGalleryImage img {
    transform: scale(1.03);
}


/* ==========================================
   TEXT
   ========================================== */

.f-rkme .fGalleryText {
    padding: 20px;
    background: #fff;
    flex-grow: 1;
}

.f-rkme .fGalleryText a {
    display: block;
    color: var(--brand-color-theme-1);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.f-rkme .fGalleryText a:hover {
    color: var(--brand-color-theme-2);
}


/* PDF label */

.f-rkme .fGalleryText a::before {
    content: "PDF";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 9px;
    padding: 3px 7px;
    background: var(--brand-color-theme-1);
    color: #fff;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .5px;
    vertical-align: 2px;
}


/* ==========================================
   CLICKABLE FEEL
   ========================================== */

.f-rkme .ItemfinnerGallery {
    cursor: pointer;
}

.f-rkme .ItemfinnerGallery::after {
    position: absolute;
    right: 15px;
    bottom: 18px;
    color: var(--brand-color-theme-2);
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-5px);
    transition: all .3s ease;
}

.f-rkme .ItemfinnerGallery:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* =============================== */
.f-aboutre {

    background: #f8fafc;
    overflow: hidden;
}

.f-aboutre .f-media {
    align-items: center;

}

/* Image */

.f-aboutre .f-media-image {
    position: relative;
}

.f-aboutre .f-media-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    display: block;

    transition: .4s ease;
}

.f-aboutre .f-media-image img:hover {
    transform: translateY(-6px);

}

/* Decorative Border */

.f-aboutre .f-media-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--brand-color-theme-1);
    border-radius: 18px;
    top: 18px;
    left: 18px;
    z-index: -1;
}

/* Content */

.f-aboutre .f-media-text {}

.f-aboutre p {
    color: #555;


}

/* Heading */

.f-aboutre h4 {
    color: var(--brand-color-theme-1);
    margin: 0;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}



/* List */

.f-aboutre ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.f-aboutre ul li {
    position: relative;
    padding-left: 34px;
    margin: 0px 0px 6px 0px;
    color: #444;
    line-height: 1.8;
}

.f-aboutre ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand-color-theme-1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Link */

.f-aboutre .f-media-image-link {
    display: block;
}

/* =============================== */

/*=========================================
  Contact Inner
=========================================*/

.f-contactinner {

    background: #fff;
}

.f-contactinner .f-module-content>div {

    margin: auto;
    padding: 15px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    border-left: 5px solid var(--brand-color-theme-1);
}

/* Heading */

.f-contactinner h3 {

    font-weight: 700;
    color: var(--brand-color-theme-1);

    position: relative;
}


/* Name */

.f-contactinner h4 {

    font-weight: 600;
    color: #222;

}

/* Contact Info */


.f-contactinner p strong {
    color: var(--brand-color-theme-1);
    min-width: 65px;
}

.f-contactinner a {
    color: #444;
    text-decoration: none;
    transition: .3s;
}

.f-contactinner a:hover {
    color: var(--brand-color-theme-1);
}

/* ========================================= */

/* ======================================== */


/*=========================================
  Certificate of Approval (COA)
=========================================*/

.f-coa {

    background: #f8fafc;
}

.f-coa .f-module-content>div {

    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 18px;


}

/* Heading */

.f-coa h3 {

    font-weight: 700;
    color: var(--brand-color-theme-1);

    position: relative;
}


/* Intro */

.f-coa p {

    line-height: 1.9;
    color: #555;

}

/* Highlight second paragraph */

.f-coa p:last-child {
    margin-top: 30px;
    padding: 20px 25px;
    background: rgba(0, 0, 0, .03);
    border-left: 4px solid var(--brand-color-theme-2);
    border-radius: 10px;
    color: #444;
    font-weight: 500;
}

/* Links */

.f-coa a {
    color: var(--brand-color-theme-1);
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.f-coa a:hover {
    color: var(--brand-color-theme-2);
    text-decoration: underline;
}

/* ======================================== */

/* ======================================== */
.f-contactinfor {

    background: #fff;
}

.f-contactinfor .row {
    align-items: center;
}

.contact-info-box {
    background: #fff;
    padding: 20px;
    border-left: 5px solid var(--brand-color-theme-1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-radius: 10px;
}

.contact-info-box h3 {
    color: var(--brand-color-theme-1);

    font-weight: 700;
    margin: 0px;
}

.contact-info-box p {
    color: #555;
    margin: 0;
    line-height: 1.8;

}

.contact-block {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e5e5e5;
}

.contact-block h4 {
    color: var(--brand-color-theme-2);
    font-size: 1.4rem;

    margin-bottom: 8px;
}

.contact-block a {
    color: var(--brand-color-theme-1);
    text-decoration: none;
    transition: .3s;
}

.contact-block a:hover {
    color: var(--brand-color-theme-2);
}

.map-box {
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.map-box iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}

@media (max-width: 991px) {
    .contact-info-box {
        margin-bottom: 30px;
    }
}

/* ========================================= */
/* ========================================== */
.feedback-management {
    padding: 30px 0;

}

.feedback-management .section-title {
    max-width: 750px;
    margin: 0 auto 20px;
}

.feedback-management .section-title h3 {

    font-weight: 700;
    color: var(--brand-color-theme-1);
    margin-bottom: 15px;
    position: relative;
}



.feedback-management .section-title p {

    color: #666;
    line-height: 1.8;
    margin: 0;
}

.feedback-card {
    background: #fff;
    border-radius: 15px;
    padding: 5px 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s ease;
    border-bottom: 4px solid var(--brand-color-theme-1);
}

.feedback-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg,
            var(--brand-color-theme-1),
            var(--brand-color-theme-2));
}

.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}



.feedback-card h4 {

    color: var(--brand-color-theme-1);
    font-size: 1.3rem;

}

.feedback-card p {
    color: #666;
    line-height: 1.9;
    margin: 0;

}

@media (max-width:991px) {


    .feedback-management .row>[class*="col-"] {
        margin-bottom: 20px;
    }

    .feedback-management .row>[class*="col-"]:last-child {
        margin-bottom: 0;
    }

    .feedback-card {
        padding: 30px 25px;

    }

}

/* ========================================== */
/* ========================================== */
.f-committee-from-content-library .f-list-item {
    padding: 12px;
}

.f-committee-from-content-library .f-list-item .f-list-item-container {
    height: 100%;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #dedede;
    text-align: center;
    padding-bottom: 10px;
    position: relative;
}

.f-committee-from-content-library .f-list-item .f-list-item-container .f-list-item-teaser-image {
    display: block;
    padding: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgb(222, 222, 222);
}

.f-committee-from-content-library .f-list-item .f-list-item-container .f-list-item-teaser-image img {
    width: 150px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 500px;
    position: relative;
    z-index: 2;
    background-color: var(--brand-color-theme-1);
    padding: 0;
    border: 2px solid #252678;
}

.f-committee-from-content-library .f-list-item .f-list-item-container .f-list-item-title>a {
    color: var(--brand-color-theme-1);
    font-size: 1.1rem;

    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
}

.f-committee-from-content-library .f-list-item .f-list-item-container .f-list-item-subtitle {
    font-size: .9rem;
}

.f-committee-from-content-library .f-list-item .f-list-item-container .f-list-item-button {
    position: absolute;
    z-index: 9;
    inset: 0;
    visibility: hidden;
    text-align: center;
    align-content: center;
    background: #0000009e;
    opacity: 0;
    transition: all .4s;
}


.f-committee-from-content-library .f-list-item .f-list-item-container:hover .f-list-item-button {
    opacity: 1;
    visibility: visible;
}

.f-committee-from-content-library .f-list-item .f-list-item-container .f-list-item-button a {
    display: inline-block;
    background-color: var(--brand-color-theme-1);
    color: white;
    font-size: 1rem;
    padding: 10px 2rem;
    border-radius: 3px;
}

.content-type-46665 .page-title h1 {
    font-size: 1.2rem;
    text-align: center;
}

.content-type-46665 .f-content-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid #252678;
    display: block;
    margin: 0 auto;
}

.content-type-46665 .f-content-image {
    margin-bottom: 25px;
}

.content-type-46665 .f-content-container {
    text-align: center;
}

.fboxy-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90vh;
    width: 800px;
    max-width: 95%;
    max-height: 500px;
}

#fModule--fGalleryItem-419943 .fGalleryImage {
    background: #4680ae;
}

/* =========================================== */

/* ========================================== */
.bgaddnew {

    padding: 0px 0px 30px 0px;
}

/* MSI Webinar Series - Card Design */
.f-msiwebner .fGalleryItem {
    padding: 10px !important;
    box-sizing: border-box;
}

.f-msiwebner .ItemfinnerGallery {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 5px rgba(0, 0, 0, 0.10);
    border: 1px solid #eee;
    height: 100%;
}

/* Image area */
.f-msiwebner .fGalleryImage {
    display: block;
    width: 100%;
    background: #f7f7f7;
    padding: 0;
    overflow: hidden;
}

/* Don't crop the image */
.f-msiwebner .fGalleryImage img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Make the entire card clickable */
.f-msiwebner .fGalleryText {
    position: static;
}

/* Hide the actual link text */
.f-msiwebner .fGalleryText .sup-logo {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
    color: transparent;
    text-indent: -9999px;
    text-decoration: none;
}

/* Remove unwanted pseudo content */
.f-msiwebner .fGalleryText::before,
.f-msiwebner .fGalleryText::after {
    display: none !important;
    content: none !important;
}

/* Make cursor indicate the card is clickable */
.f-msiwebner .ItemfinnerGallery {
    cursor: pointer;
}

/* Mobile */
@media (max-width: 767px) {
    .f-msiwebner .fGalleryItem {
        padding: 8px;
    }

    .f-msiwebner .ItemfinnerGallery {
        border-radius: 12px;
    }
}

/* ========================================= */
/* ===== MSI Decarbonisation Forum Series — Section Styles ===== */

/* ---------- Layout wrapper ---------- */


/* ---------- Text column ---------- */


.f-decarbotext .msi-forum p {
  color: #333333;
  font-size: 15.5px;
  line-height: 1.75;
  
  margin: 5px 0;
}

.f-decarbotext .msi-forum h4 {
  color:var(--brand-color-primary);
  font-weight: 700;
  font-size: 19px;
 
  margin-bottom: 9px;
}

.f-decarbotext .msi-forum p a[href^="mailto:"] {
  color: #009999;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #009999;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.f-decarbotext .msi-forum p a[href^="mailto:"]:hover {
  color: #252678;
  border-color: #252678;
}

.f-decarboimages{
    margin-top: 11px;
}









/* ========================================== */

/* ===== Scoped tokens — only brand colors + derived tints ===== */
.f-explore {
    --brand-color-primary: #252678;
    /* deep indigo */
    --brand-color-secondary: #009999;
    /* teal */
    --primary-tint: rgba(37, 38, 120, 0.06);
    --primary-line: rgba(37, 38, 120, 0.16);
    --secondary-tint: rgba(0, 153, 153, 0.08);
    --secondary-line: rgba(0, 153, 153, 0.28);
    margin: 0 !important;
    background: var(--paper, #ffffff);
    padding: 12px 64px 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    color: #22252e;
    line-height: 1.6;
}

/* ===== Headings ===== */
.f-explore h1 {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--brand-color-primary);
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--brand-color-primary);
}

.f-explore h2 {
    font-size: 21px;
    font-weight: 700;
    color: var(--brand-color-primary);
    margin: 40px 0 14px;
    padding-left: 14px;
    border-left: 5px solid var(--brand-color-secondary);
}

.f-explore h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-color-primary);
    margin: 15px 0 7px;
}

/* ===== Lead paragraph highlight ===== */
.f-explore .lead {
    background: linear-gradient(180deg, transparent 60%, var(--secondary-tint) 60%);
    color: var(--brand-color-secondary);
    font-weight: 700;
    padding: 0 2px;
}

/* ===== Cluster tag (badge) ===== */
.f-explore .cluster-tag {
    display: inline-block;
    background: var(--brand-color-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;

}

/* ===== Research item boxes ===== */
.f-explore .research-item {
    background: #ffffff;
    border: 1px solid var(--primary-line);
    border-left: 4px solid var(--brand-color-secondary);
    border-radius: 8px;
    padding: 16px 20px;

    box-shadow: 0 1px 2px rgba(37, 38, 120, 0.05);

}


.f-explore .research-item p {
    margin: 0;
    color: #3a3f4d;
}

.f-explore .item-title {
    display: block;
    font-weight: 700;
    color: var(--brand-color-primary);
    margin-bottom: 6px;
    font-size: 15px;
}

/* ===== Generic content table ===== */
.f-explore table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(37, 38, 120, 0.10);
    border-radius: 10px;
    overflow: hidden;
    font-size: 14.5px;
    margin: 18px 0;
}

.f-explore table thead th {
    background: var(--brand-color-primary);
    color: #ffffff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.f-explore table thead th:first-child {
    border-top-left-radius: 10px;
}

.f-explore table thead th:last-child {
    border-top-right-radius: 10px;
}

.f-explore table tbody td {
    padding: 12px 18px;
    color: #22252e;
    border-bottom: 1px solid var(--primary-line);
}

.f-explore table tbody tr:nth-child(even) {
    background: var(--primary-tint);
}

.f-explore table tbody tr:hover {
    background: var(--secondary-tint);
    transition: background 0.15s ease-in-out;
}

.f-explore table tbody tr:last-child td {
    border-bottom: none;
}

.f-explore table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.f-explore table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.f-explore table td:nth-child(1),
.f-explore table td:nth-child(3) {
    text-align: center;
    font-variant-numeric: tabular-nums;
    color: var(--brand-color-secondary);
    font-weight: 700;
}

/* ===== Price table, matched to the same two-color system ===== */
.f-latestpricetable-title {
    color: var(--brand-color-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.f-latestpricetable-subtitle {
    color: var(--brand-color-secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.f-latestpricetable {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(37, 38, 120, 0.12);
    border-radius: 10px;
    overflow: hidden;
    font-size: 14.5px;
}

.f-latestpricetable thead th {
    background: var(--brand-color-primary);
    color: #ffffff;
    padding: 14px 18px;
    text-align: right;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.3px;
}

.f-latestpricetable thead th:first-child {
    text-align: left;
    border-top-left-radius: 10px;
}

.f-latestpricetable thead th:last-child {
    border-top-right-radius: 10px;
}

.f-latestpricetable thead th .unit {
    display: block;
    font-weight: 400;
    font-size: 11.5px;
    opacity: 0.8;
    margin-top: 2px;
}

.f-latestpricetable tbody td {
    padding: 11px 18px;
    text-align: right;
    color: #1c1c2e;
    border-bottom: 1px solid #dcdde8;
}

.f-latestpricetable tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--brand-color-primary);
}

.f-latestpricetable tbody tr:nth-child(even) {
    background: #f4f5fb;
}

.f-latestpricetable tbody tr:hover {
    background: rgba(0, 153, 153, 0.08);
    transition: background 0.15s ease-in-out;
}

.f-latestpricetable tbody tr:last-child td {
    border-bottom: none;
}

.f-latestpricetable tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.f-latestpricetable tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.f-latestpricetable td.export {
    border-left: 3px solid transparent;
}

.f-latestpricetable td.import-price {
    color: var(--brand-color-secondary);
    font-weight: 600;
}

.f-explore .section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 44px 0 18px;
    padding: 10px 18px;
    background: var(--brand-color-primary);
    border-radius: 8px;
}

.f-explore .section-header__num {
    flex: 0 0 auto;
    min-width: 28px;
    text-align: center;
    color: var(--brand-color-primary);
    background: #ffffff;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 6px;
}

.f-explore .section-header__title {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}


.f-explore .callout {
    background: rgba(0, 153, 153, 0.06);
    border: 1px solid rgba(0, 153, 153, 0.28);
    border-left: 4px solid var(--brand-color-secondary);
    border-radius: 8px;
    padding: 14px 20px;
    margin: 20px 0;
}

.f-explore .callout__title {
    margin: 0 0 6px;
    font-weight: 700;
    color: var(--brand-color-primary);
    font-size: 14.5px;
}

.f-explore .callout__body {
    margin: 0;
    color: #3a3f4d;
    font-size: 14px;
}


.f-explore .status-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 3px 9px;
    border-radius: 999px;
    line-height: 1.5;
}

.f-explore .status-active {

    color: var(--brand-color-secondary);
}

.f-explore .status-expired {
    background: rgba(37, 38, 120, 0.08);
    color: #6b6d85;
}

.f-explore .status-ongoing {

    color: #00706e;
}

.f-explore .status-historical {

    color: #5a5c8a;
}

.f-explore .status-implementation {

    color: var(--brand-color-primary);
}

.f-explore .status-neutral {

    color: #4a4f5c;
}


.f-explore table td:first-child strong {
    color: var(--brand-color-primary);

    letter-spacing: 0.02em;
}


@media (max-width: 600px) {
    .f-latestpricetable {
        font-size: 12.5px;
    }

    .f-latestpricetable thead th,
    .f-latestpricetable tbody td {
        padding: 9px 10px;
    }
}

@media (max-width: 600px) {
    .f-explore {
        padding: 20px 20px 28px;
    }

    .f-explore table thead th,
    .f-explore table tbody td {
        padding: 9px 10px;
    }

    .f-explore .research-item {
        padding: 12px 14px;
    }
}

/* =========================================== */


/* =========================================== */
/* =========================
   SIR GALLERY CARD
   ========================= */

/* Gallery Items */
.f-sir li {
    padding: 0 !important;
    margin: 10px !important;
}

.f-sir .fGalleryList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-sir .fGalleryItem {
    transition: none !important;
}


/* =========================
   CARD
   ========================= */

.f-sir .ItemfinnerGallery {
    position: relative !important;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;

    /* NO SHADOW */
    box-shadow: none !important;

    border-bottom: 4px solid var(--brand-color-theme-1);

    /* NO TRANSFORM / ANIMATION */
    transform: none !important;
    transition: none !important;

    height: 100%;
}


/* =========================
   CARD HOVER
   ========================= */

.f-sir .ItemfinnerGallery:hover {
    /* NO TRANSFORM */
    transform: none !important;

    /* NO SHADOW */
    box-shadow: none !important;
}


/* =========================
   IMAGE
   ========================= */

.f-sir .fGalleryImage {
    display: block;
    width: 100%;
    overflow: hidden;
}

.f-sir .fGalleryImage img {
    width: 100%;
    height: 525px;
    object-fit: cover;
    display: block;

    /* NO IMAGE ZOOM */
    transform: none !important;
    transition: none !important;
}


/* =========================
   IMAGE HOVER
   ========================= */

.f-sir .ItemfinnerGallery:hover .fGalleryImage img {
    transform: none !important;
}


/* =========================
   PDF / DOCUMENT LINK
   MAKE ENTIRE CARD CLICKABLE
   ========================= */

.f-sir .fGalleryText {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 10 !important;

    display: block !important;
}


/* =========================
   ACTUAL LINK
   ========================= */

.f-sir .fGalleryText a {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100% !important;
    height: 100% !important;

    display: block !important;

    /* HIDE LINK TEXT */
    font-size: 0 !important;
    color: transparent !important;
    text-indent: -9999px !important;

    /* ENTIRE CARD IS CLICKABLE */
    cursor: pointer !important;

    text-decoration: none !important;

    /* NO TRANSFORM */
    transform: none !important;
}


/* =========================
   REMOVE UNWANTED CONTENT
   ========================= */

.f-sir .fGalleryText::before,
.f-sir .fGalleryText::after {
    display: none !important;
    content: none !important;
}


/* =========================
   CONTACT HEADING
   ========================= */

.f-contactheading h3 {
    color: var(--module-title-color);
    font-weight: 700;
}


/* =========================
   TABLET / MOBILE
   ========================= */

@media (max-width: 991px) {

    .f-sir .fGalleryItem {
        margin-bottom: 20px !important;
    }

    .f-sir .fGalleryImage img {
        height: 220px;
    }
}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 575px) {

    .f-sir .fGalleryImage img {
        height: 200px;
    }
}

/* =========================================== */
/* ========================================== */
.f-steal-price .dashboard-button .fButton::before {
    content: none;
    display: none;
}

.f-steelad {
    padding: 40px 0;
}

/* Gallery item */
.f-steelad .fGalleryItem {
    padding: 10px !important;
    margin: 0 !important;
}

/* Card */
.f-steelad .ItemfinnerGallery {
    position: relative !important;
    background: #fff;
    border: 5px solid #e5e5e5;
    border-radius: 14px;
    overflow: hidden;
    box-sizing: border-box;

    /* No shadow */
    box-shadow: none !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08) !important;

    /* No transition / animation */
    transition: none !important;
    transform: none !important;
}


/* Image */
.f-steelad .fGalleryImage {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* Image sizing */
.f-steelad .fGalleryImage img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;

    /* No zoom or transition */
    transform: none !important;
    transition: none !important;
}


/* Gallery text */
.f-steelad .fGalleryText {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove unwanted pseudo elements */
.f-steelad .fGalleryText::before,
.f-steelad .fGalleryText::after {
    display: none !important;
    content: none !important;
}

/* Responsive */
@media (max-width: 767px) {
    .f-steelad .fGalleryItem {
        padding: 8px !important;
    }

    .f-steelad .ItemfinnerGallery {
        border-width: 4px;
        border-radius: 12px;
    }
}

/* ========================================== */
/* ========================================== */
.f-whistleblowing table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0 22px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14.5px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(37, 38, 120, 0.15);
}

.f-whistleblowing table caption {
    text-align: left;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-color-secondary);
    margin-bottom: 6px;
}

.f-whistleblowing thead th {
    background: var(--brand-color-primary);
    color: #fff;
    text-align: left;
    padding: 12px 14px;
    font-weight: 600;
    border-bottom: 3px solid var(--brand-color-secondary);
}

.f-whistleblowing thead th:first-child {
    border-top-left-radius: 8px;
}

.f-whistleblowing thead th:last-child {
    border-top-right-radius: 8px;
}

.f-whistleblowing tbody td {
    padding: 11px 14px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e3e6f0;
}

.f-whistleblowing tbody td:first-child {
    border-left: 4px solid var(--brand-color-secondary);
    font-weight: 700;
    color: var(--brand-color-primary);
    white-space: nowrap;
}

.f-whistleblowing tbody tr:nth-child(odd) {
    background: #f5f6fb;
}

.f-whistleblowing tbody tr:nth-child(even) {
    background: #ffffff;
}

.f-whistleblowing tbody tr:last-child td {
    border-bottom: none;
}

.f-whistleblowing tbody tr:hover {
    background: #e8f6f6;
    transition: background 0.15s ease-in-out;
}

/* ========================================== */
/* ========================================== */
/* ==========================================
   EVENTS CARD
   ========================================== */

.f-events .f-list-content {
    margin: 0 -10px;
}

.f-events .f-list-item {
    padding: 10px;
}

.f-events .f-list-item-container {
    background: #ffffff;
    border: 1px solid rgba(37, 38, 120, 0.12);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(37, 38, 120, 0.08);
    height: 100%;
}


/* Event Image */
.f-events .f-list-item-teaser-image {
    width: 100%;

    overflow: hidden;
}

.f-events .f-list-item-teaser-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* Event Content */
.f-events .f-list-item-content-text {
    padding: 10px 12px 22px;
    background: #ffffff;
}


/* Event Title */
.f-events .f-list-item-title {
    margin: 0;
}

.f-events .f-list-item-title a {
    display: block;
    color: var(--brand-color-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}


/* Small Brand Accent */
.f-events .f-list-item-content-text {
    position: relative;
}




/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 991px) {


    .f-events .f-list-item-title a {
        font-size: 17px;
    }

}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 575px) {

    .f-events .f-list-content {
        margin: 0;
    }

    .f-events .f-list-item {
        padding: 8px 0;
    }

    .f-events .f-list-item-teaser-image {
        height: 220px;
    }

    .f-events .f-list-item-content-text {
        padding: 18px 20px 20px;
    }

    .f-events .f-list-item-title a {
        font-size: 16px;
    }

}

/* =========================================== */
/* ========================================= */
.csr-timeline {

    margin-bottom: 30px;
    padding: 0 20px;
    position: relative;
}



/* ===== Event card ===== */
.csr-event {
    position: relative;
    background: #fff;
    border: 1px solid #e2e4ee;
    border-radius: 12px;
    box-shadow: 0 14px 30px -18px rgba(37, 38, 120, 0.35);
    margin: 0 0 36px 60px;
    padding: 26px 30px 30px;
}


.csr-date {
    display: inline-block;
    background: rgba(0, 153, 153, 0.1);
    color: var(--brand-color-secondary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.csr-event h2 {
    margin: 0 0 14px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-color-primary);
    line-height: 1.35;
}

.csr-event p {
    color: #454a63;
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0 0 14px;
}

.csr-event p em {
    color: var(--brand-color-primary);
    font-style: italic;
}

.csr-event ul {
    margin: 0 0 14px;
    padding-left: 20px;
    color: #454a63;
    line-height: 1.7;
    font-size: 0.98rem;
}

.csr-event ul li {
    margin-bottom: 6px;
}

.csr-event ul li strong {
    color: var(--brand-color-primary);
}

.csr-event .csr-donors {
    margin: 0 0 14px;
    padding-left: 20px;
}

.csr-contact {
    background: #f5f6fa;
    border-left: 3px solid var(--brand-color-secondary);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 0.92rem;
    color: #454a63;
    margin: 0 0 14px;
}

.csr-contact a {
    color: var(--brand-color-secondary);
    text-decoration: none;
    font-weight: 600;
}

.csr-contact a:hover {
    text-decoration: underline;
}

/* ===== Image gallery ===== */
.csr-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.csr-gallery img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e2e4ee;
    display: block;
}

@media (max-width: 600px) {
    .csr-hero {
        padding: 40px 18px 52px;
    }

    .csr-hero h1 {
        font-size: 1.5rem;
    }

    .csr-timeline {
        padding: 0 12px;
    }

    .csr-timeline::before {
        left: 16px;
    }

    .csr-event {
        margin-left: 34px;
        padding: 20px 18px 24px;
    }

    .csr-event::before {
        left: -26px;
        width: 12px;
        height: 12px;
    }
}

/* ========================================= */
/* ======================================== */
/* ==========================================
   MSI MEDIA RELEASE
   ========================================== */

.f-mediarelease {
    width: 100%;
    padding: 10px 0;
}

/* Main list */
.f-mediarelease .f-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
}

/* Each release */
.f-mediarelease .f-list-item {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Release card */
.f-mediarelease .f-list-item-container {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 92px;
    padding: 20px 24px;

    background: #ffffff;
    border: 1px solid rgba(37, 38, 120, 0.18);
    border-radius: 16px;

    position: relative;
    overflow: hidden;

    transition: all 0.3s ease;
}

/* Small brand accent */
.f-mediarelease .f-list-item-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-color-secondary, #009999);

    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

/* Hover */
.f-mediarelease .f-list-item-container:hover {
    border-color: rgba(0, 153, 153, 0.35);
    box-shadow: 0 8px 25px rgba(37, 38, 120, 0.08);
    transform: translateY(-2px);
}

.f-mediarelease .f-list-item-container:hover::before {
    transform: scaleY(1);
}


/* ==========================================
   CONTENT WRAPPER
   ========================================== */

.f-mediarelease .f-list-item-content-text {
    display: grid;
    grid-template-columns: 135px 1fr;
    align-items: center;
    gap: 28px;

    width: 100%;
}


/* ==========================================
   DATE
   ========================================== */

.f-mediarelease .f-list-item-title {
    margin: 0;
    padding: 0;

    color: var(--brand-color-secondary, #009999);

    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.3px;

    white-space: nowrap;
}


/* ==========================================
   RELEASE TITLE
   ========================================== */

.f-mediarelease .f-list-item-teaser-content {
    margin: 0;
    padding: 0;
}

.f-mediarelease .f-list-item-teaser-content p {
    margin: 0;
    padding: 0;
}

.f-mediarelease .f-list-item-teaser-content a {
    display: inline-block;

    color: var(--brand-color-primary, #252678);

    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;

    text-decoration: none;

    transition: color 0.3s ease;
}

.f-mediarelease .f-list-item-teaser-content a:hover {
    color: var(--brand-color-secondary, #009999);
}


/* ==========================================
   OPTIONAL ARROW
   ========================================== */

.f-mediarelease .f-list-item-teaser-content a::after {
    content: "→";
    display: inline-block;

    margin-left: 10px;

    color: var(--brand-color-secondary, #009999);
    font-size: 18px;
    font-weight: 600;

    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.f-mediarelease .f-list-item-container:hover .f-list-item-teaser-content a::after {
    opacity: 1;
    transform: translateX(0);
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 768px) {

    .f-mediarelease .f-list {
        gap: 12px;
    }

    .f-mediarelease .f-list-item-container {
        min-height: auto;
        padding: 18px 20px;
    }

    .f-mediarelease .f-list-item-content-text {
        grid-template-columns: 120px 1fr;
        gap: 20px;
    }

    .f-mediarelease .f-list-item-title {
        font-size: 13px;
    }

    .f-mediarelease .f-list-item-teaser-content a {
        font-size: 16px;
    }

}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 576px) {

    .f-mediarelease {
        padding: 5px 0;
    }

    .f-mediarelease .f-list {
        gap: 10px;
    }

    .f-mediarelease .f-list-item-container {
        padding: 17px 18px;
        border-radius: 12px;
    }

    .f-mediarelease .f-list-item-content-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

    .f-mediarelease .f-list-item-title {
        font-size: 12px;
        line-height: 1.3;
    }

    .f-mediarelease .f-list-item-teaser-content a {
        font-size: 15px;
        line-height: 1.45;
    }

    .f-mediarelease .f-list-item-teaser-content a::after {
        display: none;
    }

}


/* ==========================================
   SMALL MOBILE
   ========================================== */

@media (max-width: 375px) {

    .f-mediarelease .f-list-item-container {
        padding: 15px 16px;
    }

    .f-mediarelease .f-list-item-teaser-content a {
        font-size: 14px;
    }

}

/* ========================================= */
/* ========================================== */
.statement-card {
    background: #fff;


    border-radius: 8px;
    padding: 18px 22px;
    margin: 16px 0;
    box-shadow: 0 1px 4px rgba(37, 38, 120, 0.25);
    border-left: 5px solid var(--brand-color-secondary);
}

.statement-card .label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    font-weight: 700;
    color: var(--brand-color-secondary);
    background: rgba(255, 255, 255, 0.08);

    border-radius: 4px;
    margin-bottom: 10px;

}

.statement-card p {
    margin: 0;
    font-weight: 600;
    text-align: left;
    font-size: 16px;
}

/* ==========================================
   HR DEVELOPMENT PAGE
   ========================================== */
.f-hrd .fModuleContent>div {

    margin: 0 auto;
    padding: 40px 45px;

    background: #ffffff;
    border: 1px solid rgba(37, 38, 120, 0.10);
    border-radius: 20px;

    box-shadow: 0 2px 5px rgba(37, 38, 120, 0.12);
}

.f-hrd {
    width: 100%;
    padding: 20px 0 60px;
}



/* ==========================================
   PAGE TITLE
   ========================================== */

.f-hrd h3 {
    position: relative;

    margin: 0 0 20px;


    color: var(--brand-color-primary, #252678);


    font-weight: 700;
    line-height: 1.25;
}




/* ==========================================
   INTRO / LEAD TEXT
   ========================================== */

.f-hrd .lead {



    color: var(--brand-color-secondary, #009999);


    font-weight: 600;
    line-height: 1.6;

    text-align: center;
}


/* ==========================================
   BODY CONTENT
   ========================================== */

.f-hrd p:not(.lead) {
    margin: 0 0 22px;

    color: #4b4b55;

    font-size: 16px;
    line-height: 1.8;
}

/* First paragraph after lead */
.f-hrd .lead+p {
    margin-top: 0;
}




/* ==========================================
   ENQUIRY CARD
   ========================================== */

.f-hrd .contact-card {
    display: flex;
    align-items: center;

    position: relative;

    margin-top: 40px;
    padding: 28px 32px;

    background: #f6f7fb;

    border: 1px solid rgba(37, 38, 120, 0.15);
    border-radius: 16px;

    box-shadow: 0 8px 25px rgba(37, 38, 120, 0.06);

    overflow: hidden;
}

/* Accent strip */
.f-hrd .contact-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    width: 5px;

    background: var(--brand-color-secondary, #009999);
}


/* ==========================================
   ENQUIRY LABEL
   ========================================== */

.f-hrd .contact-card .label {
    margin-bottom: 7px;

    color: var(--brand-color-secondary, #009999);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ==========================================
   CONTACT NAME
   ========================================== */

.f-hrd .contact-card .name {
    margin-bottom: 8px;

    color: var(--brand-color-primary, #252678);

    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}


/* ==========================================
   CONTACT DETAILS
   ========================================== */

.f-hrd .contact-card .detail {
    color: #555;

    font-size: 15px;
    line-height: 1.8;
}

.f-hrd .contact-card .detail a {
    color: var(--brand-color-primary, #252678);

    font-weight: 600;
    text-decoration: none;

    transition: color 0.3s ease;
}

.f-hrd .contact-card .detail a:hover {
    color: var(--brand-color-secondary, #009999);
    text-decoration: underline;
}





/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 768px) {

    .f-hrd {
        padding: 10px 0 45px;
    }

    .f-hrd .fModuleContent>div {
        padding: 0 20px;
    }

    .f-hrd h3 {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .f-hrd .lead {
        margin-bottom: 30px;
        padding: 18px 22px;
        font-size: 18px;
    }

    .f-hrd p:not(.lead) {
        font-size: 15.5px;
        line-height: 1.75;
        margin-bottom: 20px;
    }

    .f-hrd .contact-card {
        margin-top: 32px;
        padding: 24px 26px;
    }

}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 576px) {

    .f-hrd {
        padding: 5px 0 35px;
    }

    .f-hrd .fModuleContent>div {
        padding: 0 15px;
    }

    .f-hrd h3 {
        font-size: 26px;
        line-height: 1.3;
        padding-bottom: 14px;
        margin-bottom: 15px;
    }

    .f-hrd h3::after {
        width: 45px;
        height: 3px;
        margin-top: 11px;
    }

    .f-hrd .lead {
        padding: 16px 18px;
        margin-bottom: 26px;

        font-size: 16px;
        line-height: 1.55;

        text-align: left;
    }

    .f-hrd p:not(.lead) {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
        text-align: left;
    }

    .f-hrd .contact-card {
        margin-top: 28px;
        padding: 22px 20px;
        border-radius: 12px;
    }

    .f-hrd .contact-card .label {
        font-size: 12px;
    }

    .f-hrd .contact-card .name {
        font-size: 18px;
    }

    .f-hrd .contact-card .detail {
        font-size: 14px;
        line-height: 1.7;
        word-break: break-word;
    }

}


/* ==========================================
   SMALL MOBILE
   ========================================== */

@media (max-width: 375px) {

    .f-hrd .fModuleContent>div {
        padding: 0 12px;
    }

    .f-hrd h3 {
        font-size: 24px;
    }

    .f-hrd .lead {
        font-size: 15px;
        padding: 15px 16px;
    }

    .f-hrd p:not(.lead) {
        font-size: 14px;
    }

    .f-hrd .contact-card {
        padding: 20px 17px;
    }

}

/* ========================================== */
/* ========================================= */
.f-train {

    color: #2c2c2c;
    background: #f7f8fb;
    box-sizing: border-box;
}

.f-train * {
    box-sizing: border-box;
}

/* Page header banner */
.f-train .f-train-header {
    background: var(--brand-color-primary);
    color: #fff;
    padding: 40px 24px;
    text-align: center;
}

.f-train .f-train-header h1 {
    margin: 0;
    font-size: 30px;
}

/* Content wrapper */
.f-train .f-train-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 36px 24px 60px;
}

/* Section headings */
.f-train h2 {
    color: var(--brand-color-primary);
    font-size: 22px;
    border-left: 4px solid var(--brand-color-secondary);
    padding-left: 12px;
    margin-top: 40px;
    margin-bottom: 16px;
}

/* Body text */
.f-train p {
    line-height: 1.7;
    margin: 0 0 14px;
    text-align: justify;
}

.f-train ul {
    padding-left: 22px;
    margin: 0 0 14px;
}

.f-train li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.f-train li::marker {
    color: var(--brand-color-secondary);
}

.f-train strong {
    color: var(--brand-color-primary);
}

/* Editable image slots — update the <img src> to change a photo */
.f-train .img-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 16px 0 20px;
}

.f-train .img-group figure {
    margin: 0;
    flex: 1 1 260px;
}

.f-train figure.single-img {
    margin: 16px 0 20px;
}

.f-train .img-group img,
.f-train figure.single-img img {
    max-width: 100%;
    height: 300px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(37, 38, 120, 0.15);
    display: block;
    border: 11px solid #dfd5d547;
}

.f-train figcaption {
    font-size: 12.5px;
    color: #666;
    margin-top: 6px;
    text-align: center;
}

/* Stat highlight cards */
.f-train .stat-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 16px 0 20px;
}

.f-train .stat-card {
    flex: 1 1 140px;
    background: #f5f6fb;
    border-top: 3px solid var(--brand-color-secondary);
    border-radius: 6px;
    padding: 14px 12px;
    text-align: center;
}

.f-train .stat-card .number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-color-primary);
}

.f-train .stat-card .caption {
    display: block;
    font-size: 12.5px;
    color: #555;
    margin-top: 4px;
}

/* Branded data table */
.f-train table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0 8px;
    font-size: 14.5px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(37, 38, 120, 0.15);
}

.f-train table caption {
    text-align: left;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-color-secondary);
    margin-bottom: 6px;
}

.f-train thead th {
    background: var(--brand-color-primary);
    color: #fff;
    text-align: left;
    padding: 12px 14px;
    font-weight: 600;
    border-bottom: 3px solid var(--brand-color-secondary);
}

.f-train tbody td {
    padding: 11px 14px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e3e6f0;
}

.f-train tbody td:first-child {
    border-left: 4px solid var(--brand-color-secondary);
    font-weight: 700;
    color: var(--brand-color-primary);
}

.f-train tbody tr:nth-child(odd) {
    background: #f5f6fb;
}

.f-train tbody tr:nth-child(even) {
    background: #ffffff;
}

.f-train tbody tr:last-child td {
    border-bottom: none;
}

.f-train tbody tr.total-row td {
    background: #e8f6f6;
    font-weight: 700;
    color: var(--brand-color-primary);
}

/* Source / citation blockquote */
.f-train blockquote {
    font-style: italic;
    color: #555;
    font-size: 13px;
    border-left: 3px solid var(--brand-color-secondary);
    padding-left: 12px;
    margin: 4px 0 20px;
}

.f-train blockquote a {
    color: var(--brand-color-primary);
}

/* ========================================= */
/* ========================================= */
.f-decar h2 {
    color: var(--brand-color-primary);
    font-size: 21px;
    border-left: 4px solid var(--brand-color-secondary);
    padding-left: 12px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.f-decar p {
    line-height: 1.7;
    margin: 0 0 14px;
    text-align: justify;
}

/* Who should join - tag pills */
.f-decar .audience-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 6px;
}

.f-decar .audience-pills span {
    background: #eef0fb;
    color: var(--brand-color-primary);
    border: 1px solid #d3d6f0;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 600;
}

/* Programme highlight cards */
.f-decar .highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 18px 0 8px;
    margin-bottom: 40px;
}

@media (max-width: 640px) {
    .f-decar .highlight-grid {
        grid-template-columns: 1fr;
    }
}

.f-decar .highlight-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px 20px;
    box-shadow: 0 1px 4px rgba(37, 38, 120, 0.12);
    border-top: 3px solid var(--brand-color-secondary);
}

.f-decar .highlight-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand-color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.f-decar .highlight-card p {
    margin: 0;
    font-size: 14.5px;
    text-align: left;
    color: #333;
    line-height: 1.55;
}

.f-decar .highlight-card strong {
    color: var(--brand-color-primary);
}

/* Learn more / CTA button */
.f-decar .cta-box {
    background: #fff;
    border-radius: 8px;
    padding: 22px 26px;
    margin: 12px 0 8px;
    box-shadow: 0 1px 4px rgba(37, 38, 120, 0.12);
    border-left: 5px solid var(--brand-color-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.f-decar .cta-box p {
    margin: 0;
    font-weight: 600;
    color: var(--brand-color-primary);
    text-align: left;
}

.f-decar .cta-button {
    background: var(--brand-color-secondary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 24px;
    white-space: nowrap;
}

.f-decar .cta-button:hover {
    background: #007c7c;
}

/* Contact card */
.f-decar .contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--brand-color-primary);
    color: #fff;
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 34px;
    box-shadow: 0 1px 4px rgba(37, 38, 120, 0.25);
    border-left: 5px solid var(--brand-color-secondary);
}

.f-decar .contact-card .avatar {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--brand-color-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
}

.f-decar .contact-card .label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-color-secondary);
    margin-bottom: 4px;
}

.f-decar .contact-card .detail {
    font-size: 14px;
    line-height: 1.5;
}

.f-decar .contact-card a {
    color: #fff;
    text-decoration: underline;
}

/* ======================================== */
/* ========================================= */
.f-about-us-home-page .fModuleTitle h3 {
    margin-bottom: 5px;
}

.f-latest-news .f-list-content .f-list-item-title a {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    margin-bottom: 10px;
}

.f-latest-news .f-list-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.f-latest-news .f-list-content.row {
    flex-direction: row;
    gap: 0;
}

/* .f-latest-news .f-list-content.row .f-list-item {
    padding: 12px;

} */
.f-latest-news p{
    font-size: 0.89rem;
    margin: 0;
}
/* =========================================
   LATEST NEWS - MSI
   ========================================= */



/* News row */
.f-newslatest .f-list-content {
    margin-left: -12px;
    margin-right: -12px;
    row-gap: 25px;
}


/* News columns */
.f-newslatest .f-list-item {
    padding-left: 12px;
    padding-right: 12px;
}


/* News card */
.f-newslatest .f-list-item-container {
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(37, 38, 120, 0.10);
    border-left: 4px solid #009999;
    border-radius: 10px;

    position: relative;
    overflow: hidden;

}






/* Content */
.f-newslatest .f-list-item-content-text {
    position: relative;
}


/* News title */
.f-newslatest .f-list-item-title {
    margin-bottom: 12px;
}

.f-newslatest .f-list-item-title a {
    color: #252678;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.f-newslatest .f-list-item-title a:hover {
    color: #009999;
}


/* News description */
.f-newslatest .f-list-item-subtitle {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}


/* Hide empty teaser */
/* .f-newslatest .f-list-item-teaser-content {
    display: none;
} */


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    .f-newslatest {
        padding: 55px 0;
    }

    .f-newslatest .f-module-title h3 {
        font-size: 32px;
    }

    .f-newslatest .f-list-item-container {
        padding: 25px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .f-newslatest {
        padding: 45px 0;
    }

    .f-newslatest .f-module-title {
        margin-bottom: 30px;
    }

    .f-newslatest .f-module-title h3 {
        font-size: 28px;
    }

    .f-newslatest .f-list-item-container {
        padding: 22px;
    }

    .f-newslatest .f-list-item-title a {
        font-size: 19px;
    }

    .f-newslatest .f-list-item-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 575px) {

    .f-newslatest {
        padding: 40px 0;
    }

    .f-newslatest .f-module-title h3 {
        font-size: 26px;
    }

    .f-newslatest .f-list-item-container {
        padding: 20px;
    }
}

/* ========================================= */

.ticker-tape a {
    color: #fff;
}

@media (max-width: 767px) {

    table {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
    }

    table[style] {
        max-width: 100% !important;
    }

    table th,
    table td {
        white-space: nowrap;
    }

}
/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 767px) {
    .f-rkme {
        padding: 35px 0;
    }

    .f-rkme .f-module-title h3 {
        font-size: 25px;
    }

    .f-rkme .fGalleryText {
        padding: 16px;
    }

    .f-rkme .fGalleryText a {
        font-size: 14px;
    }

    .f-rkme .ItemfinnerGallery::after {
        display: none;
    }
}


/*  */


/* responsive css starts here */


/* min-width media query */

@media (max-width: 574.9px) {}

@media (min-width: 767.9px) {
    .f-latest-announcements .f-latest-news {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 479.9px) {
    .f-latest-news .f-list-content {
        padding-left: 12px;
    }

    .f-latest-news .f-list-content .f-list-item-title {
        font-size: 13px;
    }

    .f-latest-news .f-list-content .f-list-item-subtitle {
        font-size: 12px;
    }

    .f-latest-announcements.f-latest-news {
        padding-bottom: 0 !important;
    }

    .msi-membership .fGalleryText {
        padding: 20px;
    }
}

@media(min-width:991.9px) {
    .f-steal-price>.container {
        min-width: 100%;
        max-width: 100%;
        padding: 0;
    }
}


/* max width media query */

@media (max-width: 991.9px) {

    .f-Publications .fGalleryList,
    .fGalleryContainer ul {
        gap: 30px;
    }

    .fGalleryTextnew .ItemfinnerGallery {
        text-align: center;
    }

    .fGalleryTextnew .fGalleryImage img {
        margin: 0 auto;
    }

    .fGalleryTextnew .fGalleryImage {
        margin: 0 auto;
    }

    .f-socialmediafooter {
        padding: 20px;
    }

    .f-organization,
    .f-resources {
        padding: 0px 0px 20px 20px;
        /* margin-top: 30px; */
    }

    .f-socialmediafooter .f-media-image img {
        max-width: 220px;
    }

    .f-resources .f-module-title h3 {
        margin-bottom: 7px;
    }

    .f-latest-news .f-list-content .f-list-item {
        margin-bottom: 25px;
    }

    .f-latest-news .f-list-content .f-list-item-title {
        font-size: 15px;
    }

    .f-latest-news .f-list-content .f-list-item-subtitle {
        font-size: 14px;
    }

    .f-banner .fGalleryImage img {
        min-height: 450px;
    }

    .hero-content h3 {
        font-size: 1.7rem;
    }

    .hero-tag {
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 7px 1rem;
        font-size: .9rem;
        text-align: center;
        border-radius: 5px;
    }

    .f-latest-news .f-list-content {
        padding-left: 0;
    }

    .f-latest-news .f-list-content::before {
        content: unset;
    }

    .f-latest-news .f-list-content .f-list-item {
        padding: 12px 0;
        margin-bottom: 0;
    }

    .f-attractions {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .f-latest-announcements .f-latest-news {
        padding-bottom: 0 !important;
    }

    .msi-membership .fGalleryText {
        padding: 20px;
    }
}

@media (max-width: 767.9px) {
    .msi-membership .fGalleryImage img {
        height: 289px;
    }

    .msi-membership .fGalleryText {
        padding: 15px;
    }

    .msi-membership h4 {
        font-size: 20px;
        line-height: 1.3;
    }

    .newaddbutton {
        font-size: 14px;
        padding: 10px 20px;
    }

    .f-Publications .fGalleryList,
    .fGalleryContainer ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .f-Publications .fGalleryItem {
        width: 100%;
    }

    .fGalleryTextnew .fGalleryImage {
        margin: 0 auto;
    }

    .header-logo-main img {
        width: 200px;
        max-height: 100%;
    }

    .news-ticker-wrapper,
    .live-news,
    .ticker-tape-container {
        height: 50px;
    }

    .live-news {
        width: 110px;
        font-size: 13px;
    }

    .ticker-tape-container {
        margin-left: 110px;
    }

    .ticker-tape span {
        font-size: 14px;
    }

    .ticker-tape span::after {
        margin: 0 20px;
    }

    .f-latest-news .f-list-content {
        padding-left: 15px;
    }

    .f-latest-news .f-list-content::before {
        left: 0;
    }

    .f-latest-news .f-list-content .f-list-item {
        margin-bottom: 20px;
    }

    .f-latest-news .f-list-content .f-list-item:not(:last-child) {
        padding-bottom: 15px;
    }

    .f-latest-news .f-list-content .f-list-item-title {
        font-size: 14px;
        line-height: 1.4;
    }

    .f-latest-news .f-list-content .f-list-item-subtitle {
        font-size: 13px;
        line-height: 1.5;
    }

    .custom-tabs {
        flex-direction: column;
        gap: 15px;
    }

    .custom-tabs .tab-heading {
        font-size: 24px;
    }

    .custom-tabs .nav-link {
        font-size: 18px;
    }

    .cta-btn {
        min-width: 100%;
    }

    .f-steal-price .f-bottom-button-and-text {
        flex-direction: column;
        align-items: flex-start;
    }

    .f-steal-price .materials,
    .f-steal-price .price {
        font-size: .9rem;
    }

    .f-steal-price .f-list-item-subtitle {
        text-align: left;
    }

    .f-steal-price .dashboard-button {
        margin-top: 20px;
    }

    .f-clientlogos .fGalleryItem {
        height: 90px;
    }

    .f-clientlogos .fGalleryImage img {
        max-width: 120px;
        max-height: 60px;
    }

    .f-steal-price .f-module-content {
        padding: 12px;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .f-steal-price .f-list-item-title,
    .f-steal-price .f-list-item-subtitle {
        font-size: .9rem;
    }

    .f-steal-price .dashboard-button {
        margin: 0 auto;
    }

    .f-Publications {
        padding-bottom: 0 !important;
    }

    .msceo p {
        margin-top: 12px !important;
    }

    .f-socialmediafooter .f-module-title h3,
    .f-organization .f-module-title h3,
    .f-resources .f-module-title h3 {
        margin-bottom: 7px;
        margin-top: 0;
    }

    .f-attractions {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .f-latest-announcements .f-latest-news {
        padding-bottom: 0 !important;
    }

    .msi-membership .fGalleryText {
        padding: 20px;
    }
    .msceo .f-media-image {
   
    max-width: 100%;
 
   
    padding: 0px;
}

  /* MSI logo */
  #fModule-63403.header-logo-main {
    flex: 0 0 42% !important;
    max-width: 25% !important;
    order: 1;
  }

  /* Ministry crest — currently has no xs/sm class, so it defaults to full width */
  #fModule-66743.header-logo-main {
    flex: 0 0 42% !important;
    max-width: 25% !important;
    order: 2;
  }

  /* Hamburger menu module */
  #fModule-63404.main-menu {
    flex: 0 0 16% !important;
    max-width: 16% !important;
    order: 3;
  }

  #fModule-63403 img,
  #fModule-66743 img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

@media(max-width:574.9px) {
    .f-banner .fGalleryImage img {
        min-height: 550px;
    }

    .f-attractions {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .f-latest-announcements .f-latest-news {
        padding-bottom: 0 !important;
    }

    .msi-membership .fGalleryText {
        padding: 20px;
    }
}

@media (max-width: 1200px) {
    .custom-tabs {
        justify-content: center;
        text-align: center;
    }

    .custom-tabs .nav-link {
        font-size: 20px;
    }
}