* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfdfd;
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* Top Header */

.container {
    width: 100%;
    height: 30px;
    padding: 20px 50px;
    background-color: #034a4a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container .time {
    font-size: 14px;
    color: #fff;
}

.container .contact {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
}

/* social-icons */

.container .contact i {
    font-size: 14px;
    margin-right: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons a {
    color: #fff;
    border-radius: 50%;
    text-align: center;
    transition: 0.3s ease;
    font-size: 16px;
    margin-left: 15px;
    transition: 0.4s;
}

.social-icons a:hover {
    color: #ffd700;
}


/* Menu Header */
header {
  background-color: #156759;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 50px;
  width: auto;
  /* border-radius: 50%; */
}

/* Navigation Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #fff;
  padding: 5px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #00e0c6;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

nav a:hover {
  color: #ffd700;
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: 0.3s;
}



.nav-links a {
    position: relative;
    text-decoration: none;
    color: #fff;
    padding: 5px;
    font-weight: 500;
    transition: color 0.3s ease;
}


.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 2px;
    background-color: #00e0c6;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

nav a:hover {
    color: #ffd700;
}

.banner-section {
    width: 100%;
    height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #003b3b;

}

.banner-section img {
    height: 100%;
    /* width: 100%; */
    /* object-fit: cover; */
}

.banner-caption {
    position: absolute;
    padding: 15px 35px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.4);
    top: 85%;
    z-index: 2222222;
    background-color: #00b2a9;
    text-align: center;
}

.banner-caption h1 {
    font-size: 38px;
    color: #fff;
    margin-top: 5px;
}

.banner-caption p {
    font-size: 24px;


}


/* About Section */
.about-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.about-content {
    flex: 1 1 500px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #008080;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 0.9rem !important;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 15px;
}

.about-image {
    flex: 1 1 400px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us */
.why-choose-us {
    background: #fff7f1;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #008080;
    border-bottom: 5px solid #008080;
    border-radius: 8px;

}

.reasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.reason-card {
    background: #fff;
    padding: 30px;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card h3 {
    color: #ff4e00;
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    padding: 60px 20px;
    background: #f2f2f2;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 5px solid #008080;
    border-radius: 8px;
    color: #008080;
}

/* Scrollable container */
.team-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 5px;
    scrollbar-width: thin;
    scrollbar-color: #008080 #eee;
}

.team-scroll::-webkit-scrollbar {
    height: 8px;
}

.team-scroll::-webkit-scrollbar-track {
    background: #eee;
}

.team-scroll::-webkit-scrollbar-thumb {
    background-color: #ff4e00;
    border-radius: 6px;
}

.team-member {
    min-width: 220px;
    max-width: 220px;
    flex: 0 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.team-member h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #ff4e00;
}

.team-member p {
    color: #777;
}


.footer {
  background-color: #003b3b;
  color: #fff;
  width: 100%;
  padding: 40px 20px 10px;
  font-family: 'Poppins', sans-serif;
  /* margin-top: auto; */
  position: sticky;
  bottom: 0;
  z-index: -1;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.footer-section {
  display: flex;
  flex-direction: column;
  min-width: 250px;
  margin-bottom: 20px;
  gap: 10px;
}
.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #00e0c6;
}
.footer-section p,
.footer-section a {
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.footer-section a:hover {
  color: #e68900;
}
.footer-section ul {
  list-style: none;

}
.footer-section ul li {
  margin: 8px 0;
}
.footer-social-icons a {
  color: #fff;
  margin-right: 20px;
  font-size: 18px;
  transition: 0.3s;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #444;
  font-size: 13px;
}

::-webkit-scrollbar {
  width:5px;
}

::-webkit-scrollbar-thumb {
  background-color: #008080;
  border-radius: 20px;
}

