/* GENERAL RESET */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #0a0f1a;
    color: white;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    z-index: 50;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
}

.nav-links a {
    margin-left: 25px;
    color: #bfc7e0;
    text-decoration: none;
    font-size: 16px;
}

.nav-links a:hover {
    color: white;
}

/* LOGO */
.logo {
    height: 90px;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    background: radial-gradient(circle at top, #1b2a47, #0a0f1a 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 153, 255, 0.25),
        rgba(0, 0, 0, 0.8)
    );
    opacity: 0.6;
}

/* HERO TEXT */
.hero-content {
    text-align: center;
    max-width: 750px;
    z-index: 10;
    animation: fadeIn 1.6s ease-out forwards;
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 700;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    margin-top: 15px;
    font-size: 22px;
    color: #cfd7ed;
}

/* CTA */
.cta-button {
    margin-top: 35px;
    padding: 14px 30px;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* AI ORB */
.ai-orb {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #00aaff, #004c99);
    border-radius: 50%;
    position: absolute;
    right: 140px;
    bottom: 140px;
    box-shadow: 0 0 45px rgba(0, 170, 255, 0.7);
    animation: float 4s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* AI ASSISTANT SECTION */
.assistant-section {
    padding: 80px 40px;
    background: #0f1626;
    text-align: center;
}

.assistant-section h2 {
    font-size: 42px;
}

.assistant-section p {
    color: #b6c2dc;
    margin-top: 10px;
    font-size: 18px;
}

.chat-iframe {
    width: 100%;
    height: 500px;
    margin-top: 40px;
    border: none;
    border-radius: 10px;
    background: #000;
}
/* ABOUT SECTION */
.about-section {
    padding: 100px 40px;
    background: #0c1323;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1250px;
    margin: 0 auto;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 48px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    margin-top: 20px;
    color: #b8c7e8;
    font-size: 19px;
    line-height: 1.7;
}

.about-subtext {
    margin-top: 15px;
    font-size: 18px;
    color: #91a0c2;
}

/* ABOUT IMAGE */
.about-visual {
    position: relative;
    flex: 1;
}

.glow-circle {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0,153,255,0.5), rgba(0,0,0,0));
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: -30px;
    filter: blur(40px);
}

.about-image {
    width: 100%;
    max-width: 450px;
    border-radius: 14px;
    opacity: 0.9;
}
/* PLATFORM SECTION */
.platform-section {
    padding: 100px 40px;
    background: #0a0f1a;
    text-align: center;
}

.platform-section h2 {
    font-size: 48px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-subtext {
    color: #9bb2d9;
    margin-top: 10px;
    font-size: 20px;
}

.platform-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.platform-card {
    padding: 35px;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(0,153,255,0.2);
    backdrop-filter: blur(6px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0,153,255,0.4);
}

.platform-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #aad4ff;
}

.platform-card p {
    color: #bdc9e5;
    font-size: 17px;
    line-height: 1.6;
}
/* SOLUTIONS SECTION */
.solutions-section {
    padding: 100px 40px;
    background: #0f1628;
    text-align: center;
}

.solutions-section h2 {
    font-size: 48px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solutions-subtext {
    color: #9db4d6;
    margin-top: 10px;
    font-size: 20px;
}

.solutions-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    padding: 35px;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(0,153,255,0.2);
    backdrop-filter: blur(6px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0,153,255,0.4);
}

.solution-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #aad4ff;
}

.solution-card p {
    color: #c5d2ea;
    font-size: 17px;
    line-height: 1.6;
}
/* DASHBOARDS SECTION */
.dashboards-section {
    padding: 100px 40px;
    background: #0d1426;
    text-align: center;
}

