.bg-color {
    background-color: #00721e;
}

.font-color {
    color: white;
}

.hero {
    background-image: url('https://placeholder.co/1200x600');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(rgba(0, 114, 30, 0.5), rgba(0, 114, 30, 0.5)),
        url('/landing/assets/bg-back.jpg') no-repeat center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
}

.menu-title {
    color: white;
    margin-bottom: 30px;
    position: relative;
    padding-right: 100px;
}

.menu-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.menu-header {
    padding: 15px 20px;
    color: white;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    background-color: #015417;
}

.menu-header.active {
    background-color: #2C3333;
}

.menu-content {
    background-color: #2C3333;
    color: white;
    padding: 20px;
}

.sub-items {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.sub-items li {
    margin-bottom: 10px;
    color: #8B8B8B;
}

.survey-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    background-color: #00721e;
    padding: 10px;
    border-radius: 5px;
}

.survey-icon img {
    width: 100%;
    height: auto;
}


.service-link {
    display: block;
    padding: 12px 0;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #00721e;
    padding-left: 10px;
}

.service-link::before {
    content: "→";
    margin-right: 10px;
}

.section-title {
    padding: 15px;
    background-color: #00721e;
    color: white;
    margin-bottom: 20px;
    border-radius: 10px;
}

.service-container {
    padding: 0 15px;
}

.gallery-container {
    position: relative;
    padding: 0 50px;
}

.gallery-wrapper {
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.gallery-item {
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 114, 30, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.gallery-control.prev {
    left: 0;
}

.gallery-control.next {
    right: 0;
}

.page-title {
    color: #00721e;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Thumbnail Grid Below Main Gallery */
.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.thumbnail {
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: #FFA500;
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}


.footer-main {
    background-color: #006400;
    color: white;
    padding: 50px 0;
}

.footer-bottom {
    background-color: #004d00;
    color: white;
    padding: 20px 0;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
    text-decoration: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #e0e0e0;
}

.logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #800000;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 24px;
}

.form-label {
    font-weight: 600;
    color: #444;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 20px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.2);
    border-color: #48bb78;
}

.btn-submit {
    background: #48bb78;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.2);
}

.required {
    color: #e53e3e;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    background: linear-gradient(90deg, #FF6B6B, #FFD93D);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px rgba(130, 238, 171, 0.25);
    border-color: #82EEAB;
}

.btn-submit {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 200px;
}


.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.required-field::after {
    content: " *";
    color: #e74c3c;
}

.logo-section img {
    max-width: 400px;
    height: auto;
}

.carousel-item img {
    height: 300px;
    object-fit: cover;
}

.description {
    max-width: 800px;
}
