/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "kinto-sans", sans-serif;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
a{
  text-decoration: none;
}

.top_wm_logo{
  width: 200px;
}
.wm_section{
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ccc;
  padding: 30px 0;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  margin-bottom: 10px;
}
.wm_section p{
  margin-top: 10px;
}

/* navbar */
.mobile{
  display: none;
}
.drawer_items{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  top: 0;
  background-color: #fff;
  width: 100%;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.5s ease;
  transition: opacity 0.5s ease;
}

.nav_items {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
}

.nav_items li {
  margin: 0 20px;
}
.nav_items li a{
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

nav.scrolled {
  background-color: rgba(255, 255, 255, 0.454);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.5s ease;
}

.drawer {
  display: flex;
  width: 80%;
  justify-content: space-around;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.main_logo {
  width: 200px;
  padding: 10px;
}

.contact_btn {
  background-color: #002065;
  color: #fff;
  border-radius: 20px;
  padding: 10px 20px;
}

.sns_items {
  margin-left: 30px;
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.sns_items li a {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.3s ease;
}

.sns_items li a:hover {
  color: #333;
}

.top_title {
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 6rem;
  text-align: center;
  position: absolute;
  left: 20px;
  text-align: left;
  line-height: 6rem;
}

/* Scroll animation */
.scroll {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #fff;
  letter-spacing: 2px;
  font-size: 1rem;
  animation: scroll-bounce 3.5s ease-in-out infinite;
  opacity: 0.9;
  z-index: 200;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Slider */
.sm-slider {
  width: 100%;
  height: 100vh;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.sm-slider:after {
  content: '';
  background: url(images/pattern.png) repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  right: 30px;
  display: flex;
  gap: 7px;
  z-index: 10;
}

.slider-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease;
}

.slider-dots .dot.active {
  background: white;
}


.arrow-icon {
  transition: transform 0.3s ease;
}



/* About Section */
.about-section {
  padding: 40px 30px 30px 30px;
  background: linear-gradient(to right, #f7f9fc, #ffffff);
  background-image: url(./images/backgrund.png);
}

.about_tiles {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  font-size: 1.5rem;
  text-align: left;
  color: #002065;
}

.section-title {
  text-align: right;
  margin-right: 20px;
}

.highlight {
  color: #333;
  font-size: 5rem;
  margin-left: 10px;
  font-weight: bold;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-top: 20px;
}

.company-card {
  width: 550px;
  padding: 20px;
  margin-top: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
}



.company-card h3 {
  color: #0066cc;
  margin-bottom: 10px;
}

.company-card p {
  color: #444;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 2px;
}

.about_com_logo {
  width: 250px;
  margin: 20px 0;
}

.fade-slide-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s ease-out, transform 1s ease-out;
}

.fade-slide-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Services Section */
.services-container{
  max-width: 1200px;
  margin: 0 auto;
}
.services-section {
  padding: 10px 20px;
  text-align: center;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
  padding: 0 10px;
  justify-items: center;
  width: max-content;
  margin: 0 auto;
}

.business-card {
  text-align: center;
  transition: transform 0.3s ease;
  width: max-content;

}

.business-card:hover {
  transform: translateY(-5px);
}
.card-image{
  width: 350px;
}
.card-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.business-card h4 {
  font-size: 1rem;
  margin-top: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #333;
  margin: 10px 0;
  height: 20px;
}

.bottom_line {
  width: 100%;
  height: 1px;
  background-color: rgba(20, 20, 20, 0.597);
  margin-top: 10px;
  border-radius: 2px;
}

.business-card:hover .bottom_line {
  background-color: #333;
  transition: background-color 0.3s ease;
}


/* news section  */

.news-section {
  padding: 20px 20px;
  text-align: center;
}

.news-container {
  max-width: 1000px;
  margin: 0 auto;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.news-item {
  display: flex;
  gap: 20px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.news-thumb img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.news-content {
  flex: 1;
}

.news-date {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 5px;
  display: block;
}

.news-title {
  font-size: 1.2rem;
  color: #002065;
  margin-bottom: 10px;
}

.news-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}


/* contact-section */

.contact-section {
  padding: 10px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  max-width: 600px;
  margin: 60px auto;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  color: #333;
  font-size: 1.2rem;
  color: #002065;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  border: 1px solid #0020655d;
}

.message_btn {
  width: 100%;
}

.contact-btn {
  padding: 12px 20px;
  background-color: #002065;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
  width: max-content;
  float: right;
  border-radius: 20px;
}

.contact-btn:hover {
  background-color: #004299;
}


/* footer section */
footer {
  background-color: #333333a8;
  color: #eee;
  font-size: 0.95rem;
  padding: 15px 20px 30px;
  border-top: 3px solid #002065;
  position: relative;
}
.top_slide_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 999;
  transition: all 0.5s ease-in;
}

.slider_top_btn {
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.5s ease-in;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.company-info {
  line-height: 1.8;
  margin-bottom: 20px;
}
.company-info a{
  color: #fff;
  text-decoration: none;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.3rem;
  color: #eee;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #002065;
}

.footer-links-area {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-links-group h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-group li {
  margin-bottom: 8px;
}

.footer-links-group a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links-group a:hover {
  color: #002065;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #aaa;
}
.wk_logo{
  width: 100px;
}


/* map section  */
#map{
  margin-bottom: 40px;
}
.map-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.map-container {
  margin-top: 30px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 15px;
}


/* about page  */
.about-top-image{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.about-top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-details {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}


.company-info1 {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.company-info1 p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}
.company-info1 a {
  color: #555;
}

.company-info1 strong {
  display: inline-block;
  width: 140px;
  color: #222;
}



/* Responsive */
@media screen and (max-width: 768px) {
  .mobile{
    display: block;
  }
  .company-card {
    width: 90vw;
  }

  .main_logo {
    width: 150px;
    z-index: 1000;
  }

  .top_title {
    bottom: 10px;
    font-size: 3rem;
    line-height: 4rem;
    
  }

  nav {
    justify-content: space-between;
    padding: 0 10px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    height: 25px;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #002065;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }



  .drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    z-index: 999;
    transition: right 0.4s ease;
  }
  .drawer_items{
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  .drawer.open {
    right: 0;
  }

  .drawer .nav_items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    align-items: center;
  }

  .drawer .sns_items {
    flex-direction: row;
    margin: 0;
  }

  .drawer .nav_items li,
  .drawer .sns_items li a {
    font-size: 1.2rem;
    color: #333;
  }

  .about-section p {
    line-height: 1.4rem;
    font-size: 1rem;
    margin-top: 20px;
  }


  .news-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .news-thumb img {
    width: 100%;
    height: auto;
  }

  .news-content {
    margin-top: 10px;
  }

  /* service section */
  .business-card {
    width: 45vw;
  }
  .business-card h4 {
    margin: 10px 0;
    font-size: 0.7rem;
  }
  .card-image{
    width: 100%;
  }
  .company-card p {
    font-size: 0.9rem;
  }

  .services-section {
    padding: 30px 10px;
  }

  .business-grid {
    gap: 15px;
  }

  footer{
    height: auto;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .footer-logo {
    width: 140px;
  }
  .slider_top_btn{
    width: 40px;
    height: 40px;
  }
  .section-title {
    font-size: 30px;
  }

  .about-details {
    padding: 60px 15px;
  }

  .company-info1 {
    padding: 30px;
  }

  .company-info1 p {
    font-size: 16px;
    line-height: 1.6;
  }

  .company-info1 strong {
    width: 120px;
  }
}

