/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f7f9fc;
}

/* ===========================
   HEADER
=========================== */

header{

    background:#2d63e2;

    color:white;

    display:flex;

    justify-content:flex-start;

    align-items:center;

    padding:18px 8%;

    position:sticky;

    top:0;

    z-index:1000;

    flex-wrap:wrap;

}

.logo h2{

    font-size:32px;

}

nav{

    display:flex;

    gap:30px;

    align-items:center;

    order: 2;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.hamburger{

    display:none;

    background:none;

    border:none;

    cursor:pointer;

    padding:8px 12px;

    z-index:1001;

    order: 3;

}

.hamburger span{
    display:block;
    width:24px;
    height:3px;
    margin:4px 0;
    background:#fff;
    border-radius:2px;
}

nav a:hover,
nav a.active{

    color:#FFD700;

}

/* ===========================
   HERO
=========================== */

.hero{

    background:linear-gradient(135deg,#2d63e2,#0d47c9);

    color:white;

    padding:70px 8%;

}

.hero-content{

    max-width:1200px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:50px;

    flex-wrap:wrap;

}

.hero-text{

    flex:1;

}

.welcome{

    display:inline-block;

    background:rgba(255,255,255,.2);

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:20px;

}

.hero-text h1{

    font-size:52px;

    margin-bottom:20px;

}

.hero-text p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:white;

    color:#2d63e2;

    text-decoration:none;

    padding:14px 30px;

    border-radius:8px;

    font-weight:bold;

}

.btn-secondary{

    border:2px solid white;

    color:white;

    text-decoration:none;

    padding:14px 30px;

    border-radius:8px;

    font-weight:bold;

}

.btn-primary:hover{

    background:#f1f1f1;

}

.btn-secondary:hover{

    background:white;

    color:#2d63e2;

}

.hero-image{

    flex:1;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:500px;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:900px){

header{

flex-direction:column;

gap:15px;

}

.hamburger{

    display:block;

}

nav{

    display:none;

    flex-direction:column;

    width:100%;

    gap:0;

    background:#2d63e2;

    padding:20px 8%;

    border-top:1px solid rgba(255,255,255,0.15);

}

nav.active{

    display:flex;

}

nav a{

    display:block;

    width:100%;

    margin:10px 0;

    padding:10px 0;

    border-bottom:1px solid rgba(255,255,255,0.12);

}

.hero-content{

flex-direction:column-reverse;

text-align:center;

}

.hero-text h1{

font-size:40px;

}

.hero-text p{

font-size:18px;

}

.hero-buttons{

justify-content:center;

}

}
/* ===========================
   ABOUT COMPANY
=========================== */

.about-company{

    padding:90px 8%;
    background:#fff;

}

.about-container{

    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:60px;
    flex-wrap:wrap;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.about-content{

    flex:1;

}

.section-tag{

    color:#2d63e2;
    font-weight:bold;
    letter-spacing:2px;
    font-size:14px;

}

.about-content h2{

    font-size:40px;
    margin:20px 0;

}

.about-content p{

    font-size:18px;
    color:#555;
    line-height:1.8;
    margin-bottom:20px;

}

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;

}

.feature-item{

    display:flex;
    align-items:center;
    gap:12px;
    font-size:18px;
    font-weight:600;

}

.feature-item i{

    color:#2d63e2;
    font-size:22px;

}

/* Mobile */

@media(max-width:900px){

.about-container{

flex-direction:column;

}

.about-content{

text-align:center;

}

.about-features{

grid-template-columns:1fr;

}

}

@media(max-width:640px){
    .hero{
        padding:50px 6%;
    }
    .hero-content{
        gap:30px;
    }
    .hero-text h1{
        font-size:34px;
    }
    .hero-text p{
        font-size:16px;
    }
    .hero-buttons{
        gap:14px;
        justify-content:center;
    }
    .hero-buttons a{
        width:100%;
        max-width:360px;
        padding:14px 18px;
    }
    .hero-image img{
        max-width:420px;
    }
    .about-company,
    .why-choose,
    .mission-vision,
    .stats,
    .work-process{
        padding:60px 6%;
    }
    .about-content h2,
    .section-header h2,
    .mv-card h3,
    .choose-card h3{
        font-size:28px;
    }
    .about-content p,
    .section-header p,
    .choose-card p,
    .mv-card p,
    .process-card p{
        font-size:15px;
        line-height:1.7;
    }
    .about-features .feature-item{
        font-size:16px;
    }
    .mv-card,
    .choose-card,
    .stat-card,
    .process-card{
        padding:28px 22px;
    }
    .stat-card h2{
        font-size:42px;
    }
    .process-card h3{
        font-size:22px;
    }
    .hero-text{
        width:100%;
    }
    .hero-image{
        width:100%;
    }
}
/* ===========================
   WHY CHOOSE US
========================== */

.why-choose{
    padding:90px 8%;
    background:#f7f9fc;
}

.section-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-header span{
    color:#2d63e2;
    font-weight:bold;
    letter-spacing:2px;
    font-size:14px;
}

.section-header h2{
    font-size:42px;
    margin:15px 0;
    color:#222;
}

.section-header p{
    color:#666;
    line-height:1.8;
    font-size:18px;
}

.choose-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;

}

