/* * Bomag Custom CSS 
 * Replaced Mobirise with pure CSS and Bootstrap 5.3 
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0d6efd;
    --danger-color: #dc3545;
    --dark-blue: #084f8f;
    --dark-bg: #353535;
    --text-main: #333333;
}

body {
    font-family: 'Noto Sans Thai', sans-serif;
    color: var(--text-main);
    background-color: #f8f9fa;
    padding-top: 76px;
    /* Space for fixed navbar */
}

/* Navbar Styling */
.navbar-custom {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-custom .navbar-brand img {
    height: 50px;
}

.navbar-custom .nav-link {
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sections & Padding */
.section-padding {
    padding: 60px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Backgrounds & Overlays */
.bg-dark-blue {
    background-color: var(--dark-blue);
    color: #fff;
}

.bg-dark-gray {
    background-color: var(--dark-bg);
    color: #fff;
}

.bg-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.overlay-dark {
    background-color: rgba(53, 53, 53, 0.7);
}

.overlay-blue {
    background-color: rgba(8, 79, 143, 0.8);
}

.parallax-content {
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Service / Gallery Cards */
.service-card {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-body {
    padding: 20px;
}

/* Videos */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer-custom {
    background-color: #232323;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-custom a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-custom a:hover {
    color: #fff;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
}