/* ===== CLEAN ABOUT HERO ===== */
.about-hero-clean {
    min-height: 86vh;
    display: flex;
    align-items: center;
    background: #050505;
    padding: 0 8%;
}

/* layout */
.about-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
}

/* LEFT */
.about-left {
    max-width: 650px;
}

.about-tag {
    color: #39ff14;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
    border: 1px solid #419232;
    border-radius: 20px;
    padding:  4px 20px;
    text-shadow: 0 -3px 6px #419232;
}

/* title */
.about-left h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    color: #fff;
}

.about-left h1 span {
    color: #b6ff9c;
}

/* desc */
.about-left p {
    color: #aaa;
    margin-top: 15px;
    line-height: 1.6;
}

/* RIGHT SIDE */
.about-right {
    position: relative;
}

.about-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57,255,20,0.2), transparent);
    filter: blur(40px);
}

/* MOBILE */
@media (max-width: 768px) {
    .about-hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-left h1 {
        font-size: 2rem;
    }

    .about-circle {
        width: 200px;
        height: 200px;
    }
}


/* BASE ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

/* KEYFRAMES */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DELAYS (for stagger effect) */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }



/* Company Information */

/* ===== COMPANY INTRO UPGRADE ===== */
.company-intro {
    padding: 80px 8%;
    background: #050505;
}

.intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT TEXT */
.intro-text {
    flex: 1;
    text-align: justify;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #b6ff9c;
}

.intro-text p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 550px;
}

/* RIGHT IMAGE CARD */
.intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.intro-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    /* background: #111; */
    padding: 10px;
    transition: 0.4s ease;
}

/* hover effect */
.intro-image img:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        text-align: center;
    }

    .intro-text p {
        margin: auto;
    }
}


.intro-text h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #39ff14;
    margin-top: 8px;
}



/* Mission */

/* ===== VALUES SECTION ===== */
.company-values {
    padding: 80px 8%;
    background: #050505;
}

/* GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.value-card {
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* subtle glow background */
.value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: radial-gradient(circle at top, rgba(57,255,20,0.08), transparent); */
    opacity: 0;
    transition: 0.4s;
}

/* hover */
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 -4px 1px #419232;
}

.value-card:hover::before {
    opacity: 1;
}

/* ICON */
.value-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(57,255,20,0.08);
    /* border: 1px solid rgba(57,255,20,0.2); */
}

/* ICON STYLE */
.value-icon i {
    font-size: 28px;
    color: #39ff14;
}

/* TITLE */
.value-card h3 {
    color: #b6ff9c;
    margin-bottom: 10px;
}

/* TEXT */
.value-card p {
    color: #aaa;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* HEADER */
.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-header h2 {
    font-size: 2.2rem;
    color: #b6ff9c;
    margin-bottom: 10px;
}

.values-header p {
    color: #aaa;
    max-width: 600px;
    margin: auto;
}

/* small divider */
.values-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #39ff14;
    margin: 10px auto 0;
}


/* why choose us */

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    padding: 80px 8%;
    background: #050505;
}

/* HEADER */
.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-header h2 {
    font-size: 2.3rem;
    color: #b6ff9c;
}

.why-header p {
    color: #aaa;
    max-width: 600px;
    margin: 10px auto 0;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.feature-card {
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* glow layer */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.4s;
}

/* hover */
.feature-card:hover {
    box-shadow: 0 4px 1px #39ff14;
    transform: translateY(-8px);
}

.feature-card:hover::before {
    opacity: 1;
}

/* ICON */
.feature-icon {
    width: 65px;
    height: 65px;
    margin: auto;
    margin-bottom: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(57,255,20,0.08);
}

/* icon style */
.feature-icon i {
    font-size: 26px;
    color: #39ff14;
}

/* TITLE */
.feature-card h3 {
    color: #b6ff9c;
    margin-bottom: 10px;
}

/* TEXT */
.feature-card p {
    color: #aaa;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}



/* CTA  */

/* ===== CLEAN CTA ===== */
.cta-clean {
    padding: 100px 8%;
    background: #0a0a0a;
    text-align: center;
}

/* container */
.cta-container {
    max-width: 700px;
    margin: auto;
}

/* heading */
.cta-clean h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
}

/* text */
.cta-clean p {
    color: #aaa;
    line-height: 1.6;
}

/* BUTTON */
.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    border-radius: 40px;
    background: #39ff14;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* hover (SUBTLE, NOT CRINGE) */
.cta-button:hover {
    background: #2be10f;
    transform: translateY(-2px);
}

/* active */
.cta-button:active {
    transform: scale(0.96);
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-clean h2 {
        font-size: 1.6rem;
    }
}

@media (max-width:768px) {
    .company-values {
        padding: 0;
    }
    .why-choose-us{
        padding: 80px 5%;
    }
}