/* =====================================================
   TRIVEEXA NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 9999;

    background: rgba(7, 17, 31, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.nav-container {
    width: 92%;
    max-width: 1450px;
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    min-width: 150px;
}

.logo span {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo small {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 4px;
    color: #58d6c5;
}


/* =====================================================
   NAV MENU
===================================================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}


.nav-link,
.dropdown-toggle {
    position: relative;

    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    padding: 12px 15px;

    transition: 0.3s ease;
}


.nav-link:hover,
.dropdown-toggle:hover {
    color: #ffffff;
}


/* ACTIVE */

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: "";

    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 3px;

    height: 2px;

    background: #58d6c5;
}


/* =====================================================
   DROPDOWN
===================================================== */

.nav-dropdown {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;
}


.dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 8px;

    font-family: inherit;
}


.dropdown-toggle i {
    font-size: 9px;
    transition: transform 0.3s ease;
}


/* ROTATE ARROW */

.nav-dropdown:hover .dropdown-toggle i,
.nav-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}


/* =====================================================
   DROPDOWN MENU
===================================================== */

.dropdown-menu {
    position: absolute;

    top: 72px;
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 350px;

    padding: 10px;

    background: rgba(7, 17, 31, 0.98);

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* DESKTOP HOVER */

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


/* =====================================================
   DROPDOWN ITEMS
===================================================== */

.dropdown-menu a {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 12px;

    text-decoration: none;

    border-radius: 7px;

    transition: 0.25s ease;
}


.dropdown-menu a:hover {
    background: rgba(88, 214, 197, 0.09);

    transform: translateX(3px);
}


/* ICON */

.menu-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(88, 214, 197, 0.25);

    color: #58d6c5;

    background: rgba(88, 214, 197, 0.05);

    border-radius: 6px;
}


.menu-icon i {
    font-size: 14px;
}


/* TEXT */

.dropdown-menu strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 3px;
}


.dropdown-menu small {
    display: block;

    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;
}


/* =====================================================
   EMI MENU
===================================================== */

.emi-menu {
    width: 350px;
}


/* =====================================================
   APPLY BUTTON
===================================================== */

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 19px;

    background: #58d6c5;

    color: #07111f;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: 0.3s ease;
}


.nav-btn:hover {
    background: #ffffff;

    transform: translateY(-2px);
}


.nav-btn i {
    font-size: 10px;
}


/* MOBILE APPLY */

.mobile-apply {
    display: none !important;
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.20);

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}


.menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: #ffffff;

    transition: 0.3s ease;
}


