body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
}

.page-wrapper {
  background-color: #fff;
  max-width: 1300px;
  margin: 0px auto;
  min-height: 100vh;
  box-shadow: 0 0 0 100vmax #f5f5f5;
  clip-path: inset(0 -100vmax);
}

.navbar {
  width: 100%;
  background-color: #fff;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-container {
  width: 80%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-menu {
  background-color: #f8f8f8;
  padding: 14px 40px;
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 60px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #11798c;
}

.nav-menu a.lang-switch {
  font-weight: bold;
  color: #a10b55;
}

.nav-menu a.lang-switch:hover {
  color: #11798c;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  
}






/* ==========================================================
   HOMEPAGE HERO SECTION (NE JEMI EUROING)
   ========================================================== */

.hero {
  background: #fff;
  padding: 100px 20px 80px;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
  flex-wrap: wrap;
}

/* Left text */
.hero-text {
  flex: 1 1 600px;
}

.hero-text h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 0.90;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: -1px;
  

}

.hero-text h1 {
  font-family: "Play", sans-serif;
    font-size: 55px;
    color: #333;
    margin-bottom: 30px;

  /* Align with logo container */
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 90px; /* Adjust this to match exact logo offset */
}


/* Right image */
.hero-image {
  flex: 1 1 480px;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-text {
    order: 1;
  }
  .hero-text h1 {
    font-size: 2.6rem;
  }
  .hero-image {
    order: 2;
    text-align: center;
  }
  .hero-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
}







/* ===== PROJECTS SECTION ===== */
.projects-section {
  padding: 60px 10%;
}

.projects-section h1 {
  font-family: "Play", sans-serif;
  font-size: 55px;
  color: #333;
  margin-bottom: 30px;
}

/* Category Buttons */
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.category-btn {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-btn:hover {
  border-color: #11798c;
  color: #11798c;
}

.category-btn.active {
  border-color: #1bb1cc; /* green active color */
  background: #eaf8f0;
  color: #1bb1cc;
  font-weight: 500;
}

/* Project Card */
.project-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.project-text {
  flex: 1 1 50%;
  padding: 40px;
}

.project-text h2 {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin-top: 15px;
  margin-bottom: 8px;
}

.project-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}
/* Project card */
.project-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 30px;
  gap: 40px;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 60px; /* 👈 space between project cards */
  margin-top: 40px;
}

./* Right image side */
.project-card .img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-card .img img {
  width: 100%;
  height: auto;
  max-width: 480px;       /* 👈 limit image width */
  max-height: auto;      /* 👈 limit image height */
  border-radius: 12px;
  object-fit: cover;      /* 👈 keeps aspect ratio */
}

/* Responsive */
@media (max-width: 900px) {
  .project-card {
    flex-direction: column;
  }

  .project-text {
    padding: 25px;
  }

  .project-image img {
    border-left: none;
    border-top: 1px solid #eee;
  }
}

@media (max-width: 768px) {
  .navbar-container { flex-wrap: wrap; }
  .menu-toggle { display: block; }
  .nav-menu { width: 100%; margin-top: 10px; display: none; background: transparent; box-shadow: none; }
  .nav-menu.active { display: block; }
  .nav-menu ul { flex-direction: column; gap: 15px; background: #f8f8f8; border-radius: 20px; padding: 20px 0; }
  .nav-menu a { text-align: center; padding: 10px; }
}

/* ===== FOOTER ===== */
.footer {
  background-color: #fff;
  box-shadow: 0 0 0 100vmax #f5f5f5;
  clip-path: inset(0 -100vmax);
  display: flex;
  justify-content: center;
  padding: 0;
}

.footer-container {
  display: flex;
  max-width: 1300px;
  width: 100%;
  min-height: 300px;
}

.footer-left {
  background-color: #1997ab;
  color: #fff;
  width: 40%;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.footer-logo {
  width: 208px;
  margin-bottom: 40px;
}

.footer-left .copyright {
  font-size: 13px;
  margin: 0;
}

.footer-right {
  background-color: #444;
  color: #fff;
  width: 60%;
  display: flex;
  justify-content: space-around;
  align-items: margin-top;
  padding: 40px;
  text-align: left;
}

.footer-section { flex: 1; }
.footer-section h4 { margin-bottom: 10px; font-size: 18px; }
.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section a { color: #fff; text-decoration: none; display: block; margin: 6px 0; transition: color 0.3s ease; }
.footer-section a:hover { color: #88D1BB; }

.social-icons img {
  width: 28px;
  margin-right: 12px;
  transition: opacity 0.3s ease;
}

.social-icons img:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .footer-container { flex-direction: column; }
  .footer-left, .footer-right { width: 100%; }
  .footer-right { flex-direction: column; align-items: flex-start; }
}