@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800;900&display=swap');


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #070F23;
    color: #ffffff;
    font-family: "Vazirmatn", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}


/* =========================
   HERO
========================= */

.about-hero {
    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at center,
            #283B60 0%,
            #070F23 68%);
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 800px;

    padding: 50px 20px;
}

.hero-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #E2B356;
    color: #070F23;

    border-radius: 22px;

    font-size: 30px;

    box-shadow:
        0 15px 50px rgba(226, 179, 86, 0.2);
}

.hero-label,
.section-label {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    color: #E2B356;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 72px);

    line-height: 1.35;

    font-weight: 900;
}

.hero-content h1 span {
    color: #E2B356;
}

.hero-content p {
    color: #b9c1d3;

    font-size: 17px;

    line-height: 2;

    margin-top: 20px;
}


/* =========================
   HERO DECORATION
========================= */

.hero-decoration {
    position: absolute;

    inset: 0;

    pointer-events: none;
}

.circle {
    position: absolute;

    border: 1px solid rgba(226, 179, 86, 0.15);

    border-radius: 50%;
}

.circle-1 {
    width: 500px;
    height: 500px;

    top: -250px;
    right: -150px;
}

.circle-2 {
    width: 350px;
    height: 350px;

    bottom: -180px;
    left: -100px;
}

.circle-3 {
    width: 700px;
    height: 700px;

    top: -350px;
    left: 50%;

    transform: translateX(-50%);
}


/* =========================
   ABOUT SECTION
========================= */

.about-section {
    max-width: 1200px;

    margin: auto;

    padding: 110px 25px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


/* Image Box */

.about-image {
    display: flex;
    justify-content: center;
}

.image-box {
    width: 100%;
    max-width: 480px;

    height: 400px;

    border-radius: 30px;

    background:
        linear-gradient(145deg,
            #283B60,
            #101d38);

    border: 1px solid rgba(226, 179, 86, 0.2);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    position: relative;

    overflow: hidden;
}

.image-box::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    border: 1px solid rgba(226, 179, 86, 0.2);
}

.image-box::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border: 1px solid rgba(226, 179, 86, 0.08);
}


/* Main Icon */

.main-icon {
    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #E2B356;

    color: #070F23;

    border-radius: 30px;

    font-size: 45px;

    position: relative;
    z-index: 3;

    box-shadow:
        0 20px 60px rgba(226, 179, 86, 0.2);
}

.image-box h3 {
    position: relative;
    z-index: 3;

    font-size: 20px;

    margin-top: 30px;
}

.image-box>span {
    position: relative;
    z-index: 3;

    color: #aeb7ca;

    font-size: 14px;

    margin-top: 8px;
}


/* Floating Icons */

.floating-icon {
    width: 55px;
    height: 55px;

    position: absolute;

    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #070F23;

    color: #E2B356;

    border: 1px solid rgba(226, 179, 86, 0.25);

    border-radius: 16px;

    font-size: 20px;
}

.icon-one {
    top: 60px;
    right: 65px;
}

.icon-two {
    bottom: 65px;
    left: 65px;
}

.icon-three {
    top: 80px;
    left: 70px;
}


/* About Text */

.about-text h2 {
    font-size: 40px;

    line-height: 1.5;

    margin-bottom: 25px;
}

.about-text h2 span {
    color: #E2B356;
}

.about-text p {
    color: #aeb7ca;

    line-height: 2.1;

    font-size: 15px;

    margin-bottom: 18px;
}


/* Points */

.about-points {
    display: flex;

    flex-direction: column;

    gap: 13px;

    margin-top: 25px;
}

.about-point {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #dce1ea;

    font-size: 14px;
}

.point-icon {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(226, 179, 86, 0.12);

    color: #E2B356;

    border-radius: 50%;

    font-size: 12px;
}


/* =========================
   STATS
========================= */

.stats-section {
    max-width: 1200px;

    margin: auto;

    padding: 0 25px 110px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.stat-card {
    background: #283B60;

    border: 1px solid rgba(255, 255, 255, 0.05);

    padding: 35px 20px;

    border-radius: 22px;

    text-align: center;

    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(226, 179, 86, 0.3);
}

.stat-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(226, 179, 86, 0.1);

    color: #E2B356;

    border-radius: 16px;

    font-size: 21px;
}

