/* General Styles */
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 4.5rem; /* Larger font size for the main title */
    text-shadow: 0 0 15px #00ffff, 0 0 25px #ff00ff; /* Strong text shadow */
    color: white; /* Bright color */
    letter-spacing: 1px;
    animation: rainbow 5s linear infinite; /* Holographic effect */
    -webkit-text-stroke: 1px black;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
}

a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff00ff;
}

/* Keyframes for holographic effect */
@keyframes rainbow {
    0% {
        text-shadow: 0 0 15px #00ffff, 0 0 25px #ff00ff;
        color: white;
    }
    25% {
        text-shadow: 0 0 15px #ff00ff, 0 0 25px #00ffff;
        color: #f0f0f0;
    }
    50% {
        text-shadow: 0 0 15px #00ffff, 0 0 25px #ff00ff;
        color: white;
    }
    75% {
        text-shadow: 0 0 15px #ff00ff, 0 0 25px #00ffff;
        color: #f0f0f0;
    }
    100% {
        text-shadow: 0 0 15px #00ffff, 0 0 25px #ff00ff;
        color: white;
    }
}

/* Header Styles */
header {
    background-color: rgba(18, 18, 18, 0.7);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 40px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 30px;
}

header nav ul li:first-child {
    margin-left: 0;
}

header nav ul li a {
    color: #ffffff;
    font-weight: 500;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #00ffff;
}


/* Hero Section Styles */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/hero-banner.png') no-repeat center center/cover;
    position: relative;
    overflow: hidden; /* Ensures parallax stays within the section */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for better text readability */
    z-index: 1;
}

.parallax {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

.hero-content {
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem; /* Main Title Size */
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: rainbow 5s linear infinite; /* Holographic effect */
    -webkit-text-stroke: 1px black;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00ffff;
    color: #121212;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff00ff;
    color: #ffffff;
}

/* About Section Styles */
.about {
    background-color: #1a1a1a;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-text ul li {
    padding-left: 1.5em;
    margin-bottom: 10px;
    position: relative;
}

.about-text ul li::before {
    content: "\f00c"; /* Font Awesome check mark */
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 2px;
    color: #00ffff;
}

/* Features Section Styles */
.features {
    background-color: #121212;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-item p {
    font-size: 1rem;
    color: #cccccc;
}

/* Gallery Section Styles */
.gallery {
    background-color: #1a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Client Logos Section Styles */
.clients {
    background-color: #1a1a1a;
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.client-logos img {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logos img:hover {
    opacity: 1;
}

/* Testimonials Section Styles */
.testimonials {
    background-color: #121212;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
}

.testimonial {
    flex: 0 0 80%;
    min-width: 80%;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
    scroll-snap-align: start;
}

.testimonial:last-child {
    margin-right: 0;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 15px;
}

.testimonial .author {
    font-style: italic;
    font-size: 1rem;
    color: #f0f0f0;
}

/* Contact Section Styles */
.contact {
    background-color: #1a1a1a;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: #121212;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333333;
    border-radius: 5px;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
}

.form-group textarea {
    resize: vertical;
    height: 150px;
}

.submit-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00ffff;
    color: #121212;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.submit-button:hover {
    background-color: #ff00ff;
    color: #ffffff;
}

/* Newsletter Signup Section */
.newsletter-signup {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #121212;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-signup h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.newsletter-signup p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.newsletter-signup form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-signup input {
    padding: 12px 15px;
    border: 1px solid #333333;
    border-radius: 5px;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    width: 300px;
}

.newsletter-signup button {
    padding: 12px 25px;
    background-color: #00ffff;
    color: #121212;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.newsletter-signup button:hover {
    background-color: #ff00ff;
    color: #ffffff;
}



/* Footer Styles */
footer {
    background-color: #121212;
    padding: 40px 0;
    border-top: 1px solid #222;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.footer-links ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #00ffff;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #666666;
    margin-top: 20px;
}

/* Live Chat Widget Styles */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.live-chat-widget button {
    padding: 15px 25px;
    background-color: #00ffff;
    color: #121212;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.live-chat-widget button:hover {
    background-color: #ff00ff;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        width: 95%;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        width: 80%;
        margin: 0 auto 30px;
    }

    .client-logos img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }

    header .logo {
        margin-bottom: 15px;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .testimonials-slider {
        scroll-snap-type: none;
        overflow-x: scroll;
    }

    .testimonial {
        flex: 0 0 90%;
        min-width: 90%;
        margin-right: 15px;
    }

    .newsletter-signup form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-signup input {
        width: 100%;
        margin-bottom: 10px;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links ul {
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul li {
        margin: 10px 0;
    }

    .footer-copyright {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .client-logos img {
        height: 40px;
    }
}

/* Additional Styles for a "human touch" */
.about-text p:nth-child(even) {
    text-align: justify;
}

.feature-item:nth-child(odd) {
    background-color: #1e1e1e; /* Slightly different shade */
}

.testimonials-slider::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 4px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background-color: #1a1a1a;
    border-radius: 4px;
}

/* Font Awesome Integration (Add this to your HTML's <head> section) */
/*<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />*/