/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Lao:wght@400;700&display=swap');

body {
    padding-top: 70px; /* Adjust for fixed navbar */
    font-family: 'Noto Sans Lao', sans-serif;
    line-height: 1.8;
}

/* Navbar */
.navbar-brand img {
    margin-right: 8px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(29, 53, 87, 0.7), rgba(29, 53, 87, 0.7)), url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    min-height: 90vh;
    color: white;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.85);
}

/* Features Section */
#features .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#features .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3rem;
    color: #0d6efd; /* Bootstrap Primary Color */
}

/* Why Us Section */
.feature-icon-sm {
    font-size: 2rem;
    color: #0d6efd;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
}

#why-us img {
    object-fit: cover;
    height: 100%;
    max-height: 450px;
}

/* Target Audience Section */
.target-icon {
    font-size: 3.5rem;
    color: #0d6efd;
}

/* Testimonials Section */
#testimonials .card {
    background-color: #ffffff;
}

#testimonials .bi-person-circle {
    color: #adb5bd;
}

/* Contact Section */
#contact {
    background-color: #f8f9fa;
}

/* Footer */
footer {
    background-color: #1d3557; /* Darker Blue */
}
