/* ===== Mega Hero Section ===== */
.mega-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.mega-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.mega-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.mega-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 2;
}

.mega-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.mega-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mega-content h1 .highlight {
    color:skyblue;
}

.mega-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.mega-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.mega-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.mega-benefits li i {
    color: skyblue;
    font-size: 1.2rem;
}

.mega-benefits li:hover {
    background: rgba(255,255,255,0.2);
}

.mega-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background: skyblue;
    color: #fff;
}

.primary-btn:hover {
    background: blue;
}

.secondary-btn {
    background: transparent;
    border: 2px solid skyblue;
    color: skyblue;
}

.secondary-btn:hover {
    background: skyblue;
    color: #fff;
    color: #fff;
}

/* Floating Icons */
.mega-floating-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.mega-floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: rgba(255,255,255,0.3);
    animation: floatIcons 10s infinite linear;
}

/* Random positions for floating icons */
.mega-floating-icons i:nth-child(1) { top: 10%; left: 15%; animation-duration: 12s; }
.mega-floating-icons i:nth-child(2) { top: 25%; left: 70%; animation-duration: 15s; }
.mega-floating-icons i:nth-child(3) { top: 60%; left: 20%; animation-duration: 18s; }
.mega-floating-icons i:nth-child(4) { top: 75%; left: 50%; animation-duration: 20s; }
.mega-floating-icons i:nth-child(5) { top: 40%; left: 80%; animation-duration: 14s; }
.mega-floating-icons i:nth-child(6) { top: 80%; left: 25%; animation-duration: 16s; }
.mega-floating-icons i:nth-child(7) { top: 15%; left: 50%; animation-duration: 19s; }

/* Floating Animation */
@keyframes floatIcons {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .mega-content h1 {
        font-size: 2.5rem;
    }

    .mega-content p {
        font-size: 1.1rem;
    }

    .mega-benefits li {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .cta-btn {
        padding: 10px 25px;
    }
}

@media (max-width: 575px) {
    .mega-content h1 {
        font-size: 1.8rem;
    }

    .mega-content p {
        font-size: 1rem;
    }

    .mega-benefits {
        flex-direction: column;
        gap: 15px;
    }

    .mega-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .mega-benefits li {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .mega-floating-icons i {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.2);
    }
}










/* ===== Service Card Container ===== */
.service-card-container {
    width: 100%;
    padding: 80px 20px;
    background-color: #f8f9fa;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Hero Title */
.service-card-hero {
    text-align: center;
    margin-bottom: 60px;
}

.service-card-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

/* Service Card Grid */
.service-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Individual Card */
.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

/* Card Image */
.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.05);
}

/* Card Title */
.service-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px 15px 10px;
    color: #222;
}

/* Card Description */
.service-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 15px 20px;
    color: #555;
}

/* Learn More Button */
.service-card-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 25px;
    background-color: skyblue;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-card-btn:hover {
    background-color: darkblue;
    transform: translateY(-2px);
}

/* Anchor Tag Wrap */
.service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .service-card-main-title {
        font-size: 2.3rem;
    }

    .service-card-img {
        height: 180px;
    }
}

@media (max-width: 575px) {
    .service-card-container {
        padding: 50px 15px;
    }

    .service-card-main-title {
        font-size: 1.8rem;
    }

    .service-card-img {
        height: 150px;
    }

    .service-card-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}
