/* =========================
   GLOBAL STYLES
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    color:#222;
    background:#fff;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
    color:inherit;
}

section{
    padding:90px 8%;
}

h1,
h2,
h3{
    color:inherit;
}

.section-heading{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
}

.section-heading h2{
    font-size:2.4rem;
    margin-bottom:15px;
}

.section-heading p{
    font-size:1.1rem;
    color:#666;
}

.services .section-heading,
.who-we-help .section-heading,
.projects .section-heading,
.testimonials .section-heading{
    color:#fff;
}

.services .section-heading p,
.projects .section-heading p,
.testimonials .section-heading p{
    color:#ccc;
}

/* =========================
   NAVIGATION
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 60px;
    background:rgba(15,15,15,.85);
    backdrop-filter:blur(8px);
}

.logo img{
    height:100px;
    width:auto;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

.nav-links a{
    color:#fff;
    font-weight:600;
    transition:.25s;
}

.nav-links a:hover{
    color:#ff2b7a;
}

/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-secondary{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:14px 26px;
    border-radius:6px;
    font-weight:bold;
    transition:.25s;
}

.btn-primary{
    background:#ff2b7a;
    color:#fff;
}

.btn-primary:hover{
    background:#c81f60;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}

.btn-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:12px 22px;
    border-radius:6px;
    background:#ff2b7a;
    color:#fff;
    font-weight:bold;
    transition:.25s;
}

.btn-nav:hover{
    background:#c81f60;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    display:flex;
    align-items:center;
    min-height:100vh;
    background:url("index files/BG_01.jpg") center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    padding-top:60px;
    color:#fff;
}

.eyebrow{
    margin-bottom:20px;
    color:#ff2b7a;
    font-weight:bold;
    letter-spacing:3px;
    text-transform:uppercase;
}

.hero h1{
    margin-bottom:30px;
    font-size:4rem;
    line-height:1.1;
}

.hero-text{
    max-width:720px;
    margin-bottom:35px;
    font-size:1.25rem;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

/* =========================
   TRUST BAR
========================= */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    background:#111;
    color:#fff;
}

.stat-card{
    text-align:center;
}

.stat-card h2{
    margin-bottom:6px;
    color:#ff2b7a;
    font-size:2rem;
}

.stat-card p{
    color:#ddd;
    font-size:1rem;
}

/* =========================
   SERVICES
========================= */

.services{
    background:#111;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    background:#1a1a1a;
    padding:35px;
    border-radius:12px;
    color:#fff;
    border:1px solid rgba(255,255,255,.05);
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:transform .25s, box-shadow .25s;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(255,43,122,.18);
}

.service-card h3{
    margin-bottom:15px;
    color:#ff2b7a;
}

.service-card p{
    color:#ddd;
}

/* =========================
   WHO WE HELP
========================= */

.who-we-help{
    background:#0f0f0f;
}

.help-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.help-item{
    padding:25px;
    background:#1a1a1a;
    border-left:5px solid #ff2b7a;
    color:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/* =========================
   PROJECTS
========================= */

.projects{
    background:#111;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:40px;
}

.project-card{
    display:flex;
    flex-direction:column;
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    overflow:hidden;
    color:#fff;
    transition:transform .25s, box-shadow .25s;
}

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(255,43,122,.25);
}

.project-card img{
    width:100%;
    height:320px;
    object-fit:contain;
    background:#111;
    padding:10px;
}

.project-card h3{
    padding:10px 18px 6px;
    font-size:1.1rem;
    font-weight:700;
    text-align:center;
}

.project-card h4{
    padding:10px 18px 0px;
    font-size:1.1rem;
    font-weight:700;
    text-align:center;
}

.project-card h5{
    padding:0px 18px 10px;
    font-size:1.1rem;
    font-weight:700;
    text-align:center;
}

