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

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

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

/* Navbar */
.navbar {
    background: white;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #003B7A;
}


.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    background-image: url("assets/hero.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 400;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text .highlight {
    font-weight: 700;
}

.btn-express {
    background: white;
    color: #0095FF;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 36px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 12px;
    text-decoration: none;
    display: inline-block;
}

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

.hero-subtitle {
    font-size: 16px;
    color: white;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.people-image {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.blue {
    background: #0095FF;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Business CTA Section */
.business-cta {
    padding: 80px 0;
    background: white;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.business-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-business {
    margin: 200px 0;
}


.stats {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
}

.stat-bar {
    width: 60px;
    height: 8px;
    border-radius: 4px;
}

.stat-item.red {
    color: #E74C3C;
}

.stat-item.red .stat-bar {
    background: #E74C3C;
    width: 30px;
}

.stat-item.yellow {
    color: #FFB800;
}

.stat-item.yellow .stat-bar {
    background: #FFB800;
    width: 45px;
}

.stat-item.green {
    color: #2ECC71;
}

.stat-item.green .stat-bar {
    background: #2ECC71;
    width: 60px;
}

.image-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #FFB800 0%, #FFA500 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.person-image {
    max-width: 400px;
    height: auto;
    position: relative;
    z-index: 1;
}

.business-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.business-question {
    font-size: 36px;
    font-weight: 400;
    color: #333;
}

.btn-services {
    background: #0095FF;
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-services:hover {
    background: #0077CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 149, 255, 0.3);
}

/* Company Statement Section */
.company-statement {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    background: #FAFAFA;
}


.plus-image-left {
    width: 15%;
    height: auto;
}

.plus-image-right {
    width: 15%;
    height: auto;
}

.statement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plus-pattern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100px;
}

.plus-item {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB800;
}

.plus-item::before {
    content: '+';
    font-size: 28px;
    font-weight: 300;
}

/* Create the specific shape by hiding specific items if we rely on the 8 items in HTML */
/* We want 7 items for the pattern: 
   . + . +
   + . + 
   . + . +
   Wait, let's try a simple cross or diamond. 
   Let's target specific children to create a visual balance.
*/
.plus-item:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
}

.plus-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
    transform: translate(10px, 10px);
}

.plus-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.plus-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.plus-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.plus-item:nth-child(6) {
    grid-column: 1;
    grid-row: 3;
    transform: translate(10px, -10px);
}

.plus-item:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
}

.plus-item:nth-child(8) {
    display: none;
}

/* Hide the 8th one */

.statement-text {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
}

.text-blue {
    color: #0095FF;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #0059c1;
    color: white;
    padding: 60px 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-image {
    width: auto;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    opacity: 0.8;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.6);
}

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

    .hero-text h1 {
        font-size: 36px;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .business-content {
        grid-template-columns: 1fr;
    }

    .stats {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 20px;
        left: auto;
        top: auto;
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 16px;
    }

    .hero {
        padding: 40px 0 0;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .btn-express {
        font-size: 16px;
        padding: 12px 32px;
    }

    .features-section {
        padding: 40px 0;
    }

    .features-grid {
        gap: 24px;
    }

    .business-cta {
        padding: 40px 0;
    }

    .business-content {
        gap: 40px;
    }

    .business-question {
        font-size: 28px;
    }

    .btn-services {
        font-size: 16px;
        padding: 14px 36px;
    }

    .company-statement {
        padding: 40px 0;
    }

    .plus-image-left,
    .plus-image-right {
        display: none;
    }

    .statement-text {
        font-size: 28px;
    }

    .footer {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .btn-express {
        font-size: 14px;
        padding: 10px 24px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-title {
        font-size: 16px;
    }

    .business-question {
        font-size: 22px;
    }

    .statement-text {
        font-size: 22px;
    }

    .stats {
        flex-direction: column;
        gap: 12px;
    }
}