*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#111827;
    overflow-x:hidden;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1350px;
    margin:auto;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    background:white;
    border-bottom:1px solid #e5e7eb;
}

.navbar{
    min-height:100px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */

.logo img{
    height:95px;
}

/* NAV */

nav{
    display:flex;
    gap:45px;
}

nav a{
    text-decoration:none;
    color:#111827;
    font-weight:500;
    transition:0.3s;
}

nav a:hover,
nav a.active{
    color:#2563eb;
}

/* BUTTON */

.header-btn{
    background:
    linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color:white;

    text-decoration:none;

    padding:16px 34px;

    border-radius:14px;

    font-weight:600;

    transition:0.3s;
}

.header-btn:hover{
    transform:translateY(-3px);
}

/* HERO */

.hero{
    min-height:100vh;

    background:
    radial-gradient(circle at top right,
    rgba(37,99,235,0.22),
    transparent 40%),

    #050816;

    padding-top:180px;

    position:relative;
}

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT */

.hero-left{
    flex:1;
}

.hero-badge{
    display:inline-block;

    padding:14px 24px;

    border:1px solid rgba(37,99,235,0.4);

    border-radius:50px;

    color:#3b82f6;

    margin-bottom:30px;

    font-size:14px;
}

.hero-left h1{
    font-size:78px;
    line-height:1.05;
    color:white;

    margin-bottom:30px;

    font-weight:800;
}

.hero-left h1 span{
    color:#2563eb;
}

.hero-left p{
    color:#cbd5e1;

    font-size:20px;

    line-height:1.9;

    max-width:700px;

    margin-bottom:40px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:20px;

    margin-bottom:40px;
}

.primary-btn{
    background:#2563eb;
    color:white;

    padding:18px 34px;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    transition:0.3s;
}

.primary-btn:hover{
    transform:translateY(-4px);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.15);

    color:white;

    padding:18px 34px;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;
}

/* CLIENTS */

.clients-row{
    display:flex;
    align-items:center;
    gap:12px;

    color:white;
}

.client-circle{
    width:45px;
    height:45px;

    border-radius:50%;

    background:#2563eb;

    border:2px solid #050816;

    margin-left:-10px;
}

/* RIGHT */

.hero-right{
    flex:1;

    display:flex;
    justify-content:center;
}

/* LAPTOP */

.laptop-box{
    width:100%;
    max-width:650px;

    background:#0f172a;

    border-radius:28px;

    padding:40px;

    border:1px solid rgba(255,255,255,0.06);

    box-shadow:
    0 40px 100px rgba(37,99,235,0.18);
}

.laptop-box img{
    width:100%;
}

/* FEATURES */

.features{
    margin-top:-80px;
    position:relative;
    z-index:10;
}

.feature-grid{
    background:#0f172a;

    border-radius:28px;

    padding:40px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

    border:1px solid rgba(255,255,255,0.06);
}

