/* =================================
   RESET & GLOBAL
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    overflow-x:hidden;
    min-width:320px;
}

html{
    -webkit-text-size-adjust:100%;
}

.container{
    width:min(1140px,100% - 2.5rem);
    margin-inline:auto;
}

/* =================================
   TOP BAR
================================= */

.top-bar{
    background:#0fb4dd;
    color:#fff;
    font-size:16px;
    padding:7px 0;
}

.top-bar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
}

/* =================================
   HEADER
================================= */

.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:.8rem 0;
    gap:15px;
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:50px;
    height:50px;
    border-radius:50%;
}

.logo-text{
    font-size:1.1rem;
    color:#222;
    font-weight:700;
    white-space:nowrap;
}

/* NAV */

.nav{
    flex:1;
    display:flex;
    justify-content:center;
}

.nav-list{
    list-style:none;
    display:flex;
    align-items:center;
    gap:1.8rem;
}

.nav-link{
    text-decoration:none;
    color:#555;
    font-size:.95rem;
    position:relative;
    padding-bottom:.2rem;
}

.nav-link:hover,
.nav-link.active{
    color:#0fb4dd;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#0fb4dd;
    transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

/* NAV TOGGLE */

.nav-toggle{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
}

.nav-toggle span{
    display:block;
    width:25px;
    height:3px;
    background:#222;
    margin:5px 0;
    border-radius:5px;
}

/* =================================
   BUTTONS
================================= */

.btn{
    border-radius:999px;
    padding:.7rem 1.5rem;
    border:none;
    text-decoration:none;
    font-size:.9rem;
    font-weight:500;
    cursor:pointer;
    transition:.3s;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-outline{
    border:2px solid #0fb4dd;
    color:#fff;
    background:#0fb4dd;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
    transform:translateY(-3px);
}

.call{
    background:#ff3b30;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
}

.whatsapp{
    background:#25d366;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
}

/* =================================
   HERO
================================= */

.hero{
    position:relative;
    overflow:hidden;
}

.hero-inner{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    min-height:100vh;
    padding:40px 5%;
    color:#fff;
   flex-wrap: wrap;
}

.bg-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:-1;
}

.hero-content{
    width:50%;
    background:rgba(255,255,255,.08);
    padding:40px;
    border-radius:20px;
    backdrop-filter:blur(10px);
    box-shadow:0 8px 32px rgba(0,0,0,.3);
    z-index:2;
   flex: 1;
    min-width: 300px;

}

.hero-img{
   flex: 1;
    min-width: 300px;
    text-align:center;
}

.hero-img img{
    width:100%;
    max-width:500px;
    height:auto;
    display:block;
   pading:5px 0;
}

/* HERO LIST */

.typing-list{
    padding-left:0;
    margin-top:15px;
}

.typing-list li{
    list-style:none;
    font-size:15px;
    line-height:1.8;
    white-space:nowrap;
}

/* HERO BRAND LOGOS */

.brand-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:40px;
    margin-top:10px;
}

.brand-logos img{
    width:70px;
    height:auto;
    object-fit:contain;
    background:rgba(255,255,255,0.08);
    padding:8px;
    border-radius:12px;
    transition:.3s ease;
}

.brand-logos img:hover{
    transform:translateY(-5px) scale(1.08);
}

/* =================================
   SERVICES
================================= */

.services{
    padding:70px 20px;
    background:#f5f7fb;
}

.section-top{
    text-align:center;
    max-width:700px;
    margin:0 auto 40px;
}

.section-top h2{
    font-size:32px;
    margin-bottom:10px;
    color:#111;
}

.section-top p{
    font-size:16px;
    line-height:1.7;
    color:#666;
}

.category{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:24px;
    font-weight:700;
    color:#10b4e8;
    margin-bottom:25px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.card{
    background:#fff;
    border-radius:22px;
    padding:30px;
    min-height:280px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s ease;
}

.card:hover{
    transform:translateY(-8px);
}

.icon-box{
    width:70px;
    height:70px;
    background:#eaf7fc;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.icon-box i{
    font-size:32px;
    color:#10b4e8;
}

.card h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.card p{
    font-size:16px;
    line-height:1.8;
    color:#666;
}

/* =================================
   DIGITAL SERVICES
================================= */

.digital-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    margin-top:30px;
}

.dark-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.dark-card:hover{
    transform:translateY(-8px);
}

.dark-icon{
    width:60px;
    height:60px;
    background:#eaf7fc;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.dark-icon i{
    font-size:28px;
    color:#10b4e8;
}

.dark-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.dark-card p{
    color:#666;
    line-height:1.7;
}

/* =================================
   PROCESS
================================= */

.process{
    padding:70px 20px;
}

.section-header{
    text-align:center;
    margin-bottom:40px;
}