.dashboards-section h2 {
    font-size: 48px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dashboards-subtext {
    color: #9ab3d8;
    margin-top: 10px;
    font-size: 20px;
}

/* Container */
.dashboards-container {
    margin-top: 70px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* Blocks */
.dashboard-block {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255,255,255,0.04);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(0,153,255,0.2);
    backdrop-filter: blur(6px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dashboard-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0,153,255,0.4);
}

/* Reverse for alternating layout */
.dashboard-block.reverse {
    flex-direction: row-reverse;
}

/* Dashboard visuals (placeholder for now) */
.dash-img {
    width: 45%;
    height: 220px;
    background: radial-gradient(circle, rgba(0,153,255,0.4), rgba(0,0,0,0.4));
    border-radius: 16px;
    opacity: 0.8;
}

/* Text */
.dash-text {
    width: 55%;
}

.dash-text h3 {
    font-size: 30px;
    color: #aad4ff;
}

.dash-text p {
    margin-top: 10px;
    color: #c4d1ea;
    line-height: 1.7;
    font-size: 18px;
}
/* CONSULTING SECTION */
.consulting-section {
    padding: 100px 40px;
    background: #0b1120;
    text-align: center;
}

.consulting-section h2 {
    font-size: 48px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.consulting-subtext {
    color: #9eb6d9;
    margin-top: 10px;
    font-size: 20px;
}

/* GRID */
.consulting-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.consulting-card {
    padding: 35px;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(0,153,255,0.2);
    backdrop-filter: blur(6px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.consulting-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0,153,255,0.4);
}

.consulting-card h3 {
    font-size: 24px;
    color: #aad4ff;
}

.consulting-card p {
    margin-top: 12px;
    color: #c7d5ef;
    line-height: 1.6;
    font-size: 17px;
}

/* CTA BUTTON */
.consulting-cta {
    margin-top: 70px;
}

.cta-button-consulting {
    padding: 16px 40px;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    border-radius: 10px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
}

.cta-button-consulting:hover {
    transform: scale(1.05);
}
/* CONTACT SECTION */
.contact-section {
    padding: 120px 40px;
    background: #0a0f1c;
    text-align: center;
}

.contact-section h2 {
    font-size: 48px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtext {
    color: #9bb2d8;
    margin-top: 12px;
    font-size: 20px;
}

/* CONTACT CONTAINER */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 70px;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    flex-wrap: wrap;
}

/* FORM */
.contact-form {
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: rgba(255,255,255,0.04);
    padding: 35px;
    border-radius: 18px;
    border: 1px solid rgba(0,153,255,0.2);
    backdrop-filter: blur(8px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: none;
    background: #121a2d;
    color: white;
    resize: none;
}

.contact-form button {
    padding: 14px;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
}

.contact-form button:hover {
    transform: scale(1.05);
}

/* CONTACT INFO */
.contact-info {
    width: 350px;
    text-align: left;
}

.contact-info h3 {
    font-size: 26px;
    color: #aad4ff;
}

.contact-info p {
    margin-top: 8px;
    color: #c4d1ea;
}

.note {
    margin-top: 12px;
    color: #89a3c8;
}

/* FOOTER */
.footer {
    padding: 50px 30px;
    background: #060a12;
    text-align: center;
}

.footer-logo {
    height: 150px;
    margin-bottom: 25px;
}

.footer-links a {
    margin: 0 15px;
    color: #9eb6d8;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    margin-top: 20px;
    color: #7185ac;
    font-size: 14px;
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* NEON DASHBOARD MOCKUP */
.neon-dashboard {
    width: 45%;
    min-height: 240px;
    background: rgba(0,0,0,0.35);
    border-radius: 14px;
    border: 1px solid rgba(0,153,255,0.25);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 0 22px rgba(0, 153, 255, 0.15);
}

/* KPI ROW */
.kpi-row {
    display: flex;
    gap: 12px;
}

.kpi-box {
    flex: 1;
    height: 35px;
    border-radius: 8px;
    background: linear-gradient(90deg, #003960, #007bff);
    opacity: 0.8;
    box-shadow: 0 0 12px rgba(0,153,255,0.45);
}

/* CHART AREA */
.chart-area {
    flex: 1;
    border-radius: 12px;
    background: radial-gradient(circle at top, rgba(0,153,255,0.25), rgba(0,0,0,0.4));
    box-shadow: inset 0 0 25px rgba(0,153,255,0.28);
}
.dashboard-image {
    width: 45%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.35);
    object-fit: cover;
    margin: auto;
}
.dashboard-full {
    margin-top: 40px;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(0,153,255,0.2);
    backdrop-filter: blur(6px);
    text-align: center;
}

.dashboard-full h3 {
    font-size: 34px;
    color: #aad4ff;
}

.dashboard-full p {
    margin: 15px auto 30px auto;
    max-width: 900px;
    color: #c4d1ea;
    font-size: 19px;
    line-height: 1.6;
}

.dashboard-full-image {
    width: 90%;
    max-width: 1200px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0,153,255,0.35);
    margin-top: 25px;
}
.dashboard-full {
    margin-top: 40px;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(0,153,255,0.2);
    backdrop-filter: blur(6px);
    text-align: center;
}

.dashboard-full h3 {
    font-size: 34px;
    color: #aad4ff;
}

.dashboard-full p {
    margin: 15px auto 30px auto;
    max-width: 900px;
    color: #c4d1ea;
    font-size: 19px;
    line-height: 1.6;
}

.dashboard-full-image {
    width: 90%;
    max-width: 1200px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0,153,255,0.35);
    margin-top: 25px;
}
.dashboard-block img.dashboard-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.dashboard-block .dashboard-image {
    width: 100%;
    max-width: 500px;
    border-radius: 18px;
    box-shadow: 0 0 18px rgba(0,153,255,0.30);
}
.section-title {
    font-size: 48px;
    font-weight: 600;
    color: #cfe8ff;
}
.dashboards-section .section-header {
    margin-bottom: 40px;
}

.dashboards-section {
    padding-top: 80px;
    padding-bottom: 70px;
}
.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 25px;
    justify-content: center;
}
.navbar {
    padding: 15px 40px;
}
.dashboard-block {
    position: relative;
}

.dashboard-block::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0,153,255,0.20), transparent 70%);
    z-index: 0;
}
.section-header h2, .section-header h1 {
    text-align: center;
}

.section-header {
    margin-bottom: 15px;
}
.dashboard-block h3, .dashboard-full h3 {
    text-shadow: 0 0 8px rgba(0,153,255,0.45);
}
.hero p {
    margin-top: 10px;
    margin-bottom: 20px;
}
section {
    padding-top: 70px;
    padding-bottom: 70px;
}
