/* ========== HERO SECTION ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero-section {
    background: linear-gradient(135deg, #0a1a2fd9 0%, #0c1e35e6 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-title .highlight {
    color: #00aeef;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00aeef;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #0082b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -8px rgba(0, 174, 239, 0.4);
}

.hero-illustration {
    flex: 1;
}

.illustration-wrapper {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.illustration-wrapper img {
    width: 100%;
    height: auto;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 80px 0;
    background: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00aeef;
    background: rgba(0, 174, 239, 0.08);
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    border-color: #00aeef;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: #00aeef;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* ========== SOLUTIONS BLOCK SECTION ========== */
.solutions-block-section {
    padding: 80px 0;
    background: #f8fafd;
}

.solution-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.solution-block:last-child {
    margin-bottom: 0;
}

.solution-block.reverse {
    flex-direction: row-reverse;
}

.solution-image {
    flex: 1;
}

.image-wrapper {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border-radius: 28px;
    padding: 30px;
    text-align: center;
}

.image-wrapper img {
    width: 100%;
    max-width: 400px;
    height: auto;
}
div#solutionreversed {
    display: flex;
    flex-direction: row;
}

.solution-content {
    flex: 1;
}

.solution-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.solution-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00aeef;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 12px;
    color: #0082b3;
}

/* ========== DEVELOPMENT AREAS SECTION ========== */
.development-areas-section {
    padding: 80px 0;
    background: #ffffff;
}

.pill-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.pill {
    background: #f1f5f9;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pill:hover {
    background: #00aeef;
    color: white;
    transform: translateY(-2px);
}

/* ========== GLOBAL DELIVERY SECTION ========== */
.global-delivery-section {
    padding: 80px 0;
    background: #f8fafd;
}

.global-delivery-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.global-delivery-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.global-delivery-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 40px;
}

.world-map {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.world-map img {
    width: 97%;
    height: 440px;
    object-fit: cover;
}

/* ========== CTA FOOTER SECTION ========== */
.cta-footer-section {
    background: linear-gradient(135deg, #0a1a2f 0%, #0c1e35 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-footer-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00aeef;
    color: white;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #0082b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -8px rgba(0, 174, 239, 0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .solution-block {
        flex-direction: column;
        padding: 30px;
    }
    
    .solution-block.reverse {
        flex-direction: column;
    }
    
    .solution-image, .solution-content {
        text-align: center;
    }
    
    .global-delivery-content h2 {
        font-size: 32px;
    }
    
    .cta-footer-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .solution-content h3 {
        font-size: 24px;
    }
    
    .pill-container {
        gap: 12px;
    }
    
    .pill {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .global-delivery-content h2 {
        font-size: 28px;
    }
    
    .cta-footer-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    div#solutionreversed {
    display: flex;
    flex-direction: column-reverse;
}
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .solution-block {
        padding: 24px;
    }
    .world-map img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
    
    .solution-content h3 {
        font-size: 22px;
    }
    
    .solution-content p {
        font-size: 14px;
    }
    
    .global-delivery-content h2 {
        font-size: 24px;
    }
    
    .cta-footer-section h2 {
        font-size: 24px;
    }
}