html, body {
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px){
    .nav-links li a{
    padding-bottom: 40px;
  }
}
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #222;
}

header {
  background: #fff;
  padding: 2rem 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  text-align: left;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  color: #00796b;
}

header p {
  font-size: 1.2rem;
  color: #444;
}

main {
  padding: 5rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

section {
  margin-bottom: 3rem;
}

h2 {
  color: #00796b;
  border-bottom: 2px solid #00796b;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.project {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.project h3 {
  margin-top: 0;
  color: #333;
}

.project p {
  color: #666;
}

a {
  color: #00796b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.navbar {
  background-color: #f9f9f9;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #b30000;
}

.nav-links li .cta {
  background-color: #b30000;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.text-content .subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.btn {
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn.secondary {
  border: 2px solid #b30000;
  color: #b30000;
  background-color: transparent;
}

.btn.primary:hover,
.btn.secondary:hover {
  opacity: 0.9;
}

.brand .name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #b30000;
}

.brand .tagline {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
}


.hero {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8rem 1rem 6rem;
  position: sticky;
  top: 65px; /* Adjust based on navbar height */
  z-index: 999;
  background-color: #ffffff;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 2rem;
  text-align: center;
}

.text-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-block;
  background-color: #e8ebf0;
  color: #333;
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn.primary {
  background-color: #b30000;
  color: #fff;
  border: none;
}

.btn.secondary {
  border: 2px solid #b30000;
  color: #b30000;
  background-color: transparent;
}

.btn.primary:hover,
.btn.secondary:hover {
  background-color: #990000;
  color: #fff;
}

.image-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  body {
    padding: 0;
    margin: 0;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 2rem 1rem;
  }

  .text-content {
    order: 1;
    width: 100%;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .badge {
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .text-content .subtext {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .image-content {
    order: 2;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1.5rem;
  }

  .image-content img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
  }

  .mobile-menu .nav-links {
    padding-top: 3rem;
  }

  .mobile-menu .nav-links li {
    padding-bottom: 1.25rem;
  }


  .mobile-menu .nav-links li a {
    font-size: 1.25rem;
    font-weight: 700;
    color: #990000;
  }

  .mobile-menu .nav-links li .cta {
    font-size: 1.25rem;
    font-weight: 700;
    color: #990000;
    background: none;
    padding: 0;
  }
}
/* --- Navbar Styles --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.brand .name {
  font-size: 24px;
  font-weight: bolder;
  margin: 0;
  color: #b30000;
}

.brand .tagline {
  margin: 0;
  font-size: 16px;
  color: #444;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 40px;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding-right: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #b30000;
  transition: color 0.2s ease-in-out;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.nav-links li .cta {
  background-color: #b30000;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links li .cta:hover {
  background-color: #990000;
}

@media (max-width: 1150px) {
  .nav-links li a{
  padding-right: 10px;
  font-size: 12px;
  }
}

@media (max-width: 950px) {
  .nav-links li a{
  padding-right: 0px;
  font-size: 10px;
  }
  .nav-links {
  padding: 15px;
  }
}

@media (max-width: 825px) {
  .nav-links li a{
  padding-right: 0px;
  font-size: 7px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }
  

}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle svg {
  display: block;
}

.menu-toggle:active svg {
  transform: scaleX(0.8);
  transition: transform 0.2s ease-in-out;
}


.mobile-menu {
  display: flex;

}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 250px;
    background: #f4f7fa;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    flex-direction: column;
    gap: 1.25rem;
  }

  .mobile-menu.active {
    transform: translateX(0%);
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1000;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
    padding-left: 0;
  }

  .nav-links li .cta {
    margin-left: 0;
  }
}