/* X ANIMATION */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .nav-container {
        width: 94%;
    }

    .nav-menu {
        gap: 2px;
    }

    .nav-link,
    .dropdown-toggle {
        padding: 10px 9px;
        font-size: 12px;
    }

    .nav-btn {
        padding: 10px 14px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .navbar {
        height: 72px;
    }


    .nav-container {
        width: 92%;
    }


    /* HIDE DESKTOP APPLY */

    .nav-btn {
        display: none;
    }


    /* SHOW MENU BUTTON */

    .menu-toggle {
        display: flex;
    }


    /* MOBILE NAV */

    .nav-menu {

        position: absolute;

        top: 82px;
        left: 4%;
        right: 4%;

        height: auto;

        padding: 12px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: rgba(7, 17, 31, 0.98);

        border: 1px solid rgba(255, 255, 255, 0.10);

        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.45);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }


    .nav-menu.show {

        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    /* LINKS */

    .nav-link {

        display: block;

        padding: 15px 12px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }


    .nav-link.active::after {
        display: none;
    }


    /* =================================================
       MOBILE DROPDOWN
    ================================================= */

    .nav-dropdown {

        display: block;

        height: auto;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }


    .dropdown-toggle {

        width: 100%;

        padding: 15px 12px;

        justify-content: space-between;

        color: rgba(255, 255, 255, 0.75);
    }


    .dropdown-menu {

        position: static;

        width: 100%;

        padding: 0;

        transform: none !important;

        background: rgba(255, 255, 255, 0.025);

        border: none;

        box-shadow: none;

        display: none;

        opacity: 1;

        visibility: visible;
    }


    .nav-dropdown.open .dropdown-menu {

        display: block;
    }


    .dropdown-menu a {

        padding: 11px 10px;

        border-top:
            1px solid rgba(255, 255, 255, 0.05);
    }


    .dropdown-menu a:hover {

        transform: none;

        background: rgba(88, 214, 197, 0.07);
    }


    .menu-icon {

        width: 34px;
        height: 34px;
    }


    .dropdown-menu strong {

        font-size: 11px;
    }


    .dropdown-menu small {

        font-size: 9px;
    }


    /* =================================================
       MOBILE APPLY
    ================================================= */

    .mobile-apply {

        display: flex !important;

        justify-content: center;
        align-items: center;

        margin-top: 12px;

        padding: 13px !important;

        background: #58d6c5;

        color: #07111f !important;

        font-weight: 700;

        border: none !important;

        text-align: center;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 500px) {

    .logo span {
        font-size: 19px;
    }

    .logo small {
        font-size: 7px;
        letter-spacing: 3px;
    }


    .nav-menu {

        top: 68px;

        left: 3%;
        right: 3%;

        max-height: calc(100vh - 85px);

        overflow-y: auto;
    }


    .menu-toggle {

        width: 40px;
        height: 40px;
    }


    .dropdown-menu a {

        padding: 10px 7px;
    }
}




/* =========================================
   ABOUT PAGE
========================================= */

.about-page {
    background: #ffffff;
}


/* =========================================
   TOP BANNER
========================================= */

.about-banner {

    min-height: 430px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    background-image:
        url("../images/about-banner.jpg");

    background-size: cover;

    background-position: center;
}


.about-banner-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(4, 15, 27, 0.94),
            rgba(4, 24, 36, 0.78));
}


.about-banner-content {

    position: relative;

    z-index: 2;

    color: #ffffff;
}


.about-banner-content span {

    color: #c8a96b;

    font-size: 13px;

    letter-spacing: 3px;

    font-weight: 700;
}


.about-banner-content h1 {

    margin-top: 15px;

    font-size: clamp(48px,
            7vw,
            80px);

    font-weight: 800;

    letter-spacing: -2px;
}


.about-banner-content p {

    margin-top: 15px;

    color: #c3ced8;

    font-size: 17px;
}


/* =========================================
   ABOUT MAIN
========================================= */

.about-main {

    position: relative;

    overflow: hidden;

    color: #ffffff;

    padding: 120px 0;

    background: #071321;
}


.about-main-bg {

    position: absolute;

    inset: 0;

    background-image:
        url("../images/about-background.jpg");

    background-size: cover;

    background-position: center;

    opacity: 0.20;

    transform: scale(1.05);
}


.about-main-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            #071321 10%,
            rgba(7, 19, 33, 0.88),
            rgba(7, 19, 33, 0.70));
}


.about-main-container {

    width: 90%;

    max-width: 1400px;

    margin: auto;

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.2fr 1fr;

    gap: 100px;

    align-items: left;
}


/* =========================================
   ABOUT TEXT
========================================= */

.section-label {

    color: #c8a96b;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.about-text h2 {

    margin-top: 18px;

    font-size: clamp(42px,
            5vw,
            65px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.about-text h2 span {

    color: #00c985;
}


.about-text p {

    max-width: 700px;

    margin-top: 20px;

    color: #9eacb9;

    line-height: 1.8;

    font-size: 15px;
}


.about-main-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    padding: 15px 25px;

    background: #c8a96b;

    color: #ffffff;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s ease;
}


.about-main-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(200, 169, 107, .25);
}


/* =========================================
   STATS
========================================= */

.about-stats {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}


.about-stat {

    padding: 35px 25px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    transition: .3s ease;
}


.about-stat:hover {

    transform: translateY(-7px);

    border-color:
        rgba(0, 201, 133, .4);
}


.about-stat strong {

    display: block;

    color: #00c985;

    font-size: 42px;

    font-weight: 800;
}