.project-card p{
    padding:0 18px 22px;
    color:#ccc;
    text-align:center;
    font-size:.95rem;
}
.project-card p1{
    padding:0 18px 0px;
    color:#ccc;
    text-align:center;
    font-size:.65rem;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials{
    background:#111;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.testimonial-card{
    padding:35px;
    background:#1a1a1a;
    border-radius:12px;
    color:#fff;
    border:1px solid rgba(255,255,255,.05);
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.testimonial-card p{
    margin-bottom:20px;
    font-style:italic;
    color:#eee;
}

.testimonial-card span{
    color:#ff2b7a;
    font-weight:bold;
}
/* =========================
   JAPANESE SPECIALISTS
========================= */

.japanese-specialists{
    position:relative;
    background:url("index files/japan-dark-background-art.png") center center / cover no-repeat;
    border-top:1px solid rgba(255,43,122,.15);
    border-bottom:1px solid rgba(255,43,122,.15);
    padding:120px 10%;
    overflow:hidden;
}

.japanese-specialists .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.japanese-specialists .content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.japanese-specialists h2{
    font-size:3rem;
    margin-bottom:25px;
}

.japanese-specialists p{
    font-size:1.15rem;
    margin-bottom:20px;
    color:#eee;
}

/* =========================
   DEVELOP CTA
========================= */

.develop-section{
    background:#111;
    text-align:center;
    color:#fff;
}

.develop-box{
    max-width:900px;
    margin:0 auto;
}

.develop-box h2{
    font-size:3rem;
    margin-bottom:20px;
}

.develop-box p{
    font-size:1.2rem;
    margin-bottom:35px;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:700px;
    background:url("index files/BG_05.jpg") 78% center / cover no-repeat;
}

.contact-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.82);
}

.contact-content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:900px;
    margin:0 auto;
    color:#fff;
}

.contact-content h2{
    font-size:3.2rem;
    margin-bottom:25px;
}

.contact-content p{
    font-size:1.15rem;
    margin-bottom:20px;
}

.contact-services{
    color:#ff2b7a;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:25px;
}

.contact-form-title{
    margin:30px 0 20px;
    color:#fff;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:15px;

    width:100%;
    max-width:600px;

    margin:30px auto;

    padding:30px;

    background:rgba(0,0,0,.65);

    border-radius:12px;

    box-sizing:border-box;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:15px;
    background:#161616;
    color:#fff;
    border:1px solid rgba(255,255,255,.12);
    border-radius:8px;
    font-size:1rem;
}

.contact-form textarea{
    min-height:140px;
    resize:vertical;
}

.g-recaptcha{
    display:flex;
    justify-content:center;
    width:100%;
    margin:20px auto;
    transform:scale(.88);
    transform-origin:center top;
}

.contact-form button{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:20px auto 0;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin:35px 0;
}

.contact-details{
    margin-top:30px;
    text-align:center;
}

.contact-details p{
    margin-bottom:10px;
}
/* =========================
   FOOTER
========================= */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:40px 20px;
}

.footer-logo{
    width:220px;
    margin:0 auto 20px;
}

/* =========================
   ANCHOR OFFSET
========================= */

#services,
#projects,
#testimonials,
#contact{
    scroll-margin-top:140px;
}

/* =========================
   TABLET
========================= */

@media (max-width:1024px){

    .navbar{
        padding:16px 30px;
    }

    .logo img{
        height:80px;
    }

    .btn-nav{
        display:none;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .help-grid{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
        padding:12px 20px;
    }

    .logo img{
        height:60px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .hero{
        min-height:100vh;
        padding-top:220px;
        padding-bottom:60px;
    }

    .hero-content{
        width:100%;
        max-width:100%;
        text-align:center;
        padding-top:0;
    }

    .hero h1{
        font-size:2rem;
        line-height:1.2;
    }

    .hero-text{
        font-size:1rem;
        width:100%;
        overflow-wrap:anywhere;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-buttons a{
        width:100%;
        max-width:340px;
    }

    section{
        padding:70px 25px;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .project-grid{
        grid-template-columns:1fr;
    }

    .project-card img{
        height:300px;
    }

    .japanese-specialists .content{
        max-width:100%;
        text-align:center;
    }

    .japanese-specialists h2{
        font-size:2rem;
    }

    .develop-box h2{
        font-size:2.2rem;
    }

    .contact-content{
        width:100%;
        max-width:100%;
        margin:0 auto;
        text-align:center;
    }

    .contact-content h2{
        font-size:2rem;
        line-height:1.2;
    }

    .contact-form{
        width:100%;
        max-width:100%;
        padding:20px;
        margin:30px auto;
        box-sizing:border-box;
    }

    .contact-buttons{
        flex-direction:column;
        align-items:center;
    }

    .contact-buttons a{
        width:100%;
        max-width:340px;
        margin:0 auto;
        box-sizing:border-box;
    }

    .g-recaptcha{
        transform:scale(.88);
        transform-origin:center top;
    }

}