

.about-page {
    box-sizing: border-box;
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 140, 255, .15), transparent 30%),
        radial-gradient(circle at 90% 30%, rgba(0, 90, 255, .12), transparent 30%),
        #07111f;
    color: #fff;
    font-family: "Vazirmatn", sans-serif;
}

/* NAVBAR */

.about-navbar {
    width: 100%;
    min-height: 80px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: rgba(5,15,28,.75);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.about-logo a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 23px;
    font-weight: 800;
}

.about-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#008cff,#0055ff);
    box-shadow: 0 0 25px rgba(0,130,255,.35);
}

.about-nav-links {
    display: flex;
    gap: 35px;
}

.about-nav-links a {
    color: #aab8ca;
    text-decoration: none;
    transition: .3s;
    font-size: 14px;
}

.about-nav-links a:hover,
.about-nav-links a.active {
    color: #fff;
}

.about-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-login,
.nav-register {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
}

.nav-login {
    color: white;
}

.nav-register {
    color: white;
    background: linear-gradient(135deg,#007bff,#0055ff);
}


/* HERO */

.about-hero {
    min-height: 650px;
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid rgba(0,140,255,.25);
    border-radius: 30px;
    background: rgba(0,100,255,.08);
    color: #65baff;
    margin-bottom: 25px;
    font-size: 13px;
}

.hero-content h1 {
    font-size: clamp(45px,6vw,78px);
    line-height: 1.15;
    margin: 0 0 25px;
    font-weight: 800;
}

.hero-content h1 span {
    background: linear-gradient(90deg,#008cff,#65c7ff);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-content p {
    max-width: 650px;
    color: #9aaabd;
    line-height: 2.1;
    font-size: 17px;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.hero-buttons a {
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 12px;
    transition: .3s;
}

.hero-primary {
    color: white;
    background: linear-gradient(135deg,#008cff,#0055ff);
    box-shadow: 0 15px 35px rgba(0,100,255,.25);
}

.hero-secondary {
    color: #dce8f5;
    border: 1px solid rgba(255,255,255,.1);
}

.hero-buttons a:hover {
    transform: translateY(-4px);
}


/* HERO VISUAL */

.hero-visual {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-circle {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: #006eff;
    filter: blur(120px);
    opacity: .25;
}

.main-visual-card {
    position: relative;
    width: 280px;
    height: 330px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.visual-icon {
    width: 90px;
    height: 90px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    background: linear-gradient(135deg,#008cff,#0055ff);
    box-shadow: 0 0 40px rgba(0,130,255,.35);
}

.main-visual-card h3 {
    margin: 25px 0 5px;
    font-size: 28px;
}

.main-visual-card p {
    color: #8190a3;
}

.floating-card {
    position: absolute;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 15px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(15px);
    color: white;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: #32a8ff;
    font-size: 20px;
}

.card-one {
    top: 80px;
    right: 30px;
}

.card-two {
    bottom: 90px;
    left: 20px;
    animation-delay: 1s;
}

.card-three {
    top: 210px;
    left: 0;
    animation-delay: 2s;
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* SECTION */

.about-us,
.services-section {
    padding: 100px 8%;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 65px;
}

.section-title span {
    color: #299dff;
    font-size: 14px;
}

.section-title h2 {
    font-size: 38px;
    margin: 12px 0;
}

.section-title p {
    color: #8d9bad;
    line-height: 2;
}


/* ABOUT GRID */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

.about-text p {
    color: #91a0b2;
    line-height: 2.1;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    gap: 15px;
}

.feature-box {
    display: flex;
    gap: 18px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
    transition: .3s;
}

.feature-box:hover {
    transform: translateX(-6px);
    border-color: rgba(0,140,255,.3);
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,130,255,.1);
    color: #28a3ff;
    font-size: 21px;
}

.feature-box h4 {
    margin: 0 0 8px;
}

.feature-box p {
    margin: 0;
    color: #8190a3;
    font-size: 13px;
    line-height: 1.8;
}


/* SERVICES */

.services-section {
    background: rgba(0,0,0,.12);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.service-card {
    padding: 35px 25px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.025);
    transition: .35s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,140,255,.35);
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3caaff;
    background: rgba(0,130,255,.1);
    font-size: 25px;
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: #8190a3;
    line-height: 1.9;
    font-size: 14px;
}


/* STATS */

.stats-section {
    padding: 70px 8%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.stat-box {
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 40px;
    color: #31a6ff;
    margin-bottom: 8px;
}

.stat-box span {
    color: #7f8fa3;
}


/* CTA */

.about-cta {
    padding: 100px 8%;
    text-align: center;
}

.about-cta > div {
    max-width: 900px;
    margin: auto;
    padding: 80px 30px;
    border-radius: 30px;
    border: 1px solid rgba(0,140,255,.2);
    background:
        radial-gradient(circle at center,rgba(0,100,255,.13),transparent 60%),
        rgba(255,255,255,.025);
}

.cta-small {
    color: #36a8ff;
}

.about-cta h2 {
    font-size: 42px;
    margin: 15px 0;
}

.about-cta p {
    color: #8999ad;
    margin-bottom: 30px;
}

.about-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg,#008cff,#0055ff);
    color: white;
    text-decoration: none;
}


/* FOOTER */

.about-footer {
    padding: 50px 8% 25px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.07);
}

.footer-logo {
    font-size: 25px;
    font-weight: 800;
}

.footer-logo span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg,#008cff,#0055ff);
}

.about-footer > p {
    color: #718095;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    color: white;
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: #007cff;
    transform: translateY(-4px);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.05);
    color: #59687b;
    font-size: 13px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .about-nav-links {
        display: none;
    }

    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stats-section {
        grid-template-columns: repeat(2,1fr);
    }

}

@media (max-width: 600px) {

    .about-navbar {
        padding: 0 20px;
    }

    .about-nav-actions .nav-login {
        display: none;
    }

    .about-hero {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-visual {
        height: 400px;
    }

    .main-visual-card {
        width: 220px;
        height: 280px;
    }

    .floating-card {
        font-size: 12px;
        padding: 10px 13px;
    }

    .card-one {
        right: 0;
    }

    .card-two {
        left: 0;
    }

    .about-us,
    .services-section {
        padding: 70px 20px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: 1fr 1fr;
        padding: 50px 20px;
    }

    .stat-box strong {
        font-size: 30px;
    }

    .about-cta {
        padding: 70px 20px;
    }

    .about-cta h2 {
        font-size: 30px;
    }

}
/* =========================================================
   ABOUT PAGE — LIGHT MODE
   Light Blue / Glassmorphism / Responsive
========================================================= */

body.light-mode .about-page,
body.light .about-page,
html.light-mode .about-page,
html.light .about-page {

    color: #172033;

    background:
        radial-gradient(
            circle at 10% 8%,
            rgba(22, 131, 255, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 30%,
            rgba(0, 198, 255, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f7faff 0%,
            #eef5ff 48%,
            #f8fbff 100%
        );
}


/* =========================================================
   HERO
========================================================= */

body.light-mode .about-hero,
body.light .about-hero,
html.light-mode .about-hero,
html.light .about-hero {

    color: #172033;
}

body.light-mode .hero-badge,
body.light .hero-badge,
html.light-mode .hero-badge,
html.light .hero-badge {

    color: #1764b0;

    border-color: rgba(22, 131, 255, 0.18);

    background:
        rgba(255, 255, 255, 0.72);

    box-shadow:
        0 10px 30px rgba(30, 90, 150, 0.06);

    backdrop-filter: blur(18px);
}

body.light-mode .hero-badge > span,
body.light .hero-badge > span,
html.light-mode .hero-badge > span,
html.light .hero-badge > span {

    color: #1683ff;
}


body.light-mode .hero-content h1,
body.light .hero-content h1,
html.light-mode .hero-content h1,
html.light .hero-content h1 {

    color: #111b2e;
}

body.light-mode .hero-content h1 span,
body.light .hero-content h1 span,
html.light-mode .hero-content h1 span,
html.light .hero-content h1 span {

    background:
        linear-gradient(
            110deg,
            #1683ff,
            #006ee8,
            #00a9e8
        );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


body.light-mode .hero-content > p,
body.light .hero-content > p,
html.light-mode .hero-content > p,
html.light .hero-content > p {

    color: #64748b;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

body.light-mode .hero-primary,
body.light .hero-primary,
html.light-mode .hero-primary,
html.light .hero-primary {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #0067d9
        );

    box-shadow:
        0 15px 35px rgba(22, 131, 255, 0.20);
}

body.light-mode .hero-primary:hover,
body.light .hero-primary:hover,
html.light-mode .hero-primary:hover,
html.light .hero-primary:hover {

    color: #fff;

    box-shadow:
        0 20px 45px rgba(22, 131, 255, 0.30);
}


body.light-mode .hero-secondary,
body.light .hero-secondary,
html.light-mode .hero-secondary,
html.light .hero-secondary {

    color: #31506f;

    border-color: rgba(30, 80, 130, 0.12);

    background:
        rgba(255, 255, 255, 0.65);

    box-shadow:
        0 10px 30px rgba(30, 80, 130, 0.05);

    backdrop-filter: blur(16px);
}

body.light-mode .hero-secondary:hover,
body.light .hero-secondary:hover,
html.light-mode .hero-secondary:hover,
html.light .hero-secondary:hover {

    color: #126dcc;

    border-color: rgba(22, 131, 255, 0.22);

    background:
        rgba(22, 131, 255, 0.06);
}


/* =========================================================
   HERO VISUAL
========================================================= */

body.light-mode .glow-circle,
body.light .glow-circle,
html.light-mode .glow-circle,
html.light .glow-circle {

    background:
        radial-gradient(
            circle,
            rgba(22, 131, 255, 0.18),
            rgba(22, 131, 255, 0.07) 45%,
            transparent 72%
        );

    filter: blur(1px);
}


body.light-mode .floating-card,
body.light .floating-card,
html.light-mode .floating-card,
html.light .floating-card {

    color: #29435f;

    border-color: rgba(30, 80, 130, 0.10);

    background:
        rgba(255, 255, 255, 0.78);

    box-shadow:
        0 20px 50px rgba(35, 80, 130, 0.12);

    backdrop-filter: blur(20px);
}

body.light-mode .floating-card i,
body.light .floating-card i,
html.light-mode .floating-card i,
html.light .floating-card i {

    color: #1683ff;
}


body.light-mode .main-visual-card,
body.light .main-visual-card,
html.light-mode .main-visual-card,
html.light .main-visual-card {

    color: #18263a;

    border-color: rgba(22, 131, 255, 0.12);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.92),
            rgba(241, 247, 255, 0.82)
        );

    box-shadow:
        0 30px 80px rgba(28, 80, 140, 0.14);

    backdrop-filter: blur(25px);
}

body.light-mode .main-visual-card h3,
body.light .main-visual-card h3,
html.light-mode .main-visual-card h3,
html.light .main-visual-card h3 {

    color: #172033;
}

body.light-mode .main-visual-card p,
body.light .main-visual-card p,
html.light-mode .main-visual-card p,
html.light .main-visual-card p {

    color: #718198;
}


body.light-mode .visual-icon,
body.light .visual-icon,
html.light-mode .visual-icon,
html.light .visual-icon {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #0064d5
        );

    box-shadow:
        0 12px 30px rgba(22, 131, 255, 0.25);
}


/* =========================================================
   SECTION TITLES
========================================================= */

body.light-mode .section-title > span,
body.light .section-title > span,
html.light-mode .section-title > span,
html.light .section-title > span {

    color: #1683ff;
}

body.light-mode .section-title h2,
body.light .section-title h2,
html.light-mode .section-title h2,
html.light .section-title h2 {

    color: #172033;
}

body.light-mode .section-title p,
body.light .section-title p,
html.light-mode .section-title p,
html.light .section-title p {

    color: #718198;
}


/* =========================================================
   ABOUT US
========================================================= */

body.light-mode .about-text,
body.light .about-text,
html.light-mode .about-text,
html.light .about-text {

    color: #334155;
}

body.light-mode .about-text h3,
body.light .about-text h3,
html.light-mode .about-text h3,
html.light .about-text h3 {

    color: #172033;
}

body.light-mode .about-text p,
body.light .about-text p,
html.light-mode .about-text p,
html.light .about-text p {

    color: #68788e;
}


/* =========================================================
   FEATURE BOXES
========================================================= */

body.light-mode .feature-box,
body.light .feature-box,
html.light-mode .feature-box,
html.light .feature-box {

    border-color: rgba(30, 80, 130, 0.09);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.84),
            rgba(244, 248, 255, 0.72)
        );

    box-shadow:
        0 15px 45px rgba(40, 80, 130, 0.07);

    backdrop-filter: blur(18px);
}

body.light-mode .feature-box:hover,
body.light .feature-box:hover,
html.light-mode .feature-box:hover,
html.light .feature-box:hover {

    border-color: rgba(22, 131, 255, 0.22);

    background:
        rgba(255, 255, 255, 0.95);

    box-shadow:
        0 22px 55px rgba(35, 90, 150, 0.11);
}

body.light-mode .feature-icon,
body.light .feature-icon,
html.light-mode .feature-icon,
html.light .feature-icon {

    color: #1683ff;

    background:
        rgba(22, 131, 255, 0.09);
}

body.light-mode .feature-box h4,
body.light .feature-box h4,
html.light-mode .feature-box h4,
html.light .feature-box h4 {

    color: #243247;
}

body.light-mode .feature-box p,
body.light .feature-box p,
html.light-mode .feature-box p,
html.light .feature-box p {

    color: #718198;
}


/* =========================================================
   SERVICES
========================================================= */

body.light-mode .service-card,
body.light .service-card,
html.light-mode .service-card,
html.light .service-card {

    border-color: rgba(30, 80, 130, 0.09);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.86),
            rgba(242, 247, 255, 0.75)
        );

    box-shadow:
        0 18px 50px rgba(35, 80, 130, 0.07);

    backdrop-filter: blur(20px);
}

