.about-hero {
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    color: #fff;
    text-align: center;
    padding: 70px 20px 60px;
}

.about-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.about-hero p {
    opacity: .9;
    font-size: 15px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 20px;
}

.about-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    padding: 32px 24px;
    text-align: center;
    transition: .3s;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.about-card i {
    font-size: 34px;
    color: #0072ff;
    margin-bottom: 16px;
}

.about-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: #222;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
}

.about-cta {
    text-align: center;
    padding: 20px 20px 70px;
}

.about-cta p {
    color: #333;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-cta-btn {
    display: inline-block;
    background: #0072ff;
    color: #fff;
    font-weight: 600;
    padding: 13px 34px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .3px;
    transition: .2s;
}

.about-cta-btn:hover {
    background: #005fd6;
}

@media (max-width: 480px) {
    .about-hero h1 { font-size: 1.6rem; }
    .about-hero { padding: 50px 16px 40px; }
    .about-content { padding: 40px 16px 10px; }
}

/* =========================================================
   MOBILE SWIPE CAROUSEL (About / Services cards)
   ========================================================= */
@media (max-width: 768px) {
    .about-content {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 16px;
        padding: 40px 20px 8px;
        margin: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .about-content::-webkit-scrollbar { display: none; }

    .about-card {
        flex: 0 0 82%;
        max-width: 82%;
        scroll-snap-align: center;
        transform: scale(.92);
        opacity: .55;
        transition: transform .35s ease, opacity .35s ease, box-shadow .35s ease;
    }
    .about-card.in-view {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 16px 34px rgba(0,114,255,.18);
    }
}

.carousel-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 4px 0 18px;
}
.carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cfdbe8;
    transition: .3s ease;
}
.carousel-dots span.active {
    width: 22px;
    border-radius: 5px;
    background: #0072ff;
}
@media (max-width: 768px) {
    .carousel-dots { display: flex; }
}