.about-stat span {

    display: block;

    margin-top: 8px;

    color: #9eacb9;

    font-size: 13px;
}


/* =========================================
   DIRECTORS
========================================= */

.directors-section {

    padding: 120px 0;

    background: #ffffff;

    overflow: hidden;
}


.directors-heading {

    text-align: center;

    max-width: 700px;

    margin:
        0 auto 70px;
}


.directors-heading>span {

    color: #c8a96b;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.directors-heading h2 {

    margin-top: 15px;

    font-size: 55px;

    color: #071321;

    letter-spacing: -2px;
}


.directors-heading h2 strong {

    color: #00b878;

    font-weight: 800;
}


.directors-heading p {

    margin-top: 15px;

    color: #71808d;

    line-height: 1.7;
}


/* =========================================
   DIRECTOR GRID
========================================= */

.directors-container {

    width: 90%;

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 35px;
}


/* =========================================
   DIRECTOR CARD
========================================= */

.director-card {

    background: #f6f8f9;

    border-radius: 25px;

    overflow: hidden;

    transition: .4s ease;
}


.director-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 25px 60px rgba(7, 19, 33, .12);
}


/* IMAGE */

.director-image {

    height: 550px;

    position: relative;

    overflow: hidden;

    background: #e9eef1;
}


.director-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}


.director-card:hover .director-image img {

    transform: scale(1.05);
}


/* SOCIAL */

.director-social {

    position: absolute;

    right: 20px;

    bottom: 20px;
}


.director-social a {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #c8a96b;

    color: #ffffff;

    text-decoration: none;

    transition: .3s ease;
}


.director-social a:hover {

    transform: scale(1.1);
}


/* INFO */

.director-info {

    padding: 30px;
}


.director-info h3 {

    font-size: 23px;

    color: #071321;
}


.director-info span {

    display: block;

    margin-top: 5px;

    color: #c8a96b;

    font-size: 13px;

    font-weight: 700;
}


.director-info p {

    margin-top: 15px;

    color: #74818c;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 900px) {

    .about-main-container {

        grid-template-columns: 1fr;

        gap: 60px;
    }

}


@media(max-width: 650px) {

    .about-banner {

        min-height: 350px;
    }


    .about-main {

        padding: 80px 0;
    }


    .about-stats {

        grid-template-columns: 1fr;
    }


    .directors-section {

        padding: 80px 0;
    }


    .directors-heading h2 {

        font-size: 42px;
    }


    .directors-container {

        grid-template-columns: 1fr;
    }


    .director-image {

        height: 350px;
    }

}

.mvv-section {
    padding: 120px 0;
    background: #f7f9fa;
}

.mvv-heading {
    width: 90%;
    max-width: 750px;
    margin: auto;
    text-align: center;
}

.mvv-heading span {
    color: #00b878;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mvv-heading h2 {
    margin-top: 15px;
    font-size: 55px;
    color: #071321;
}

.mvv-heading strong {
    color: #c8a96b;
}

.mvv-heading p {
    margin-top: 15px;
    color: #71808d;
    line-height: 1.8;
}