body.light-mode .service-card:hover,
body.light .service-card:hover,
html.light-mode .service-card:hover,
html.light .service-card:hover {

    border-color: rgba(22, 131, 255, 0.23);

    box-shadow:
        0 25px 65px rgba(35, 90, 150, 0.12);
}

body.light-mode .service-icon,
body.light .service-icon,
html.light-mode .service-icon,
html.light .service-icon {

    color: #1683ff;

    background:
        rgba(22, 131, 255, 0.09);

    box-shadow:
        inset 0 0 20px rgba(22, 131, 255, 0.025);
}

body.light-mode .service-card h3,
body.light .service-card h3,
html.light-mode .service-card h3,
html.light .service-card h3 {

    color: #1e2b3e;
}

body.light-mode .service-card p,
body.light .service-card p,
html.light-mode .service-card p,
html.light .service-card p {

    color: #718198;
}


/* =========================================================
   STATS
========================================================= */

body.light-mode .stats-section,
body.light .stats-section,
html.light-mode .stats-section,
html.light .stats-section {

    border-color: rgba(30, 80, 130, 0.09);

    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.84),
            rgba(239, 246, 255, 0.78)
        );

    box-shadow:
        0 25px 70px rgba(35, 80, 130, 0.08);

    backdrop-filter: blur(20px);
}

