/* assets/css/main.css - Main Stylesheet */

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
    background: rgba(13, 25, 43, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Logo dots with gradient effect */
.logo-dot:nth-child(1) { background: #1e40af; }
.logo-dot:nth-child(2) { background: #3b82f6; }
.logo-dot:nth-child(3) { background: #60a5fa; }
.logo-dot:nth-child(4) { background: #3b82f6; }
.logo-dot:nth-child(5) { background: #60a5fa; }
.logo-dot:nth-child(6) { background: #93c5fd; }
.logo-dot:nth-child(7) { background: #60a5fa; }
.logo-dot:nth-child(8) { background: #93c5fd; }
.logo-dot:nth-child(9) { background: #dbeafe; }

.logo:hover .logo-dot {
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    letter-spacing: -0.5px;
}

.logo-text .logo-ai {
    color: #64748b;
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(64, 224, 255, 0.2);
    position: relative;
}

.nav-links a:hover {
    color: #40e0ff;
    text-shadow: 0 0 20px rgba(64, 224, 255, 0.6);
}

.nav-links a.active-page {
    color: #40e0ff;
    text-shadow: 0 0 20px rgba(64, 224, 255, 0.8);
}

.nav-links a.active {
    color: #40e0ff !important;
    background: rgba(64, 224, 255, 0.1);
    border-radius: 8px;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #40e0ff, #1a2744);
    border-radius: 1px;
}

@keyframes activeGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================
   LAYOUT & CONTAINERS
   ========================================== */
main {
    margin-top: 80px;
}

section {
    padding: 3rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0d192b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #1a2744;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   PAGE HEADERS
   ========================================== */
.page-header {
    background: linear-gradient(135deg, #0d192b 0%, #1a2744 100%);
    color: white;
    text-align: center;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(30, 144, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(255, 140, 0, 0.3) 0%, transparent 30%);
    filter: blur(40px);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(64, 224, 255, 0.4);
}

.page-header .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.header-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #40e0ff;
    display: block;
    text-shadow: 0 0 20px rgba(64, 224, 255, 0.4);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.nav-links a.active {
    color: #40e0ff;
    background: rgba(64, 224, 255, 0.1);
    border-radius: 8px;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #40e0ff, #1a2744);
    border-radius: 1px;
}

/* Hover effect for non-active items */
.nav-links a:not(.active):hover {
    color: #40e0ff;
    transition: color 0.3s ease;
}

/* ==========================================
   BREADCRUMBS
   ========================================== */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #1a2744;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #40e0ff;
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    color: #666;
}

.breadcrumb .current {
    color: #666;
}

/* ==========================================
   CONTENT SECTIONS
   ========================================== */
.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: #f8f9fa;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, 
        rgba(13, 25, 43, 0.9) 0%, 
        rgba(26, 39, 68, 0.9) 100%);
    color: #40e0ff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid rgba(64, 224, 255, 0.3);
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn:hover {
    background: linear-gradient(135deg, 
        rgba(64, 224, 255, 0.2) 0%, 
        rgba(26, 39, 68, 0.8) 100%);
    color: #40e0ff;
    transform: translateY(-2px);
    border-color: rgba(64, 224, 255, 0.6);
    box-shadow: 0 8px 25px rgba(64, 224, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #1a2744;
    border: 2px solid #1a2744;
}

.btn-secondary:hover {
    background: #1a2744;
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(64, 224, 255, 0.3) 0%, rgba(26, 39, 68, 0.8) 100%);
    color: white;
    border: 2px solid rgba(64, 224, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(64, 224, 255, 0.4) 0%, rgba(26, 39, 68, 0.9) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(64, 224, 255, 0.2);
    text-decoration: none;
    color: white;
}

/* ==========================================
   GRIDS & LAYOUTS
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* ==========================================
   FEATURE CARDS (for static grids)
   ========================================== */
.features-grid .feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #1a2744;
}

.features-grid .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ==========================================
   INTEGRATION COMPONENTS
   ========================================== */
.integration-diagram {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.integration-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.integration-point {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.integration-point:hover {
    border-color: #40e0ff;
    transform: translateY(-2px);
}

.integration-point .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.integration-point h4 {
    color: #0d192b;
    margin-bottom: 0.5rem;
}

.integration-point p {
    color: #1a2744;
    font-size: 0.9rem;
}

/* ==========================================
   CTA SECTIONS
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, #0d192b 0%, #1a2744 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(64, 224, 255, 0.4);
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   ANIMATIONS & EFFECTS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

@keyframes heroLogoPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    }
}

@keyframes bokehFloat {
    0% {
        transform: translateY(100vh) translateX(-50px) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px) scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products {
    background: #f8f9fa;
}

.product-showcase {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-header {
    text-align: center;
    margin-bottom: 2rem;
}

.product-header h3 {
    font-size: 2rem;
    color: #0d192b;
    margin-bottom: 1rem;
}

.product-header p {
    font-size: 1.1rem;
    color: #1a2744;
    max-width: 800px;
    margin: 0 auto;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1a2744;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-item h4 {
    color: #0d192b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #1a2744;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.tech-tag {
    background: rgba(13, 25, 43, 0.8);
    color: #40e0ff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(64, 224, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(64, 224, 255, 0.2);
    border-color: rgba(64, 224, 255, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(64, 224, 255, 0.2);
}

.platform-benefits {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.platform-benefits h3 {
    font-size: 2rem;
    color: #0d192b;
    margin-bottom: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-number {
    font-size: 3rem;
    font-weight: bold;
    color: #1a2744;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-variant-numeric: tabular-nums;
}

.benefit-text {
    font-size: 1.1rem;
    color: #0d192b;
    font-weight: 500;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.company-overview {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.company-overview h3 {
    font-size: 1.8rem;
    color: #0d192b;
    margin-bottom: 1rem;
}

.company-overview p {
    font-size: 1.1rem;
    color: #1a2744;
    line-height: 1.7;
}

.mission-points {
    list-style: none;
    margin-top: 1rem;
    text-align: left;
}

.mission-points li {
    padding: 0.3rem 0;
    color: #1a2744;
    font-size: 0.9rem;
}

.mission-points li:before {
    content: "✓";
    color: #1a2744;
    font-weight: bold;
    margin-right: 0.5rem;
}

.team-highlight {
    margin-top: 3rem;
    text-align: center;
}

.team-highlight h3 {
    font-size: 1.8rem;
    color: #0d192b;
    margin-bottom: 2rem;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.recognition-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.recognition-item:hover {
    transform: translateY(-5px);
}

.recognition-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.recognition-item h4 {
    color: #0d192b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.recognition-item p {
    color: #1a2744;
    font-size: 0.9rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    background: #f8f9fa;
}

.contact .section-subtitle {
    max-width: 1000px;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 30px;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.footer-logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.8;
}

.footer-logo-dot:nth-child(1) { background: #1e40af; }
.footer-logo-dot:nth-child(2) { background: #3b82f6; }
.footer-logo-dot:nth-child(3) { background: #60a5fa; }
.footer-logo-dot:nth-child(4) { background: #3b82f6; }
.footer-logo-dot:nth-child(5) { background: #60a5fa; }
.footer-logo-dot:nth-child(6) { background: #93c5fd; }
.footer-logo-dot:nth-child(7) { background: #60a5fa; }
.footer-logo-dot:nth-child(8) { background: #93c5fd; }
.footer-logo-dot:nth-child(9) { background: #dbeafe; }

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .header-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .integration-points {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================
   PAGE-SPECIFIC COMPONENTS
   ========================================== */

/* Smart Manufacturing - Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, #0d192b 0%, #1a2744 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: #0d192b;
    margin-bottom: 1rem;
}

.process-step p {
    color: #1a2744;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* HR Solutions - HRBot Showcase */
.hrbot-showcase {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hrbot-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.hrbot-feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.hrbot-feature .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hrbot-feature h4 {
    color: #0d192b;
    margin-bottom: 1rem;
}

.hrbot-feature p {
    color: #1a2744;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ERP Solutions - Automation Showcase */
.automation-showcase {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.automation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.automation-feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.automation-feature .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.automation-feature h4 {
    color: #0d192b;
    margin-bottom: 1rem;
}

.automation-feature p {
    color: #1a2744;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Common Feature Elements */
.feature-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list li {
    padding: 0.3rem 0;
    color: #1a2744;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
	text-align: left;
}

.feature-list li:before {
    content: "✓";
    color: #1a2744;
    font-weight: bold;
    min-width: 15px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #0d192b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #1a2744;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }