/* Hero Section */
.hero-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Company Info Section */
.company-info {
    background: #1a1a1a;
    color: white;
    padding: 60px 0;
    margin-top: 60px;
}

.company-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.company-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.highlight-text {
    color: #f39c12;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 30px 0;
    background: white;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.feature-list li {
    padding: 0.2rem 0;
    font-size: 1rem;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.content-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-box,
.vision-box {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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