body.light-mode .stat-box strong,
body.light .stat-box strong,
html.light-mode .stat-box strong,
html.light .stat-box strong {

    color: #1683ff;
}

body.light-mode .stat-box span,
body.light .stat-box span,
html.light-mode .stat-box span,
html.light .stat-box span {

    color: #718198;
}


/* =========================================================
   CTA
========================================================= */

body.light-mode .about-cta,
body.light .about-cta,
html.light-mode .about-cta,
html.light .about-cta {

    border-color: rgba(22, 131, 255, 0.13);

    background:
        radial-gradient(
            circle at center,
            rgba(22, 131, 255, 0.13),
            transparent 62%
        ),
        linear-gradient(
            135deg,
            rgba(232, 243, 255, 0.95),
            rgba(248, 251, 255, 0.98)
        );

    box-shadow:
        0 25px 75px rgba(35, 90, 150, 0.09);
}

body.light-mode .cta-small,
body.light .cta-small,
html.light-mode .cta-small,
html.light .cta-small {

    color: #1683ff;
}

body.light-mode .about-cta h2,
body.light .about-cta h2,
html.light-mode .about-cta h2,
html.light .about-cta h2 {

    color: #172033;
}

body.light-mode .about-cta p,
body.light .about-cta p,
html.light-mode .about-cta p,
html.light .about-cta p {

    color: #6f8096;
}

