/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ===== BODY ===== */
body {
    background: #0f172a;
    color: #ffffff;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    background: #020617;
}

/* LOGO */
.logo {
    font-size: 20px;
    font-weight: bold;
}

/* DESKTOP MENU */
.desktop {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}
/* ACTIVE NAV LINK */
.desktop a.active {
    color: #ff3b30;
    position: relative;
    font-weight: 600;
}

.desktop a:hover {
    color: #ff3b30;
}

/* LOGIN BUTTON */
.desktop .login {
    padding: 8px 20px;
    border-radius: 30px;
    background: #ffffff;
    color: #020617;
    font-weight: 600;
    transition: all 0.3s ease;
}

.desktop .login:hover {
    background: #ff3b30;
    color: #ffffff;
}

/* MENU ICON */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #020617;
}

.mobile-menu a {
    padding: 14px 20px;
    color: white;
    text-decoration: none;
    border-top: 1px solid #1e293b;
}

.mobile-menu a:hover {
    color: #ff3b30;
}

.mobile-menu .login {
    margin: 16px;
    text-align: center;
    background: #ffffff;
    color: #020617;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
}

.mobile-menu.show {
    display: flex;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 90px 20px 120px;
}

.hero h1 {
    font-size: 46px;
    font-weight: 800;
}

.hero h1 span {
    color: #ff3b30;
}

.subtitle {
    margin-top: 16px;
    font-size: 15px;
    color: #cbd5f5;
}

/* HERO BOX */
.hero-box {
    margin: 50px auto 0;
    max-width: 720px;
    padding: 40px;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(255,59,48,0.15),
        rgba(15,23,42,0.9)
    );
    border: 1px solid rgba(255,59,48,0.4);
    transition: all 0.4s ease;
}

.hero-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 45px rgba(255,59,48,0.4);
}

.hero-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.hero-box p {
    font-size: 14px;
    color: #cbd5f5;
}

/* BUTTON */
.cta {
    margin-top: 22px;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    background: #ff3b30;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta:hover {
    background: #ff1f10;
    box-shadow: 0 0 20px rgba(255,59,48,0.6);
    transform: scale(1.05);
}

/* FOOTER */
.footer {
    background: #020617;
    text-align: center;
    padding: 18px;
    font-size: 13px;
    color: #9ca3af;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .desktop {
        display: none;
    }
    .menu-icon {
        display: block;
    }
}
/* ACTIVE MENU */
.desktop a.active,
.mobile-menu a.active {
    color: #ff3b30;
    font-weight: 600;
}

/* ===== ACTIVE NAV LINK ===== */
.desktop a.active {
    color: #ff3b30;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.product-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(255,59,48,0.35);
    border-color: rgba(255,59,48,0.6);
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: #cbd5f5;
    line-height: 1.6;
}


/* SOLUTIONS PAGE */
.solutions {
    padding: 90px 20px 120px;
    text-align: center;
}

.solutions h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.solution-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 18px;
    padding: 30px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(255,59,48,0.35);
    border-color: #ff3b30;
}

.solution-card h3 {
    margin-bottom: 10px;
}

.solution-card p {
    font-size: 14px;
    color: #cbd5f5;
}


/* ACTIVE MENU */
.desktop a.active {
    color: #ff3b30;
}

/* ===== ABOUT HERO ===== */
.about-hero {
    text-align: center;
    padding: 80px 0px 0px;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
}

.about-hero p {
    font-size: 15px;
    color: #cbd5f5;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== PEOPLE SECTIONS ===== */
.people-section {
    max-width: 1200px;
    margin: 0 auto 90px;
    padding: 80px 20px;
    text-align: center;
}

.people-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 15px;
    color: #cbd5f5;
    margin-bottom: 45px;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.people-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 18px;
    padding: 26px;
    transition: all 0.35s ease;
}

.people-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(255,59,48,0.35);
    border-color: rgba(255,59,48,0.6);
}

.people-card img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    border: 3px solid rgba(255,59,48,0.5);
}

.people-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.people-card span {
    display: block;
    font-size: 12px;
    color: #ff3b30;
    margin-bottom: 10px;
    font-weight: 600;
}

.people-card p {
    font-size: 13px;
    color: #cbd5f5;
    line-height: 1.6;
}
/* ===== CONTACT PAGE ===== */
.contact {
    padding: 90px 20px 120px;
    max-width: 900px;
    margin: auto;
}

.contact h1 {
    font-size: 36px;
    font-weight: 700;
}

.contact .subtitle {
    margin-top: 10px;
    color: #cbd5f5;
    font-size: 15px;
}

.contact-box {
    margin-top: 40px;
    padding: 30px;
    border-radius: 16px;
    background: rgba(2,6,23,0.6);
    border: 1px solid #1e293b;
}

.contact-box label {
    display: block;
    margin: 18px 0 6px;
    font-size: 14px;
    color: #cbd5f5;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #1e293b;
    background: #020617;
    color: white;
    font-size: 14px;
}

.contact-box input:focus,
.contact-box textarea:focus {
    outline: none;
    border-color: #ff3b30;
}

.cta.light {
    margin-top: 24px;
    background: #f5f5dc;
    color: #020617;
}

.cta.light:hover {
    background: #ff3b30;
    color: white;
}
.logo-red {
    color: #ff3b30;
} 
.contact h1 span {
    color: #ff3b30;
}