/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Overlay Text */
.overlay-text {
    position: absolute;
    top: 80%;
    left: 25%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 15px;
    border-radius: 5px;
}

.overlay-text h1 {
    font-size: 36px;
}

.overlay-text p {
    font-size: 18px;
}

/* Header Content */
.header-content {
    position: absolute;
    top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo Image */
.logo {
    height: 200px;
    border-radius: 25%;
}

/* Navbar */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0 50px 75px 0;
    padding: 15px 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    font-size: 26px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.navbar ul li a:hover {
    color: #f4b400;
}

/*Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: white;
    cursor: pointer;
    animation: bounce 1.5s infinite;
}

/* Arrow Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Mission Section */
.mission {
    width: 100%;
    padding: 50px 0 0;
    background-color: #f8f8f8;
}

/* Top Title Row */
.mission-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Mission Columns */
.mission-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mission Text */
.mission-text h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

/* Left and Right Designs */
.design-left img, .design-right img {
    width: 90%;
}

/* Mission Content Row */
.mission-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    margin: 0 auto;
}

/* Mission Text */
.mission-text-content {
    width: 60%;
    margin: 0 20px;
    text-align: center;
    font-size: 30px;
    line-height: 1.6;
    color: #333;
}

/* Mission Image */
.mission-image {
    width: 30%;
    text-align: center;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer Section */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: #333;
    color: white;
}

/* Google Maps Section */
.footer-map {
    width: 33%;
    height: 250px;
}

/* Footer Info Section */
.footer-info {
    width: 65%;
    text-align: center;
    padding-left: 20px;
}

.footer-info h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.footer-info p {
    margin: 5px 0;
}

/* Footer Links */
.footer-info a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-info a:hover {
    text-decoration: underline;
}

.construction {
    text-align: center;
    font-size: 30px;
    color: #f4b400;
    margin: 20px;
}

