/* ==========================
   HERO
========================== */

#hero{

    padding-top:170px;

    padding-bottom:120px;

}

.hero{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-badge{

    display:inline-block;

    color:var(--primary);

    color:#2563EB;

    padding:12px 20px;

    border-radius:100px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    

    font-size:58px;

    line-height:1.1;

    margin-bottom:25px;

    color:#0F172A;

}

.hero p{

    font-size:18px;

    line-height:34px;

    color:#64748B;

    margin-bottom:40px;

}

.hero-button{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

    padding:18px 36px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

    display:inline-flex;

align-items:center;

justify-content:center;

}

.btn-primary:hover{

background:var(--primary-dark);

transform:translateY(-3px);

box-shadow:var(--shadow);

}

.btn-secondary{

    border:2px solid #2563EB;

    color:#2563EB;

    padding:18px 36px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.btn-secondary:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-3px);

}

.hero-image{

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:560px;

    animation:float 5s ease-in-out infinite;

    object-fit:contain;

}

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* ==========================
   COMPANY
========================== */

#company{

    background:white;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#2563EB;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-title h2{

    

    font-size:42px;

    margin-top:15px;

}

.company-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.company-image img{

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    width:100%;

object-fit:cover;

}

.company-content h3{

    font-size:34px;

    margin-bottom:25px;

}

.company-content p{

    color:#64748B;

    line-height:32px;

    margin-bottom:25px;

}

.company-stat{

    margin-top:40px;

    display:flex;

    justify-content:space-between;

}

.company-stat h2{

    font-size:40px;

    color:#2563EB;

    

}

.company-stat span{

    color:#64748B;

}

/* ==========================
   SERVICES
========================== */

#services{

    background:#F8FAFC;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:white;

    padding:40px;

    border-radius:18px;

    transition:.35s;

    border:1px solid #E2E8F0;

    box-shadow:0 5px 20px rgba(15,23,42,.04);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(37,99,235,.12);

}

.service-icon{

    width:70px;

    height:70px;

   color:var(--primary);

    color:#2563EB;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    border-radius:16px;

    margin-bottom:25px;

}

.service-card h3{

    font-size:24px;

    margin-bottom:18px;

}

.service-card p{

    color:#64748B;

    line-height:30px;

    margin-bottom:25px;

}

.service-card a{

    color:#2563EB;

    font-weight:600;

    display:inline-flex;

align-items:center;

gap:8px;

transition:.3s;

}

.service-card a:hover{

    gap:12px;

}

/* ==========================
   PROJECT
========================== */

#projects{

background:white;

}

.project-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.project-card{

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(15,23,42,.06);

transition:.35s;

}

.project-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-hover);

}

.project-card img{

width:100%;

height:260px;

object-fit:cover;

}

.project-content{

padding:28px;

}

.project-content span{

display:inline-block;

padding:8px 16px;

background:#DBEAFE;

color:#2563EB;

border-radius:100px;

font-size:14px;

font-weight:600;

margin-bottom:20px;

}

.project-content h3{

margin-bottom:18px;

font-size:24px;

}

.project-content p{

line-height:30px;

color:#64748B;

}

/* ==========================
CTA
========================== */

.cta-box{

background:linear-gradient(135deg,#2563EB,#0F172A);

padding:80px;

border-radius:28px;

text-align:center;

color:white;

}

.cta-box h2{

font-size:42px;

margin-bottom:20px;



}

.cta-box p{

font-size:18px;

line-height:34px;

margin-bottom:40px;

opacity:.9;

}

.cta-box .btn-primary{

display:inline-block;

}

#testimonial{

padding:100px 0;

background:#F8FAFC;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.testimonial-card{

background:white;

padding:40px;

border-radius:20px;

box-shadow:0 10px 25px rgba(15,23,42,.06);

border:1px solid var(--border);

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow);

}

.testimonial-card p{

line-height:32px;

margin-bottom:25px;

font-style:italic;

color:#475569;

}

.testimonial-card h4{

margin-bottom:8px;

}

.testimonial-card span{

color:#64748B;

font-size:15px;

}

/* ==========================
CLIENT
========================== */

#clients{

padding:100px 0;

background:white;

}

.client-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:40px;

align-items:center;

}

.client-grid img{

    width:100%;

    filter:grayscale(100%);

    opacity:.55;

    transform:scale(.95);

    transition:.3s;

}

.client-grid img:hover{

    filter:none;

    opacity:1;

    transform:scale(1);

}

.company-feature{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin:35px 0;

}

.company-feature div{

background:#EFF6FF;

padding:15px 20px;

border-radius:12px;

font-weight:600;

color:#2563EB;

border:1px solid #BFDBFE;

}