﻿/* ===== Hero Section ===== */
.hero-overlay {
    text-align: center;
    padding: 100px 20px;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.5)), url('/Image/back2.jpg') center/cover fixed;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.tagline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 1px;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
}

.cta-button {
    display: inline-block;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #fff8c4, #f7e97f);
    color: #1d1d23;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 244, 170, 0.5);
}

    .cta-button:hover {
        background: linear-gradient(135deg, #fff8c4, #f7e97f);
        color: #1d1d23;
        transform: translateY(-3px);
    }

/* ===== Services Section ===== */
.services-section {
    position: relative;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 50px;
    margin-top: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    justify-items: center;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #2b2b31;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    max-width: 380px;
    text-align: left;
}

    .service-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
        filter: brightness(0.8);
        transition: filter 0.3s ease;
    }

    .service-card:hover img {
        filter: brightness(1);
    }

.service-info {
    padding: 25px;
}

    .service-info i {
        font-size: 2rem;
        color: #ff4081;
        margin-bottom: 10px;
        display: block;
    }

    .service-info h3 {
        margin-bottom: 10px;
        font-size: 1.4rem;
        color: #fff;
    }

    .service-info p {
        color: #ccc;
        font-size: 0.95rem;
        line-height: 1.6;
    }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}
/* ===== About Section ===== */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 80px 50px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.about-image img {
    width: 420px;
    height: 320px;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
}

    .about-image img:hover {
        transform: scale(1.03);
    }

.about-text {
    max-width: 550px;
    color: #f5f5f5;
}

    .about-text h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #fff8c4;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
        color: #ddd;
        margin-bottom: 20px;
    }

.about-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #fffbe0, #f7e97f);
    color: #1d1d23;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .about-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 15px rgba(255, 244, 170, 0.5);
    }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-overlay {
        padding: 80px 15px;
    }

    .tagline {
        font-size: 1.8rem;
    }

    .services-grid {
        gap: 20px;
    }
    /* ===== Services Section ===== */
    .services-section {
        position: relative;
        backdrop-filter: blur(8px);
        background: rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }


    .service-card {
        max-width: 100%;
    }

    .about-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }
}
