/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f0f0;
}

h1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700; /* Bold */
}

h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700; /* Bold */
}


header {
    color: #fff;
    text-align: center;
    width: 100%;
    top: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
}

.nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #e5663c;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

/* Parallax Backgrounds */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background-image-1 {
    background-image: url('img/background-image-1.jpg');
}

.background-image-2 {
    background-image: url('img/background-image-2.jpg');
}

.background-image-3 {
    background-image: url('img/background-image-3.jpg');
}

.background-image-4 {
    background-image: url('img/background-image-4.jpg');
}

.hero-section {
    text-align: center;
}

.hero-section {
    max-width: 100%;
    margin: auto;
    height: 500px;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;  
    padding: 100px;
    color: #000;
}

.hero-btn {
    background: #ff6f61;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.hero-btn:hover {
    background: #e65e53;
}

.services-section,
.testimonials-section,
.about-section,
.contact-section {
    color: #333;
    text-align: center;
    padding: 50px 20px;
}

.services-section h2,
.testimonials-section h2,
.about-section h2,
.contact-section h2 {
    margin-bottom: 20px;
}

.services-container,
.testimonials-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service-box,
.testimonial-box {
    background: #fff;
    margin: 10px;
    padding: 20px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-box i {
    font-size: 40px;
    color: #ff6f61;
    margin-bottom: 10px;
}

.testimonial-box p {
    font-style: italic;
}

.testimonial-box h4 {
    margin-top: 10px;
    font-weight: bold;
}

.about-section p {
    max-width: 600px;
    margin: auto;
}

.contact-section form {
    max-width: 600px;
    margin: auto;
}

.contact-section input,
.contact-section textarea,
.contact-section button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box; /* Ensure padding and border are included in width */
}

.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section input[type="tel"],
.contact-section textarea {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-section textarea {
    resize: vertical; /* Allow vertical resize */
}

.contact-section button {
    background: #ff6f61;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-section button:hover {
    background: #e65e53;
}

.login-link {
    margin-top: 20px;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    clear: both;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 5px 0;
    }

    .services-container,
    .testimonials-container {
        display: block;
    }

    .service-box,
    .testimonial-box {
        margin: 10px auto;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }
}

.expertise-section {
    color: #333;
    text-align: center;
    padding: 50px 20px;
}

.expertise-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.expertise-box {
    background: #fff;
    margin: 10px;
    padding: 20px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.expertise-box:hover {
    transform: translateY(-5px);
}

.expertise-box i {
    font-size: 40px;
    color: #ff6f61;
    margin-bottom: 10px;
}

.expertise-box h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.expertise-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}


.expertise-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700; /* Bold */

}

.expertise-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400; /* Bold */
}

.learn-more-btn {
    display: inline-block;
    background-color: #6c63ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #5246c6;
}

.highlight {
    font-weight: bold;
    color: #ff9800;
}

.footer{
    background: #152F4F;
    color:white;
    
    .links{
      ul {list-style-type: none;}
      li a{
        color: white;
        transition: color .2s;
        &:hover{
          text-decoration:none;
          color:#4180CB;
          }
      }
    }  
    .about-company{
      i{font-size: 25px;}
      a{
        color:white;
        transition: color .2s;
        &:hover{color:#4180CB}
      }
    } 
    .location{
      i{font-size: 18px;}
    }
    .copyright p{border-top:1px solid rgba(255,255,255,.1);} 
  }