.about-block-two {
    display: flex;
    align-items: flex-start;
    gap: 45px;
    width: 100%;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}


/* =========================================
   ICON
========================================= */

.about-feature-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;

    border-radius: 10px;

    background: #055f37;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon.blue-icon {
    background: #071d3f;
}

.about-feature-icon i {
    font-size: 33px;
    color: #fff;
}


/* =========================================
   CONTENT
========================================= */

.about-feature-content {
    padding-top: 2px;
}

.about-feature-content h6 {
    margin: 0 0 8px;

    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;

    color: #071d3f;
}

.about-feature-content p {
    margin: 0;

    font-size: 12px;
    line-height: 1.55;

    color: #777;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-block-two {
        gap: 25px;
    }

    .about-feature-item {
        gap: 13px;
    }

    .about-feature-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .about-feature-icon i {
        font-size: 29px;
    }

    .about-feature-content h6 {
        font-size: 14px;
    }

    .about-feature-content p {
        font-size: 11px;
    }
}


@media (max-width: 575px) {

    .about-block-two {
        flex-direction: column;
        gap: 25px;
    }

    .about-feature-item {
        width: 100%;
    }

    .about-feature-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .about-feature-icon i {
        font-size: 31px;
    }

    .about-feature-content h6 {
        font-size: 15px;
    }

    .about-feature-content p {
        font-size: 11px;
    }
}


/* ================================
       Investment Section
    ================================= */

.investment-section {
    width: 100%;
    padding: 70px 0 24px;
    background: linear-gradient(90deg,
            #eefaf5 0%,
            #ffffff 50%,
            #ffffff 100%);
}

.investment-container {
    width: 92%;
    max-width: 1450px;
    margin: 0 auto;
}

.investment-heading {
    margin: 0 0 18px;
    font-size: 21px;
    font-weight: 600;
    color: #222;
}


/* ================================
       Cards
    ================================= */

.investment-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.investment-card {
    position: relative;
    height: 277px;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 15px;

    display: flex;
    align-items: flex-start;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    cursor: pointer;
}


/* Hover effect */
.investment-card:hover {
    transform: translateY(-6px);
    border-color: #d8eee5;

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.10);
}


/* ================================
       Content
    ================================= */

.investment-content {
    position: relative;
    z-index: 2;

    padding: 25px 15px 20px;
    width: 65%;
}


/* Badge */

.investment-badge {
    display: inline-block;

    padding: 8px 14px;

    border-radius: 20px;

    background: #e7f9f2;
    color: #00a86b;

    font-size: 14px;
    font-weight: 500;

    margin-bottom: 15px;

    transition: all 0.3s ease;
}

.investment-card:hover .investment-badge {
    background: #d9f5eb;
    transform: translateY(-2px);
}


/* Title */

.investment-title {
    margin: 0 0 14px;

    font-size: 25px;
    line-height: 1.2;

    font-weight: 500;
    color: #3f3f3f;

    transition: color 0.3s ease;
}

.investment-card:hover .investment-title {
    color: #111;
}


/* Arrow */

.investment-arrow {
    display: inline-block;

    margin-left: 8px;

    font-size: 27px;
    font-weight: 400;

    transition:
        transform 0.3s ease;
}

.investment-card:hover .investment-arrow {
    transform: translate(5px, -4px);
}


/* Description */

.investment-description {
    margin: 0;

    color: #606060;

    font-size: 17px;
    line-height: 1.5;

    font-weight: 400;
}


/* ================================
       Product Image
    ================================= */

.investment-image {
    position: absolute;

    right: -5px;
    bottom: -5px;

    width: 42%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: flex-end;

    z-index: 1;

    pointer-events: none;
}

.investment-image img {
    width: 100%;
    height: auto;

    max-height: 190px;

    object-fit: contain;
    object-position: right bottom;

    transition:
        transform 0.45s ease;
}

.investment-card:hover .investment-image img {
    transform: scale(1.08) translate(-3px, -3px);
}


/* ================================
       View All Products
    ================================= */

.investment-button-wrapper {
    display: flex;
    justify-content: center;

    margin-top: 15px;
}

