
/* ========================= */
/* HERO (MATCH HOME PAGE) */
/* ========================= */
.about-hero {
    position: relative;
    height: 80vh;
    background: url("hero4.jpg.jpg") center/cover no-repeat;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* DARK OVERLAY */
.about-hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
}

/* TEXT ABOVE IMAGE */
.about-hero h1,
.about-hero p {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* ========================= */
/* WHO WE ARE */
/* ========================= */
.about-section {
    padding: 80px 10%;
    background: #f8fafc;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT TEXT */
.about-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #0f172a;
}

.about-text p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* 🔥 IMAGE (IMPORTANT FIX) */
.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* ========================= */
/* HIGHLIGHTS */
/* ========================= */
.about-highlight {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* CARDS */
.about-highlight div {
    background: white;
    padding: 18px 20px;
    border-radius: 10px;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* HOVER */
.about-highlight div:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
}

/* ========================= */
/* SOLUTIONS */
/* ========================= */
.what-we-do {
    padding: 70px 10%;
    text-align: center;
}

.what-we-do .card {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 12px;
    min-width: 250px;
    transition: 0.3s;
}

.what-we-do .card h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.what-we-do .card p {
    font-size: 14px;
    color: #475569;
}

.what-we-do .card:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: translateY(-10px);
}

.what-we-do .card:hover h3,
.what-we-do .card:hover p {
    color: white;
}

/* ========================= */
/* VALUES */
/* ========================= */
.values {
    background: #0f172a;
    color: white;
    padding: 70px 10%;
    text-align: center;
}

.values .card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 12px;
    min-width: 250px;
    transition: 0.3s;
}

.values .card h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.values .card p {
    color: #cbd5e1;
}

.values .card:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: translateY(-10px);
}

.values .card:hover h3,
.values .card:hover p {
    color: white;
}

/* ========================= */
/* COMMON CARDS */
/* ========================= */
.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 250px;
    }

    .about-hero {
        height: 60vh;
    }
}
