:root {
    --primary: #4f46e5;
    --secondary: #7c3aed;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--light);
    color: var(--dark);
}


/* NAVBAR */

.navbar {
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #c4b5fd;
}

.btn-nav {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 10px 18px;
    border-radius: 30px;
}


/* HERO */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    color: white;
}

.tagline {
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-5px);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark);
}


/* STATS */

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 80px 8%;
    background: white;
}

.stat-box {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background: #f8fafc;
    transition: 0.4s;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box h2 {
    font-size: 2.8rem;
    color: var(--primary);
}

.stat-box p {
    color: var(--gray);
    margin-top: 10px;
}


/* FEATURES */

.features {
    padding: 100px 8%;
    background: linear-gradient(to bottom, #f8fafc, #eef2ff);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--gray);
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: #475569;
}


/* CTA */

.cta-section {
    padding: 100px 8%;
    text-align: center;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}


/* INFO PAGE */

.ceo-section {
    min-height: 100vh;
    padding: 140px 8% 80px;
    background: linear-gradient(to bottom, #eef2ff, #ffffff);
}

.ceo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* IMAGE */

.ceo-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceo-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 193, 7, 0.35);
    transition: 0.5s;
}

.ceo-image img:hover {
    transform: translateY(-10px) scale(1.02);
}

.image-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient( 45deg, rgba(255, 193, 7, 0.6), rgba(255, 140, 0, 0.4));
    filter: blur(90px);
    border-radius: 50%;
    z-index: 1;
}


/* CONTENT */

.ceo-tag {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ceo-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.ceo-role {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 25px;
}

.ceo-description {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

.ceo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.mini-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.mini-card:hover {
    transform: translateY(-8px);
}

.mini-card h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.mini-card p {
    color: #64748b;
    font-size: 0.95rem;
}


/* FOOTER */

footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.footer-links {
    margin: 25px 0;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    margin-top: 20px;
    color: #94a3b8;
}


/* MOBILE */

@media(max-width: 900px) {
    .ceo-container {
        grid-template-columns: 1fr;
    }
    .ceo-content h1 {
        font-size: 2.7rem;
    }
}

@media(max-width: 768px) {
    .navbar {
        padding: 15px 5%;
    }
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-title h2,
    .cta-section h2 {
        font-size: 2rem;
    }
}


/* INFO BUTTONS */

.info-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-secondary-dark {
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    background: var(--dark);
    color: white;
    transition: 0.4s;
}

.btn-secondary-dark:hover {
    transform: translateY(-5px);
    background: #1e293b;
}