
body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #111;
      color: #fff;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    header {
      background-color: #000;
      padding: 10px 0;
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .nav-container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem;
      color: red;
      font-weight: bold;
    }

    nav {
      display: flex;
      align-items: center;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    nav li {
      font-weight: bold;
    }

    .menu-toggle {
      display: none;
      font-size: 24px;
      color: red;
      cursor: pointer;
    }

    .hero {
      background: red;
      height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
    }

    .hero h1 {
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 1.1rem;
      color: #eee;
    }
    .hero-banner {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.hero-banner img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: inline-block;
}

.banner-pc {
  display: flex;
}

.banner-mobile {
  display: none;
}

@media (max-width: 768px) {
  .banner-pc {
    display: none;
  }

  .banner-mobile {
    display: block;
  }

  .banner-mobile img {
    margin-bottom: 10px;
  }
}

    section {
      padding: 60px 20px;
      text-align: center;
    }

    h2 {
      color: red;
      margin-bottom: 40px;
    }

    .section-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

  .box {
  background: #222;
  border: 2px solid red;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
  background: #292929;
}

.box h3, .box h4 {
  color: red;
  margin-bottom: 10px;
}

.box p {
  color: #ccc;
  font-size: 0.95rem;
}



    #testimonials {
       
      background-color: #1a1a1a;
    }

    #testimonials .box {
      background-color: #1b1b1b;
      border-left: 4px solid red;
    }

    #clients {
      background-color: #111;
    }

    .client-logos {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .client-logos img {
      width: 100px;
      margin: 10px;
      opacity: 0.8;
      transition: transform 0.3s;
    }

    .client-logos img:hover {
      transform: scale(1.1);
      opacity: 1;
    }

    .faq-contact-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 40px;
      padding: 0 20px;
    }

    .faq-item {
      text-align: left;
      max-width: 500px;
    }

    .faq-item summary {
      cursor: pointer;
      font-weight: bold;
      color: red;
    }

    form {
      max-width: 400px;
    }

    form input, form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      border-radius: 5px;
      border: none;
    }

    form button {
      background-color: red;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
    }

       #blog {
      background-color: #222;
    }

    .blog-posts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .blog-post {
      background: #1c1c1c;
      border: 2px solid red;
      border-radius: 12px;
      padding: 20px;
      max-width: 350px;
      color: #ddd;
      transition: 0.3s ease;
    }

    .blog-post:hover {
      background: #2a2a2a;
      transform: translateY(-5px);
    }

    footer {
      background: #000;
      color: #888;
      padding: 20px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      nav ul {
        display: none;
        flex-direction: column;
        background-color: #111;
        position: absolute;
        top: 60px;
        right: 10px;
        padding: 10px;
        border: 1px solid red;
        z-index: 1000;
      }

      nav ul.active {
        display: flex;
      }

      .faq-contact-container {
        flex-direction: column;
        align-items: center;
      }
    }

  nav ul.active {
    display: flex;
  }

  .faq-contact-container {
    flex-direction: column;
    align-items: center;
  }



  #imageModal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
  }
  #imageModal img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid white;
    border-radius: 10px;
  }
  .close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }


/* nav Menu */
/* MAIN HEADER */
.main-header {
  background-color: #000;
  color: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 1000;
  position: relative;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  position: relative;
}

.logo img {
  height: 60px;
  max-height: 80px;
}

.logo h4 {
  color: white;
  margin-left: 10px;
  font-size: 20px;
}

nav {
  display: flex;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  align-items: center;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 5px;
}

.menu-toggle {
  font-size: 28px;
  color: red;
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 28px;
    z-index: 1001;
  }

  nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #111;
  }

  nav ul li a {
    display: block;
    padding: 15px 20px;
    text-align: center;
    color: white;
    font-weight: bold;
    text-decoration: none;
    width: 100%;
  }

  nav ul li:last-child {
    border-bottom: none;
  }
}



/* client */
.partners-section {
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
}

.partners-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.partners-container {
  display: flex;
  width: max-content;
  animation: scroll-left 10s linear infinite;
}

.partner-logo {
  flex: 0 0 auto;
  margin: 0 30px;
}

.partner-logo img {
  height: 80px;
  transition: transform 0.6s ease;
}

.partner-logo img:hover {
  transform: scale(1.1);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* footer */
.site-footer {
  background-color: #0d0d0d;
  color: #e0e0e0;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h2,
.footer-column h3 {
  color: #f44336;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column p,
.footer-column li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #ccc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #f44336;
  padding-left: 5px;
}

.footer-column i {
  color: #f44336;
  margin-right: 10px;
}
.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.social-icons a {
    padding-left: 7px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;      
  justify-content: center; 
  color: #ccc;
  background: #1a1a1a;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 22px;          /* icon size */
  text-decoration: none;
  margin: 0 10px;
}

.social-icons a i {
  display: block;       /* block removes baseline misalignment */
  line-height: 0;       /* prevent extra spacing */
  font-size: 22px;      /* exact control of icon size */
}

.social-icons a:hover {
  color: #fff;
}


.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #222;
  color: #aaa;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-column {
    margin-bottom: 25px;
  }

  .social-icons {
    justify-content: center;
  }
}
