body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.top-bar {
    background: linear-gradient(135deg, #1a5f1a 0%, #2d8f2d 100%);
    color: white;
    font-size: 14px;
    padding: 5px 0;
}

.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text h1 .highlight {
    background: linear-gradient(90deg, #2d8f2d, #59b359);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 22px;
    color: #f0f0f0;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, #2d8f2d, #1a5f1a);
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

#heroVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(60%); /* darken video for text readability */
}
/* .hero img {
    object-fit: cover;
    height: 600px;
    width: 100%;
} */

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.news-card img, .tourism-card img {
    height: 200px;
    object-fit: cover;
}

footer {
    background: linear-gradient(135deg, #1a5f1a 0%, #2d8f2d 100%);
    color: white;
    padding: 40px 0;
}

section:not(.hero):not(#hero) {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #1a5f1a;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.hotline-logo {
  display: block;      /* Makes the image a block element */
  margin-left: auto;   /* Centers horizontally */
  margin-right: auto;  /* Centers horizontally */
  width: 80px;
  height: 80px;
  object-fit: contain;
}


#hotline .card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}


/* Hero Section Video */
.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh; /* 80% of viewport height */
    object-fit: cover; /* ensures video covers entire area */
    z-index: 1;
    filter: brightness(60%); /* darken video for overlay text readability */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* subtle shadow effect */
}

/* Responsive Video Height */
@media (max-width: 768px) {
    .hero video {
        height: 50vh; /* smaller height on tablets & phones */
    }
}
