﻿.about-container {
    width: 90%;
    margin: auto;
    max-width: 80em;
    padding-bottom: 4em;
}

.section {
    padding: 1em 0;
}

.about-hero {
    background: linear-gradient(rgb(49 68 82 / 0.34), rgb(0 0 0 / 0.54));
    color: white;
    text-align: center;
    padding: 3em 2em;
    border-radius: 0 0 2em 2em;
}

    .about-hero h1 {
        font-size: 3em;
        margin-bottom: 0.5em;
    }

    .about-hero p {
        font-size: 1.3em;
        max-width: 40em;
        margin: auto;
        line-height: 1.8;
    }

.section-title {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #314452;
}

    .section-title:after {
        content: "";
        width: 4em;
        height: 0.25em;
        background: #314452;
        display: block;
        margin-top: 0.4em;
    }

.section p {
    font-size: 1.2em;
    line-height: 1.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(12em, 1fr));
    gap: 1.5em;
    margin-top: 2em;
}

.value-card {
    background: white;
    padding: 2em 1.5em;
    text-align: center;
    border-radius: 1em;
    box-shadow: 0 0.4em 1.2em #00000015;
    transition: .3s;
    font-size: 1.2em;
    font-weight: 600;
}

    .value-card i {
        font-size: 2.5em;
        margin-bottom: 0.5em;
        color: #314452;
    }

    .value-card:hover {
        transform: translateY(-0.4em);
        background: #314452;
        color: white;
    }

        .value-card:hover i {
            color: white;
        }

.why-list li {
    font-size: 1.25em;
    margin-bottom: 0.8em;
    padding-right: 2em;
    position: relative;
}

    .why-list li i {
        position: absolute;
        right: 0;
        top: 0.1em;
        color: #314452;
        font-size: 1.3em;
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11em, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.team-card {
    background: white;
    padding: 1em 1em;
    border-radius: 1em;
    text-align: center;
    box-shadow: 0 0.4em 1em #00000012;
    transition: .3s;
}

    .team-card img {
        width: 100%;
        height: 12em;
        object-fit: contain;
    }

    .team-card:hover {
        transform: translateY(-0.4em);
    }

    .team-card i {
        font-size: 4em;
        margin-bottom: 0.5em;
        color: #314452;
    }

    .team-card h4 {
        margin: 0.3em 0;
        font-size: 1.2em;
    }

    .team-card span {
        color: #666;
        font-size: 1.1em;
    }

@media(max-width: 50em) {
    .about-hero h1 {
        font-size: 2.4em;
    }

    .about-hero p {
        font-size: 1.1em;
    }
}


.sub-page {
    padding: 1.5em 5%;
    background: #f1f5f9;
    font-family: "Cairo", sans-serif;
}

.sub-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #102331;
    color: #fff;
    padding: .7em 1.4em;
    border-radius: .8em .8em 0 0;
}

.sub-top-title {
    font-weight: 800;
    font-size: 1.1em;
}

.sub-top-step {
    font-weight: 600;
    color: #9ddcff;
    font-size: .9em;
}

.sub-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #19a8ff;
    padding: .8em 1.4em;
    border-radius: 0 0 .8em .8em;
    margin-bottom: 1.7em;
    color: #fff;
}

.sub-toolbar-title {
    font-weight: 800;
    font-size: 1.05em;
}

.sub-billing-switch {
    display: flex;
    align-items: center;
    gap: .4em;
}

.sub-bill-chip {
    padding: .25em .9em;
    border-radius: 999px;
    font-size: .85em;
    cursor: pointer;
    background: rgba(255,255,255,.16);
}

.sub-bill-chip-active {
    background: #fff;
    color: #0b2233;
    font-weight: 700;
}

.sub-bill-discount {
    background: #00c853;
    color: #fff;
    border-radius: 999px;
    padding: .25em .9em;
    font-size: .85em;
    font-weight: 700;
}

.sub-layout {
    display: grid;
    grid-template-columns: 20em minmax(0, 1fr);
    gap: 1.5em;
    align-items: flex-start;
}

.sub-summary-card {
    background: #0d2536;
    color: #e5edf5;
    border-radius: 1.4em;
    padding: 1.3em 1.2em;
    box-shadow: 0 8px 25px rgba(0,0,0,.35);
}

.sub-summary-header {
    display: flex;
    align-items: center;
    gap: .4em;
    font-weight: 800;
    font-size: 1.02em;
    margin-bottom: .8em;
}

    .sub-summary-header i {
        color: #19a8ff;
    }

.sub-summary-plan {
    display: flex;
    justify-content: space-between;
    font-size: .9em;
    margin-bottom: .6em;
}

.sub-summary-plan-type {
    color: #19e2ff;
    font-weight: 700;
}

