/* ===== HERO SECTION ===== */
.about-hero {
    background: url('../img/about-hero.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.about-hero::before {
    content: "";
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.5);
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
}

.about-hero h1 { font-size: 3rem; margin-bottom: 10px; }
.about-hero p { font-size: 1.3rem; }

/* ===== COMPANY INFO ===== */
.about-company {
    padding: 60px 20px;
    background: #f9f9f9;
}

.about-company .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.company-info {
    flex: 1;
    min-width: 280px;
}

.company-info h2, .company-info h3 {
    color: #007bff;
    margin-bottom: 15px;
}

.company-info p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.company-image {
    flex: 1;
    min-width: 280px;
}

.company-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ===== SERVICES SECTION ===== */
.about-services {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.about-services h2 {
    font-size: 2.2rem;
    color: #007bff;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.about-services h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #00bcd4;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff; /* optional background */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon img {
    transform: scale(1.1);
}

.service-item:hover .service-icon {
    background: #00bcd4; /* subtle hover background if desired */
}


.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .about-services h2 { font-size: 2rem; }
}

@media (max-width: 500px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-item { padding: 25px 15px; }
}
