@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #ecf3fa;
    /* Deep blue */
    --secondary: #1f6fa8;
    /* Peacock blue */
    --ai-glow: #00eaff;
    /* AI cyan */
    --gold: #f5c542;
    /* Golden yellow */
    --orange: #f28c28;
    /* Warm orange */
    --light: #f7f9fc;
    --dark: #0f172a;
    --gray: #64748b;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #000305;
    line-height: 1.7;
    background: linear-gradient(135deg, #f8f8f7, #f9f9ca);

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

section {
    padding: 10px 0;
}
.contact-section {
    padding-top: 80px;
    padding-bottom: 40px;
}
h1,
h2,
h3 {
    color: var(--primary);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #000306;
}

p {
    color: #000305;
    font-size: 1rem;
}

/* HEADER */
header {
    background: #0b2c4d;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.logo img {
    height: 90px;
    /* increase this (try 70–80px if needed) */
    width: auto;
    object-fit: contain;
}
.logo img {
    filter: drop-shadow(0 0 6px rgba(0, 234, 255, 0.35));
}
.nav-links a {
    margin-left: 24px;
    color: #fff;
    font-weight: 500;
}

.nav-links a:hover {
    color: #a39b07;
}

/* HERO */
.hero {
    height: 80vh;
    background: linear-gradient(135deg, #f8f8f7, #f9f9ca),
        url('../assets/images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
}

.hero p {
    max-width: 600px;
    margin-top: 16px;
    color: #e5e7eb;
}

/* GRID & CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.card h3 {
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #0b2c4d;
    color: #ffffff;
    text-align: center;
    padding: 30px 15px;
}

footer p {
    color: #ffffff;
    margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .nav-links a {
        margin-left: 14px;
        font-size: 0.95rem;
    }
}


/* ================================
   CONTACT PAGE
================================ */
.contact-section {
    background: #f1f5f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT INFO */
.contact-info h2 {
    margin-bottom: 16px;
    color: #0b2c4d;
    margin-left: -60px;

}

.contact-info p {
    margin-bottom: 30px;
    max-width: 420px;
    color: #000000;
    margin-left: -60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.02rem;
    color: #000308;
    margin-left: -60px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-right: 10px;
    margin-top: 4px;
}

/* RIGHT CARD */
.contact-card {
    background: #f1f5f9;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    margin-bottom: 20px;

}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: 1px solid #000308;
    font-family: inherit;
}

.contact-card button {
    width: 100%;
    padding: 12px;
    background: #000509;
    color: #f7f5f5;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.contact-card button:hover {
    background: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* STATEMENT SECTION */
.statement-section {
    background: linear-gradient(135deg, #f8f8f7, #f9f9ca);
    /* background: radial-gradient(#0B2D4F,
        #123E66); */
    padding: 70px 20px 55px;
    text-align: center;
    color: #fff;
}

.statement-content {
    max-width: 800px;
    margin: auto;
}

/* Small badge */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Main statement */
.statement-content h1 {
    font-size: 3rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

/* Human text */
.statement-content .human {
    color: #5ad662;
}

/* Plus */
.statement-content .plus {
    margin: 0 6px;
    color: #060000;
}

/* AI glowing text */
.statement-content .ai {
    color: #4ae4f3;
    text-shadow: 0 0 12px rgba(0, 234, 255, 0.6);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 8px rgba(0, 234, 255, 0.4);
    }

    to {
        text-shadow: 0 0 18px rgba(0, 234, 255, 0.9);
    }
}

/* Description */
.statement-content p {
    color: #000205;
    font-size: 1rem;
    max-width: 620px;
    margin: auto;
}

/* AI decorative icons */
.ai-icons {
    margin-top: 20px;
    font-size: 1.4rem;
    letter-spacing: 18px;
    color: rgb(5, 0, 0);
}

/* Responsive */
@media (max-width: 768px) {
    .statement-content h1 {
        font-size: 2.1rem;
    }
}


/* Soft overlay */
.ai-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 200, 0.08), transparent 70%);
}

/* PARTICLES */
.particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 234, 255, 0.6);
    border-radius: 50%;
    animation: float 12s infinite linear;
}

/* Random placement */
.particles span:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 10s;
}

.particles span:nth-child(2) {
    top: 40%;
    left: 80%;
    animation-duration: 14s;
}

.particles span:nth-child(3) {
    top: 70%;
    left: 30%;
    animation-duration: 12s;
}

.particles span:nth-child(4) {
    top: 60%;
    left: 60%;
    animation-duration: 16s;
}

.particles span:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-duration: 11s;
}

.particles span:nth-child(6) {
    top: 80%;
    left: 20%;
    animation-duration: 15s;
}

.particles span:nth-child(7) {
    top: 15%;
    left: 70%;
    animation-duration: 13s;
}

.particles span:nth-child(8) {
    top: 55%;
    left: 15%;
    animation-duration: 17s;
}

.particles span:nth-child(9) {
    top: 65%;
    left: 85%;
    animation-duration: 18s;
}

