﻿.about-section {
    text-align: center;
    padding: 0px 0px 60px 00px;
    background: #fff;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about-section p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.about-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 15px;
    width: 260px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
    }

    .card img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        margin: 0 auto 15px; /* Center image */
        display: block;
        border: 4px solid #eee;
        transition: all 0.3s ease;
    }

    .card:hover img {
        border-color: #ff6600;
        transform: scale(1.1);
    }

    .card h3 {
        font-size: 20px;
        margin: 10px 0;
        color: #222;
    }

    .card p {
        font-size: 14px;
        color: #666;
    }
 
.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    overflow: hidden; /* important for zoom effect */
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease-in-out;
}

.slide-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

    .slide-content h1 {
        font-size: 40px;
        font-weight: bold;
        color: #fff;
        margin: 0;
    }

    .slide-content h4 {
        font-size: 24px;
        margin-top: 10px;
        color: #fff;
    }

    .slide-content a {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 30px;
        background: #ff5a5f;
        color: #fff;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }


