/* Custom styles can be added here */
.hero-bg {
    position: relative;
    background-image: url('Images/hero.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    background: rgba(91, 123, 111, 0.7);
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    width: 80%;
    max-width: 700px;
    text-align: center;
}
@media (max-width: 768px) {
    .hero-overlay {
        width: 95%;
        padding: 1rem;
    }
    .hero-bg {
        min-height: 250px;
    }
}
/* Hero section header font color */
.hero-overlay h1,
.hero-overlay h2,
.hero-overlay h3 {
    color: #fff;
}

/* More contrasting button background for hero section */
.hero-overlay .btn-custom {
    background-color: #1a3d2f;
    color: #fff;
    border: none;
}

.hero-overlay .btn-custom:hover {
    background-color: #145127;
    color: #fff;
}

/* Optional: Make outline button more visible on overlay */
.hero-overlay .btn-outline-dark {
    border-color: #fff;
    color: #fff;
}

.hero-overlay .btn-outline-dark:hover {
    background-color: #fff;
    color: #1a3d2f;
}
/* Sticky navbar on desktop */
@media (min-width: 992px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1030;
    }
}

.thankyou-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 3rem 2rem;
    margin: 4rem auto 2rem auto;
    max-width: 600px;
    text-align: center;
}
.thankyou-img {
    max-width: 180px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(91,123,111,0.10);
}