* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #2c3e50;
    background: #ffffff;
}

/* Header */
header {
    background: #ffffff;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e8eef5;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0052cc;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #0052cc;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
    color: white;
    padding: 8rem 3rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 90% 30%, rgba(59, 130, 246, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.03) 60px,
            rgba(255, 255, 255, 0.03) 120px
        );
    pointer-events: none;
    animation: diagonal-move 40s linear infinite;
}

@keyframes diagonal-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.6;
    opacity: 0.95;
}

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

.btn-primary {
    background: white;
    color: #0052cc;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Main Content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section {
    padding: 5rem 0;
}

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

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

.section-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

/* Value Proposition */
.value-props, .sme-promise {
    background: #f8f9fa;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.value-props::before, .sme-promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 82, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 82, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* Services Section */
.services-intro {
    background: white;
    padding: 5rem 0 3rem;
    position: relative;
}

.services-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 82, 204, 0.02) 50%, transparent 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(0, 82, 204, 0.015) 40px,
            rgba(0, 82, 204, 0.015) 80px
        );
    pointer-events: none;
}

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

.service-category {
    background: white;
    border: 1px solid #e8eef5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-category:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-header {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.02) 20px,
            rgba(255, 255, 255, 0.02) 40px
        );
    pointer-events: none;
}

.service-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-header p {
    opacity: 0.95;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 2rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    padding: 0.8rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f0f3f6;
}

.service-content li:last-child {
    border-bottom: none;
}

.service-content li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: #0052cc;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Detailed Services Page */
.services-detailed {
    background: white;
    padding: 5rem 0;
}

.service-detail {
    background: white;
    border: 1px solid #e8eef5;
    border-radius: 8px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-detail-header {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
    color: white;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.3;
    min-width: 80px;
}

.service-detail-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.service-description h4 {
    color: #0052cc;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description h4:first-child {
    margin-top: 0;
}

.service-description p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.detailed-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.detailed-list li {
    padding: 1rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f0f3f6;
    line-height: 1.7;
}

.detailed-list li:last-child {
    border-bottom: none;
}

.detailed-list li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: #0052cc;
    font-weight: bold;
    font-size: 1.2rem;
}

.detailed-list strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.3rem;
}

.service-benefit {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #0052cc;
    border-radius: 4px;
    margin-top: 2rem;
    color: #2c3e50;
    line-height: 1.7;
}

.service-benefit strong {
    color: #0052cc;
}

.pricing-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.pricing-box h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-range {
    font-size: 2rem;
    color: #0052cc;
    font-weight: 700;
    margin: 1rem 0;
}

.price-details {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-box .btn-secondary {
    width: 100%;
    text-align: center;
    color: #0052cc;
    border-color: #0052cc;
}

.pricing-box .btn-secondary:hover {
    background: #0052cc;
    color: white;
}

/* Why SMEs Section */
.why-smes {
    background: #f8f9fa;
    padding: 5rem 0;
}

.why-smes-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-sme-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e8eef5;
}

.why-sme-item h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-sme-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Service Packages */
.service-packages {
    background: white;
    padding: 5rem 0;
}

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

.package-card {
    background: white;
    border: 2px solid #e8eef5;
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

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

.package-card.featured {
    border-color: #0052cc;
    box-shadow: 0 4px 16px rgba(0, 82, 204, 0.15);
}

.package-badge {
    background: #0052cc;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.package-card h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-price {
    color: #0052cc;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.package-period {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.8rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f0f3f6;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: #0052cc;
    font-weight: bold;
}

.package-card .btn-primary {
    width: 100%;
    margin-top: 1.5rem;
}

/* Expertise Section */
.expertise {
    background: #f8f9fa;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 60px,
            rgba(0, 82, 204, 0.02) 60px,
            rgba(0, 82, 204, 0.02) 120px
        );
    pointer-events: none;
}

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

.expertise-text h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.expertise-text p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.expertise-timeline {
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 2.5rem;
    border-left: 3px solid #e8eef5;
}

.timeline-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0052cc;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #e8eef5;
}

.timeline-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.timeline-duration {
    color: #0052cc;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Certifications */
.certifications {
    background: white;
    padding: 4rem 0;
}

.cert-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cert-badge {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 82, 204, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
    color: white;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.02) 40px,
            rgba(255, 255, 255, 0.02) 80px
        );
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 82, 204, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 90%, rgba(0, 82, 204, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info-centered {
    max-width: 800px;
    margin: 3rem auto 0;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-info-centered h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.contact-item {
    text-align: center;
}

.contact-item h4 {
    color: #0052cc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #2c3e50;
    font-size: 1.1rem;
}

.contact-item a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #0052cc;
}

/* Footer */
footer {
    background: #1a2332;
    color: #a8b2c1;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}
.service-detail {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-detail:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* Two-column layout for service description + pricing */
/* Ensure service columns wrap text correctly */
.service-detail-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.service-description,
.service-pricing {
    flex: 1 1 100%; /* allow full width on mobile */
    min-width: 0;   /* allow shrinking */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;  /* optional: allow hyphenation for long words */
}

.service-description p,
.service-description li,
.service-pricing p {
    word-break: break-word;
}
.pricing-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-box:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Service numbers styling */
.service-detail-header .service-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0052cc;
    margin-right: 1rem;
}
/* Mobile adjustments for service details */
@media (max-width: 768px) {
    .service-detail-content {
        flex-direction: column;
        gap: 1.5rem; /* smaller gap for mobile */
    }

    .service-description,
    .service-pricing {
        flex: 1 1 100%; /* full width, flexible */
        min-width: 0;   /* override previous min-width */
    }

    .pricing-box {
        width: 100%; /* ensure it doesn’t shrink weirdly */
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .service-detail-content {
        flex-direction: column;
    }

    .service-pricing {
        margin-top: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: 1fr;
    }

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

    .expertise-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-box {
        position: static;
    }
    
    .why-smes-content {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero {
        padding: 5rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .container {
        padding: 0 2rem;
    }

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

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

    .contact-items {
        grid-template-columns: 1fr;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-number {
        min-width: auto;
    }
}