/* Core Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #050816; /* Deep Dark Blue/Black */
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Navbar with Glassmorphism */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo span {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #dfc366;
    letter-spacing: 1px;
    padding-bottom: 5px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #dfc366;
    padding-bottom: 6px;
}

/* IMAGE LOGO */
.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

/* TEXT */
.logo .accent {
    color: #dfc366;
    /* font-size: 1.2rem; */
}

/* NAV */
nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li a {
    color: #ccc;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: #dfc366;
}
/* Hero Banner with Tech Image */
.hero-banner {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(5,8,22,0.4) 0%, rgba(5,8,22,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.badge {
    background: rgba(0, 242, 255, 0.1);
    color: #dfc366;
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid #dfc366;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 20px 0;
    line-height: 1.1;
}

.hero-content h1 span {
    background: linear-gradient(90deg, #dfc366, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 40px;
}

/* Neon Glow Button */
.btn-glow {
    padding: 15px 35px;
    background: #dfc366;
    color: #050816;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    transition: 0.3s;
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.7);
    transform: translateY(-3px);
}

/* Tech Cards */
.ai-services { padding: 100px 0; }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: 0.4s;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #dfc366;
    transform: translateY(-10px);
}

.tech-card i {
    font-size: 3rem;
    color: #dfc366;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    nav { display: none; } /* Hide nav on mobile for simplicity */
}


/* Workflow Steps */
.workflow-section { padding: 80px 0; background: #0a0e1f; }

.workflow-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
}

.step {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    padding: 40px 25px;
    border-radius: 15px;
    position: relative;
    flex: 1;
    border-top: 3px solid #dfc366;
}

.step-num {
    position: absolute;
    top: -20px;
    left: 20px;
    background: #dfc366;
    color: #050816;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
}

/* Tech Stats */
.tech-stats {
    padding: 60px 0;
    background: linear-gradient(90deg, #dfc366, #0072ff);
    color: #050816;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box h2 {
    font-size: 3rem;
    font-weight: 800;
}

/* Glassmorphism for Use Cases (Add class to your cards) */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
}

/* Comparison Table Styling */
.comparison-section { padding: 100px 0; background: #050816; }

.table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 15px;
}

th, td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    background: rgba(0, 242, 255, 0.1);
    color: #dfc366;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.highlight {
    color: #dfc366;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

/* Hover Effect for Table Rows */
tr:hover {
    background: rgba(0, 242, 255, 0.05);
    transition: 0.3s;
}

/* --- AI Innovation Footer Styling --- */

.ai-footer {
    background-color: #03050c;
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid rgba(0, 242, 255, 0.1);
    overflow: hidden;
}


/* Background Glow Effect */
.footer-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #dfc366;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p {
    color: #8892b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #8892b0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #dfc366;
    padding-left: 5px;
}

/* Social Icons */
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #dfc366;
    transition: 0.3s;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.social-links a:hover {
    background: #dfc366;
    color: #050816;
    box-shadow: 0 0 15px #dfc366;
}

/* Footer Form */
.footer-form {
    display: flex;
    margin-top: 15px;
}

.footer-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    color: #fff;
    border-radius: 5px 0 0 5px;
    width: 100%;
    outline: none;
}

.footer-form button {
    background: #dfc366;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #00d4df;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #495670;
    font-size: 0.85rem;
}

.footer-legal a {
    color: #495670;
    text-decoration: none;
    margin-left: 20px;
}

.footer-legal a:hover {
    color: #8892b0;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* Contact Info Styling inside Footer */
.contact-info {
    margin-top: 10px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #8892b0;
    font-size: 0.9rem;
    transition: 0.3s;
}

.contact-info p i {
    color: #dfc366; /* Neon Cyan for icons */
    margin-top: 4px;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(0, 242, 255, 0.4);
}

.contact-info p:hover {
    color: #ffffff;
}

/* Adjusting footer grid for better spacing on large screens */
@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    }
}


/* ================= ABOUT ================= */
.about-section {
    padding: 80px 20px;
    background: #0f0f0f;
    color: #fff;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-content img {
    width: 450px;
    max-width: 100%;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

/* ================= SERVICES ================= */
.services-section {
    padding: 80px 20px;
    background: #111;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-box {
    background: #1b1b1b;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* SMALL IMAGES */
.service-box img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.service-box h3 {
    margin: 10px 0 5px;
    font-size: 18px;
}

.service-box p {
    font-size: 14px;
    color: #ccc;
}
/* ================= CONTACT ================= */
.contact-section {
    padding: 80px 20px;
    background: #0f0f0f;
    color: #fff;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    padding: 12px;
    background: #d4af37;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.contact-info {
    flex: 1;
}