body.light-mode .about-cta a,
body.light .about-cta a,
html.light-mode .about-cta a,
html.light .about-cta a {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #0064d5
        );

    box-shadow:
        0 15px 35px rgba(22, 131, 255, 0.22);
}

body.light-mode .about-cta a:hover,
body.light .about-cta a:hover,
html.light-mode .about-cta a:hover,
html.light .about-cta a:hover {

    color: #fff;

    box-shadow:
        0 20px 45px rgba(22, 131, 255, 0.32);
}


/* =========================================================
   FOOTER
========================================================= */

body.light-mode .about-footer,
body.light .about-footer,
html.light-mode .about-footer,
html.light .about-footer {

    border-top-color: rgba(30, 80, 130, 0.08);

    color: #64748b;
}

body.light-mode .footer-logo,
body.light .footer-logo,
html.light-mode .footer-logo,
html.light .footer-logo {

    color: #172033;
}

body.light-mode .footer-logo > span,
body.light .footer-logo > span,
html.light-mode .footer-logo > span,
html.light .footer-logo > span {

    color: #1683ff;
}

body.light-mode .about-footer > p,
body.light .about-footer > p,
html.light-mode .about-footer > p,
html.light .about-footer > p {

    color: #718198;
}


/* =========================================================
   SOCIAL BUTTONS
========================================================= */

