/* ==========================
   Google Font
========================== */

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

:root{

    --primary:#2563EB;
    --secondary:#06B6D4;
    --dark:#0F172A;
    --light:#F8FAFC;
    --white:#ffffff;
    --gray:#64748B;
    --border:#E2E8F0;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--dark);
    overflow-x:hidden;

}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:min(90%,1200px);
    margin:auto;

}

/* ==========================
   Header
========================== */

header{

    position:fixed;
    top:0;
    width:100%;
    z-index:999;

    backdrop-filter:blur(18px);

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

    border-bottom:1px solid rgba(255,255,255,.2);

}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:20%;

}

/* ==========================
 Logo
========================== */

.logo{

    font-size:80%;
    font-weight:700;
    color:var(--dark);

}

.logo span{

    color:var(--primary);

}

/* ==========================
 Navigation
========================== */

.nav-links{

    display:flex;
    gap:40px;

}

.nav-links a{

    color:var(--dark);
    font-weight:500;
    transition:.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

/* ==========================
 Mobile Button
========================== */

.menu-btn{

    display:none;
    font-size:28px;
    cursor:pointer;

}

/* ==========================
 Hero
========================== */

.hero{

    min-height:100vh;

    display:flex;
    align-items:center;

    position:relative;

    overflow:hidden;

    background:

    radial-gradient(circle at top right,#dbeafe,transparent 35%),

    radial-gradient(circle at bottom left,#cffafe,transparent 40%),

    #F8FAFC;

}

.hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}

/* ==========================
 Badge
========================== */

.badge{

    display:inline-block;

    background:#DBEAFE;

    color:#1D4ED8;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    margin-bottom:20px;

}

/* ==========================
 Heading
========================== */

.hero h1{

    font-size:60px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero h1 span{

    color:var(--primary);

}

/* ==========================
 Paragraph
========================== */

.hero p{

    color:var(--gray);

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;

}

/* ==========================
 Buttons
========================== */

.hero-buttons{

    display:flex;
    gap:20px;

}

.btn{

    padding:15px 34px;

    border-radius:10px;

    font-weight:600;

    transition:.35s;

}

.primary{

    background:var(--primary);

    color:white;

}

.primary:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(37,99,235,.25);

}

.secondary{

    border:2px solid var(--primary);

    color:var(--primary);

}

.secondary:hover{

    background:var(--primary);

    color:white;

}

/* ==========================
 Hero Image
========================== */

.hero-image{

    position:relative;

}

.hero-image img{

    position:relative;

    z-index:2;

    animation:float 5s ease-in-out infinite;

}

/* ==========================
 Floating Circles
========================== */

.circle{

    position:absolute;

    border-radius:50%;

    filter:blur(8px);

}

.one{

    width:260px;
    height:260px;

    background:#BFDBFE;

    top:-50px;
    left:-40px;

}

.two{

    width:220px;
    height:220px;

    background:#A5F3FC;

    bottom:-40px;
    right:-40px;

}

/* ==========================
 Scroll Down
========================== */

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    font-size:22px;

    color:var(--primary);

    animation:bounce 2s infinite;

}

/* ==========================
 Animations
========================== */

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

}

@keyframes bounce{

0%,100%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,12px);

}

}

/* ==========================
   Section Title
========================== */

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

color:var(--primary);

font-weight:600;

letter-spacing:2px;

}

.section-title h2{

font-size:42px;

margin:15px 0;

}

.section-title p{

max-width:700px;

margin:auto;

color:var(--gray);

line-height:1.8;

}

/* ==========================
About
========================== */

.about{

padding:120px 0;

background:#fff;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.about-image img{

border-radius:20px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.about-content h3{

font-size:34px;

margin-bottom:20px;

}

.about-content>p{

color:var(--gray);

line-height:1.9;

margin-bottom:40px;

}

.feature{

display:flex;

gap:20px;

margin-bottom:28px;

align-items:flex-start;

}

.feature i{

width:55px;

height:55px;

border-radius:15px;

display:flex;

justify-content:center;

align-items:center;

background:#DBEAFE;

color:var(--primary);

font-size:22px;

flex-shrink:0;

}

.feature h4{

margin-bottom:8px;

}

.feature p{

color:var(--gray);

line-height:1.7;

}

/* ==========================
Statistics
========================== */

.stats{

display:grid;

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

gap:25px;

margin-top:90px;

}

.stat-card{

background:white;

padding:40px;

text-align:center;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.35s;

}

.stat-card:hover{

transform:translateY(-10px);

}

.stat-card h2{

font-size:42px;

color:var(--primary);

margin-bottom:10px;

}

.stat-card p{

color:var(--gray);

}

/* ==========================
Services
========================== */

.services{

    padding:120px 0;

    background:#F8FAFC;

}

.service-grid{

    display:grid;

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

    gap:30px;

}

.service-card{

    background:white;

    border-radius:20px;

    padding:40px 30px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#DBEAFE;

    color:#2563EB;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.service-card p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:25px;

}

.service-card a{

    color:#2563EB;

    font-weight:600;

}

.service-card:hover .service-icon{

    background:#2563EB;

    color:white;

}

/* ==========================
Projects
========================== */

.projects{

padding:120px 0;

background:white;

}

.project-grid{

display:grid;

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

gap:30px;

}

.project-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

}

.project-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(37,99,235,.15);

}

.project-card img{

height:230px;

width:100%;

object-fit:cover;

}