.section-header h2{
    font-size:30px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-img img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.process-content{
    padding:20px;
}

/* =================================
   CONTACT SECTION
================================= */

.contact{
    padding:70px 20px;
    background:#f5f7fb;
}

/* LAYOUT */

.contact-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* LEFT TEXT */

.contact-text h2{
    font-size:38px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.contact-text p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin-bottom:25px;
}

/* LIST */

.contact-list{
    list-style:none;
    padding:0;
}

.contact-list li{
    font-size:16px;
    color:#333;
    margin-bottom:14px;
    line-height:1.7;
}

/* FORM BOX */

.form-container{
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    display:flex;
    flex-direction:column;
}

/* LABEL */

.form-container label{
    font-size:15px;
    font-weight:600;
    color:#111;
    margin-bottom:8px;
    margin-top:18px;
}

/* INPUTS */

.form-container input,
.form-container select,
.form-container textarea{
    width:100%;
    padding:14px 15px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    outline:none;
    transition:.3s ease;
    background:#fafafa;
}

/* FOCUS EFFECT */

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus{
    border-color:#10b4e8;
    background:#fff;
    box-shadow:0 0 0 4px rgba(16,180,232,0.12);
}

/* TEXTAREA */

.form-container textarea{
    min-height:120px;
    resize:none;
}

/* BUTTON */

#whatsappBtn{
    margin-top:25px;
    padding:15px;
    background:#25d366;
    color:#fff;
    border:none;
    border-radius:14px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease;
}

#whatsappBtn:hover{
    background:#1ebe5d;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* =================================
   TABLET RESPONSIVE
================================= */

@media(max-width:992px){

    .contact-inner{
        grid-template-columns:1fr;
        gap:40px;
    }

    .contact-text{
        text-align:center;
    }

}

/* =================================
   MOBILE RESPONSIVE
================================= */

@media(max-width:768px){

    .contact{
        padding:50px 15px;
    }

    .contact-text h2{
        font-size:28px;
    }

    .contact-text p{
        font-size:14px;
    }

    .contact-list li{
        font-size:14px;
    }

    .form-container{
        padding:25px;
    }

    .form-container input,
    .form-container select,
    .form-container textarea{
        font-size:14px;
        padding:12px;
    }

    #whatsappBtn{
        font-size:15px;
        padding:14px;
    }
.hero-inner{
        flex-direction: column;
        text-align: center;
}
}

/* =================================
   SMALL MOBILE
================================= */

@media(max-width:480px){

    .contact-text h2{
        font-size:24px;
    }

    .form-container{
        padding:20px;
    }

}

/* =================================
   FOOTER
================================= */

.footer{
    background:#111;
    color:#ddd;
    padding:50px 20px 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,auto);
    justify-content:space-between;
    gap:40px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    list-style:none;
}

.footer h4{
    margin-bottom:15px;
    color:#fff;
}

.footer p,
.footer a{
    font-size:14px;
    color:#bbb;
    text-decoration:none;
    line-height:1.7;
}

.footer a:hover{
    color:#0fb4dd;
}

.footer hr{
    border:none;
    height:1px;
    background:#333;
    margin:30px 0 15px;
}

.copyright{
    text-align:center;
    font-size:13px;
    color:#aaa;
}

/* =================================
   WHATSAPP FLOAT
================================= */

.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:80px;
    right:15px;
    background:#25d366;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:60px;
    font-size:32px;
    z-index:1000;
    box-shadow:0 0 15px rgba(0,0,0,.3);
}

/* =================================
   RESPONSIVE
================================= */

/* LARGE */

@media(max-width:1200px){

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .digital-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* TABLET */

@media(max-width:992px){

    .hero-inner{
        flex-direction:column;
        text-align:center;
        padding:50px 20px;
    }

    .hero-content,
    .hero-img{
        width:100%;
    }

    .typing-list li{
        white-space:normal;
    }

    .contact-inner{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */

@media(max-width:768px){

    .top-bar-inner{
        flex-direction:column;
        gap:5px;
        text-align:center;
    }

    .logo img{
        width:40px;
        height:40px;
    }

    .logo-text{
        font-size:18px;
    }

    .nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        flex-direction:column;
        padding:20px 0;
    }

    .nav.active{
        display:flex;
    }

    .nav-list{
        flex-direction:column;
        gap:18px;
    }

    .nav-toggle{
        display:block;
    }

    .hero-inner{
        padding:30px 15px;
    }

    .hero-content{
        width:100%;
        padding:20px;
    }

    .hero-content h1{
        font-size:28px;
    }

    .typing-list li{
        white-space:normal;
        font-size:14px;
    }

    .brand-logos{
        gap:18px;
    }

    .brand-logos img{
        width:55px;
    }

    .service-grid,
    .digital-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .card,
    .dark-card{
        min-height:auto;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .logo-text{
        font-size:15px;
    }

    .hero-content h1{
        font-size:24px;
    }

    .card h3,
    .dark-card h3{
        font-size:20px;
    }

    .card p,
    .dark-card p{
        font-size:14px;
    }

    .brand-logos img{
        width:45px;
    }

}
/* =================================
   DESKTOP VIEW FIX FOR ALL DEVICES
================================= */

/* 
Phone madhye suddha browser "Desktop Site"
kela tar layout desktop sarkhach disel
*/
html{
    -webkit-text-size-adjust:100%;
}

body{
    min-width:320px;
    overflow-x:hidden;
}
