/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    z-index: 10;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
    color: #1e293b;
    position: relative;
    overflow: hidden;
    padding-top: 30px; /* Reduced padding to account for fixed navbar */
    padding-bottom: 50px; /* Reduced bottom spacing */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #64748b;
    line-height: 1.6;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.btn-primary:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

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

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual - Process Transformation */
.hero-visual {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

/* Complex Business Processes (Before) */
.process-complexity {
    position: absolute;
    left: 10%;
    top: 20%;
    width: 40%;
    height: 60%;
}

.complex-node {
    position: absolute;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
}

.complex-node i {
    font-size: 1.5rem;
    color: #ef4444;
}

.complex-node span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
}

.node-leads {
    top: 0;
    left: 22%;
    animation-delay: 0s;
}

.node-crm {
    top: 30%;
    right: 20%;
    animation-delay: 0.5s;
}

.node-support {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.node-compliance {
    top: 80%;
    right: 0;
    animation-delay: 1.5s;
}

.complexity-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(239, 68, 68, 0.3) 2px, transparent 2px);
    background-size: 50px 50px, 60px 60px, 40px 40px;
    animation: complexityMove 4s linear infinite;
}

/* AI Transformation Layer */
.ai-transformation {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.ai-core {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
    animation: aiPulse 2s ease-in-out infinite;
}

.ai-core i {
    font-size: 1.8rem;
    color: white;
}

.ai-core span {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.transformation-lines {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 280px;
    height: 280px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    animation: transformRotate 8s linear infinite;
}

.transformation-lines::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 284px;
    height: 284px;
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    animation: transformRotate 8s linear infinite reverse;
}

/* Simplified Workflows (After) */
.process-simplified {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 40%;
    height: 60%;
}

.simplified-node {
    position: absolute;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    animation: simplifiedFloat 4s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
}

.simplified-node i {
    font-size: 1.5rem;
    color: #22c55e;
}

.simplified-node span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
}

.node-automated {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.node-integrated {
    top: 50%;
    left: 44%;
    animation-delay: 1s;
}

.node-monitored {
    bottom: -15%;
    left: 20%;
    animation-delay: 2s;
}

.node-secure {
    top: -14%;
    right: 50%;
    animation-delay: 3s;
    z-index: 5;
}

/* Floating AI Elements */
.ai-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.ai-element i {
    font-size: 1.5rem;
    color: #2563eb;
}

.ai-element span {
    font-weight: 600;
    font-size: 0.8rem;
    color: #1e293b;
}

.element-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 5%;
    animation-delay: 0s;
}

.element-3 {
    top: 10%;
    left: 40%;
    animation-delay: 0s;
}

/* Animations */
@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
    }
}

@keyframes complexityMove {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(5px) translateY(-5px); }
    50% { transform: translateX(-3px) translateY(3px); }
    75% { transform: translateX(3px) translateY(-3px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes aiPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.5);
    }
}

@keyframes transformRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes simplifiedFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }
    50% { 
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Connection Lines */
.connection-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.6), rgba(37, 99, 235, 0.6), rgba(34, 197, 94, 0.6));
    height: 2px;
    animation: connectionFlow 3s ease-in-out infinite;
}

