﻿/* ===== GLOBAL ===== */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fc;
    color: #333;
    scroll-behavior: smooth;
}

/* ===== HERO SECTION ===== */
.fabrication-hero {
    background: url('https://images.unsplash.com/photo-1581090464583-4f2f25b8c8b2?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

.hero-buttons a {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 8px;
    transition: 0.3s;
}

.btn-primary {
    background: #0078d7;
    color: #fff;
}

    .btn-primary:hover {
        background: #005fa3;
    }

.btn-secondary {
    background: #fff;
    color: #0078d7;
}

    .btn-secondary:hover {
        background: #e8f1ff;
    }

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-section p {
        max-width: 800px;
        margin: 0 auto;
        color: #555;
    }

/* ===== SERVICES SECTION ===== */
.services-section {
    background: #f7f9fc;
    padding: 70px 20px;
    text-align: center;
}

    .services-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    }

    .service-card img {
        width: 100%;
        height: 180px;
        border-radius: 8px;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #0078d7;
    }

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.contact-container {
    background: #f7f9fc;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

    .contact-container h2 {
        font-size: 2rem;
        color: #0078d7;
        margin-bottom: 25px;
        text-align: center;
    }

.contact-details p {
    margin: 14px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: #0078d7;
    font-size: 1.2rem;
}

.contact-details a {
    color: #333;
    text-decoration: none;
}

    .contact-details a:hover {
        color: #0078d7;
    }

/* ===== Floating Call Button ===== */
.call-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #00b140;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: all 0.3s ease;
}

    .call-btn i {
        font-size: 1.2rem;
    }

    .call-btn:hover {
        transform: scale(1.05);
        background-color: #00cc44;
    }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .call-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        bottom: 20px;
        right: 20px;
    }

    .contact-container {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .contact-container h2 {
        font-size: 1.5rem;
    }

    .contact-details p {
        font-size: 0.95rem;
    }
}