.investment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 178px;
    height: 46px;

    padding: 0 25px;

    border: 1px solid #006cff;
    border-radius: 9px;

    background: #ffffff;
    color: #006cff;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.investment-button:hover {
    background: #006cff;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(0, 108, 255, 0.18);
}


/* ================================
       Responsive
    ================================= */

@media (max-width: 991px) {

    .investment-row {
        grid-template-columns: 1fr 1fr;
    }

    .investment-card {
        height: 205px;
    }

}


@media (max-width: 767px) {

    .investment-section {
        padding: 45px 0 25px;
    }

    .investment-container {
        width: 90%;
    }

    .investment-row {
        grid-template-columns: 1fr;
    }

    .investment-card {
        height: 205px;
    }

    .investment-content {
        width: 65%;
    }

    .investment-title {
        font-size: 23px;
    }

    .investment-description {
        font-size: 15px;
    }

}

.main-footer {
    background: #121212;
    color: #aaa;
    padding: 35px 0 25px;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 86%;
    max-width: 1180px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.3fr 1.5fr 0.8fr;
    gap: 70px;
}

/* Headings */

.main-footer h4 {
    color: #777;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 18px;
}

.main-footer p {
    color: white;
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
}

/* About */

.footer-about p {
    max-width: 360px;
}

.footer-brand {
    margin-top: 45px;
    font-size: 62px;
    line-height: 1;
    font-weight: 500;
    color: #555;
    letter-spacing: -3px;
}

/* Quick Links */

.links-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.links-columns ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.links-columns li {
    margin-bottom: 12px;
}

.links-columns a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.links-columns a:hover {
    color: #fff;
}

/* Social */

.footer-social {
    text-align: left;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(3, 72px);
    gap: 14px;
}

.social-icons a {
    width: 72px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #333;
    border-radius: 12px;

    color: #777;
    text-decoration: none;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #444;
    color: #fff;
}



/* ================================
   FEATURE SECTION
================================ */

.feature-section {
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 32px 0;
}

.feature-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-item {
    flex: 1;

    display: flex;
    align-items: center;

    min-height: 78px;
    padding: 0 30px;

    border-right: 1px solid #e7eadf;
}

.feature-item:first-child {
    padding-left: 0;
}

.feature-item.last-item {
    border-right: none;
    padding-right: 0;
}

/* ================================
   ICON
================================ */

.feature-icon {
    width: 68px;
    height: 68px;

    flex: 0 0 68px;

    border-radius: 50%;

    background: #edf7df;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 18px;
}

.feature-icon i {
    font-size: 27px;
    color: #064d35;
}

/* ================================
   CONTENT
================================ */

.feature-content h4 {
    margin: 0 0 8px;

    font-size: 15px;
    font-weight: 700;

    color: #151515;
    line-height: 1.2;
}