.mvv-grid {
    width: 90%;
    max-width: 1200px;
    margin: 65px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mvv-card {
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;

    border: 1px solid #e9eef1;

    position: relative;

    transition: .4s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 60px rgba(7, 19, 33, .10);
}

.mvv-card.featured {
    background: #071321;
    color: #ffffff;
}

.mvv-icon {
    width: 55px;
    height: 55px;

    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(200, 169, 107, .10);

    color: #c8a96b;

    font-size: 20px;
}

.mvv-card>span {
    display: block;

    margin-top: 30px;

    color: #c8a96b;

    font-size: 12px;
    font-weight: 700;
}

.mvv-card h3 {
    margin-top: 10px;
    font-size: 24px;
}

.mvv-card p {
    margin-top: 15px;

    color: #758390;

    line-height: 1.8;

    font-size: 14px;
}

.mvv-card.featured p {
    color: #9eacb9;
}

.why-section {
    padding: 120px 0;
    background: #071321;
    color: #ffffff;
    overflow: hidden;
}

.why-container {
    width: 90%;
    max-width: 1300px;

    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.why-content>span {
    color: #c8a96b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.why-content h2 {
    margin-top: 18px;
    font-size: 55px;
    line-height: 1.05;
}

.why-content h2 strong {
    color: #c8a96b;
}

.why-content>p {
    margin-top: 25px;

    color: #94a2af;

    line-height: 1.8;

    max-width: 600px;
}

.why-list {
    margin-top: 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.why-item {
    display: flex;
    gap: 15px;
}

.why-icon {
    min-width: 45px;
    height: 45px;

    border-radius: 12px;

    background: rgba(200, 169, 107, .10);

    color: #c8a96b;

    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item h4 {
    font-size: 15px;
}

.why-item p {
    margin-top: 6px;

    color: #71808d;

    font-size: 12px;

    line-height: 1.6;
}

.why-visual {
    height: 500px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.why-big-text {
    position: absolute;

    font-size: 130px;

    font-weight: 900;

    color: rgba(255, 255, 255, .025);
}

.why-circle {
    width: 330px;
    height: 330px;

    border-radius: 50%;

    border: 1px solid rgba(0, 201, 133, .25);

    background:
        radial-gradient(circle,
            rgba(0, 201, 133, .13),
            transparent 65%);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}

.why-circle i {
    font-size: 55px;
    color: #c8a96b;
}

.why-circle h3 {
    margin-top: 20px;
    font-size: 24px;
}

.why-circle span {
    margin-top: 8px;
    color: #8c9aa6;
    font-size: 13px;
}

.about-products {
    padding: 120px 0;
    background: #ffffff;
}

.about-products-heading {
    width: 90%;
    max-width: 750px;

    margin: auto;

    text-align: center;
}

.about-products-heading span {
    color: #c8a96b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-products-heading h2 {
    margin-top: 15px;

    font-size: 52px;

    color: #071321;
}

.about-products-heading strong {
    color: #c8a96b;
}

.about-products-heading p {
    margin-top: 15px;

    color: #71808d;

    line-height: 1.7;
}

.about-product-row {
    width: 90%;
    max-width: 1250px;

    margin: 60px auto 0;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid #e7ecef;
    border-bottom: 1px solid #e7ecef;
}

.about-product {
    padding: 40px 30px;

    border-right: 1px solid #e7ecef;

    transition: .35s ease;
}

.about-product:last-child {
    border-right: none;
}

.about-product:hover {
    background: #071321;
    color: #ffffff;
}

.about-product i {
    font-size: 28px;
    color: #00b878;
}

.about-product h3 {
    margin-top: 25px;
    font-size: 20px;
    color: #071321;
}

.about-product p {
    margin-top: 12px;

    color: #71808d;

    font-size: 13px;

    line-height: 1.7;
}

.about-product:hover p {
    color: #9eacb9;
}

.about-product a {
    display: inline-block;

    margin-top: 20px;

    color: #00b878;

    text-decoration: none;

    font-weight: 700;

    font-size: 13px;
}

.about-process {
    padding: 120px 0;

    background: #f7f9fa;

    position: relative;

    overflow: hidden;
}

.process-heading {
    text-align: center;
}

.process-heading span {
    color: #00b878;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}

.process-heading h2 {
    margin-top: 15px;

    font-size: 52px;

    color: #071321;
}

.process-heading strong {
    color: #00b878;
}

.process-grid {
    width: 90%;
    max-width: 1200px;

    margin: 70px auto 0;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;

    position: relative;

    z-index: 2;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 65px;
    height: 65px;

    margin: auto;

    border-radius: 50%;

    background: #071321;

    color: #00c985;

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: 800;
}

.process-step i {
    margin-top: 30px;

    font-size: 28px;

    color: #00b878;
}

.process-step h3 {
    margin-top: 18px;

    color: #071321;

    font-size: 18px;
}

.process-step p {
    margin-top: 10px;

    color: #71808d;

    font-size: 13px;

    line-height: 1.7;
}

.process-line {
    position: absolute;

    top: 295px;

    left: 20%;

    width: 60%;

    border-top: 2px dashed #00b878;

    opacity: .25;
}

.about-cta {
    position: relative;

    padding: 110px 20px;

    overflow: hidden;

    background: #071321;

    text-align: center;

    color: #ffffff;
}

.about-cta-bg {
    position: absolute;

    width: 450px;
    height: 450px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(0, 201, 133, .12);

    filter: blur(90px);
}

.about-cta-content {
    position: relative;
    z-index: 2;

    max-width: 800px;

    margin: auto;
}

.about-cta-content>span {
    color: #00c985;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}

.about-cta h2 {
    margin-top: 18px;

    font-size: 55px;

    line-height: 1.1;
}

.about-cta h2 strong {
    color: #00c985;
}

.about-cta p {
    margin-top: 20px;

    color: #93a1ad;

    line-height: 1.8;
}

.about-cta-buttons {
    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 15px;
}

.about-cta-buttons a {
    padding: 15px 25px;

    border-radius: 50px;

    background: #00c985;

    color: #ffffff;

    text-decoration: none;

    font-weight: 600;
}

.about-cta-buttons a.secondary {
    background: transparent;

    border: 1px solid rgba(255, 255, 255, .2);
}

.about-cta-buttons a:hover {
    transform: translateY(-3px);
}

/* =========================================================
   TRIVEEXA FINCORP
   COMPLETE RESPONSIVE SYSTEM
   Desktop + Tablet + Mobile
========================================================= */


/* =========================================================
   GLOBAL RESPONSIVE FIXES
========================================================= */

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    width: 100%;
}


/* =========================================================
   LARGE TABLETS / SMALL LAPTOPS
   1200px
========================================================= */

@media (max-width: 1200px) {

    /* ABOUT MAIN */

    .about-main-container {
        width: 92%;
        gap: 60px;
    }


    /* WHY */

    .why-container {
        width: 92%;
        gap: 60px;
    }


    /* PRODUCTS */

    .about-product-row {
        width: 92%;
    }


    /* PROCESS */

    .process-grid {
        width: 92%;
    }


    /* DIRECTORS */

    .directors-container {
        width: 92%;
    }

}


/* =========================================================
   TABLET
   992px
========================================================= */

@media (max-width: 992px) {


    /* =====================================================
       BANNER
    ===================================================== */

    .about-banner {
        min-height: 380px;
    }

    .about-banner-content h1 {
        font-size: 60px;
    }

    .about-banner-content p {
        font-size: 16px;
        padding: 0 25px;
    }


    /* =====================================================
       ABOUT MAIN
    ===================================================== */

    .about-main {
        padding: 90px 0;
    }

    .about-main-container {

        width: 90%;

        grid-template-columns: 1fr;

        gap: 70px;
    }

    .about-text {
        max-width: 800px;
        margin: auto;
        text-align: center;
    }

    .about-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-main-btn {
        margin-left: auto;
        margin-right: auto;
    }


    /* =====================================================
       STATS
    ===================================================== */

    .about-stats {

        width: 100%;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;

        max-width: 700px;

        margin-left: auto;
        margin-right: auto;
    }

    .about-stat {
        text-align: center;
    }


    /* =====================================================
       MISSION / VISION / VALUES
    ===================================================== */

    .mvv-section {
        padding: 90px 0;
    }

    .mvv-grid {

        width: 90%;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }

    .mvv-card:last-child {
        grid-column: 1 / -1;

        max-width: 50%;

        margin: auto;
    }


    /* =====================================================
       WHY TRIVEEXA
    ===================================================== */

    .why-section {
        padding: 90px 0;
    }

    .why-container {

        width: 90%;

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .why-content {
        text-align: center;
    }

    .why-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .why-list {
        text-align: left;
    }

    .why-visual {
        height: 400px;
    }


    /* =====================================================
       PRODUCTS
    ===================================================== */

    .about-products {
        padding: 90px 0;
    }

    .about-product-row {

        width: 90%;

        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-product:nth-child(2) {
        border-right: none;
    }

    .about-product:nth-child(-n+2) {
        border-bottom: 1px solid #e7ecef;
    }


    /* =====================================================
       PROCESS
    ===================================================== */

    .about-process {
        padding: 90px 0;
    }

    .process-grid {

        width: 90%;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 60px 30px;
    }

    .process-line {
        display: none;
    }


    /* =====================================================
       DIRECTORS
    ===================================================== */

    .directors-section {
        padding: 90px 0;
    }

    .directors-container {
        width: 90%;
        gap: 25px;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .about-cta {
        padding: 90px 20px;
    }

}


/* =========================================================
   TABLET PORTRAIT
   768px
========================================================= */

@media (max-width: 768px) {


    /* =====================================================
       BANNER
    ===================================================== */

    .about-banner {
        min-height: 330px;
    }

    .about-banner-content h1 {
        font-size: 50px;

        letter-spacing: -1px;
    }

    .about-banner-content p {
        font-size: 15px;
    }


    /* =====================================================
       HEADINGS
    ===================================================== */

    .mvv-heading h2,
    .about-products-heading h2,
    .process-heading h2,
    .directors-heading h2 {

        font-size: 44px;

        line-height: 1.1;
    }

    .why-content h2,
    .about-text h2 {

        font-size: 48px;
    }


    /* =====================================================
       ABOUT STATS
    ===================================================== */

    .about-stat {
        padding: 30px 20px;
    }

    .about-stat strong {
        font-size: 34px;
    }


    /* =====================================================
       MVV
    ===================================================== */

    .mvv-card {
        padding: 30px;
    }

    .mvv-card h3 {
        font-size: 21px;
    }


    /* =====================================================
       WHY
    ===================================================== */

    .why-list {

        grid-template-columns: 1fr;

        max-width: 550px;

        margin-left: auto;
        margin-right: auto;
    }


    .why-visual {
        height: 350px;
    }

    .why-circle {

        width: 280px;
        height: 280px;
    }

    .why-big-text {
        font-size: 90px;
    }


    /* =====================================================
       DIRECTORS
    ===================================================== */

    .director-image {
        height: 350px;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .about-cta h2 {
        font-size: 45px;
    }

}


/* =========================================================
   MOBILE
   576px
========================================================= */

@media (max-width: 576px) {


    /* =====================================================
       GLOBAL
    ===================================================== */

    .about-page {
        width: 100%;
    }


    /* =====================================================
       BANNER
    ===================================================== */

    .about-banner {

        min-height: 300px;

        background-position: center;
    }

    .about-banner-content {

        width: 90%;
    }

    .about-banner-content span {

        font-size: 10px;

        letter-spacing: 2px;
    }

    .about-banner-content h1 {

        margin-top: 10px;

        font-size: 42px;

        letter-spacing: -1px;
    }

    .about-banner-content p {

        margin-top: 10px;

        font-size: 14px;

        line-height: 1.6;
    }


    /* =====================================================
       ABOUT MAIN
    ===================================================== */

    .about-main {

        padding: 75px 0;
    }

    .about-main-container {

        width: 88%;

        gap: 50px;
    }

    .about-text h2 {

        font-size: 40px;

        letter-spacing: -1px;
    }

    .about-text p {

        font-size: 14px;

        line-height: 1.8;
    }


    /* =====================================================
       BUTTON
    ===================================================== */

    .about-main-btn {

        width: 100%;

        justify-content: center;

        padding: 14px 20px;
    }


    /* =====================================================
       STATS
    ===================================================== */

    .about-stats {

        width: 100%;

        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .about-stat {

        padding: 25px 10px;

        border-radius: 14px;
    }

    .about-stat strong {

        font-size: 28px;
    }

    .about-stat span {

        font-size: 10px;

        line-height: 1.4;
    }


    /* =====================================================
       MVV
    ===================================================== */

    .mvv-section {

        padding: 75px 0;
    }

    .mvv-heading {

        width: 88%;
    }

    .mvv-heading h2 {

        font-size: 38px;

        letter-spacing: -1px;
    }

    .mvv-heading p {

        font-size: 14px;
    }

    .mvv-grid {

        width: 88%;

        grid-template-columns: 1fr;

        margin-top: 45px;
    }

    .mvv-card {

        padding: 30px 25px;

        border-radius: 18px;
    }

    .mvv-card:last-child {

        grid-column: auto;

        max-width: none;

        margin: 0;
    }


    /* =====================================================
       WHY
    ===================================================== */

    .why-section {

        padding: 75px 0;
    }

    .why-container {

        width: 88%;

        gap: 50px;
    }

    .why-content h2 {

        font-size: 40px;

        letter-spacing: -1px;
    }

    .why-content>p {

        font-size: 14px;
    }

    .why-list {

        gap: 22px;
    }

    .why-item h4 {

        font-size: 14px;
    }

    .why-item p {

        font-size: 11px;
    }


    /* =====================================================
       WHY VISUAL
    ===================================================== */

    .why-visual {

        height: 300px;
    }

    .why-circle {

        width: 230px;

        height: 230px;
    }

    .why-circle i {

        font-size: 40px;
    }

    .why-circle h3 {

        font-size: 19px;
    }

    .why-circle span {

        font-size: 11px;
    }

    .why-big-text {

        font-size: 55px;
    }


    /* =====================================================
       LOAN PRODUCTS
    ===================================================== */

    .about-products {

        padding: 75px 0;
    }

    .about-products-heading {

        width: 88%;
    }

    .about-products-heading h2 {

        font-size: 38px;

        letter-spacing: -1px;
    }

    .about-products-heading p {

        font-size: 14px;
    }

    .about-product-row {

        width: 88%;

        grid-template-columns: 1fr;

        margin-top: 45px;
    }

    .about-product {

        border-right: none !important;

        border-bottom: 1px solid #e7ecef;

        padding: 30px 25px;
    }

    .about-product:last-child {

        border-bottom: none;
    }


    /* =====================================================
       PROCESS
    ===================================================== */

    .about-process {

        padding: 75px 0;
    }

    .process-heading {

        width: 88%;

        margin: auto;
    }

    .process-heading h2 {

        font-size: 38px;
    }

    .process-grid {

        width: 88%;

        grid-template-columns: 1fr;

        gap: 45px;

        margin-top: 50px;
    }

    .process-step {

        max-width: 350px;

        margin: auto;
    }

    .process-number {

        width: 55px;

        height: 55px;
    }


    /* =====================================================
       DIRECTORS
    ===================================================== */

    .directors-section {

        padding: 75px 0;
    }

    .directors-heading {

        width: 88%;

        margin-bottom: 45px;
    }

    .directors-heading h2 {

        font-size: 38px;

        letter-spacing: -1px;
    }

    .directors-heading p {

        font-size: 14px;
    }

    .directors-container {

        width: 88%;

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .director-card {

        border-radius: 20px;
    }

    .director-image {

        height: 390px;
    }

    .director-info {

        padding: 25px;
    }

    .director-info h3 {

        font-size: 21px;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .about-cta {

        padding: 75px 20px;
    }

    .about-cta-content {

        width: 90%;
    }

    .about-cta h2 {

        font-size: 38px;

        letter-spacing: -1px;
    }

    .about-cta p {

        font-size: 14px;
    }

    .about-cta-buttons {

        flex-direction: column;

        width: 100%;

        max-width: 300px;

        margin-left: auto;

        margin-right: auto;
    }

    .about-cta-buttons a {

        width: 100%;

        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
   400px
========================================================= */

@media (max-width: 400px) {


    .about-banner {

        min-height: 270px;
    }

    .about-banner-content h1 {

        font-size: 36px;
    }


    .about-text h2 {

        font-size: 34px;
    }


    .about-stat strong {

        font-size: 24px;
    }


    .about-stat span {

        font-size: 9px;
    }


    .mvv-heading h2,
    .why-content h2,
    .about-products-heading h2,
    .process-heading h2,
    .directors-heading h2,
    .about-cta h2 {

        font-size: 34px;
    }


    .director-image {

        height: 330px;
    }

}