.sub-summary-table {
    background: #081623;
    border-radius: 1em;
    padding: .9em .8em;
    font-size: .88em;
}

.sub-summary-row {
    display: flex;
    justify-content: space-between;
    padding: .22em 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

    .sub-summary-row:last-child {
        border-bottom: none;
    }

.sub-summary-row-total {
    margin-top: .2em;
    font-weight: 800;
    color: #ffffff;
}

.sub-summary-title {
    max-width: 60%;
}

.sub-summary-value {
    font-family: "Tahoma", sans-serif;
}

.sub-summary-footer {
    margin-top: 1.3em;
    display: flex;
    justify-content: center;
}

.sub-main-btn {
    background: linear-gradient(135deg, #22b5ff, #0f86ff);
    color: #fff;
    padding: .7em 1.8em;
    border-radius: 999px;
    font-weight: 800;
    font-size: .97em;
    cursor: pointer;
    text-align: center;
}

.sub-main-btn-wide {
    min-width: 200px;
}

.sub-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22em, 1fr));
    gap: 1em;
}

.sub-module-card {
    background: #0d2536;
    color: #e5edf5;
    padding: 1.2em 1.1em;
    border-radius: 1.4em;
    box-shadow: 0 7px 22px rgba(0,0,0,.32);
    display: flex;
    flex-direction: column;
    gap: .7em;
}

.sub-module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .6em;
}

.sub-module-title {
    display: flex;
    align-items: center;
    gap: .4em;
    font-weight: 800;
    font-size: .98em;
}

    .sub-module-title i {
        color: #19d5ff;
        font-size: 1.1em;
    }

.sub-module-body {
    font-size: .85em;
    line-height: 1.9;
    color: #c7d5e3;
    min-height: 90px;
}

.sub-module-price-row {
    display: flex;
    justify-content: flex-start;
}

.sub-module-price {
    background: #ffffff;
    color: #0c1f2e;
    padding: .4em .9em;
    border-radius: .9em;
    font-weight: 800;
    font-size: .9em;
    display: inline-flex;
    align-items: baseline;
    gap: .2em;
}

    .sub-module-price span:first-child {
        font-size: 1.15em;
    }

    .sub-module-price .currency {
        font-size: .9em;
    }

    .sub-module-price .period {
        font-size: .8em;
        color: #4c5b6c;
    }

.sub-module-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .6em;
}

.sub-counter {
    display: flex;
    align-items: center;
    background: #06151f;
    border-radius: 999px;
    overflow: hidden;
}

.sub-counter-btn {
    padding: .25em .7em;
    font-size: 1.1em;
    cursor: pointer;
    color: #ffffff;
}

.sub-counter-value {
    padding: .25em .9em;
    background: #ffffff;
    color: #0b2233;
    font-weight: 800;
    min-width: 32px;
    text-align: center;
}

.sub-module-sub-btn {
    flex: 1;
    background: #19a8ff;
    color: #0b2233;
    text-align: center;
    padding: .45em .6em;
    border-radius: .9em;
    font-weight: 800;
    font-size: .9em;
    cursor: pointer;
}

.sub-nav-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.8em;
}

.sub-secondary-btn {
    background: #ffffff;
    color: #0b2233;
    padding: .6em 1.6em;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid #cfd6de;
}

@media (max-width: 992px) {
    .sub-layout {
        grid-template-columns: 1fr;
    }

    .sub-summary-card {
        order: 2;
    }

    .sub-modules {
        order: 1;
    }
}


.services-container {
    padding: 4em 5%;
    background: #f5f7fa;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3em auto;
}

    .services-header h1 {
        font-size: 2.5em;
        color: #314452;
        font-weight: 900;
    }

    .services-header p {
        margin-top: .7em;
        font-size: 1.1em;
        color: #5f6b76;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22em, 1fr));
    gap: 1.8em;
}

.service-card {
    background: #ffffff;
    border-radius: 2em;
    padding: 2.3em 2em;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e3e7ec;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
    }

.service-icon {
    font-size: 3.2em;
    color: #314452;
    margin-bottom: .8em;
}

.service-card h3 {
    font-size: 1.4em;
    color: #314452;
    margin-bottom: .7em;
    font-weight: 800;
}

.service-card p {
    font-size: .98em;
    color: #555f6b;
    line-height: 2;
    margin-bottom: 1.4em;
    flex-grow: 1;
}

.service-btn {
    display: inline-block;
    padding: .7em 1.8em;
    background: #314452;
    color: #ffffff;
    border-radius: .8em;
    text-decoration: none;
    font-weight: 700;
    font-size: .95em;
    margin-top: .5em;
    transition: background .2s ease, transform .2s ease;
}

    .service-btn:hover {
        background: #1f2d39;
        transform: translateY(-2px);
    }