.feature-content p {
    margin: 0;

    font-size: 13px;
    font-weight: 400;

    color: #6c6c6c;

    line-height: 1.6;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {

    .feature-container {
        flex-wrap: wrap;
        row-gap: 25px;
    }

    .feature-item {
        flex: 0 0 50%;
    }

    .feature-item:nth-child(2) {
        border-right: none;
    }

    .feature-item:nth-child(3) {
        border-right: 1px solid #e7eadf;
    }

    .feature-item.last-item {
        padding-right: 30px;
    }
}

@media (max-width: 600px) {

    .feature-section {
        padding: 25px 0;
    }

    .feature-container {
        width: 90%;
        display: block;
    }

    .feature-item,
    .feature-item:first-child,
    .feature-item.last-item {
        width: 100%;
        padding: 18px 0;
        border-right: none;
        border-bottom: 1px solid #e7eadf;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }

    .feature-icon i {
        font-size: 24px;
    }
}

/* =========================================
   BANNER THREE FEATURES - LARGE
========================================= */

.banner-features {
    display: flex;
    align-items: center;
    margin-top: 32px;
    width: 100%;
}

.banner-feature {
    display: flex;
    align-items: center;
    padding: 0 28px;
    border-right: 1px solid #dfe5dc;
    min-height: 72px;
}

.banner-feature:first-child {
    padding-left: 0;
}

.banner-feature:last-child {
    border-right: none;
}


/* =========================================
   ICON CIRCLE
========================================= */

.banner-feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;

    border-radius: 50%;

    background: #edf7df;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 15px;
}

.banner-feature-icon i {
    font-size: 23px;
    color: #075437;
}


/* =========================================
   TEXT
========================================= */

.banner-feature-content h6 {
    margin: 0 0 6px;

    font-size: 14px;
    line-height: 1.3;

    font-weight: 700;
    color: #202020;

    white-space: nowrap;
}

.banner-feature-content p {
    margin: 0;

    font-size: 11px;
    line-height: 1.5;

    color: #777;

    white-space: nowrap;
}


/* =========================================
   VIDEO TEXT
========================================= */

.btn-wrp {
    display: flex;
    align-items: center;
}

.video-text {
    display: flex;
    flex-direction: column;
    margin-left: 14px;
}

.video-text strong {
    font-size: 16px;
    line-height: 1.3;
    color: #222;
    font-weight: 700;
}

.video-text span {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .banner-feature {
        padding: 0 20px;
    }

    .banner-feature-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .banner-feature-icon i {
        font-size: 21px;
    }

    .banner-feature-content h6 {
        font-size: 12px;
    }

    .banner-feature-content p {
        font-size: 10px;
    }
}


@media (max-width: 991px) {

    .banner-features {
        margin-bottom: 30px;
    }

    .banner-feature {
        padding: 0 22px;
    }

    .banner-feature-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
    }

    .banner-feature-icon i {
        font-size: 22px;
    }

    .banner-feature-content h6 {
        font-size: 13px;
    }

    .banner-feature-content p {
        font-size: 10px;
    }
}


@media (max-width: 575px) {

    .banner-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .banner-feature {
        border-right: none;
        padding: 0;
    }

    .banner-feature-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .banner-feature-icon i {
        font-size: 23px;
    }

    .banner-feature-content h6 {
        font-size: 14px;
    }

    .banner-feature-content p {
        font-size: 11px;
    }
}

/* =========================
   FOOTER
========================= */

.main-footer {
    background: #055f37;
    color: #ffffff;
    padding: 65px 0 0;
    width: 100%;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr 1.3fr;
    gap: 40px;
}

/* =========================
   FOOTER HEADINGS
========================= */

.footer-container h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 22px;
    line-height: 1.4;
}

