/* AI Powered Fleet Management Page Styles */

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

.ai-fleet-management {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #134e4a, #0f766e);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 118, 110, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #06342E, #065f58);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card .stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: #f9fafb;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 32px;
}

.result-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.result-card .result-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.result-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.result-card p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    gap: 60px;
}

.feature-card {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: center;
    /* padding: 40px; */
    border-radius: 20px;
    overflow: hidden;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.feature-card:nth-child(even) {
    direction: rtl;
}

.feature-card:nth-child(even) .feature-content {
    direction: ltr;
}

.feature-image {
  position: relative;
    /* border-radius: 12px; */
    overflow: hidden;
    display: flex;
    height: 100%;
    height: 450px;
    object-fit: cover;
}

.feature-image img {
   width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.feature-content .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-content h3 {
 font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    text-align: left;
}
.feature-content{
    padding: 30px 30px 30px 30px;
}
.iconBox_wrap {
    display: flex
;
    gap: 1rem;
}
.feature-content p {
       font-size: 1rem;
    color: #6b7280;
    margin-bottom: 24px;
    text-align: left;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
     display: flex;
    align-items: center;
    padding: 8px 0 0 0; 
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.125rem;
}

/* Industry Success Section */
.industry-success-section {
    padding: 100px 0;
    background: #f9fafb;
}

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

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

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.industry-card > p {
    color: #6b7280;
    margin-bottom: 24px;
    font-size: 1rem;
}

.industry-benefits {
    list-style: none;
    padding: 0;
}

.industry-benefits li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #374151;
    font-weight: 500;
}

.benefit-icon {
    margin-right: 12px;
    font-size: 1.25rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #0f766e;
    font-family: serif;
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonial-author strong {
    color: #1f2937;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-section .btn-primary {
    background: white;
    color: #0f766e;
    font-size: 1.125rem;
    padding: 16px 32px;
}

.cta-section .btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-card:nth-child(even) {
        direction: ltr;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 16px;
    }
    .btn-primary{
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    
    .results-grid,
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 0px;
    }
    .feature-image{
        height: auto !important;
    }
    .feature-content{
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .result-card,
    .industry-card {
        padding: 24px;
    }
}

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

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #0f766e;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Print Styles */
@media print {
    .hero-section,
    .cta-section {
        background: white !important;
        color: black !important;
    }
    
    .btn {
        border: 1px solid #333 !important;
        background: white !important;
        color: black !important;
    }
    
    .testimonial-card,
    .result-card,
    .feature-card,
    .industry-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