@keyframes float {
    from {
        transform: translateY(0);
        opacity: 0.4;
    }

    to {
        transform: translateY(-120px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ai-hero {
        height: 60vh;
    }

    .ai-hero-content h1 {
        font-size: 2.2rem;
    }
}

/* SPLIT HERO */
.split-hero {
    background: linear-gradient(135deg, #f8f8f7, #f9f9ca);
    padding: 100px 0;
    color: #020000;
}

.split-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

/* LEFT SIDE */
.split-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #030000;
}

.split-left h1 span {
    color: #76e6bb;
}

.split-left p {
    font-size: 1rem;
    color: #060000;
    max-width: 520px;
}

/* RIGHT SIDE BRAND */
.split-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.brand-animated {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: 6px;
    color: #ffffff;
    opacity: 0;
    animation: brandSlideIn 1.3s ease-out forwards;
    text-shadow: 0 0 18px rgba(0, 234, 255, 0.5);
}

/* Animation */
@keyframes brandSlideIn {
    0% {
        transform: translateX(60px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .split-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .split-right {
        justify-content: center;
        margin-top: 30px;
    }

    .brand-animated {
        font-size: 3rem;
    }

    .split-left h1 {
        font-size: 2.2rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}


/* ================================
   PRODUCTS PAGE STYLING
================================ */

/* Blue background for body section */
.products-section {
    background: #f9f9ca;
    padding: 100px 0;
}

/* Section heading */
.products-section h2 {
    color: #080000;
    margin-bottom: 70px;
}

/* Yellow / Gold cards */
.product-card {
    background: linear-gradient(135deg, #f5c542, #f28c28);
    color: #0b2c4d;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card hover effect */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(242, 140, 40, 0.4);
}

/* Card headings */
.product-card h3 {
    color: #0b2c4d;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Card text */
.product-card p {
    color: #1e293b;
    font-size: 0.98rem;
}


/* ===== CONTACT PAGE BACKGROUND LOGO ===== */
.contact-section {
    position: relative;
    background-color: #f9f9ca;
    /* existing RAVNOVA blue */
    overflow: hidden;
}

/* Logo background */
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/images/Logo.png") no-repeat center;
    background-size: 600px;
    /* adjust size */
    opacity: 0.05;
    /* very subtle */
    pointer-events: none;
    z-index: 0;
}

/* Ensure content stays above background */
.contact-section .container {
    position: relative;
    z-index: 1;
}

/* ===== BLENDED / GLASS CONTACT CARD ===== */
.contact-card {
    position: relative;
    padding: 32px;
    border-radius: 16px;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* Border & shadow */
    border: 1px solid rgba(6, 0, 0, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);

    overflow: hidden;
}

/* Logo watermark inside card */
.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: 220px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content stays above watermark */
.contact-card form,
.contact-card #thank-you-message {
    position: relative;
    z-index: 1;
}

.contact-card input,
.contact-card textarea {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(3, 0, 0, 0.25);
    color: #050005;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
    color: rgba(6, 0, 6, 0.7);
}

.contact-card h3 {
    color: #060000;
}


.split-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.brand-animated {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: 6px;
    color: #000000;
    opacity: 0;
    animation: brandSlideIn 2s ease-out forwards;
    text-shadow: 0 0 18px rgba(0, 234, 255, 0.5);
}

@keyframes brandFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .brand-bg {
        height: 200px;
        background-size: 260px;
    }

    .brand-glass-text {
        font-size: 2.6rem;
        letter-spacing: 4px;
        padding: 14px 30px;
    }
}

/* ===== PRODUCT LAUNCH TEASER ===== */
/* Wrapper to center perfectly */

.launch-wrapper {
    display: flex;
    justify-content: center;
    margin: 0;
}

.launch-teaser {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 150px;
    border-radius: 40px;
    background: linear-gradient(135deg, #0b2c4d, #123e66);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.35);
    animation: pulseGlow 2s infinite ease-in-out;
}

/* Letter animation */
.launch-teaser span span {
    opacity: 0;
    transform: translateY(6px);
    display: inline-block;
    animation: revealLetter 0.4s forwards;
}

@keyframes revealLetter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 12px rgba(0, 234, 255, 0.25);
    }

    50% {
        box-shadow: 0 0 28px rgba(0, 234, 255, 0.6);
    }

    100% {
        box-shadow: 0 0 12px rgba(0, 234, 255, 0.25);
    }
}

@keyframes sweep {
    0% {
        left: -60%;
    }

    50% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

/* Text container */
.reveal-text {
    display: inline-block;
    white-space: nowrap;
}

/* Each letter */
.reveal-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    animation: letterReveal 0.45s ease forwards;
}

/* Letter animation */
@keyframes letterReveal {
    from {
        opacity: 0;
        transform: translateY(8px);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Left → Right sweep overlay */
.launch-teaser::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);

    animation: sweep 2.8s ease-in-out infinite;
    pointer-events: none;
}




/* ===== LOGIN PAGE ===== */

.login-section {
    min-height: calc(100vh - 90px);
    /* header height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f8f7, #f9f9ca);;
}

/* Ensure container doesn't stretch */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-title {
    color: #020929;
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Login Box */
.login-box {
    background: rgba(243, 222, 115, 0.932);
    backdrop-filter: blur(10px);
    padding: 40px 40px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(239, 241, 241, 0.25);
    width: 520px;
    height: 300px;
}

.login-box h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

/* Input Fields */
.input-group input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 0.95rem;
}

/* Button */
.login-box button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #15145300, #051638);
    color: #eef1f3;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(0, 234, 255, 0.6);
}