/* =========================
   ABOUT & FOOTER LOGO
========================= */

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 22px;
    display: inline-block;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo img {
    height: auto;
    max-height: 65px;
    max-width: 230px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.footer-logo a:hover img {
    opacity: 0.9;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* =========================
   FOOTER SECTIONS
========================= */

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 11px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* =========================
   FOLLOW US
========================= */

.footer-follow p {
    margin: 0;
    line-height: 2;
}

.footer-follow a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-follow a:hover {
    color: #ffffff;
}

.footer-follow span {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

/* =========================
   COPYRIGHT
========================= */

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin: 0 auto;
    text-align: center;
}

/* Follow Us - Icons in Same Line */
.footer-follow .footer-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* =========================
   FOOTER CONTACT INFO (BELOW ICONS)
========================= */

.footer-contact-info {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item .contact-icon {
    width: 20px;
    min-width: 20px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    margin: 0 !important;
}

.footer-contact-item .contact-icon i,
.footer-contact-item > i {
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* In case plain <i> is used directly */
.footer-contact-item > i {
    width: 20px;
    min-width: 20px;
    height: 22px;
    flex-shrink: 0;
    margin: 0 !important;
}

.footer-contact-item .contact-text,
.footer-contact-item > span,
.footer-contact-item > a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px;
    line-height: 22px;
    margin: 0 !important;
    text-decoration: none;
    word-break: break-word;
    display: block;
    transition: all 0.3s ease;
}

.footer-contact-item a.contact-text:hover,
.footer-contact-item > a:hover {
    color: #ffffff !important;
    padding-left: 3px;
}

.footer-follow .footer-nav li {
    margin: 0;
}

.footer-follow .footer-nav li a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-follow .footer-nav li a:hover {
    background: #ffffff;
    color: #055f37;
    border-color: #ffffff;
}

.footer-follow .footer-nav li a i {
    font-size: 15px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
    }

    .footer-about {
        grid-column: span 3;
        padding-right: 0;
    }

    .footer-bottom {
        grid-column: 1 / -1;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .main-footer {
        padding: 45px 0 0;
    }

    .footer-container {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-section {
        width: 100%;
    }

    .footer-container h4 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .footer-about p {
        font-size: 14px;
        line-height: 1.7;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-follow p {
        line-height: 2.2;
    }

    .footer-bottom {
        grid-column: auto;
        margin-top: 5px;
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* =========================================
   FUNFACT BLOCK CONTENT STYLES
   Normal: White (#ffffff)
   Hover: Yellow (#EEF4C2)
========================================= */

/* Normal State - White */
.funfact-block-two .inner-box .icon svg path,
.funfact-block-two .inner-box .icon i path {
    fill: #ffffff !important;
    transition: fill 0.3s ease;
}

.funfact-block-two .inner-box .content-box .title,
.funfact-block-two .inner-box .content-box .title .count,
.funfact-block-two .inner-box .content-box .sub-title {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

/* Hover State - Yellow (#EEF4C2) */
.funfact-block-two:hover .inner-box .icon svg path,
.funfact-block-two:hover .inner-box .icon i path,
.funfact-block-two .inner-box:hover .icon svg path,
.funfact-block-two .inner-box:hover .icon i path {
    fill: #EEF4C2 !important;
}

.funfact-block-two:hover .inner-box .content-box .title,
.funfact-block-two:hover .inner-box .content-box .title .count,
.funfact-block-two:hover .inner-box .content-box .sub-title,
.funfact-block-two .inner-box:hover .content-box .title,
.funfact-block-two .inner-box:hover .content-box .title .count,
.funfact-block-two .inner-box:hover .content-box .sub-title {
    color: #EEF4C2 !important;
}

/* =========================================
   HEADER NAVIGATION & BUTTON HOVER STYLES
========================================= */

/* Default state (Normal items): Bold & Green */
.main-header .main-menu .navigation > li > a,
.header-style-two .main-box .nav-outer .nav .navigation li a,
.navigation li a,
.nav-outer .main-menu .navigation > li > a {
    font-weight: 700 !important;
    color: #055f37 !important;
}

/* Active (Clicked page) & Hover state: BOTH Text AND Line turn Blue (#071D3F) */
.header-style-two .main-box .nav-outer .nav .navigation li.active > a,
.header-style-two .main-box .nav-outer .nav .navigation li.active a,
.main-header .main-menu .navigation > li.active > a,
.header-style-two .main-menu .navigation > li.active > a,
.nav-outer .main-menu .navigation > li.active > a,
.navigation li.active > a,
.navigation li.active a,
.header-style-two .main-box .nav-outer .nav .navigation li a:hover,
.header-style-two .main-box .nav-outer .nav .navigation li.active a:hover,
.main-header .main-menu .navigation > li > a:hover,
.main-header .main-menu .navigation > li.active > a:hover,
.header-style-two .main-menu .navigation > li > a:hover,
.header-style-two .main-menu .navigation > li.active > a:hover,
.navigation li a:hover,
.navigation a:hover,
.nav-outer .main-menu .navigation > li > a:hover,
.nav-outer .main-menu .navigation > li.active > a:hover {
    color: #071D3F !important;
    transition: color 0.3s ease;
}

.header-style-two .main-box .nav-outer .nav .navigation li.active > a::before,
.header-style-two .main-box .nav-outer .nav .navigation li.active a::before,
.main-header .main-menu .navigation > li.active > a::before,
.header-style-two .main-menu .navigation > li.active > a::before,
.nav-outer .main-menu .navigation > li.active > a::before,
.navigation li.active > a::before,
.navigation li.active a::before,
.header-style-two .main-box .nav-outer .nav .navigation li a:hover::before,
.header-style-two .main-box .nav-outer .nav .navigation li.active a:hover::before,
.main-header .main-menu .navigation > li > a:hover::before,
.header-style-two .main-menu .navigation > li > a:hover::before,
.nav-outer .main-menu .navigation > li > a:hover::before {
    background-color: #071D3F !important;
    width: 100% !important;
}


.btn-one-light:hover,
.btn-two-rounded:hover,
.btn-one-rounded:hover {
    background-color: #ffcc00 !important;
    color: #055f37 !important;
    border-color: #ffcc00 !important;
    transition: all 0.3s ease;
}

.btn-one-light:hover i,
.btn-two-rounded:hover i,
.btn-one-rounded:hover i {
    color: #055f37 !important;
}

.btn-one-rounded:hover::after {
    display: none !important;
}

/* Logo Strip Box Content - Compact Height (55px) & Single Line */
.logo-strip {
    height: 55px !important;
}

.logo-item {
    font-size: 16px !important;
    white-space: nowrap !important;
    height: 55px !important;
    padding: 5px 10px !important;
}

/* =========================================
   HEADER NAVBAR LOGO SIZE
========================================= */
.main-header .main-box .logo-box {
    flex-shrink: 0;
}

.main-header .main-box .logo {
    display: flex;
    align-items: center;
}

.main-header .main-box .logo a {
    display: inline-block;
    width: auto !important;
}

.main-header .main-box .logo img {
    height: 75px !important;
    width: auto !important;
    max-width: none !important;
    max-height: 80px !important;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .main-header .main-box .logo img {
        height: 80px !important;
        max-height: 80px !important;
    }
}

@media (max-width: 767px) {
    .main-header .main-box .logo img {
        height: 55px !important;
        max-height: 55px !important;
    }
}

/* Sticky Header Logo */
.sticky-header .logo {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.sticky-header .logo a {
    display: inline-block;
    width: auto !important;
}

.sticky-header .logo img {
    height: auto !important;
    max-height: 54px !important;
    max-width: 195px !important;
    object-fit: contain;
    display: block;
}

/* Mobile Nav Logo */
.mobile-menu .nav-logo img {
    max-height: 45px !important;
    max-width: 160px !important;
    object-fit: contain;
}


/* =========================================
   MUTUAL FUND BRANDS CAROUSEL CARDS
========================================= */

.brand-section {
    padding-top: 70px;
    padding-bottom: 20px;
}

.brand-section .sec-title .title {
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #055f37;
    text-transform: uppercase;
    text-align: center;
}

.brand-slider {
    padding: 15px 0 25px !important;
    overflow: hidden;
}

.brand-slider .swiper-wrapper {
    align-items: center;
}

.brand-slider .swiper-slide {
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    height: auto;
}

.brand-card-item {
    width: 100%;
    min-width: 180px;
    max-width: 230px;
    height: 125px; /* Identical height for ALL brand boxes */
    background: #ffffff;
    border: 1.5px solid #e5e9f0;
    border-radius: 16px;
    padding: 14px 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.brand-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(5, 95, 55, 0.12);
    border-color: #055f37;
}

.brand-card-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-card-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 1 !important;
    transition: transform 0.3s ease;
}

.brand-card-item:hover .brand-card-logo img {
    transform: scale(1.08);
}

.brand-card-name {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    width: 100%;
}

/* =========================================
   PRELOADER - LOGO ONLY & PULSE ANIMATION
========================================= */
.preloader:after {
    width: 140px !important;
    height: 120px !important;
    margin-left: -70px !important;
    margin-top: -60px !important;
    background-image: url("../images/logo/logo%20only.png") !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    -webkit-animation: pulse 1.2s infinite ease-in-out !important;
    animation: pulse 1.2s infinite ease-in-out !important;
}

@media (max-width: 576px) {
    .preloader:after {
        width: 110px !important;
        height: 95px !important;
        margin-left: -55px !important;
        margin-top: -47px !important;
    }
}