body.light-mode .footer-social a,
body.light .footer-social a,
html.light-mode .footer-social a,
html.light .footer-social a {

    color: #64748b;

    border-color: rgba(30, 80, 130, 0.10);

    background:
        rgba(255, 255, 255, 0.65);

    box-shadow:
        0 8px 25px rgba(30, 80, 130, 0.05);
}

body.light-mode .footer-social a:hover,
body.light .footer-social a:hover,
html.light-mode .footer-social a:hover,
html.light .footer-social a:hover {

    color: #1683ff;

    border-color: rgba(22, 131, 255, 0.20);

    background:
        rgba(22, 131, 255, 0.07);

    box-shadow:
        0 12px 30px rgba(22, 131, 255, 0.10);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

body.light-mode .footer-bottom,
body.light .footer-bottom,
html.light-mode .footer-bottom,
html.light .footer-bottom {

    color: #8a98aa;

    border-top-color:
        rgba(30, 80, 130, 0.08);
}


/* =========================================================
   GENERAL GLASS HIGHLIGHT
========================================================= */

body.light-mode .about-page .feature-box::before,
body.light .about-page .feature-box::before,
html.light-mode .about-page .feature-box::before,
html.light .about-page .feature-box::before,

body.light-mode .about-page .service-card::before,
body.light .about-page .service-card::before,
html.light-mode .about-page .service-card::before,
html.light .about-page .service-card::before {

    background:
        rgba(22, 131, 255, 0.045);
}


/* =========================================================
   MOBILE LIGHT MODE
========================================================= */

@media (max-width: 767px) {

    body.light-mode .hero-badge,
    body.light .hero-badge,
    html.light-mode .hero-badge,
    html.light .hero-badge {

        box-shadow:
            0 8px 25px rgba(30, 90, 150, 0.06);
    }

    body.light-mode .floating-card,
    body.light .floating-card,
    html.light-mode .floating-card,
    html.light .floating-card {

        box-shadow:
            0 15px 35px rgba(35, 80, 130, 0.10);
    }

    body.light-mode .main-visual-card,
    body.light .main-visual-card,
    html.light-mode .main-visual-card,
    html.light .main-visual-card {

        box-shadow:
            0 20px 55px rgba(28, 80, 140, 0.12);
    }

    body.light-mode .feature-box,
    body.light .feature-box,
    html.light-mode .feature-box,
    html.light .feature-box,

    body.light-mode .service-card,
    body.light .service-card,
    html.light-mode .service-card,
    html.light .service-card {

        box-shadow:
            0 12px 35px rgba(35, 80, 130, 0.06);
    }

    body.light-mode .stats-section,
    body.light .stats-section,
    html.light-mode .stats-section,
    html.light .stats-section {

        box-shadow:
            0 18px 50px rgba(35, 80, 130, 0.07);
    }

    body.light-mode .about-cta,
    body.light .about-cta,
    html.light-mode .about-cta,
    html.light .about-cta {

        box-shadow:
            0 18px 50px rgba(35, 90, 150, 0.07);
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    body.light-mode .floating-card,
    body.light .floating-card,
    html.light-mode .floating-card,
    html.light .floating-card {

        background:
            rgba(255, 255, 255, 0.88);
    }

    body.light-mode .main-visual-card,
    body.light .main-visual-card,
    html.light-mode .main-visual-card,
    html.light .main-visual-card {

        background:
            rgba(255, 255, 255, 0.92);
    }
}