/* HERO SECTION */
.services-hero {
    position: relative;

    background: url("../../../assests/images/services.jpg") center center / cover no-repeat;
    min-height: 50vh;
    /* viewport height ke 70% */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    /* horizontal padding */
    overflow: hidden;
    color: #fff;
}

.services-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.675);
    /* semi-transparent overlay */
    z-index: 1;
}

/* Content above overlay */
.services-hero .hero-heading,
.hero-subtitle {
    position: relative;
    z-index: 2;
    text-align: center;
}

.services-hero .hero-heading {
    font-size: 3.4rem;
    font-weight: 800;
}

.services-hero .hero-heading span {
    color: red;
}

.services-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* SERVICE GLASS CARDS */
.service-card {
    padding: 35px 25px;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card .icon {
    font-size: 3rem;
    color: #0ea5e9;
    margin-bottom: 15px;
}

/* HEADINGS Matching Your Design */
.section-heading {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* background: linear-gradient(135deg, #09627aa1, #377395, #0b7fa3, #e5cece); */
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 60%;
    height: 3px;
    background: #4cc9f0;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 0 14px #4cc9f0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .services-hero .hero-heading {
        font-size: 2.3rem;
    }

    .service-card {
        padding: 25px;
    }

    .service-card .icon {
        font-size: 2.5rem;
    }
}

/* ===== Service Card Wrapper ===== */
.service-card {
    background: #050546;
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    cursor: pointer;

    /* Entry animation */
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

/* ===== Heading ===== */
.service-card h2 {
    margin-top: 20px;
    color: #715252;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Paragraph ===== */
.service-card p {
    color: #423e3e;
    margin-top: 10px;
    font-size: 1rem;
}

/* ===== Icons ===== */
.service-card .icon {
    font-size: 5rem;
    color: #38bdf8;
    transition: 0.4s ease;
}

/* ===== Hover Effect ===== */
.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 200, 255, 0.4);
    border-color: rgba(56, 189, 248, 0.7);
}

/* Icon Animation on Hover */
.service-card:hover .icon {
    /* transform: scale(1.2) rotate(5deg);
    color: #7dd3fc; */
}

/* ===== Shine Effect ===== */
.service-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -120%;
    width: 250%;
    height: 250%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: rotate(25deg);
    transition: 0.7s;
}

.service-card:hover::after {
    top: -20%;
    left: -20%;
}

/* ===== Fade-Up Animation ===== */
@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

.service-card {
    /* background:; */
    backdrop-filter: blur(12px);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card .icon {
    font-size: 5rem;
    color: #0ea5e9;
    margin-bottom: 15px;
    display: block;
}

.service-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b86114;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.4rem;
    color: red;
    margin-bottom: 15px;
    line-height: 1.6;
}

.fastag-list {
    list-style: disc;
    padding-left: 20px;
    color: white;
}

.fastag-list li {
    margin-bottom: 8px;
    font-size: 1.2rem;
}