
:root {
  --gradient: linear-gradient(135deg, #007bff, #ff4d4f, #fadb14);
  --bg-dark: #001f3f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

.navbar {
  background: var(--gradient);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  white-space: nowrap;
  margin-right: auto;
  text-decoration: none;
  color: white;
  padding-right: 15px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo .tagline {
  font-size: 1.0rem;
  color: #ffffff;
}

.logo .tagline {
  font-size: 1.0rem;
  color: #ffffff;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
}

.nav-menu {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-menu a:hover {
  color: #f0f0f0; /* Lighter white */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8); /* Glow effect */
}

.hero {
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: white;
  border: none;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.services-logo-image {
  margin-top: 1rem;
  max-width: 100%;
  height: 250px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
  padding: 2rem;
  background: #f0f0f0;
  max-width: 1200px;
  margin: 0 auto;
}

.services {
  padding: 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.tile {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.tile:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.cta {
  background: var(--bg-dark);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: #001f3f;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

footer {
  background: linear-gradient(135deg, #004d40, #001f3f);
  color: #f0f0f0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding: 2rem;
  font-size: 0.9rem;
}

footer a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

@media (max-width: 1000px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #001f3f;
    width: 100%;
    position: absolute;
    top: 86px;
    left: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Tab container */
.tab-container {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

/* Tab buttons */
.tab-button {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(40, 167, 69, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px 8px 0 0;
  padding: 15px 25px;
  cursor: pointer;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  outline: none;
  position: relative;
  z-index: 1;
}

.tab-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(40, 167, 69, 0.1));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
  border-radius: 8px 8px 0 0;
}

.tab-button:hover:before {
  opacity: 1;
}


.tab-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.2), 0 6px 12px rgba(40, 167, 69, 0.2);
  color: #000;
}


/* Active tab button */
.tab-button.active {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.25), rgba(40, 167, 69, 0.25));
  border-bottom: 3px solid #007bff;
  color: #000;
  transform: translateY(-1px);
}

/* Tab content */
.tab-content {
  display: none;
  padding: 25px;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Active tab content */
.tab-content.active {
  display: block;
}
