﻿body {
    margin: 0;
    font-family: lato;
    color: #3b3b3b;
}


.dashboard-header-section {
    background: #fafafa;
    max-width: 1300px;
    margin: 7rem auto 0;
    padding: 80px 60px 140px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

    .dashboard-header-section h2 {
        margin: 0;
        font-size: 50px;
        font-weight: 900;
        line-height: 1.2;
        font-family: 'Lato';
    }

    .dashboard-header-section p {
        font-size: 18px;
        margin-top: 10px;
        margin-bottom: 25px;
        font-family: 'Lato';
    }


.dashboard-buttons {
    margin-bottom: 20px;
}

    .dashboard-buttons .btn-primary,
    .dashboard-buttons .btn-outline {
        font-size: 16px;
        padding: 10px 20px;
        margin: 0 8px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

.btn-primary {
    background: #3b3b3b;
    color: #fff;
    border: none;
}

    .btn-primary:hover {
        background: #000;
    }

.btn-outline {
    background: transparent;
    color: #3b3b3b;
    border: 1px solid #3b3b3b;
}

    .btn-outline:hover {
        background: #3b3b3b;
        color: #fff;
    }


.dashboard-image-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    max-width: 950px;
    margin: -70px auto 30px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.dashboard-image {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .dashboard-image img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 10px;
    }



.dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    font-size: 22px;
}

    .dashboard-tabs span {
        cursor: pointer;
        font-weight: 500;
    }

        .dashboard-tabs span:hover,
        .dashboard-tabs span.active {
            color: #000;
            font-weight: 600;
        }


@media (max-width: 1024px) {

    .dashboard-header-section {
        max-width: 95%;
        padding: 50px 30px 90px;
        margin-top: 10rem;
    }

        .dashboard-header-section h2 {
            font-size: 3.5rem;
            margin-bottom: 30px;
            line-height: 5rem;
        }

        .dashboard-header-section p {
            font-size: 35px;
            line-height: 1.6;
            font-family: 'Lato';
        }

    .dashboard-image-box {
        margin: 20px auto;
    }

    .dashboard-image {
        height: auto;
        max-height: 420px;
    }

    .dashboard-tabs {
        flex-wrap: wrap;
        font-size: 23px;
    }
    .dashboard-buttons .btn-primary, .dashboard-buttons .btn-outline {
        font-size: 26px;
        padding: 20px 20px;
        margin: 0 8px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
}


@media (max-width: 600px) {

    .dashboard-header-section {
        padding: 30px 16px 60px;
        margin-top: 2rem;
    }

        .dashboard-header-section h2 {
            font-size: 22px;
        }

        .dashboard-header-section p {
            font-size: 15px;
            line-height: 1.5;
            text-align: center;
        }

    .dashboard-image-box {
        padding: 10px;
    }

    .dashboard-image {
        max-height: 300px;
    }

    .dashboard-tabs {
        gap: 10px;
        font-size: 13px;
    }

    .dashboard-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

        .dashboard-buttons .btn-primary,
        .dashboard-buttons .btn-outline {
            padding: 8px 14px;
            font-size: 14px;
        }
}





/*SECOND SECTION*/

.asset-section {
    /*    padding: 150px 10%;*/
    padding: 108px 5%;
/*    width: 1350px;*/
}

.asset-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 82px;
}

.asset-image {
    flex: 1;
    max-width: 500px;
    aspect-ratio: 1/1; 
    border-radius: 16px;
    overflow: hidden;
}

    .asset-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.asset-text {
    flex: 1;
    color: #3b3b3b;
    font-family: unset, sans-serif;
}

    .asset-text h2 {
        font-size: 2.2rem;
        font-weight: 900;
        line-height: 3rem;
        margin: 0rem;
        margin-bottom: 2.5rem;
        font-family: 'Lato';
    }

    .asset-text p {
        margin-bottom: 31px;
        line-height: 1.6;
        font-size: 18px;
        color: #3b3b3b;
        font-family: 'Lato';
    }

    .asset-text ul {
        /* margin: 15px 0; */
        padding-left: 20px;
        color: #3b3b3b;
        font-size: 18px;
        font-family: 'Lato';
    }

        .asset-text ul li {
            margin-bottom: 8px;
        }

/* Button */
.asset-btn {
    margin-top: 10px;
    padding: 12px 24px;
    border: 1px solid #3b3b3b;
    background: transparent;
    color: #3b3b3b;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: unset;
}

    .asset-btn:hover {
        background: #3b3b3b;
        color: #fff;
    }


@media (max-width: 1024px) {
    .asset-section {
        padding: 80px 5%;
    }

    .asset-container {
        flex-direction: column;
        gap: 40px;
        margin-top: 2rem;
    }
    .asset-image {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .asset-text {
        text-align: left; 
    }

        .asset-text h2 {
            font-size: 3.5rem;
            line-height: 5rem;
            font-weight: 600;
            font-family: 'Lato';
        }

        .asset-text p,
        .asset-text ul {
            font-size: 35px;
            text-align: left;
            line-height: 3.5rem;
            color: #3b3b3b;
        }

        .asset-text ul {
            list-style: disc; 
            padding-left: 20px;
        }

    .asset-btn {
        display: inline-block;
        margin-top: 20px;
        font-size: 25px;
    }
}

@media (max-width: 600px) {
    .asset-section {
        padding: 50px 15px;
    }

    .asset-container {
        flex-direction: column;
        gap: 40px;
        margin-top: 2rem;
    }

    .asset-image {
        max-width: 100%;
        width: 100%;
        aspect-ratio: auto;
    }

    .asset-text h2 {
       
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .asset-text p,
    .asset-text ul {
        font-size: 14px;
        text-align: left; 
    }

    .asset-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
}




/*Third Section wrapper */
.visibility-section {
    padding: 0px 20px;
    background: #fff;
    color: #3b3b3b;
    text-align: center;
    font-family: unset;
    height: 37rem;
}


    .visibility-section h2 {
        font-weight: 900;
        margin-bottom: 12px;
        color: #3b3b3b;
        font-size: 2.2rem;
        line-height: 3rem;
        /* font-family: unset; */
        text-align: center;
        width: 100%;
        font-family: 'Lato';
    }

    .visibility-section .subheading {
        font-size: 18px;
        margin-bottom: 4rem;
        color: #3b3b3b;
        font-family: 'Lato';
    }

/* Boxes container */
.visibility-boxes {
    display: flex;
    justify-content: center;
    gap: 65px;
}

.visibility-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px 25px;
    text-align: left;
    transition: box-shadow 0.3s ease;
    width: 31rem;
}

    .visibility-box:hover {
        box-shadow: 0 0 0 rgba(0,0,0,0); 
    }

.icon-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.visibility-box h3 {
    font-weight: 900;
    margin-bottom: 12px;
    color: #3b3b3b;
    font-size: 2.2rem;
    font-family: 'Lato';
}

.visibility-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #3b3b3b;
    text-align: justify;
    font-family: 'Lato';
}

@media (max-width: 992px) {
    .visibility-section {
        padding: 0px 35px;
        background: #fff;
        color: #3b3b3b;
        text-align: center;
        font-family: unset;
        height: 52rem !important;
    }
        .visibility-section h2 {
            font-size: 3.5rem;
            line-height: 5rem;
            font-weight: 600;
            text-align: left;
            font-family: 'Lato';
        }
    .visibility-box p {
        font-size: 33px;
        line-height: 1.4;
        color: #3b3b3b;
        font-weight: 500;
        text-align: justify;
        font-family: 'Lato';
    }
    .visibility-section .subheading {
        font-size: 35px;
        margin-bottom: 4rem;
        color: #3b3b3b;
        line-height: 3rem;
        text-align: justify;
        font-family: unset;
    }
    .visibility-box {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        padding: 30px 25px;
        text-align: left;
        transition: box-shadow 0.3s ease;
        width: 31rem;
        height: 30rem;
    }
    .visibility-box h3 {
            font-weight: 900;
            margin-bottom: 12px;
            color: #3b3b3b;
            font-size: 2.5rem;
            font-family: 'Lato';
        }
}

@media (max-width: 600px) {
    .visibility-section h2 {
       
        font-size: 1.2rem;
        line-height: 2rem;
        font-weight: 800;
    }

    .visibility-section .subheading {
        font-size: 30px;
        margin-bottom: 4rem;
        color: #3b3b3b;
        font-weight: 600;
        line-height: 3rem;
    }
    .visibility-box p {
        font-size: 21px;
        line-height: 1.7;
        color: #3b3b3b;
        font-weight: 500;
        text-align: justify;
    }
    .visibility-boxes {
        gap: 25px;
    }

    .visibility-box {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        padding: 30px 25px;
        text-align: left;
        transition: box-shadow 0.3s ease;
        width: 31rem;
        height: 28rem;
    }

        .visibility-box h3 {
           
            font-size: 1.4rem;
            margin-bottom: 2rem;
        }

        
}

/* Features Section  Grey background container */
.features-section {
    background: #fafafa;
    padding: 40px 30px;
    font-family: unset, sans-serif;
    color: #3b3b3b;
    margin: 80px auto;
    width: 1300px;
    Border-radius: 12px;
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

    .features-header .left h2 {
        color: #3b3b3b;
        font-size: 2.2rem;
        font-weight: 900;
        margin-bottom: 16px;
        line-height: 3rem;
        font-family: 'Lato';
    }
    .features-header .left p {
        font-size: 17px;
        text-align: justify;
    }

 .features-header button {
        padding: 10px 18px;
        border: 1px solid #3b3b3b;
        background: transparent;
        border-radius: 6px;
        margin-left: 30px;
        cursor: pointer;
        font-size: 14px;
        transition: background 0.3s ease;
  }

        .features-header button:hover {
            background: #3b3b3b;
            color: #fff;
        }

    .features-header .right {
        max-width: 600px;
        font-size: 1rem;
        line-height: 1.6;
        margin-left: 36rem;
        margin-top:-9rem;
    }
        .features-header .right p {
            font-size: 19px;
            text-align: justify;
            font-family: 'Lato';
        }
        .features-blue-wrapper {
            background: #1B2F4A;
            border-radius: 12px;
            padding: 30px;
            max-height: 31rem;
            overflow-y: auto;
            scroll-snap-type: y proximity;
        }

.features-blue {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.glass-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    scroll-snap-align: start;
    color: #fff;
    min-height: 120px;
}

    .glass-box h3 {
        font-size: 1.7rem;
        margin-bottom: 8px;
        font-weight: 500;
        font-family: 'Lato';
    }

    .glass-box hr {
        border: none;
        border-top: 1px solid rgba(255,255,255,0.3);
        margin: 10px 0;
    }

    .glass-box p {
        font-size: 18px;
        line-height: 1.6;
        color: #fbfbfb;
        text-align: justify;
        font-family: 'Lato';
    }

@media (max-width: 992px) {
    .features-section {
        background: #fafafa;
        padding: 40px 30px;
        font-family: 'Montserrat', sans-serif;
        color: #3b3b3b;
        margin: 80px auto;
        width: 95%;
        Border-radius: 12px;
    }
    .features-header {
        flex-direction: column;
        text-align: left;
    }

        .features-header .right {
            margin-left: 0;
            margin-top: 20px;
            max-width: 100%;
        }

    .features-blue {
        grid-template-columns: 1fr; 
    }

    .features-blue-wrapper {
        max-height: none; 
    }
    .features-header .left h2 {
        font-size: 3.5rem;
        font-weight: 600;
        margin-bottom: 16px;
        margin-left: -2px;
        line-height: 5rem;
    }
    .features-header .right p {
        font-size: 35px;
        text-align: justify;
        font-family: 'Lato';
    }
    .glass-box p {
        font-size: 35px;
        line-height: 1.6;
        color: #fefefe;
        text-align: justify;
        font-family: 'Lato';
    }

    .glass-box h3 {
        font-size: 2.3rem;
        margin-bottom: 8px;
        font-weight: 500;
        font-family: unset;
    }
}

@media (max-width: 600px) {
    .features-section {
        background: #fafafa;
        padding: 40px 30px;
        font-family: 'Montserrat', sans-serif;
        color: #3b3b3b;
        margin: 80px auto;
        width: 95%;
        Border-radius: 12px;
    }
  

    .features-header .left h2 {
        font-size: 1.5rem;
        margin-left: 1px;
        line-height: 2rem;
    }

    .features-header button {
        margin-left: 0;
        display: none;
    }

    .features-header .right {
        font-size: 14px;
    }
        .features-header .right p {
            font-size: 11px;
        }
   
    .features-blue {
        grid-template-columns: 1fr; 
    }

    .glass-box h3 {
        font-size: 1rem;
    }

    .glass-box p {
        font-size: 21px;
        line-height: 1.6;
        color: #fefefe;
        text-align: justify;
    }
}




/* Section Layout */
.why-choose {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 2px;
    font-family: unset, sans-serif;
    color: #3b3b3b;
    gap: 40px;
    margin-bottom: -9rem;
    margin-left: 23px;
}

.why-left {
    flex: 1;
    max-width: 500px;
    margin-left: 70px;
}

    .why-left h2 {
        font-size: 2.2rem;
        font-weight: 900;
        margin-bottom: 2rem;
        white-space: nowrap;
        line-height: 3rem;
        font-family: 'Lato';
    }

    .why-left ul {
        list-style: revert;
        padding: 0;
        margin: 0;
    }

    .why-left li {
        margin-bottom: 15px;
        font-size: 18px;
        line-height: 1.8;
        color: #3b3b3b;
        font-family: 'Lato';
    }

.why-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 80%;
    height: 450px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}


@media (max-width: 992px) {

    .why-choose {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        text-align: center;
        margin-left: 2rem;
        margin-top: -1rem;
    }

    .why-left {
        max-width: 100%;
        margin-left: 0;
        text-align: left;
    }

    .why-left h2 {
            font-size: 3.5rem;
            line-height: 5rem;
            white-space: normal;
            font-weight: 600;
            font-family: 'Lato';
    }
        .why-left li {
            font-size: 35px;
            line-height: 1.9;
            color: #3b3b3b;
            font-family: 'Lato';
            margin-left: 28px;
            text-align: justify;
            padding-right: 25px;
        }
            .image-placeholder, .image-placeholder img {
        width: 100% !important;
        height: auto;
        margin-left: -1rem;
    }

    .why-right {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 600px) {

    .why-choose {
        flex-direction: column;
        padding: 20px 15px;
        gap: 20px;
        text-align: center;
    }

    .why-left {
        margin-left: 0;
    }

        .why-left h2 {
            font-size: 2.8rem;
            line-height: 4.4rem;
            white-space: normal; 
        }
        .why-left li {
            margin-bottom: 18px;
            font-size: 32px;
            line-height: 1.6;
            font-family: 'Montserrat';
            color: #3b3b3b;
        }
       

    .image-placeholder,
    .image-placeholder img {
        width: 100% !important;
        height: auto !important;
    }
}





/* What's Next Section */
.whats-next {
    text-align: center;
    margin: 180px auto 100px;
    max-width: 1300px;
    padding: 0 20px;
}

    .whats-next h2,
    .whats-next p {
        text-align: left;
    }

    .whats-next h2 {
        font-size: 2.2rem;
        color: #3b3b3b;
        margin-bottom: 10px;
        font-weight: 900;
        font-family: 'Lato';
    }

    .whats-next p {
        font-size: 18px;
        color: #3b3b3b;
        margin-bottom: 40px;
        font-family: 'Lato';
    }
.next-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.next-box {
    border: 1px solid #3b3b3b;
    border-radius: 10px;
    padding: 30px 20px;
    background: #fff;
    transition: all 0.3s ease;
}

    .next-box h3 {
        font-size: 2.2rem;
        margin-bottom: 12px;
        color: #3b3b3b;
        font-weight: 900;
        font-family: 'Lato';
    }

    .next-box p {
        font-size: 18px;
        color: #3b3b3b;
        margin-bottom: 20px;
        text-align: center;
        font-family: 'Lato';
    }

    .next-box a {
        font-family: 'Montserrat';
        font-size: 14px;
        color: #3b3b3b;
        text-decoration: underline;
        font-weight: 600;
    }

    /* Hover effect */
    .next-box:hover {
        border: none;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        transform: translateY(-5px);
    }

@media only screen and (max-width: 1024px) {
    .whats-next {
        margin: 100px auto 54px;
        padding: 0 10px;
        max-width: 92%;
        margin-top: 11rem;
    }

        .whats-next h2 {
            font-size: 44px;
            font-weight: 600;
        }

        .whats-next p {
            font-size: 35px;
            line-height: 3rem;
            font-family: 'Lato';
        }

    .next-grid {
        height: 65rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .next-box {
        padding: 20px 15px;
    }

        .next-box h3 {
            font-size: 3rem;
        }

        .next-box p {
            font-size: 30px;
        }
        .next-box a {
            font-family: 'Montserrat';
            font-size: 21px;
            color: #3b3b3b;
            text-decoration: underline;
            font-weight: 600;
          
        }
}

@media only screen and (max-width: 600px) {

    .whats-next {
        margin: 60px auto 40px;
        padding: 0 10px;
    }

        .whats-next h2 {
            font-size: 2.8rem;
            text-align: left;
            margin-left: 6rem;
        }

        .whats-next p {
            font-size: 28px;
            text-align: left;
            margin-left: 6rem;
        }

    .next-grid {
        height: 55rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 39rem;
        margin-left: 6rem;
    }

    .next-box {
        width: 100%;
        margin-bottom: 15px;
        padding: 15px 12px;
    }

        .next-box h3 {
            font-size: 1.3rem;
        }

        .next-box p {
            font-size: 12px;
            font-family: 'Montserrat';
        }
        .next-box a {
            font-family: 'Montserrat';
            font-size: 21px;
            color: #3b3b3b;
            text-decoration: underline;
            font-weight: 600;
        }
}



.action-section {
    background: #B8F2E6;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 1300px;
    margin: 60px auto 40px;
}

.action-container {
    text-align: left;
}

    .action-container h2 {
        margin-top: -12px;
        color: #3b3b3b;
        font-size: 4.4rem;
        white-space: nowrap;
        font-family: 'Lato';
    }

    .action-container p {
        font-size: 18px;
        margin-top: -23px;
        color: #3b3b3b;
        font-weight: 400;
        font-family: 'Lato';
    }

.action-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.action-card {
    background: #fff;
    display: flex;
    align-items: center; 
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    height: 6.2rem; 
}

    .action-card:hover {
        box-shadow: none;
        transform: translateY(2px);
    }

.icon-boxs {
    width: 48px;
    height: 32px;
    background: transparent;
    border-radius: 6px;
    flex-shrink: 0;
    margin-left: 6%;
}

.vertical-line {
    border-left: 1px solid black;
    height: 40px;
    margin: 0 10px;
}

.card-content h3 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 0px 3px 18px;
    color: #3b3b3b;
    font-family: unset;
}

.card-content p {
    font-size: 17px;
    margin-left: 18px;
    margin-top: -10px;
    color: #3b3b3b;
    font-family: unset;
}

/* ==== Mobile & Tablet View ==== */
@media (max-width: 1024px) {
    .action-section {
        padding: 25px 15px;
        margin: 30px auto;
        max-width: 95%;
        margin-top: 7rem;
    }

    .action-container h2 {
        font-size: 4.5rem;
        white-space: normal;
        text-align: center;
        margin-bottom: 11px;
        line-height: 6rem;
    }

    .action-container p {
        font-size: 34px;
        text-align: justify;
        margin-top: 19px;
        color: #3b3b3b;
        line-height: 3rem;
    }

    .action-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .action-card {
        width: 100%;
        max-width: 900px; 
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 17px 14px;
        height: auto;
        border-radius: 11px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .icon-boxs {
        width: 68px;
        height: 68px;
        margin: 0 10px 0 15px;
        flex-shrink: 0;
    }

    .vertical-line {
        display: flex;
        height: 91px;
        margin: 0 10px;
    }

    .card-content {
        text-align: left;
    }

        .card-content h3 {
            font-size: 44px;
            color: #3b3b3b;
            margin-left: 0.5rem;
            margin-top: 1.1rem;
        }

        .card-content p {
            font-size: 26px;
            margin-top: 0px;
            color: #3b3b3b;
            white-space: nowrap;
            margin-left: 0.5rem;
            font-weight: 500;
        }
}
