/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#111;
    overflow-x:hidden;
}

/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 7%;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(10px);

    position:fixed;
}

..langSwitcher{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:40px;
}

.langSwitcher a{
    text-decoration:none;
    color:#fff;
    font-size:14px;
    font-weight:600;
    padding:6px 12px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:20px;
    transition:.3s;
}

.langSwitcher a:hover{
    background:#00bfff;
    border-color:#00bfff;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    max-height:60px;
}

.logoText{
    display:flex;
    flex-direction:column;
}

.logoTitle{
    color:#fff;
    font-size:24px;
    font-weight:700;
}

.logoSlogan{
    color:#ddd;
    font-size:13px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    display:flex;
    align-items:center;
    gap:35px;
}

.langSwitcher{
    position:absolute;
    right:80px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    gap:10px;
}

.langSwitcher a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    padding:5px 10px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:20px;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

.navbar a:hover{
    color:#00bfff;
}

.menuBtn{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.slider{
    position:absolute;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    z-index:1;
}

.heroContent{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.heroContent h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.heroContent p{
    max-width:850px;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    color:#ddd;
}

.heroButtons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primaryBtn,
.secondaryBtn{
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:0.3s;
    font-weight:600;
}

.primaryBtn{
    background:#00bfff;
    color:#fff;
}

.primaryBtn:hover{
    background:#0095cc;
}

.secondaryBtn{
    border:2px solid #fff;
    color:#fff;
}

.secondaryBtn:hover{
    background:#fff;
    color:#111;
}

.langSwitcher{
    position:fixed;
    top:25px;
    right:40px;
    z-index:9999;
    display:flex;
    gap:10px;
}

.langSwitcher a{
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#fff;
    text-decoration:none;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.langSwitcher a:hover{
    background:#00bfff;
}


/* =========================
   SECTION TITLE
========================= */

.sectionTitle{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
    font-weight:700;
    color:#111;
}

/* =========================
   SERVICES
========================= */

.services{
    padding:120px 7%;
    background:#fff;
}

.serviceGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

.serviceCard{
    background:#fff;
    border-radius:25px;
    padding:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    transition:0.4s;
    overflow:hidden;
    height:100%;
}

.serviceCard:hover{
    transform:translateY(-10px);
}

.serviceCard i{
    font-size:55px;
    margin-bottom:25px;
    color:#00bfff;
}

.serviceImage{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:20px;
}

/* SLIDER */

.serviceSlider{
    width:100%;
    overflow:hidden;
    border-radius:24px 24px 0 0;
}

.swiper-slide{
    width:100%;
}

.swiper-slide img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

.serviceBanner{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}
.dynamicServiceTitle{
    line-height:1.3 !important;
    margin-bottom:15px !important;
    color:#111 !important;
    font-weight:700 !important;
    word-break:break-word;
}

.dynamicServiceDesc{
    line-height:1.8 !important;
    color:#666 !important;
    word-break:break-word;
}

/* =========================
   STATS
========================= */

.stats{
    padding:100px 7%;
    background:#0f172a;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    text-align:center;
}

.statBox{
    color:#fff;
}

.statBox h2{
    font-size:52px;
    margin-bottom:10px;
    color:#00bfff;
}

.statBox p{
    font-size:18px;
}

/* =========================
   ABOUT
========================= */

.about{
    padding:120px 7%;
    background:#ffffff;
}

.aboutContainer{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:60px;
    align-items:center;
}

.aboutText{
    text-align:left;
}

.aboutText h2{
    font-size:46px;
    color:#111827;
    margin-bottom:25px;
    position:relative;
    padding-left:20px;
}

.aboutText h2:before{
    content:'';
    position:absolute;
    left:0;
    top:8px;
    width:6px;
    height:40px;
    border-radius:20px;
    background:#00bfff;
}

.aboutText p{
    font-size:17px;
    line-height:2;
    color:#4b5563;
}

.aboutBox{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.aboutItem{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:25px;
}

.aboutItem:last-child{
    margin-bottom:0;
}

.aboutItem i{
    color:#00bfff;
    font-size:24px;
    margin-top:4px;
}

.aboutItem h4{
    margin-bottom:6px;
    color:#111827;
}

.aboutItem p{
    color:#6b7280;
    font-size:14px;
    line-height:1.7;
}

/* =========================
   BLOG
========================= */

.blogs{
    padding:120px 7%;
    background:#f5f7fb;
}

.blogGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.blogCard{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.35s;
    border:1px solid #edf2f7;
}

.blogCard:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

.blogImage{
    width:100%;
    height:210px;
    object-fit:cover;
}

.blogContent{
    padding:24px;
}

.blogContent h2{
    font-size:22px;
    margin-bottom:15px;
}

.blogContent p{
    line-height:1.8;
    color:#666;
    margin-bottom:20px;
}

.blogBtn{
    display:inline-block;
    padding:10px 22px;
    background:#00bfff;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    transition:0.3s;
}

.blogBtn:hover{
    background:#0095cc;
}

/* =========================
   CONTACT
========================= */

.contact{
    padding:120px 7%;
    background:#f8fafc;
}

.contactWrapper{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;
    align-items:start;
}

.contactInfo{
    background:#0f172a;
    color:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.contactInfo h3{
    font-size:30px;
    margin-bottom:20px;
}

.contactInfo p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:35px;
}

.contactItem{
    display:flex;
    gap:15px;
    margin-bottom:25px;
    align-items:flex-start;
}

.contactItem i{
    width:45px;
    height:45px;
    background:#00bfff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.contactItem span{
    line-height:1.7;
}

.contactForm{
    background:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
}

.contactForm input,
.contactForm textarea{
    width:100%;
    padding:18px 20px;
    margin-bottom:20px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    background:#fff;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.contactForm input:focus,
.contactForm textarea:focus{
    border-color:#00bfff;
}

.contactForm textarea{
    min-height:200px;
    resize:none;
}

.contactForm button{
    width:100%;
    border:none;
    background:#00bfff;
    color:#fff;
    padding:18px;
    border-radius:14px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contactForm button:hover{
    background:#0095cc;
}

.contactIntro{
    max-width:800px;
    margin:0 auto 40px;
    text-align:center;
}

.contactIntro p{
    color:#64748b;
    font-size:17px;
    line-height:1.8;
}

.privacyBox{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:15px 18px;
    margin-bottom:20px;
}

.privacyLabel{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    cursor:pointer;
    font-size:14px;
    line-height:1.6;
    color:#555;
}

.privacyLabel span{
    flex:1;
}

.privacyLabel input[type="checkbox"]{
    width:20px;
    height:20px;
    margin-top:3px;
    flex-shrink:0;
}

.privacyBox{
    margin-bottom:25px;
    padding:15px 18px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:12px;
}

.privacyBox label{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:14px;
    color:#555;
    line-height:1.6;
    cursor:pointer;
}

.successMessage{
    max-width:900px;
    margin:0 auto 25px auto;
    padding:15px;
    background:#dcfce7;
    border:1px solid #86efac;
    color:#166534;
    border-radius:12px;
    text-align:center;
    font-weight:600;
}

.privacyBox input[type="checkbox"]{
    margin-top:4px;
    transform:scale(1.2);
    cursor:pointer;
}

@media(max-width:991px){

    .contactWrapper{
        grid-template-columns:1fr;
    }

}

/* =========================
   FOOTER
========================= */

.footer{
    background:#0f172a;
    color:#fff;
    text-align:center;
    padding:35px 20px;
}

.footer p{
    font-size:15px;
    color:#ccc;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .serviceGrid{
        grid-template-columns:repeat(3,1fr);
    }

    .blogGrid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .navbar{
        position:fixed;
        top:90px;
        right:-100%;
        width:280px;
        height:calc(100vh - 90px);
        background:#111827;
        flex-direction:column;
        padding-top:40px;
        transition:0.4s;
    }

    .navbar.active{
        right:0;
    }

    .menuBtn{
        display:block;
    }

    .heroContent h1{
        font-size:42px;
    }

    .heroContent p{
        font-size:16px;
    }

    .sectionTitle{
        font-size:34px;
    }

    .serviceGrid{
        grid-template-columns:repeat(2,1fr);
    }

    .blogGrid{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .heroContent h1{
        font-size:32px;
    }

    .heroButtons{
        flex-direction:column;
        width:100%;
    }

    .primaryBtn,
    .secondaryBtn{
        width:100%;
        text-align:center;
    }

    .serviceCard{
        padding:25px;
    }

    .aboutText h2{
        font-size:32px;
    }

    .serviceGrid{
        grid-template-columns:1fr;
    }

    .logoTitle{
        font-size:18px;
    }

.langSwitcher{
    position:fixed;
    top:100px;
    right:20px;
    z-index:9999;
    display:flex;
    gap:10px;
}

.langSwitcher a{
    background:#ffffff;
    color:#111;
    text-decoration:none;
    padding:8px 12px;
    border-radius:10px;
    font-weight:600;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.langSwitcher a:hover{
    background:#00bfff;
    color:#fff;
}

}