.choose-card{

    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:all .3s ease;

}

.choose-card:hover{

    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(45,99,226,.25);

}

.choose-card i{

    font-size:50px;
    color:#2d63e2;
    margin-bottom:20px;

}

.choose-card h3{

    margin-bottom:15px;
    font-size:24px;

}

.choose-card p{

    color:#666;
    line-height:1.7;

}
/* ===========================
   MISSION & VISION
=========================== */

.mission-vision{

    padding:90px 8%;
    background:#ffffff;

}

.mv-container{

    max-width:1200px;
    margin:50px auto 0;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;

}

.mv-card{

    background:#fff;

    border-radius:20px;

    padding:40px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

    border-top:5px solid #2d63e2;

}

.mv-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(45,99,226,.20);

}

.mv-icon{

    width:90px;
    height:90px;

    background:#2d63e2;

    color:#fff;

    border-radius:50%;

    margin:0 auto 25px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:38px;

}

.mv-card h3{

    font-size:28px;

    margin-bottom:20px;

    color:#222;

}

.mv-card p{

    color:#666;

    line-height:1.8;

    font-size:17px;

}
/* ===========================
   STATISTICS
=========================== */

.stats{

    padding:90px 8%;
    background:linear-gradient(135deg,#2d63e2,#1a4dbf);
    color:white;

}

.stats-header{

    text-align:center;
    max-width:700px;
    margin:auto;

}

.stats-header span{

    letter-spacing:2px;
    font-weight:bold;
    color:#dbeafe;

}

.stats-header h2{

    font-size:42px;
    margin:20px 0;

}

.stats-header p{

    font-size:18px;
    line-height:1.8;

}

.stats-container{

    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    padding:40px 25px;

    border-radius:20px;

    text-align:center;

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.20);

}

.stat-card i{

    font-size:50px;

    margin-bottom:20px;

}

.stat-card h2{

    font-size:50px;

    margin-bottom:10px;

}

.stat-card p{

    font-size:18px;

}
/* ===========================
   HOW WE WORK
=========================== */

.work-process{

    padding:90px 8%;
    background:#ffffff;

}

.process-container{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.process-card{

    background:#f8faff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

    position:relative;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(45,99,226,.20);

}

.process-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#2d63e2;

    display:flex;

    justify-content:center;

    align-items:center;

}

.process-icon i{

    color:#fff;

    font-size:40px;

}

.process-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.process-card p{

    color:#666;

    line-height:1.8;

}
/* ===========================
   TESTIMONIALS
=========================== */

.testimonials{
    padding:90px 8%;
    background:#f8faff;
}

.testimonial-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:60px;

}

.testimonial-card{

    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;

}

.testimonial-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(45,99,226,.18);

}

.stars{

    color:#FFD700;
    font-size:18px;
    margin-bottom:20px;

}

.testimonial-card p{

    color:#555;
    line-height:1.8;
    margin-bottom:25px;
    font-style:italic;

}

.customer{

    display:flex;
    align-items:center;
    gap:15px;

}

.customer img{

    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;

}

.customer h4{

    margin-bottom:5px;

}

.customer span{

    color:#777;
    font-size:14px;

}
/* ===========================
   CALL TO ACTION
=========================== */

.cta{

    padding:100px 8%;

    background:linear-gradient(135deg,#2d63e2,#0d47c9);

    color:#fff;

    text-align:center;

}

.cta-content{

    max-width:800px;

    margin:auto;

}

.cta span{

    letter-spacing:2px;

    font-weight:bold;

    color:#dbeafe;

}

.cta h2{

    font-size:46px;

    margin:20px 0;

}

.cta p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-btn-primary{

    background:#fff;

    color:#2d63e2;

    padding:15px 35px;

    border-radius:10px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.cta-btn-secondary{

    border:2px solid #fff;

    color:#fff;

    padding:15px 35px;

    border-radius:10px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.cta-btn-primary:hover{

    background:#f3f4f6;

}

.cta-btn-secondary:hover{

    background:#fff;

    color:#2d63e2;

}
/* ===========================
   FOOTER
=========================== */

footer{

    background:#0f172a;

    color:#fff;

    padding:60px 8% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:40px;

}

.footer-column h3{

    margin-bottom:20px;

    color:#fff;

}

.footer-column p,
.footer-column a{

    color:#cbd5e1;

    text-decoration:none;

    display:block;

    margin-bottom:12px;

    transition:.3s;

}

.footer-column a:hover{

    color:#60a5fa;

}

footer hr{

    margin:40px 0 20px;

    border:none;

    border-top:1px solid #334155;

}

.copyright{

    text-align:center;

    color:#94a3b8;

}