
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #fff;
    color: #222;
}

nav {
    background-color: #084c2e;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    align-items: center;
}

.logo img {
    height: 65px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
	display: inline-block;
}

nav a:hover {
    
    transform: scale(1.2);
	transition: all 0.2s ease;
}


.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.intro {
    text-align: center;
    background-color: #f9f9f9;
    padding: 2rem 1rem;
}

.intro h1 {
    color: #084c2e;
    font-size: 2rem;
    margin: 0;
}

.about, .services {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about h2, .services h2{
    color: #084c2e;
    text-align: center;
    margin-bottom: 1rem;
}

.about p {
    text-align: center;
    font-size: 1.1rem;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    width: 200px;
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.service-card p {
    margin-top: 0.5rem;
    font-weight: 600;
}



footer {
    background-color: #084c2e;
    color: white;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 768px) {
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 4px;
    }

    nav a {
        font-size: 13px; /* Smaller menu text for mobile */
        margin: 0 6px;   /* Reduce spacing between links */
    }

    .logo img {
        height: 59px; /* Make logo smaller */
    }
	
	nav ul {
    list-style: none;
    display: flex
;
    gap: 1rem;
    /* margin: 0; */
}
}
/* Contact Section */
.contact {
  padding: 5rem 2rem;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  width: 100%;
}

.contact-form button {
  padding: 1rem;
  background-color: black;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #333;
}

.contact-info {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #003d2c;
}

.social-links {
  margin-top: 20px;
  text-align: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.social-label {
  display: block;
  font-size: 14px;
  color: #222;
  margin-top: 5px;
  text-align: center;
}

.social-links {
  text-align: center;
  margin-top: 10px;
}

.tiktok-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.tiktok-link:hover {
  color: #1dbf73; /* soft green hover color */
}

.social-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.tiktok-link:hover .social-icon {
  transform: scale(1.1);
}
