/* ตั้งค่าฟอนต์ */
body {
    font-family: 'Prompt', sans-serif;
    color: #333;
    padding-top: 70px;
}

/* ส่วนหัว Hero (ภาพแบนเนอร์ใหญ่) */
.hero-section {
    background: linear-gradient(rgba(0, 19, 50, 0.75), rgba(0, 4, 15, 0.85)), 
                url('https://images.unsplash.com/photo-1509391366360-1f95096ebfc4?auto=format&fit=crop&w=1920&q=80') center/cover;
    height: 90vh;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 30px;
}

/* ระยะห่างของแต่ละ Section */
.section-padding {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    font-weight: 700;
    position: relative;
}
.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #0d6efd;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* กล่องบริการ (Services) */
.service-card {
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 45px;
    color: #0d6efd;
    margin-bottom: 20px;
}

/* รูปผลงาน (Portfolio) */
.portfolio-img {
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
}
.portfolio-img:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 30px 0;
    font-size: 0.9rem;
}

/* ปรับแต่งสำหรับมือถือ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}