:root {
    --primary-blue: #3b82f6;
    --light-blue: #60a5fa;
    --dark-bg: #0a1628;
    --dark-bg-2: #1a2847;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Animated background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.main-content {
    position: relative;
    z-index: 1;
}

/* Navbar Styles */
.navbar {
    padding: 1.5rem 0;
    background: transparent !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff !important;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.navbar-nav .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 2rem);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Hero Section */
.hero-section {
    padding: 100px 0 120px;
}

.accent-line {
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, transparent 100%);
    margin-bottom: 40px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 700px;
}

/* Category Buttons */
.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #e2e8f0;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    margin: 10px;
}

.category-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
    color: #ffffff;
}

.category-btn i {
    font-size: 24px;
    color: var(--light-blue);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--light-blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    background: rgba(0, 0, 0, 0.1);
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
    text-align: center;
    margin-bottom: 60px;
}

#statsContainer{
    justify-content: center;
    align-items: center;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    /* transform: translateY(-5px); */
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #94a3b8;
    font-weight: 500;
}

/* Solutions Section */
.solutions-section {
    background: rgba(0, 0, 0, 0.2);
}

.solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    background: rgba(59, 130, 246, 0.1); /* highlight */
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-icon i {
    font-size: 32px;
    color: white;
}
.solution-header.inline {
    display: inline-flex;
    align-items: center;
    gap: 12px;             
    margin-bottom: 24px;
    position: relative;
    width: 100%;
}

.solution-header.inline .solution-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
    margin-bottom: 0;
}

.solution-header.inline .solution-icon i {
    font-size: 24px;
    color: var(--primary-blue);
}

.solution-header.inline .solution-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
}

.solution-client {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--light-blue);
    background: rgba(59, 130, 246, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    line-height: 1;
    margin-bottom: 16px;
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-icon i {
    font-size: 32px;
    color: white;
}

.solution-description {
    font-size: 16px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 24px;
}

.solution-features {
    list-style: none;
    padding: 0;
}

.solution-features li {
    font-size: 14px;
    color: #cbd5e1;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.solution-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-weight: bold;
}

/* Why Choose Us Section */
.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    /* transform: translateX(5px); */
}

.why-number {
    font-size: 40px;
    font-weight: 700;
    color: rgba(59, 130, 246, 0.3);
    margin-bottom: 16px;
}

.why-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-description {
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8;
}

/* Contact Section */
.contact-section {
    background: rgba(0, 0, 0, 0.2);
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--light-blue);
}

.contact-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 18px;
    color: #e2e8f0;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--light-blue);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
}

.contact-footer-text {
    margin-top: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.02em;
}

.contact-footer-text span {
    color: var(--light-blue);
}

.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    padding: 16px 20px !important;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--light-blue) !important;
    box-shadow: none !important;
    color: #ffffff !important;
}

.form-control::placeholder {
    color: #64748b;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Trusted Section */
.trusted-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

.trusted-label {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.partner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    margin: 10px 30px 10px 0;
}

.partner:hover {
    opacity: 1;
}

.partner i {
    font-size: 24px;
    color: var(--light-blue);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out backwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 60px 0 80px;
    }

    .category-btn {
        width: 100%;
        justify-content: center;
        margin: 10px 0;
    }
}