@keyframes connectionFlow {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-lead {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.about-sub {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.industries-grid {
    margin-top: 2rem;
}

.industries-grid h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.1rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.industry-tag {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.industry-tag:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.experience-timeline {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.timeline-content h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
    font-size: 1rem;
}

.timeline-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: #f8fafc;
}

.process-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

/* Process Tabs */
.process-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tab-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.tab-item.active {
    border-color: #2563eb;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.tab-number {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.tab-item.active .tab-number {
    background: rgba(255, 255, 255, 0.3);
}

.tab-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.tab-item.active .tab-content h4 {
    color: white;
}

.tab-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.tab-item.active .tab-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Process Details */
.process-details {
    position: relative;
}

.detail-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: none;
    animation: fadeInUp 0.5s ease;
}

.detail-card.active {
    display: block;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.card-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature i {
    color: #2563eb;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e293b;
}

/* Responsive Design for Process */
@media (max-width: 768px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tab-item {
        padding: 1rem;
    }
    
    .tab-content h4 {
        font-size: 0.9rem;
    }
    
    .tab-content p {
        font-size: 0.8rem;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
    
    .step-features {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-info p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: #2563eb;
    width: 40px;
}

.contact-method h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.contact-method p {
    color: #64748b;
    margin: 0;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .process-complexity,
    .process-simplified {
        width: 45%;
    }
    
    .ai-core {
        width: 60px;
        height: 60px;
    }
    
    .ai-core i {
        font-size: 1.4rem;
    }
    
    .complex-node,
    .simplified-node {
        padding: 0.75rem;
    }
    
    .complex-node i,
    .simplified-node i {
        font-size: 1.2rem;
    }
    
    .complex-node span,
    .simplified-node span {
        font-size: 0.7rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-lead {
        font-size: 1.1rem;
    }
    
    .industry-tags {
        gap: 0.5rem;
    }
    
    .industry-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .experience-timeline {
        padding: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.step,
.expertise-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
} 

/* About Page Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 80px; /* Account for fixed navbar */
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Summary Section */
.about-summary {
    padding: 80px 0;
    background: #f8fafc;
}

.summary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.summary-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #475569;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 500;
}

/* Automation Diagram */
.automation-diagram {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.diagram-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.diagram-step:hover {
    transform: translateY(-2px);
}

.diagram-step i {
    font-size: 2rem;
    color: #2563eb;
    width: 60px;
    text-align: center;
}

.diagram-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.diagram-step p {
    color: #64748b;
    margin: 0;
}

/* Careers Section */
.careers {
    padding: 80px 0;
    background: white;
}

.careers-content {
    margin-top: 3rem;
}

.careers-intro {
    margin-bottom: 4rem;
}

.careers-intro h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.careers-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
}

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

.benefit {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-4px);
}

.benefit i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.benefit h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.benefit p {
    color: #64748b;
    line-height: 1.6;
}

/* Job Listings */
.current-openings h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.job-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
}

.job-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.job-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Investor Relations Section */
.investor-relations {
    padding: 80px 0;
    background: #f8fafc;
}

.investor-content {
    margin-top: 3rem;
}

.company-overview {
    margin-bottom: 4rem;
}

.company-overview h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.company-overview p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
}

.market-opportunity {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.market-opportunity h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.market-opportunity ul {
    list-style: none;
    padding: 0;
}

.market-opportunity li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.market-opportunity li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.financial-highlights {
    margin-bottom: 4rem;
}

.financial-highlights h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.financial-metric {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.financial-metric h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.financial-metric p {
    color: #64748b;
    line-height: 1.6;
}

.contact-investors {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-investors h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-investors p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .summary-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .job-listings {
        grid-template-columns: 1fr;
    }
    
    .financial-grid {
        grid-template-columns: 1fr;
    }
    
    .diagram-step {
        flex-direction: column;
        text-align: center;
    }
    
    .diagram-step i {
        width: auto;
        margin-bottom: 1rem;
    }
    
    .blog-card {
        padding: 2rem;
    }
    
    .blog-card-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .contact-investors {
        padding: 2rem 1.5rem;
    }
} 

/* Blog Section */
.blog {
    padding: 80px 0;
    background: white;
}

.blog-content {
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.blog-card-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.blog-card-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-date {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-card-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.blog-card-content p:last-of-type {
    margin-bottom: 2rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.blog-tags .tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.blog-tags .tag:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
} 

/* Blog Page Styles */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px; /* Account for fixed navbar */
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Articles Section */
.blog-articles {
    padding: 80px 0;
    background: #f8fafc;
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.blog-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #2563eb;
}

.blog-card.featured::before {
    height: 6px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.blog-card-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
    position: relative;
}

.blog-card-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card.featured .blog-card-header h3 {
    font-size: 2.2rem;
}

.blog-date {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffd700;
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.blog-card-content p:last-of-type {
    margin-bottom: 2rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.blog-tags .tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.blog-tags .tag:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.read-more:hover {
    color: #1e40af;
    transform: translateX(4px);
}

.coming-soon {
    color: #6b7280;
    font-style: italic;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 0.375rem;
    border: 1px solid #e5e7eb;
}

/* Responsive Design for Blog Page */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        padding: 2rem;
    }
    
    .blog-card-header h3 {
        font-size: 1.5rem;
    }
    
    .blog-card.featured .blog-card-header h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-hero-content p {
        font-size: 1.1rem;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
    
    .featured-badge {
        position: static;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
} 

/* Blog Post Page Styles */

/* Blog Post Hero */
.blog-post-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px; /* Account for fixed navbar */
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.blog-post-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.post-tags .tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Blog Post Content */
.blog-post-content {
    padding: 80px 0;
    background: white;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.post-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.post-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 2.5rem 0 1rem 0;
    line-height: 1.4;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content strong {
    color: #1e293b;
    font-weight: 600;
}

/* Post Footer */
.post-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.share-buttons {
    margin-bottom: 3rem;
}

.share-buttons h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.related-posts h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.related-posts ul {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 0.75rem;
}

.related-posts a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-posts a:hover {
    color: #1e40af;
}

/* Responsive Design for Blog Post */
@media (max-width: 768px) {
    .blog-post-header h1 {
        font-size: 2.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .post-content {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .post-content h2 {
        font-size: 1.8rem;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
    }
    
    .post-content .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .post-content {
        font-size: 0.95rem;
    }
    
    .share-btn {
        display: block;
        margin-bottom: 0.5rem;
        text-align: center;
    }
} 