.project-content{

padding:30px;

}

.project-category{

display:inline-block;

padding:8px 14px;

background:#DBEAFE;

color:#2563EB;

border-radius:30px;

font-size:13px;

font-weight:600;

margin-bottom:18px;

}

.project-content h3{

margin-bottom:15px;

font-size:24px;

}

.project-content p{

color:#64748B;

line-height:1.8;

margin-bottom:22px;

}

.project-tech{

display:flex;

flex-wrap:wrap;

gap:10px;

}

.project-tech span{

padding:8px 14px;

background:#F1F5F9;

border-radius:30px;

font-size:13px;

font-weight:600;

}

/* ==========================
Why Choose Us
========================== */

.why-us{

padding:120px 0;

background:linear-gradient(135deg,#0F172A,#1E3A8A);

color:#fff;

}

.why-us .section-title p{

color:#CBD5E1;

}

.why-grid{

display:grid;

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

gap:30px;

margin-top:60px;

}

.why-card{

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

backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.08);

padding:40px 30px;

border-radius:20px;

transition:.35s;

}

.why-card:hover{

transform:translateY(-10px);

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

}

.why-card i{

font-size:34px;

margin-bottom:20px;

color:#60A5FA;

}

.why-card h3{

margin-bottom:15px;

font-size:24px;

}

.why-card p{

line-height:1.8;

color:#CBD5E1;

}

/* ==========================
Testimonials
========================== */

.testimonials{

padding:120px 0;

background:#F8FAFC;

}

.testimonial-grid{

display:grid;

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

gap:30px;

}

.testimonial-card{

background:white;

padding:35px;

border-radius:20px;

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

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.quote{

font-size:34px;

color:#2563EB;

margin-bottom:20px;

}

.testimonial-card p{

color:#64748B;

line-height:1.8;

margin-bottom:30px;

}

.client{

display:flex;

align-items:center;

gap:15px;

}

.client-avatar{

width:55px;

height:55px;

background:#2563EB;

color:white;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-weight:700;

font-size:20px;

}

.client h4{

margin-bottom:5px;

}

.client span{

font-size:14px;

color:#64748B;

}

/* ==========================
CTA
========================== */

.cta{

padding:90px 20px;

text-align:center;

background:linear-gradient(135deg,#2563EB,#06B6D4);

color:white;

}

.cta h2{

font-size:42px;

margin-bottom:20px;

}

.cta p{

max-width:700px;

margin:auto;

line-height:1.8;

margin-bottom:40px;

font-size:18px;

}

.cta .btn{

background:white;

color:#2563EB;

}

.cta .btn:hover{

background:#0F172A;

color:white;

}

/* ==========================
Contact
========================== */

.contact{

padding:120px 0;

background:white;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1.4fr;

gap:50px;

margin-top:60px;

}

.info-card{

display:flex;

gap:20px;

padding:25px;

margin-bottom:25px;

background:#F8FAFC;

border-radius:15px;

}

.info-card i{

font-size:24px;

color:#2563EB;

margin-top:5px;

}

.contact-form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-form input,
.contact-form textarea{

padding:16px;

border:1px solid #E2E8F0;

border-radius:10px;

font-family:inherit;

font-size:16px;

outline:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

border-color:#2563EB;

}

/* ==========================
Footer
========================== */

footer{

background:#0F172A;

color:white;

padding-top:80px;

}

.footer-grid{

display:grid;

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

gap:40px;

padding-bottom:50px;

}

.footer-grid p{

color:#CBD5E1;

line-height:1.8;

margin-top:20px;

}

.footer-grid h3{

margin-bottom:20px;

}

.footer-grid ul{

display:flex;

flex-direction:column;

gap:12px;

}

.footer-grid a{

color:#CBD5E1;

transition:.3s;

}

.footer-grid a:hover{

color:white;

}

.social-icons{

display:flex;

gap:15px;

}

.social-icons a{

width:45px;

height:45px;

border-radius:50%;

background:#1E293B;

display:flex;

justify-content:center;

align-items:center;

font-size:18px;

transition:.3s;

}

.social-icons a:hover{

background:#2563EB;

}

.copyright{

text-align:center;

padding:25px;

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

color:#94A3B8;

}

/* ==========================
Sticky Header
========================== */

header.sticky{

box-shadow:0 8px 30px rgba(0,0,0,.08);

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

}

/* ==========================
Active Navigation
========================== */

.nav-links a.active{

color:#2563EB;

}

/* ==========================
Mobile Navigation
========================== */

@media(max-width:992px){

.nav-links{

position:absolute;

top:80px;

left:0;

width:100%;

background:white;

flex-direction:column;

padding:25px;

display:none;

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.nav-links.active{

display:flex;

}

}

/* ==========================
Reveal Animation
========================== */

.service-card,
.project-card,
.why-card,
.testimonial-card,
.feature,
.stat-card,
.info-card{

opacity:0;

transform:translateY(40px);

transition:.7s;

}

.show{

opacity:1;

transform:translateY(0);

}

/* ==========================
Back To Top
========================== */

.top-btn{

position:fixed;

right:25px;

bottom:25px;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#2563EB;

color:white;

font-size:18px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.3s;

z-index:999;

box-shadow:0 10px 20px rgba(0,0,0,.2);

}

.top-btn.show{

opacity:1;

visibility:visible;

}

.top-btn:hover{

transform:translateY(-5px);

}
