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

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


html{
    scroll-behavior:smooth;
}


body{

    font-family:'Inter',sans-serif;

    color:#1e293b;

    background:#ffffff;

    line-height:1.7;

    overflow-x:hidden;

}


a{

    text-decoration:none;

    color:inherit;

}


ul{

    list-style:none;

}



img{

    max-width:100%;

    display:block;

}



/* =========================================
ROOT
========================================= */


:root{

    --primary:#2563eb;

    --secondary:#0f172a;

    --dark:#020617;

    --text:#64748b;

    --light:#f8fafc;

    --white:#ffffff;

    --border:#e2e8f0;

    --shadow:0 20px 50px rgba(15,23,42,.08);

    --radius:20px;

}



/* =========================================
CONTAINER
========================================= */


.container{

    width:min(92%,1200px);

    margin:auto;

}





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


.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(15px);

    z-index:999;

    border-bottom:1px solid rgba(0,0,0,.05);

}




.header .container{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}




.logo{

    font-size:32px;

    font-weight:800;

    color:var(--secondary);

}





.menu ul{

    display:flex;

    gap:35px;

}





.menu a{

    font-size:15px;

    font-weight:600;

    transition:.3s;

}



.menu a:hover{

    color:var(--primary);

}





.header-btn{

    background:linear-gradient(135deg,#2563eb,#06b6d4);

    color:white;

    padding:14px 28px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}




.header-btn:hover{

    transform:translateY(-4px);

}





/* =========================================
BUTTONS
========================================= */


.btn-primary{


    display:inline-flex;

    align-items:center;

    justify-content:center;


    padding:16px 34px;

    border-radius:50px;


    background:linear-gradient(135deg,#2563eb,#06b6d4);


    color:white;


    font-weight:700;


    transition:.3s;


}




.btn-primary:hover{

    transform:translateY(-5px);

}





.btn-secondary{


    display:inline-flex;

    align-items:center;

    justify-content:center;


    padding:14px 32px;


    border-radius:50px;


    border:2px solid #dbeafe;


    font-weight:700;


    transition:.3s;


}




.btn-secondary:hover{

    background:#2563eb;

    color:white;

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


.hero{

    padding:170px 0 100px;

    position:relative;

    overflow:hidden;

}



.hero-area{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}





.hero-content{

    position:relative;

    z-index:2;

}




.hero-tag{

    display:inline-block;

    background:#dbeafe;

    color:#2563eb;

    padding:8px 20px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}





.hero-content h1{


    font-size:64px;

    line-height:1.1;

    color:#0f172a;

    font-weight:800;

    letter-spacing:-2px;

    margin-bottom:30px;


}





.hero-content p{


    font-size:18px;

    color:#64748b;

    max-width:600px;

    margin-bottom:40px;


}





.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}







/* HERO IMAGE */


.hero-image{


    min-height:550px;

    background:linear-gradient(145deg,#eff6ff,#ffffff);


    border-radius:35px;


    display:flex;

    justify-content:center;

    align-items:center;


    position:relative;


    box-shadow:var(--shadow);


}





.hero-box{


    background:white;

    padding:45px;

    width:320px;

    border-radius:25px;


    text-align:center;


    box-shadow:0 20px 50px rgba(15,23,42,.12);


}





.hero-icon{


    width:80px;

    height:80px;


    margin:0 auto 25px;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:20px;


    background:linear-gradient(135deg,#2563eb,#06b6d4);


    color:white;


    font-size:32px;


}





.hero-box h3{


    font-size:25px;

    color:#0f172a;

    margin-bottom:10px;


}





.hero-box p{


    color:#64748b;

    font-size:15px;


}







.hero-mini{


    position:absolute;


    right:40px;

    bottom:50px;


    background:white;


    padding:20px 25px;


    border-radius:18px;


    box-shadow:var(--shadow);


    display:flex;


    flex-direction:column;


}





.hero-mini strong{


    color:#2563eb;

    font-size:18px;


}





.hero-mini span{


    color:#64748b;

    font-size:14px;


}





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


.section-title{


    text-align:center;

    margin-bottom:60px;


}



.section-title span{


    display:inline-block;


    background:#dbeafe;


    color:#2563eb;


    padding:8px 18px;


    border-radius:50px;


    font-size:14px;


    font-weight:700;


    margin-bottom:20px;


}





.section-title h2{


    font-size:44px;


    line-height:1.2;


    color:#0f172a;


    margin-bottom:20px;


}





.section-title p{


    max-width:700px;


    margin:auto;


    color:#64748b;


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


.services{

    padding:100px 0;

    background:#f8fafc;

}





.services-grid{


    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;


}






.service-card{


    background:#ffffff;

    padding:40px;


    border-radius:25px;


    border:1px solid #edf2f7;


    box-shadow:0 10px 30px rgba(15,23,42,.05);


    transition:.35s;


}





.service-card:hover{


    transform:translateY(-12px);


    box-shadow:0 25px 50px rgba(15,23,42,.12);


}






.service-icon{


    width:80px;

    height:80px;


    display:flex;


    align-items:center;


    justify-content:center;


    background:linear-gradient(135deg,#2563eb,#06b6d4);


    color:#ffffff;


    border-radius:20px;


    font-size:30px;


    margin-bottom:25px;


}






.service-card h3{


    font-size:26px;


    color:#0f172a;


    margin-bottom:15px;


}





.service-card p{


    color:#64748b;


    margin-bottom:25px;


    font-size:15px;


}






.service-card ul{


    display:flex;


    flex-direction:column;


    gap:12px;


}





.service-card li{


    display:flex;


    align-items:center;


    gap:10px;


    color:#475569;


    font-size:15px;


}




.service-card li i{


    color:#2563eb;


}





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


.about{


    padding:100px 0;


}




.about-wrapper{


    display:grid;


    grid-template-columns:1fr 1fr;


    align-items:center;


    gap:70px;


}






.about-image{


    position:relative;


}




.about-photo{


    height:550px;


    border-radius:35px;


    background:linear-gradient(145deg,#eff6ff,#dbeafe);


    display:flex;


    align-items:center;


    justify-content:center;


    font-size:120px;


    color:#2563eb;


}







.experience-box{


    position:absolute;


    right:-20px;


    bottom:40px;


    background:white;


    padding:30px;


    border-radius:25px;


    box-shadow:var(--shadow);


    text-align:center;


}





.experience-box strong{


    display:block;


    font-size:50px;


    color:#2563eb;


    line-height:1;


}





.experience-box span{


    color:#64748b;


    font-weight:600;


}







.about-content span{


    display:inline-block;


    background:#dbeafe;


    color:#2563eb;


    padding:8px 18px;


    border-radius:50px;


    font-size:14px;


    font-weight:700;


    margin-bottom:20px;


}







.about-content h2{


    font-size:45px;


    color:#0f172a;


    line-height:1.2;


    margin-bottom:25px;


}






.about-content p{


    color:#64748b;


    margin-bottom:30px;


}






.about-list{


    display:grid;


    grid-template-columns:1fr 1fr;


    gap:15px;


    margin-bottom:35px;


}





.about-list li{


    display:flex;


    align-items:center;


    gap:10px;


    font-weight:600;


}





.about-list i{


    color:#2563eb;


}



.about-buttons{


    display:flex;


    gap:15px;


}
/* =========================================
PROJECTS
========================================= */

.projects{

padding:100px 0;

background:#f8fafc;

}


.project-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.project-card{

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.35s;

}



.project-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}



.project-image{

height:260px;

background:linear-gradient(145deg,#dbeafe,#eff6ff);

display:flex;

align-items:center;

justify-content:center;

}



.project-image::after{

content:"PROJECT";

font-size:45px;

font-weight:800;

color:rgba(37,99,235,.15);

}



.project-content{

padding:30px;

}



.project-content span{

display:inline-block;

background:#dbeafe;

color:#2563eb;

padding:6px 15px;

border-radius:30px;

font-size:13px;

font-weight:700;

margin-bottom:15px;

}



.project-content h3{

font-size:24px;

color:#0f172a;

margin-bottom:15px;

}



.project-content p{

color:#64748b;

font-size:15px;

}
/* =========================================
TESTIMONIALS
========================================= */


.testimonials{

padding:100px 0;

background:#ffffff;

}



.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.testimonial-card{

background:#fff;

border:1px solid #e2e8f0;

border-radius:25px;

padding:35px;

box-shadow:0 15px 40px rgba(15,23,42,.06);

transition:.35s;

}



.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(15,23,42,.12);

}



.quote-icon{

width:65px;

height:65px;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,#2563eb,#06b6d4);

color:#fff;

border-radius:18px;

font-size:25px;

margin-bottom:25px;

}



.testimonial-card p{

color:#64748b;

font-size:16px;

margin-bottom:30px;

}



.client{

display:flex;

align-items:center;

gap:15px;

}



.client-image{

width:60px;

height:60px;

border-radius:50%;

background:linear-gradient(145deg,#dbeafe,#eff6ff);

}



.client-info h4{

font-size:18px;

color:#0f172a;

margin-bottom:5px;

}



.client-info span{

color:#64748b;

font-size:14px;

}
/* =========================================
CONTACT / CTA
========================================= */


.contact{

padding:100px 0;

}



.cta-box{

background:linear-gradient(135deg,#0f172a,#1e3a8a,#06b6d4);

border-radius:35px;

padding:80px;

color:#fff;

text-align:center;

position:relative;

overflow:hidden;

}



.cta-box::before{

content:"";

position:absolute;

width:350px;

height:350px;

background:rgba(255,255,255,.08);

border-radius:50%;

top:-150px;

right:-100px;

}



.cta-box h2{

position:relative;

z-index:2;

font-size:48px;

line-height:1.2;

margin-bottom:20px;

}



.cta-box p{

position:relative;

z-index:2;

max-width:700px;

margin:0 auto 35px;

color:rgba(255,255,255,.85);

font-size:18px;

}



.cta-box .btn-primary{

position:relative;

z-index:2;

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


footer{

background:#0b1120;

color:#ffffff;

padding:70px 0 25px;

}



.footer-content{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:50px;

}



.footer-content h3{

font-size:30px;

font-weight:800;

margin-bottom:20px;

}



.footer-content h4{

font-size:18px;

margin-bottom:20px;

color:#ffffff;

}



.footer-content p{

color:#94a3b8;

font-size:15px;

line-height:1.8;

}



.footer-content a{

display:block;

color:#cbd5e1;

margin-bottom:12px;

font-size:15px;

transition:.3s;

}



.footer-content a:hover{

color:#2563eb;

transform:translateX(5px);

}



.footer-menu,
.footer-contact,
.footer-about{

min-width:0;

}



.copyright{

margin-top:50px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.12);

text-align:center;

color:#94a3b8;

font-size:14px;

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


@media(max-width:1100px){


.hero-area{

grid-template-columns:1fr;

}


.hero-left{

text-align:center;

}


.hero-left p{

margin-left:auto;

margin-right:auto;

}



.hero-buttons{

justify-content:center;

}



.hero-right{

margin-top:40px;

}



.services-grid{

grid-template-columns:repeat(2,1fr);

}



.about-wrapper{

grid-template-columns:1fr;

}



.about-content{

text-align:center;

}



.about-list{

justify-content:center;

}



.project-grid{

grid-template-columns:repeat(2,1fr);

}



.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}



.footer-content{

grid-template-columns:1fr 1fr;

}


}




@media(max-width:768px){



.container{

width:90%;

}



.header .container{

height:75px;

}



.logo{

font-size:25px;

}



.menu{

display:none;

}



.header-btn{

padding:12px 20px;

font-size:14px;

}



.hero{

padding-top:120px;

}



.hero-left h1{

font-size:42px;

}



.hero-left p{

font-size:16px;

}



.hero-right{

min-height:400px;

}



.services,
.about,
.projects,
.testimonials,
.contact{

padding:70px 0;

}



.section-title h2{

font-size:34px;

}



.services-grid{

grid-template-columns:1fr;

}



.about-content h2{

font-size:34px;

}



.about-list{

grid-template-columns:1fr;

}



.about-buttons{

flex-direction:column;

}



.project-grid{

grid-template-columns:1fr;

}



.testimonial-grid{

grid-template-columns:1fr;

}



.cta-box{

padding:45px 25px;

}



.cta-box h2{

font-size:34px;

}



.footer-content{

grid-template-columns:1fr;

text-align:center;

}



.footer-content a:hover{

transform:none;

}


}