*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Inter',sans-serif;

background:#fff;

color:#111827;
}

.container{

width:90%;

max-width:1200px;

margin:auto;
}

/* ================= NAVBAR ================= */

.header{
    position:absolute;
    top:20px;
    left:0;
    width:100%;
    z-index:100;
}

.nav-container{
    background:#ffffff;
    border-radius:22px;
    padding:18px 28px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    box-shadow:
    0 2px 12px rgba(0,0,0,0.04);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;

    font-weight:700;
    font-size:18px;
}

.logo-icon{
    width:36px;
    height:36px;

    border-radius:50%;
    background:linear-gradient(
    135deg,
    #1678ff,
    #00d4ff
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;
}

.blue{
    color:#247BFF;
}

.nav{
    display:flex;
    gap:28px;
}

.nav a{
    text-decoration:none;
    color:#4b5563;
    font-size:14px;
    font-weight:500;
}

.nav a:hover{
    color:#000;
}

.project-btn{
    text-decoration:none;

    background:#07132b;
    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;
}

/* ================= HERO ================= */

.hero{

padding:120px 0 100px;

background:
linear-gradient(
90deg,
#e8fbf6 0%,
#ffffff 50%,
#dff7ff 100%
);

text-align:center;
}

.badge{

display:inline-block;

padding:10px 18px;

border-radius:999px;

border:1px solid #e5e7eb;

background:white;

font-size:13px;

margin-bottom:30px;
}

.hero h1{

font-size:72px;

line-height:1.1;

max-width:950px;

margin:auto;

font-weight:800;
}

.hero span{

color:#2563eb;
}

.hero p{

margin-top:30px;

font-size:20px;

color:#64748b;

max-width:700px;

margin-left:auto;

margin-right:auto;
}
/* ================= SERVICES ================= */

.services{

padding:90px 0 120px;

background:#fff;
}

.services-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:28px;
}

.service-card{

background:#f8fafc;

border:1px solid #e5edf5;

border-radius:28px;

padding:35px;

transition:.35s ease;
}

.service-card:hover{

transform:translateY(-8px);

box-shadow:
0 18px 40px rgba(0,0,0,.08);
}

.service-icon{

width:52px;

height:52px;

border-radius:16px;

background:
linear-gradient(
135deg,
#0ea5e9,
#2563eb
);

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:20px;

margin-bottom:25px;
}

.service-card h3{

font-size:28px;

line-height:1.3;

margin-bottom:15px;

font-weight:700;
}

.service-card p{

color:#64748b;

line-height:1.8;

margin-bottom:20px;
}

.service-card a{

text-decoration:none;

color:#2563eb;

font-weight:600;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.services-grid{

grid-template-columns:
1fr 1fr;

}

}

@media(max-width:768px){

.services-grid{

grid-template-columns:
1fr;

}

.service-card h3{

font-size:24px;

}

}
/* ================= CTA ================= */

.cta-section{

padding:120px 0;

background:#ffffff;
}

.cta-box{

border-radius:32px;

padding:70px;

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

background:
linear-gradient(
90deg,
#3b82f6 0%,
#0ea5e9 50%,
#14b8a6 100%
);

color:#fff;
}

.cta-left h2{

font-size:64px;

line-height:1.05;

margin-bottom:20px;

font-weight:800;
}

.cta-left p{

max-width:550px;

line-height:1.8;

opacity:.95;
}

.cta-right{

display:flex;

gap:15px;
}

.cta-btn-primary{

background:#fff;

color:#111827;

padding:16px 28px;

border-radius:999px;

text-decoration:none;

font-weight:700;
}

.cta-btn-secondary{

padding:16px 28px;

border-radius:999px;

border:1px solid rgba(255,255,255,.4);

color:white;

text-decoration:none;
}

/* ================= FOOTER ================= */

.footer{

    background:#F7F9FC;

    border-top:1px solid #E6EDF5;

    padding-top:90px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:60px;
}

.footer-logo{

    display:flex;
    align-items:center;

    gap:10px;

    margin-bottom:25px;
}

.footer-logo-icon{

    width:34px;
    height:34px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #0A84FF,
    #18D2D7
    );

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:13px;
    font-weight:700;
}

.footer-logo span{

    font-size:22px;
    font-weight:700;
}

.footer-about p{

    color:#667085;

    line-height:1.8;

    margin-bottom:30px;
}

.newsletter{

    display:flex;

    background:white;

    border:1px solid #E7EDF5;

    border-radius:999px;

    overflow:hidden;

    max-width:340px;
}

.newsletter input{

    flex:1;

    border:none;

    outline:none;

    padding:14px 18px;
}

.newsletter button{

    border:none;

    background:#0A84FF;

    color:white;

    padding:0 20px;

    cursor:pointer;
}

.socials{

    display:flex;
    gap:12px;

    margin-top:25px;
}

.socials a{

    width:36px;
    height:36px;

    border-radius:50%;

    background:white;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#08142B;

    font-size:13px;

    border:1px solid #E7EDF5;
}

.footer-column{

    display:flex;
    flex-direction:column;
}

.footer-column h4{

    margin-bottom:24px;

    font-size:18px;
}

.footer-column a{

    margin-bottom:14px;

    color:#667085;

    line-height:1.6;
}

.footer-bottom{

    border-top:1px solid #E6EDF5;

    margin-top:70px;

    padding:30px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    color:#667085;
}

.footer-links-bottom{

    display:flex;
    gap:18px;
}

.footer-links-bottom a{
    color:#667085;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

    .footer-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .cta-banner{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .cta-content h2{
        font-size:42px;
    }

    .cta-banner{
        padding:40px 25px;
    }

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.cta-box{

flex-direction:column;

text-align:center;
}

.cta-left h2{

font-size:48px;
}

.footer-grid{

grid-template-columns:
1fr 1fr;
}

.footer-bottom{

flex-direction:column;

gap:15px;
}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:
1fr;
}

.cta-left h2{

font-size:36px;
}

.cta-right{

flex-direction:column;
}

.footer-links{

flex-wrap:wrap;

justify-content:center;
}

}
/* ===========================
   STICKY HEADER
=========================== */

.header{

transition:.35s ease;

}

.header.sticky{

background:
rgba(255,255,255,.95);

backdrop-filter:
blur(12px);

box-shadow:
0 10px 30px rgba(0,0,0,.05);

}

/* ===========================
   REVEAL ANIMATION
=========================== */

.hidden{

opacity:0;

transform:
translateY(40px);

transition:
all .8s ease;

}

.show{

opacity:1;

transform:
translateY(0);

}

/* ===========================
   CARD HOVER
=========================== */

.service-card{

transition:
all .35s ease;

}

.service-card:hover{

transform:
translateY(-8px);

box-shadow:
0 20px 40px rgba(0,0,0,.08);

}

/* ===========================
   CTA HOVER
=========================== */

.cta-btn-primary,
.cta-btn-secondary,
.project-btn{

transition:.3s ease;

}

.cta-btn-primary:hover,
.project-btn:hover{

box-shadow:
0 15px 30px rgba(0,0,0,.15);

}

.cta-btn-secondary:hover{

background:
rgba(255,255,255,.1);

}

/* ===========================
   NEWSLETTER
=========================== */

.newsletter input:focus{

border-color:#0ea5e9;

}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#f1f5f9;

}

::-webkit-scrollbar-thumb{

background:#0ea5e9;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#0284c7;

}
.footer-column a{
    text-decoration: none;
}