* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #040d12;
    color: #ffffff;
}

/* ===== HERO / BANNER ===== */
.about-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 60%),
        linear-gradient(180deg, #040d12 0%, #0e141b 50%, #040d12 100%);
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.highlights {
    color: #5C8374;
}

.hero-description {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 20px;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.about-box {
    background: #183D3D;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #183D3D;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px #183D3D;
}

.about-box h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #5C8374;
}

.about-box p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.95rem;
}
 
/* footer {
    text-align: center;
    padding: 20px;
    color: #9ca3af;
    font-size: 0.85rem;
    border-top: 1px solid #1f2937;
} */

/* ===== NEON SECTIONS ===== */
.neon-section {
    padding: 100px 20px;
}

.section-content {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.section-content img {
    width: 420px;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.35);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-text {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== NEON GRID ===== */
.neon-grid {
    padding: 80px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.neon-card {
    background: #183D3D;
    border: 1px solid #183D3D;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neon-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.neon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 45px rgb(92, 131, 116, 0.55);
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 100px 20px;
    text-align: center;
}

.timeline {
    max-width: 800px;
    margin: 50px auto 0;
}

.step {
    padding: 18px;
    margin: 18px 0;
    border-left: 4px solid #5C8374;
    background: #183D3D;
    color: #e5e7eb;
    text-align: left;
    border-radius: 6px;
}

/* ===== CTA ===== */
.cta-section {
    padding: 120px 20px;
    text-align: center;
    background: radial-gradient(circle, #183d3d26, transparent 60%);
}

.neon-btn {
    margin-top: 25px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: #040d12;
    background: #5C8374;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 0 30px rgb(24, 61, 61, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.neon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 45px rgb(92, 131, 116, 1);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FUTURISTIC FULL-WIDTH SECTION ===== */
.future-section {
    position: relative;
    width: 100%;
    min-height: 30vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, #040d12 0%, #040d12 40%, #040d12 100%);
}

/* Background Orbs */
.future-bg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: float 12s infinite ease-in-out;
}

.orb-1 {
    width: 420px;
    height: 420px;
    background: #5C8374;
    top: 10%;
    left: 10%;
}

.orb-2 {
    width: 520px;
    height: 520px;
    background: rgb(24, 61, 61, 0.6);
    bottom: 5%;
    right: 10%;
    animation-delay: 4s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgb(24, 61, 61, 0.4);
    top: 40%;
    right: 30%;
    animation-delay: 8s;
}

/* Content Glass Card */
.future-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 80px 60px;
    text-align: center;
    background: #040D12;
    border-radius: 28px;
    backdrop-filter: blur(18px);
    border: 1px solid #5C8374;
    /* box-shadow:
        0 0 60px #5C8374,
        inset 0 0 30px #040D12; */
}

/* Headline */
.future-content h2 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
}

.future-content h2 span {
    color: #5C8374;
    text-shadow: 0 0 20px rgb(92, 131, 116, 0.8);
}

/* Text */
.future-content p {
    max-width: 720px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #93B1A6;
    line-height: 1.7;
}

/* Stats */
.future-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.future-stats strong {
    font-size: 2.6rem;
    color: #5C8374;
    display: block;
    text-shadow: 0 0 18px rgb(92, 131, 116, 0.8);
}

.future-stats span {
    color: #93B1A6;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Button */
.future-btn {
    padding: 16px 48px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #001219;
    background: linear-gradient(135deg, #5C8374, #5C8374);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 0 40px rgb(24, 61, 61, 0.8);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.future-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 60px rgb(92, 131, 116, 1);
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-40px) translateX(30px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .future-content {
        padding: 60px 25px;
    }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }
}











