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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    margin-top: 50px;
}

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

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.banner-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
}

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

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

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

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

.hero-text-part-1, .hero-text-part-2 {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.hero-text-part-2 {
    animation-delay: 0.3s;
}

.hero-title-with-logo {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-logo {
    width: 5.8rem;
    height: 5.8rem;
    object-fit: contain;
    vertical-align: middle;
    flex-shrink: 0;
    margin: 0 -1.1rem;
    position: relative;
    top: -0.15rem;
    display: inline-block;
}

.highlight {
    color: #fbbf24;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

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

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.hero-graphic i {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

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

/* Featured Service Cards */
.featured-card {
    border: 3px solid #fbbf24;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #fbbf24 100%);
}

.featured-card .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.supported-machinery, .prediction-layers {
    margin-top: 15px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.supported-machinery h4, .prediction-layers h4 {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.supported-machinery p, .prediction-layers p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 5px;
}

.prediction-example {
    margin-top: 10px;
    padding: 10px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 6px;
    font-size: 0.85rem;
    font-style: italic;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f9fafb;
}

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

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

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.consultation-details {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem auto 0;
    max-width: 700px;
    border-left: 4px solid #667eea;
}

.consultation-details h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.consultation-details p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.custom-ai-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    font-size: 0.875rem;
    color: #667eea;
    font-weight: 500;
}

.showcase-item i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .custom-ai-showcase {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .showcase-item {
        width: fit-content;
    }
}

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

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

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    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.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-benefits {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.benefit {
    background: #eff6ff;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: white;
}

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

.solution-category {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.solution-category h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-category ul {
    list-style: none;
}

.solution-category li {
    color: #6b7280;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

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

/* Mentoring Section */
.mentoring {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.mentoring .section-header h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.mentoring .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.mentoring-content {
    text-align: center;
}

.mentoring-description {
    margin-bottom: 2rem;
}

.mentoring-description p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.mentoring-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.mentoring-service {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mentoring-service:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.mentoring-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mentoring-icon i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.mentoring-service h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.mentoring-service p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
}

.mentoring-cta {
    text-align: center;
}

.btn-large {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.cta-subtitle {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .mentoring-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mentoring .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f9fafb;
}

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

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

.about-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.global-presence {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    color: white;
}

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

.location i {
    font-size: 1.25rem;
    color: #fbbf24;
}

.location span {
    font-size: 1rem;
    font-weight: 500;
}

.about-values {
    display: grid;
    gap: 1.5rem;
}

.value h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value p {
    color: #6b7280;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

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

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-full {
    width: 100%;
    justify-self: stretch;
}

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

.contact-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.whatsapp-card .contact-icon {
    background: #25D366;
}

.email-card .contact-icon {
    background: #4285F4;
}

.phone-card .contact-icon {
    background: #8B5CF6;
}

.response-card .contact-icon {
    background: #F97316;
}

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

.contact-card h4 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #6b7280;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #1f2937;
}

.contact-card p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

.phone-label {
    font-size: 0.75rem;
    color: #9ca3af;
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    display: inline-block;
}

/* Legal Pages Body Override */
.legal-page-body {
    margin-top: 120px !important;
}

/* Legal Pages Navigation */
.legal-navbar {
    position: fixed !important;
    top: 0 !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
    z-index: 1000;
}

/* Legal Pages */
.legal-page {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 80px 70px;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.legal-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a5568;
    margin: 25px 0 15px;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 1rem;
}

.legal-section strong {
    color: #2d3748;
    font-weight: 600;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

/* Mobile responsive for legal pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }
    
    .legal-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .legal-content h1 {
        font-size: 2.2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
}

/* Smaller Mentoring Section - Same Design, Reduced Scale */
.mentoring-smaller {
    padding: 50px 0 !important; /* Reduced from original 80px */
}

.mentoring-smaller .section-header h2 {
    font-size: 1.8rem !important; /* Reduced from 2.5rem */
    margin-bottom: 15px !important; /* Reduced from 20px */
}

.mentoring-smaller .section-header p {
    font-size: 1rem !important; /* Reduced from 1.25rem */
    margin-bottom: 35px !important; /* Reduced from 50px */
}

.mentoring-smaller .mentoring-description p {
    font-size: 1rem !important; /* Reduced from 1.125rem */
    margin-bottom: 35px !important; /* Reduced from 50px */
}

.mentoring-smaller .mentoring-services {
    gap: 25px !important; /* Reduced from 40px */
    margin-bottom: 35px !important; /* Reduced from 50px */
}

.mentoring-smaller .mentoring-service {
    padding: 25px !important; /* Reduced from 40px */
}

.mentoring-smaller .mentoring-service h3 {
    font-size: 1.1rem !important; /* Reduced from 1.25rem */
    margin-bottom: 8px !important; /* Reduced from 15px */
}

.mentoring-smaller .mentoring-service p {
    font-size: 0.9rem !important; /* Reduced from 1rem */
}

.mentoring-smaller .mentoring-icon {
    width: 45px !important; /* Reduced from 60px */
    height: 45px !important; /* Reduced from 60px */
    margin-bottom: 15px !important; /* Reduced from 20px */
}

.mentoring-smaller .mentoring-icon i {
    font-size: 1.3rem !important; /* Reduced from 1.75rem */
}

.mentoring-smaller .btn-large {
    padding: 14px 28px !important; /* Reduced from 18px 36px */
    font-size: 1rem !important; /* Reduced from 1.125rem */
}

.mentoring-smaller .cta-subtitle {
    font-size: 0.9rem !important; /* Reduced from 1rem */
    margin-top: 8px !important; /* Reduced from 12px */
}

/* Mobile adjustments for smaller mentoring */
@media (max-width: 768px) {
    .mentoring-smaller {
        padding: 35px 0 !important;
    }
    
    .mentoring-smaller .mentoring-services {
        gap: 20px !important;
    }
    
    .mentoring-smaller .mentoring-service {
        padding: 20px !important;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.faq-category {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(103, 126, 234, 0.1);
}

.faq-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.faq-item {
    margin-bottom: 25px;
    last-child: {
        margin-bottom: 0;
    }
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
    margin: 0 -20px;
    padding: 15px 20px;
    border-radius: 8px;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    transition: transform 0.3s ease;
    margin-left: 15px;
    min-width: 20px;
    text-align: center;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
}

.faq-answer.active {
    max-height: 400px;
    opacity: 1;
    padding: 15px 0 5px 0;
}

.faq-answer p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    padding-left: 15px;
    border-left: 3px solid #667eea;
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
}

/* Mobile responsive for FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .faq-category {
        padding: 30px 25px;
    }
    
    .faq-category h3 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        padding: 12px;
    }
}

/* Footer Logo Title */
.footer-title-with-logo {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
}

.footer-logo {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    vertical-align: middle;
    flex-shrink: 0;
    margin: 0 -0.5rem;
    position: relative;
    top: -0.1rem;
    display: inline-block;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.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 a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .banner-title {
        font-size: 0.9rem;
        padding: 0 10px;
        line-height: 1.2;
    }
    
    .top-banner {
        padding: 8px 0;
    }
    
    .navbar {
        top: 40px;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        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;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero {
        padding: 130px 0 80px;
    }
    
    .hero-title-with-logo {
        font-size: 2.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .hero-logo {
        width: 4.5rem;
        height: 4.5rem;
        margin: 0 -0.5rem;
        top: -0.15rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }

    .hero-graphic i {
        font-size: 8rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 0.8rem;
        padding: 0 5px;
    }
    
    .top-banner {
        padding: 6px 0;
    }
    
    .navbar {
        top: 35px;
        padding: 0.75rem 0;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .hero {
        padding: 115px 0 60px;
    }
    
    .hero-title-with-logo {
        font-size: 2rem;
        justify-content: center;
        align-items: center;
    }
    
    .hero-logo {
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 -0.3rem;
        top: -0.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }
}

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

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Chatbot Styles */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.chatbot-toggle i {
    color: white;
    font-size: 1.5rem;
}

.chatbot-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-container.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-avatar i {
    font-size: 1.2rem;
}

.chatbot-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chatbot-info p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

.chatbot-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.chatbot-message.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.user-message .message-avatar {
    background: #f3f4f6;
    color: #374151;
}

.message-content {
    max-width: 80%;
}

.user-message .message-content {
    background: #667eea;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 18px 18px 4px 18px;
}

.bot-message .message-content {
    background: #f9fafb;
    color: #374151;
    padding: 0.75rem 1rem;
    border-radius: 18px 18px 18px 4px;
}

.message-content p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.quick-reply {
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
}

.quick-reply:hover {
    background: #667eea;
    color: white;
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-color: #667eea;
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    background: #667eea;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    background: #5a67d8;
    transform: scale(1.05);
}

.chatbot-input button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Enterprise-grade chatbot styling */
.typing-indicator {
    opacity: 0.9;
}

.advanced-typing {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px 20px 20px 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.advanced-typing span {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    animation: enterpriseTyping 1.6s infinite ease-in-out;
}

.advanced-typing span:nth-child(1) {
    animation-delay: -0.4s;
}

.advanced-typing span:nth-child(2) {
    animation-delay: -0.2s;
}

.advanced-typing span:nth-child(3) {
    animation-delay: 0s;
}

.advanced-typing span:nth-child(4) {
    animation-delay: 0.2s;
}

.typing-status {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
    font-style: italic;
}

.typing-avatar {
    animation: pulse 2s infinite;
}

@keyframes enterpriseTyping {
    0%, 80%, 100% {
        transform: scale(0.4);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Enterprise message styling */
.chatbot-message {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    animation: slideInMessage 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bot-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.bot-avatar-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.bot-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    z-index: 1;
}

.user-avatar {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.message-content {
    flex: 1;
    max-width: 75%;
    word-wrap: break-word;
}

.bot-content {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px 20px 20px 6px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

.bot-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, transparent 100%);
    border-radius: 20px 20px 20px 6px;
    pointer-events: none;
}

.user-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 6px 20px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.message-timestamp {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.5rem;
    display: block;
}

.bot-content .message-timestamp {
    color: #64748b;
}

.user-content .message-timestamp {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes slideInMessage {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enterprise quick reply system */
.enhanced-quick-replies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease 0.3s both;
}

.enterprise-quick-reply {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    color: #334155;
    padding: 0.875rem 1.25rem;
    border-radius: 16px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(10px);
    animation: slideInQuickReply 0.4s ease forwards;
}

.enterprise-quick-reply:nth-child(1) { animation-delay: 0.1s; }
.enterprise-quick-reply:nth-child(2) { animation-delay: 0.2s; }
.enterprise-quick-reply:nth-child(3) { animation-delay: 0.3s; }
.enterprise-quick-reply:nth-child(4) { animation-delay: 0.4s; }

.enterprise-quick-reply i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.enterprise-quick-reply:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.enterprise-quick-reply:hover i {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.enterprise-quick-reply:active {
    transform: translateY(-1px);
}

@keyframes slideInQuickReply {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced chatbot input */
.chatbot-input input {
    flex: 1;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.3s ease;
}

.chatbot-input input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    background: #667eea;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chatbot-input button:hover {
    background: #5a67d8;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.chatbot-input button:active {
    transform: scale(0.95);
}



/* Enhanced notification badge */
.chatbot-notification {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.625rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: enterprisePulse 3s infinite;
}

.chatbot-notification::before {
    content: '💬';
    margin-right: 0.5rem;
}

@keyframes enterprisePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
}



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Enhanced chatbot header */
.chatbot-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.chatbot-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-header h3::before {
    content: '🤖';
    font-size: 1.25rem;
}

.chatbot-header p {
    margin: 0.25rem 0 0 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Enhanced scrollbar */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* Typing indicator */
.typing-indicator {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.typing-dots {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #667eea;
    animation: typing-bounce 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile responsiveness for chatbot */
@media (max-width: 480px) {
    .chatbot-container {
        width: 90vw;
        height: 70vh;
        right: 5vw;
        bottom: 80px;
    }
    
    .chatbot-widget {
        right: 5vw;
    }
    
    .quick-replies {
        flex-direction: column;
    }
    
    .quick-reply {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
}

/* AI Dashboard Description Styling */
.ai-dashboard-description {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.ai-dashboard-description p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Demo Request Section Styling */
.demo-request-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.demo-ip-protection {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 50px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #5a67d8;
    background: #f7fafc;
}

/* Mobile responsiveness for new elements */
@media (max-width: 768px) {
    .ai-dashboard-description {
        padding: 15px;
        margin-top: 15px;
    }
    
    .ai-dashboard-description p {
        font-size: 0.95rem;
    }
    
    .demo-request-section {
        margin-top: 30px;
        padding: 30px 15px;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 15px 30px;
    }
}