@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-color: #ffffff;
    --bg-alt: #f6f8fb;
    --bg-light: #eef3fc;
    --text-primary: #1c1f26;
    --text-secondary: #5b6472;
    --text-muted: #8891a0;
    --accent-primary: #1d5fe0;
    --border-color: #e5e9ef;
    
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 14px rgba(28,31,38,0.04);
    --shadow-md: 0 12px 28px rgba(28,31,38,0.08);
    --shadow-lg: 0 20px 40px rgba(28,31,38,0.06);
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-primary);
}

/* Layout */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 1.9rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(29,95,224,0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 12px 24px rgba(29,95,224,0.35);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #d6dbe3;
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    white-space: nowrap;
}

.logo span {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.6rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-links a.btn-nav {
    padding: 0.6rem 1.3rem;
    border-radius: 10px;
    background: var(--accent-primary);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.nav-links a.btn-nav:hover {
    background: #174ab8;
}

/* Floating AI Agent Shortcut (Top Right) */
.ai-floating-shortcut {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 9999;
    animation: float-slide-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ai-float-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.15rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #1d5fe0 0%, #7c3aed 100%);
    color: #fff;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4), 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.ai-float-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.55), 0 4px 10px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
}

.ai-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.ai-pulse-dot {
    position: absolute;
    top: -3px;
    right: -5px;
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    border: 1.5px solid #fff;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

@keyframes float-slide-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hamburger {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
#hero {
    padding-top: 9rem;
    padding-bottom: 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: var(--bg-light);
    color: var(--accent-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.3rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 2.2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.hero-card-img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.4rem;
    background: var(--bg-light);
}

.hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.hero-card p {
    color: var(--text-secondary);
    margin-bottom: 1.6rem;
    font-size: 0.95rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border-color);
}

.hero-stat-item h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0;
}

.hero-stat-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Logos Section */
.logos-section {
    padding: 2rem 0;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1.8rem;
    background: var(--bg-alt);
    border-radius: 16px;
}

.logos-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.logo-item {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #3a4150;
    font-size: 1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 4rem;
    align-items: center;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.4rem;
    letter-spacing: -0.01em;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.4rem;
    background: var(--bg-alt);
    border-radius: 14px;
    border: 1px solid var(--border-color);
}

.feature-item i {
    font-size: 1.3rem;
    color: var(--accent-primary);
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin: 0;
}

/* Solutions Section */
.solution-pillar {
    margin-bottom: 3rem;
}

.pillar-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pillar-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-primary);
    color: #fff;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pillar-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pillar-header p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

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

.solution-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.solution-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.solution-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    color: var(--accent-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.solution-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.solution-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Ventures Section */
.ventures-container {
    background: var(--bg-alt);
    border-radius: 32px;
    padding: 6rem 2rem;
    max-width: 1240px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
}

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

.venture-card {
    display: block;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.venture-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.venture-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-primary);
    margin-bottom: 1.4rem;
}

.venture-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.venture-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1.3rem;
}

.venture-link {
    font-weight: 700;
    color: var(--accent-primary);
    font-size: 0.9rem;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.portfolio-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.8rem;
    transition: var(--transition);
}

.portfolio-card:hover {
    box-shadow: var(--shadow-md);
}

.portfolio-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--bg-light);
    color: var(--accent-primary);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.portfolio-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin: 0;
}

/* Awards Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.award-item {
    display: block;
    background: var(--bg-alt);
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.award-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.award-year {
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.6rem;
}

.award-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.award-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact-wrapper {
    background: linear-gradient(135deg, #1c1f26, #2a3040);
    border-radius: 32px;
    padding: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.3rem;
}

.contact-info p {
    color: #b7bdc9;
    margin-bottom: 2rem;
    max-width: 440px;
}

.contact-details {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.contact-details i {
    color: var(--accent-primary);
}

.contact-details a {
    color: #fff;
}

.contact-details a:hover {
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.social-btn:hover {
    background: var(--accent-primary);
    color: #fff;
}

/* Form Styles */
.contact-form-box {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.85rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
}

.w-100 {
    width: 100%;
    display: block;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.6rem;
        font-weight: 600;
    }
    
    .nav-links a.btn-nav {
        background: transparent;
        color: var(--accent-primary);
        font-weight: 700;
    }
    
    .nav-links a.btn-nav:hover {
        background: transparent;
    }

    .hamburger {
        display: block;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 2rem;
    }
    
    .hero-grid, .about-grid {
        gap: 2.5rem;
    }
    
    .ventures-container {
        padding: 3rem 1.5rem;
    }

    .ai-floating-shortcut {
        top: 75px;
        right: 16px;
    }

    .ai-float-btn {
        padding: 0.5rem 0.95rem;
        font-size: 0.82rem;
    }
}
