/* PVPWare Main Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8f9fa;
  color: #222;
}
html {
  overflow-y: scroll;
}
@supports (scrollbar-gutter: stable) {
  html {
    scrollbar-gutter: stable;
  }
}
header {
  background: #232946;
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 8px rgba(35,41,70,0.06);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
nav {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 1rem 0;
  background: rgba(255,255,255,0.04);
  /* Remove border-radius and box-shadow for perfect alignment */
  border-radius: 0;
  box-shadow: none;
  height: 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.logo-img, .logo, .nav-links {
  min-width: 0;
}
.logo-img {
  height: 44px;
  margin-right: 1rem;
  vertical-align: middle;
  border-radius: 6px;
  background: #fff;
  padding: 2px 6px;
  box-shadow: 0 1px 4px rgba(35,41,70,0.08);
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-right: 2rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(35,41,70,0.10);
  white-space: nowrap;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.nav-links a:hover, .nav-links a:focus {
  color: #232946;
  background: #eebbc3;
  box-shadow: 0 2px 8px rgba(238,187,195,0.15);
  outline: none;
}
.hero {
  background: linear-gradient(90deg, #232946 60%, #eebbc3 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem 3rem 1rem;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #eebbc3;
  color: #232946;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #232946;
  color: #eebbc3;
  border: 1px solid #eebbc3;
}
.intro {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  padding-top: 1rem;      /* top */
  padding-right: 2rem;    /* right */
  padding-bottom: 1rem;   /* bottom */
  padding-left: 2rem;     /* left */
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(35,41,70,0.07);
  text-align: center;
}
.features {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  padding-top: 1rem;      /* top */
  padding-right: 2rem;    /* right */
  padding-bottom: 1rem;   /* bottom */
  padding-left: 2rem;     /* left */
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(35,41,70,0.07);
  text-align: center;
}
footer {
  background: #232946;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  margin-top: 2rem;
  font-size: 1rem;
}
/* Services Page */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.service-item {
  background: #f4f4f8;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(35,41,70,0.06);
  padding: 1.5rem 2rem;
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 220px;
  text-align: left;
}
.service-item h2 {
  margin-top: 0;
  color: #232946;
}

/* team Section */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Contact Page */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(35,41,70,0.07);
}
.contact-form label {
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}
.contact-form button {
  margin-top: 1rem;
}
.contact-info {
  text-align: center;
  margin-top: 2rem;
}
.contact-info h2 {
  margin-bottom: 0.5rem;
}
/* Blog Page */
.blog-posts {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Gallery Page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-items: center;
}
.gallery-grid img {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(35,41,70,0.06);
}
main {
  margin-top: 100px;
}
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0;
  }
  .logo {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .intro {
    padding: 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
}
@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    align-items: center;
  }
  .service-item {
    max-width: 90%;
  }
} 
ul {
  text-align: left;
  margin-left: 0;
}
/* style.css */
p {
  text-align: left;
}
p.center {
  text-align: center;
}
p.justify {
  text-align: justify;
}
/* style.css */
h2, h3, h4, h5, h6 {
  text-align: left;
}
td {
  text-align: left;
}
.service-img {
  width: 100%;
  max-width: 180px;      /* or any size you prefer */
  height: auto;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  object-fit: cover;
}
/* different indents for each column, you can use nth-child: */
td:nth-child(1), th:nth-child(1) { padding-left: 30px; }
td:nth-child(2), th:nth-child(2) { padding-left: 10px; }
td:nth-child(3), th:nth-child(3) { padding-left: 30px; }

table tr:first-child td {
  padding-top: 12px;   /* add extra top space */
}




.lang {
  display: none !important;  /* force hidden */
}
.lang.active {
  display: block !important; /* only active one shows */
}

/* Visibility */
.lang { display: none !important; }
.lang.active { display: block !important; }

/* Keep nav horizontal when active */
.nav-links.lang.active { display: flex !important; }





/* Center the whole header block */
.nav-container {
  display: flex;
  justify-content: center;  /* centers everything horizontally */
  align-items: center;      /* aligns vertically */
  padding: 10px 0;
}

/* Align logo + nav links in one row */
nav {
  display: flex;
  align-items: center;
  gap: 30px; /* space between logo and menu */
}

/* Style nav links inline */
.nav-links {
  display: flex;
  gap: 20px;      /* space between menu items */
  list-style: none;
  margin: 0;
  padding: 0;
}