.feature-card{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.feature-icon{
    min-width:65px;
    height:65px;

    border-radius:18px;

    background:#111f3f;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#3b82f6;

    font-size:28px;
}

.feature-card h4{
    color:white;
    margin-bottom:8px;
}

.feature-card p{
    color:#cbd5e1;
    line-height:1.7;
}

/* ABOUT */

.about-home{
    padding:140px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-left span{
    color:#2563eb;
    font-weight:700;
}

.about-left h2{
    font-size:58px;
    margin:20px 0;
    line-height:1.2;
}

.about-left p{
    color:#6b7280;
    line-height:2;
    margin-bottom:25px;
}

.about-left ul{
    margin-bottom:35px;
}

.about-left ul li{
    margin-bottom:16px;
    color:#111827;
}

.office-box{
    background:#050816;

    padding:50px;

    border-radius:30px;
}

.office-box img{
    width:100%;
}

/* CTA */

.cta-section{
    padding-bottom:120px;
}

.cta-box{
    background:
    linear-gradient(
        135deg,
        #050816,
        #0f172a
    );

    padding:70px;

    border-radius:30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cta-box h2{
    color:white;
    font-size:48px;
    margin-bottom:10px;
}

.cta-box p{
    color:#cbd5e1;
}

/* WHATSAPP */

.whatsapp-btn{
    position:fixed;

    right:25px;
    bottom:25px;

    background:#25D366;

    color:white;

    text-decoration:none;

    padding:16px 28px;

    border-radius:60px;

    font-weight:600;

    z-index:999;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .hero-wrapper,
    .about-grid{
        grid-template-columns:1fr;
        display:grid;
    }

    .hero-left{
        text-align:center;
    }

    .hero-buttons,
    .clients-row{
        justify-content:center;
    }

    .hero-left h1{
        font-size:58px;
    }
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
        padding:20px 0;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .hero{
        padding-top:260px;
    }

    .hero-left h1{
        font-size:42px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .cta-box{
        flex-direction:column;
        gap:30px;
        text-align:center;
    }

    .cta-box h2{
        font-size:34px;
    }
}

/* =========================
ABOUT PAGE
========================= */

.about-hero{
    position:relative;
    padding-top:220px;
    padding-bottom:120px;
    overflow:hidden;
    background:#eef2fb;
}

.about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.about-left{
    flex:1;
}

.about-tag{
    display:inline-block;
    background:#dbe7ff;
    color:#2563eb;
    padding:14px 24px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:28px;
}

.about-left h1{
    font-size:64px;
    line-height:1.15;
    color:#08122e;
    margin-bottom:30px;
    font-weight:800;
}

.about-left p{
    font-size:20px;
    line-height:1.9;
    color:#5b6780;
    margin-bottom:40px;
    max-width:700px;
}

.about-stats{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.about-stat-box{
    background:white;
    padding:28px 35px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(37,99,235,0.08);
    min-width:180px;
}

.about-stat-box h3{
    font-size:36px;
    color:#2563eb;
    margin-bottom:10px;
}

.about-stat-box span{
    color:#64748b;
    font-size:15px;
}

.about-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.about-image-box{
    background:white;
    padding:50px;
    border-radius:40px;
    box-shadow:0 30px 80px rgba(37,99,235,0.10);
}

.about-image-box img{
    width:100%;
    max-width:500px;
}

.about-blur{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
}

.about-blur1{
    width:300px;
    height:300px;
    background:rgba(37,99,235,0.15);
    top:100px;
    right:-80px;
}

.about-blur2{
    width:250px;
    height:250px;
    background:rgba(59,130,246,0.15);
    bottom:0;
    left:-80px;
}

/* COMPANY */

.company-section{
    padding:100px 0;
    background:white;
}

.company-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.company-card{
    background:#f8fbff;
    border-radius:28px;
    padding:45px;
    transition:0.3s;
    border:1px solid rgba(37,99,235,0.08);
}

.company-card:hover{
    transform:translateY(-8px);
}

.company-icon{
    font-size:42px;
    margin-bottom:20px;
}

.company-card h3{
    font-size:30px;
    margin-bottom:18px;
    color:#08122e;
}

.company-card p{
    color:#64748b;
    line-height:1.9;
    font-size:16px;
}

/* TECHNOLOGY */

.technology-section{
    padding:110px 0;
    background:#eef2fb;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
}

.section-title h2{
    font-size:52px;
    margin:20px 0;
    color:#08122e;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    line-height:1.9;
    font-size:18px;
}

.tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
}

.tech-card{
    background:white;
    padding:35px;
    text-align:center;
    border-radius:24px;
    font-size:20px;
    font-weight:700;
    color:#08122e;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    transition:0.3s;
}

.tech-card:hover{
    background:#2563eb;
    color:white;
    transform:translateY(-6px);
}

/* CTA */

.about-cta{
    padding:100px 0;
    background:white;
}

.cta-box{
    background:linear-gradient(135deg,#2563eb,#1e40af);
    border-radius:40px;
    padding:70px;
    color:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.cta-box h2{
    font-size:52px;
    margin-bottom:20px;
}

.cta-box p{
    font-size:18px;
    line-height:1.9;
    opacity:0.95;
}

.cta-btn{
    background:white;
    color:#2563eb;
    padding:20px 40px;
    border-radius:18px;
    text-decoration:none;
    font-weight:700;
    white-space:nowrap;
}

/* RESPONSIVE */

@media(max-width:992px){

    .about-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .about-stats{
        justify-content:center;
    }

    .cta-box{
        flex-direction:column;
        text-align:center;
    }

    .about-left h1{
        font-size:48px;
    }

    .section-title h2{
        font-size:40px;
    }
}

@media(max-width:768px){

    .about-left h1{
        font-size:38px;
    }

    .cta-box{
        padding:40px 30px;
    }

    .cta-box h2{
        font-size:36px;
    }

    .about-image-box{
        padding:25px;
    }
}


/* =========================
SERVICES PAGE
========================= */

.services-hero{
    position:relative;
    padding-top:220px;
    padding-bottom:120px;
    overflow:hidden;
    background:#eef2fb;
}

.services-hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.services-hero-left{
    flex:1;
}

.service-badge{
    display:inline-block;
    background:#dbe7ff;
    color:#2563eb;
    padding:14px 24px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:30px;
}

.services-hero-left h1{
    font-size:74px;
    line-height:1.1;
    margin-bottom:30px;
    color:#08122e;
    font-weight:800;
}

.services-hero-left p{
    font-size:20px;
    line-height:1.9;
    color:#64748b;
    max-width:700px;
    margin-bottom:45px;
}

.services-hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.services-hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.services-image-card{
    background:white;
    padding:60px;
    border-radius:40px;
    box-shadow:0 30px 80px rgba(37,99,235,0.10);
}

.services-image-card img{
    width:100%;
    max-width:450px;
}

.services-blur{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
}

.blur-a{
    width:350px;
    height:350px;
    background:rgba(37,99,235,0.15);
    top:120px;
    right:-120px;
}

.blur-b{
    width:280px;
    height:280px;
    background:rgba(59,130,246,0.15);
    left:-100px;
    bottom:0;
}

/* MAIN */

.services-main{
    padding:120px 0;
    background:white;
}

.services-heading{
    text-align:center;
    margin-bottom:80px;
}

.services-heading span{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
}

.services-heading h2{
    font-size:54px;
    margin:20px 0;
    color:#08122e;
}

.services-heading p{
    max-width:760px;
    margin:auto;
    color:#64748b;
    line-height:1.9;
    font-size:18px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.service-card{
    position:relative;
    background:#f8fbff;
    border-radius:30px;
    padding:45px;
    border:1px solid rgba(37,99,235,0.08);
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(37,99,235,0.10);
}

.featured-service{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
}

.featured-service p,
.featured-service li{
    color:rgba(255,255,255,0.9) !important;
}

.featured-tag{
    position:absolute;
    top:25px;
    right:25px;
    background:white;
    color:#2563eb;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.service-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:30px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.service-card h3{
    font-size:32px;
    margin-bottom:20px;
    line-height:1.3;
}

.service-card p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:30px;
}

.service-card ul{
    list-style:none;
}

.service-card ul li{
    position:relative;
    padding-left:25px;
    margin-bottom:14px;
    color:#374151;
}

.service-card ul li::before{
    content:'';
    position:absolute;
    left:0;
    top:10px;
    width:10px;
    height:10px;
    background:#2563eb;
    border-radius:50%;
}

/* PROCESS */

.process-section{
    padding:120px 0;
    background:#eef2fb;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.process-card{
    background:white;
    padding:45px;
    border-radius:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.process-number{
    width:70px;
    height:70px;
    background:#2563eb;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:25px;
    font-size:24px;
    font-weight:700;
}

.process-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.process-card p{
    color:#64748b;
    line-height:1.8;
}

/* CTA */

.services-cta{
    padding:120px 0;
    background:white;
}

.services-cta-box{
    background:linear-gradient(135deg,#2563eb,#1e40af);
    padding:90px;
    border-radius:40px;
    text-align:center;
    color:white;
}

.services-cta-box h2{
    font-size:60px;
    margin-bottom:25px;
}

.services-cta-box p{
    max-width:700px;
    margin:auto;
    line-height:1.9;
    font-size:19px;
    margin-bottom:40px;
}

.services-cta-box a{
    display:inline-block;
    background:white;
    color:#2563eb;
    padding:20px 42px;
    border-radius:16px;
    text-decoration:none;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:992px){

    .services-hero-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .services-hero-buttons{
        justify-content:center;
    }

    .services-hero-left h1{
        font-size:54px;
    }

    .services-heading h2{
        font-size:42px;
    }

    .services-cta-box{
        padding:60px 30px;
    }

    .services-cta-box h2{
        font-size:42px;
    }
}

@media(max-width:768px){

    .services-hero-left h1{
        font-size:42px;
    }

    .services-hero-left p{
        font-size:17px;
    }

    .services-image-card{
        padding:30px;
    }

    .service-card{
        padding:35px;
    }
}

/* SELECTABLE SERVICES */

.service-card{
    position:relative;
    cursor:pointer;
    overflow:hidden;
}

.service-card::before{
    content:'';

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:5px;

    background:transparent;

    transition:0.3s;
}

.service-card:hover::before,
.active-service::before{
    background:#2563eb;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#2563eb;
}

.active-service{
    border:2px solid #2563eb;
    background:linear-gradient(
        135deg,
        #ffffff,
        #f5f9ff
    );
}

.service-details{
    display:flex;
    flex-direction:column;
    gap:12px;

    margin-top:25px;
    margin-bottom:30px;
}

.service-details span{
    color:#4b5563;
    font-size:15px;
    font-weight:500;
}

.service-btn{
    display:inline-block;

    background:#2563eb;
    color:white;

    text-decoration:none;

    padding:14px 26px;

    border-radius:14px;

    font-size:15px;
    font-weight:600;

    transition:0.3s;
}

.service-btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

/* =========================
CONTACT PAGE
========================= */

.contact-hero{
    position:relative;
    padding-top:220px;
    padding-bottom:120px;
    background:#eef2fb;
    overflow:hidden;
}

.contact-hero-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:80px;
}

/* LEFT */

.contact-left{
    flex:1;
}

.contact-badge{
    display:inline-block;
    background:#dbe7ff;
    color:#2563eb;
    padding:14px 24px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:28px;
}

.contact-left h1{
    font-size:72px;
    line-height:1.1;
    color:#08122e;
    margin-bottom:30px;
    font-weight:800;
}

.contact-left p{
    font-size:20px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:45px;
    max-width:700px;
}

/* CONTACT INFO */

.contact-info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.contact-info-card{
    background:white;
    padding:28px;
    border-radius:24px;
    display:flex;
    align-items:flex-start;
    gap:18px;
    box-shadow:0 15px 35px rgba(37,99,235,0.06);
}

.contact-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#eff4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.contact-info-card h4{
    font-size:22px;
    margin-bottom:10px;
    color:#08122e;
}

.contact-info-card span{
    color:#64748b;
    line-height:1.7;
}

/* RIGHT */

.contact-right{
    flex:1;
}

.contact-form-box{
    background:white;
    padding:55px;
    border-radius:40px;
    box-shadow:0 30px 80px rgba(37,99,235,0.10);
}

.contact-form-box h2{
    font-size:42px;
    margin-bottom:15px;
    color:#08122e;
}

.contact-form-box p{
    color:#64748b;
    margin-bottom:35px;
    line-height:1.8;
}

/* FORM */

.form-group-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:12px;
    font-weight:600;
    color:#08122e;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:18px;
    border-radius:16px;
    border:1px solid #dbe3f0;
    outline:none;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    transition:0.3s;
    background:#f8fbff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:#2563eb;
    background:white;
}

.form-group textarea{
    height:180px;
    resize:none;
}

/* BUTTON */

.submit-btn{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    border:none;
    padding:20px 40px;
    border-radius:18px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 15px 35px rgba(37,99,235,0.20);
}

.submit-btn:hover{
    transform:translateY(-4px);
}

/* BLURS */

.contact-blur{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
}

.blur-one{
    width:350px;
    height:350px;
    background:rgba(37,99,235,0.15);
    top:100px;
    right:-100px;
}

.blur-two{
    width:280px;
    height:280px;
    background:rgba(59,130,246,0.15);
    left:-100px;
    bottom:0;
}

/* CTA */

.contact-cta{
    padding:100px 0;
    background:white;
}

.contact-cta-box{
    background:#2563eb;
    color:white;
    padding:14px 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
}
.contact-cta-box h2{
    font-size:58px;
    margin-bottom:20px;
}

.contact-cta-box p{
    font-size:19px;
    margin-bottom:35px;
    opacity:0.95;
}

.contact-cta-box a{
    display:inline-block;
    background:white;
    color:#2563eb;
    text-decoration:none;
    padding:20px 40px;
    border-radius:18px;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:992px){

    .contact-hero-wrapper{
        flex-direction:column;
    }

    .contact-left{
        text-align:center;
    }

    .contact-info-grid{
        grid-template-columns:1fr;
    }

    .contact-left h1{
        font-size:52px;
    }

    .contact-form-box{
        padding:35px;
    }

    .contact-cta-box{
        padding:50px 30px;
    }

    .contact-cta-box h2{
        font-size:40px;
    }
}

@media(max-width:768px){

    .form-group-row{
        grid-template-columns:1fr;
    }

    .contact-left h1{
        font-size:40px;
    }

    .contact-left p{
        font-size:17px;
    }

    .contact-form-box h2{
        font-size:32px;
    }

    .contact-cta-box h2{
        font-size:34px;
    }
}


/* =========================================
HOME PAGE HERO SECTION
========================================= */

.logo img{
    height:160px !important;
    width:auto;
    object-fit:contain;
    display:block;
}

/* HERO SECTION */

.home-hero{
    position:relative;

    padding-top:90px;
    padding-bottom:100px;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef4ff 35%,
        #edf2ff 65%,
        #f8fbff 100%
    );
}

/* BLUR EFFECTS */

.home-hero::before{
    content:"";
    position:absolute;

    width:420px;
    height:420px;

    background:rgba(37,99,235,0.10);

    border-radius:50%;

    top:-140px;
    right:-140px;

    filter:blur(90px);
}

.home-hero::after{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:rgba(59,130,246,0.08);

    border-radius:50%;

    bottom:-100px;
    left:-100px;

    filter:blur(90px);
}

/* HERO WRAPPER */

.home-hero-wrapper{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:70px;
}

/* LEFT SIDE */

.home-left{
    flex:1;
    max-width:680px;
}

/* BADGE */

.home-badge{
    display:inline-block;

    background:#dbeafe;
    color:#2563eb;

    padding:14px 28px;

    border-radius:50px;

    font-size:15px;
    font-weight:600;

    margin-bottom:28px;
}

/* HEADING */

.home-left h1{
    font-size:72px;
    line-height:1.08;

    color:#08122e;

    margin-bottom:28px;

    font-weight:800;

    letter-spacing:-2px;
}

/* DESCRIPTION */

.home-left p{
    font-size:20px;
    line-height:1.9;

    color:#64748b;

    margin-bottom:40px;
}

/* BUTTONS */

.home-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;

    margin-bottom:38px;
}

.primary-btn{
    background:#2563eb;
    color:white;

    padding:18px 34px;

    border-radius:16px;

    text-decoration:none;

    font-weight:600;

    transition:0.3s;

    box-shadow:
    0 15px 35px rgba(37,99,235,0.20);
}

.primary-btn:hover{
    background:#1d4ed8;
    transform:translateY(-4px);
}

.secondary-btn{
    background:white;
    color:#111827;

    padding:18px 34px;

    border-radius:16px;

    text-decoration:none;

    font-weight:600;

    border:1px solid rgba(0,0,0,0.08);

    transition:0.3s;
}

.secondary-btn:hover{
    transform:translateY(-4px);
}

/* TECH STACK */

.home-tech{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.home-tech span{
    background:white;

    padding:14px 24px;

    border-radius:16px;

    font-weight:600;

    color:#111827;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.05);
}

/* RIGHT SIDE */

.home-right{
    flex:1;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* IMAGE BOX */

.home-image-box{
    position:relative;

    background:white;

    padding:55px;

    border-radius:40px;

    box-shadow:
    0 35px 80px rgba(37,99,235,0.10);
}

.home-image-box::before{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(37,99,235,0.08);

    border-radius:50%;

    top:-60px;
    right:-60px;
}

/* LOGO IMAGE */

.home-image-box img{
    width:100%;
    max-width:520px;

    position:relative;
    z-index:2;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .home-left h1{
        font-size:60px;
    }

    .home-image-box img{
        max-width:450px;
    }
}

@media(max-width:992px){

    .home-hero{
        padding-top:70px;
    }

    .home-hero-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .home-left{
        max-width:100%;
    }

    .home-buttons,
    .home-tech{
        justify-content:center;
    }

    .home-left h1{
        font-size:52px;
    }

    .logo img{
        height:120px !important;
    }
}

@media(max-width:768px){

    .home-left h1{
        font-size:40px;
        letter-spacing:-1px;
    }

    .home-left p{
        font-size:17px;
    }

    .home-image-box{
        padding:35px;
    }

    .home-image-box img{
        max-width:340px;
    }

    .logo img{
        height:90px !important;
    }
}

/* BLURS */

.hero-blur{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
}

.blur-left{
    width:300px;
    height:300px;
    background:rgba(37,99,235,0.15);
    left:-100px;
    bottom:0;
}

.blur-right{
    width:350px;
    height:350px;
    background:rgba(59,130,246,0.15);
    right:-100px;
    top:120px;
}

/* TRUST */

.trust-section{
    padding-bottom:120px;
    background:#eef2fb;
}

.trust-box{
    background:white;
    padding:45px;
    border-radius:35px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.04);
}

.trust-card{
    text-align:center;
}

.trust-card h2{
    font-size:52px;
    color:#2563eb;
    margin-bottom:12px;
}

.trust-card p{
    color:#64748b;
}

/* SERVICES */

.home-services{
    padding:120px 0;
    background:white;
}

.home-service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.home-service-card{
    background:#f8fbff;
    padding:45px;
    border-radius:30px;
    transition:0.3s;
    border:1px solid rgba(37,99,235,0.08);
}

.home-service-card:hover{
    transform:translateY(-8px);
}

.home-service-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.home-service-card h3{
    font-size:30px;
    margin-bottom:18px;
}

.home-service-card p{
    color:#64748b;
    line-height:1.9;
}

/* CTA */

.home-cta{
    padding:120px 0;
    background:#eef2fb;
}

.home-cta-box{
    background:linear-gradient(135deg,#2563eb,#1e40af);
    padding:90px;
    border-radius:40px;
    text-align:center;
    color:white;
}

.home-cta-box h2{
    font-size:62px;
    margin-bottom:20px;
}

.home-cta-box p{
    font-size:19px;
    margin-bottom:35px;
    opacity:0.95;
}

.home-cta-box a{
    display:inline-block;
    background:white;
    color:#2563eb;
    text-decoration:none;
    padding:20px 42px;
    border-radius:18px;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:992px){

    .home-hero-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .home-buttons,
    .home-tech{
        justify-content:center;
    }

    .home-left h1{
        font-size:58px;
    }

    .home-cta-box{
        padding:50px 30px;
    }

    .home-cta-box h2{
        font-size:42px;
    }
}

@media(max-width:768px){

    .logo img{
        height:95px;
    }

    .home-left h1{
        font-size:42px;
    }

    .home-left p{
        font-size:17px;
    }

    .home-image-box{
        padding:30px;
    }

    .home-cta-box h2{
        font-size:34px;
    }
}

/* FIX SCROLL HIDDEN CONTENT */

html{
    scroll-padding-top:140px;
}

/* FIX ANCHOR SECTION HIDE */

section{
    scroll-margin-top:140px;
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:1200px){

    .home-left h1{
        font-size:72px;
    }

    .home-hero-wrapper{
        gap:50px;
    }

    .home-image-box{
        padding:40px;
    }
}

/* TABLET */

@media(max-width:992px){

    .navbar{
        flex-direction:column;
        justify-content:center;
        gap:25px;
        padding:20px 0;
    }

    .nav-links{
        gap:25px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .logo img{
        height:110px !important;
    }

    .home-hero{
        padding-top:220px;
        padding-bottom:80px;
    }

    .home-hero-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .home-left{
        width:100%;
    }

    .home-left p{
        margin:auto;
        margin-bottom:35px;
    }

    .home-buttons{
        justify-content:center;
    }

    .home-tech{
        justify-content:center;
    }

    .home-right{
        width:100%;
    }

    .home-image-box{
        width:100%;
    }

    .home-image-box img{
        max-width:100%;
    }

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .footer-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .container{
        width:92%;
    }

    header{
        padding:0;
    }

    .navbar{
        gap:18px;
    }

    .logo img{
        height:85px !important;
    }

    .nav-links{
        gap:18px;
    }

    .nav-links a{
        font-size:15px;
    }

    .contact-btn{
        padding:12px 24px;
        font-size:14px;
    }

    .home-hero{
        padding-top:200px;
        padding-bottom:70px;
    }

    .home-left h1{
        font-size:52px;
        line-height:1.1;
    }

    .home-left p{
        font-size:18px;
        line-height:1.8;
    }

    .home-buttons{
        flex-direction:column;
        align-items:center;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:320px;
        text-align:center;
    }

    .home-tech{
        justify-content:center;
    }

    .home-tech span{
        padding:12px 18px;
        font-size:14px;
    }

    .home-image-box{
        padding:25px;
        border-radius:30px;
    }

    .hero-stats{
        grid-template-columns:1fr;
        gap:20px;
    }

    .stat-box{
        text-align:center;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:35px 25px;
    }

    .about-box,
    .contact-box{
        padding:35px 25px;
    }

    .section-title{
        font-size:38px;
    }

    .section-desc{
        font-size:17px;
    }

    .footer-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo img{
        margin:auto;
    }

    .footer-links{
        align-items:center;
    }

    .footer-contact{
        align-items:center;
    }

    .whatsapp-float{
        right:15px;
        bottom:15px;
        padding:12px 18px;
        font-size:14px;
    }
}

/* SMALL MOBILE */

@media(max-width:480px){

    .home-left h1{
        font-size:42px;
    }

    .home-left p{
        font-size:16px;
    }

    .section-title{
        font-size:32px;
    }

    .logo img{
        height:75px !important;
    }

    .home-badge{
        font-size:14px;
        padding:12px 18px;
    }

    .primary-btn,
    .secondary-btn{
        font-size:15px;
        padding:14px 22px;
    }

    .stat-box h3{
        font-size:40px;
    }
}