.stat-card strong {
    display: block;

    font-size: 32px;

    font-weight: 900;
}

.stat-card span {
    display: block;

    color: #aeb7ca;

    margin-top: 5px;

    font-size: 14px;
}


/* =========================
   FEATURES
========================= */

.features-section {
    background: #0a142b;

    padding: 110px 25px;
}

.section-heading {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 60px;
}

.section-heading h2 {
    font-size: 40px;

    margin-bottom: 15px;
}

.section-heading h2 span {
    color: #E2B356;
}

.section-heading p {
    color: #aeb7ca;

    line-height: 2;
}


/* Grid */

.features-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* Card */

.feature-card {
    padding: 35px 25px;

    background: #283B60;

    border-radius: 22px;

    border: 1px solid transparent;

    position: relative;

    overflow: hidden;

    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(226, 179, 86, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;

    border-radius: 17px;

    background: rgba(226, 179, 86, 0.1);

    color: #E2B356;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;

    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 18px;

    margin-bottom: 15px;
}

.feature-card p {
    color: #adb6c8;

    font-size: 14px;

    line-height: 2;
}

.feature-number {
    position: absolute;

    left: -5px;
    bottom: -25px;

    color: rgba(226, 179, 86, 0.06);

    font-size: 100px;

    font-weight: 900;
}


/* =========================
   MISSION
========================= */

.mission-section {
    padding: 120px 25px;

    text-align: center;

    background:
        radial-gradient(circle at center,
            rgba(40, 59, 96, 0.8),
            #070F23 65%);
}

.mission-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #E2B356;

    color: #070F23;

    border-radius: 22px;

    font-size: 27px;
}

.mission-content {
    max-width: 750px;

    margin: auto;
}

.mission-content h2 {
    font-size: 42px;

    line-height: 1.5;

    margin-bottom: 25px;
}

.mission-content h2 span {
    color: #E2B356;
}

.mission-content p {
    color: #adb6c8;

    line-height: 2.2;
}


/* =========================
   CTA
========================= */

.cta-section {
    max-width: 1200px;

    margin: auto;

    padding: 80px 25px 120px;
}

.cta-box {
    background: #283B60;

    border-radius: 30px;

    padding: 45px 50px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    border: 1px solid rgba(226, 179, 86, 0.15);
}

.cta-content {
    display: flex;

    align-items: center;

    gap: 25px;
}

.cta-icon {
    min-width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(226, 179, 86, 0.1);

    color: #E2B356;

    border-radius: 20px;

    font-size: 27px;
}

.cta-box h2 {
    font-size: 35px;

    margin-bottom: 8px;
}

.cta-box h2 span {
    color: #E2B356;
}

.cta-box p {
    color: #b2bbcc;
}

.cta-button {
    background: #E2B356;

    color: #070F23;

    padding: 15px 25px;

    border-radius: 13px;

    font-weight: 800;

    white-space: nowrap;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    transition: 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(226, 179, 86, 0.2);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .about-section {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-image {
        order: 2;
    }

    .about-text {
        order: 1;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .about-hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .about-section {
        padding: 75px 20px;
    }

    .image-box {
        height: 330px;
    }

    .icon-one {
        right: 30px;
    }

    .icon-two {
        left: 30px;
    }

    .icon-three {
        left: 35px;
        top: 65px;
    }

    .about-text h2,
    .section-heading h2 {
        font-size: 30px;
    }

    .mission-content h2 {
        font-size: 30px;
    }

    .stats-section {
        grid-template-columns: 1fr 1fr;

        padding-left: 20px;
        padding-right: 20px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-card strong {
        font-size: 27px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-section {
        padding: 80px 20px;
    }

    .mission-section {
        padding: 90px 20px;
    }

    .cta-section {
        padding: 60px 20px 80px;
    }

    .cta-box {
        padding: 35px 25px;

        flex-direction: column;

        align-items: stretch;
    }

    .cta-content {
        align-items: flex-start;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .cta-button {
        width: 100%;

        justify-content: center;
    }

}