*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f8fafc;

    color:#111827;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(1200px,90%);

    margin:auto;

}

:root{

    --primary:#2563eb;

    --primary-dark:#1d4ed8;

    --secondary:#0ea5e9;

    --green:#16a34a;

    --background:#f8fafc;

    --text:#111827;

    --gray:#64748b;

    --white:#ffffff;

    --shadow:0 20px 60px rgba(0,0,0,.08);

    --radius:18px;

}
section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:40px;

    font-weight:700;

}

.section-title p{

    color:#64748b;

    margin-top:15px;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:14px;

    font-weight:600;

    transition:.3s;

}

.btn-primary{

    background:var(--primary);

    color:white;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:white;

}

#loader{

    position:fixed;

    inset:0;

    background:white;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.spinner{

    width:60px;

    height:60px;

    border-radius:50%;

    border:6px solid #ddd;

    border-top:6px solid var(--primary);

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}
#navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.35s;

}

#navbar.active{

    background:white;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.nav-container{

    height:85px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    color:#111;

}

.logo img{

    width:52px;

    height:52px;

    border-radius:14px;

}

.logo h2{

    font-size:19px;

    font-weight:700;

}

.logo span{

    font-size:12px;

    color:#777;

}

.nav-menu{

    display:flex;

    gap:38px;

}

.nav-menu a{

    color:#333;

    font-weight:500;

    transition:.3s;

    position:relative;

}

.nav-menu a:hover{

    color:var(--primary);

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-menu a:hover::after{

    width:100%;

}

.nav-button{

    background:#25D366;

    color:white;

    padding:12px 26px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.nav-button:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(37,211,102,.35);

}

.menu-toggle{

    display:none;

    font-size:32px;

    cursor:pointer;

}

@media(max-width:992px){

.nav-menu{

    position:fixed;

    top:85px;

    right:-100%;

    width:280px;

    height:calc(100vh - 85px);

    background:white;

    flex-direction:column;

    padding:40px;

    transition:.35s;

    box-shadow:-10px 0 30px rgba(0,0,0,.08);

}

.nav-menu.active{

    right:0;

}

.menu-toggle{

    display:block;

}

.nav-button{

    display:none;

}

}

/* ========================================= */

#hero{

    padding-top:160px;

    background:

    linear-gradient(
    180deg,
    #eff6ff,
    #ffffff);

}

.hero{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-badge{

    display:inline-flex;

    background:#dbeafe;

    color:#2563eb;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    margin-bottom:20px;

    font-weight:600;

}

.hero h1{

    font-size:62px;

    line-height:1.1;

    font-weight:800;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    margin-top:30px;

    font-size:18px;

    color:#64748b;

    line-height:1.8;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:35px;

}

.hero-feature{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-top:40px;

}

.hero-feature div{

    background:white;

    padding:18px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    font-weight:600;

}

.hero-right{

    position:relative;

}

.hero-right img{

    width:100%;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

@media(max-width:992px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero h1{

font-size:42px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero-feature{

grid-template-columns:1fr;

}

.hero-right{

margin-top:50px;

}

}

/*==================================*/

#stats{

    margin-top:-70px;

    position:relative;

    z-index:10;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.07);

    text-align:center;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-icon{

    font-size:42px;

    margin-bottom:20px;

}

.stat-card h2{

    font-size:42px;

    color:var(--primary);

    font-weight:800;

}

.stat-card p{

    margin-top:10px;

    color:#64748b;

    font-size:15px;

}

@media(max-width:992px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.stats-grid{

grid-template-columns:1fr;

}

}

/*===========================*/

#services{

    background:white;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    border:1px solid #eee;

    transition:.35s;

    box-shadow:0 10px 40px rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#2563eb;

    box-shadow:0 25px 60px rgba(37,99,235,.18);

}

.service-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:#eff6ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:40px;

    margin-bottom:25px;

}

.service-card h3{

    font-size:22px;

    margin-bottom:15px;

}

.service-card p{

    color:#64748b;

    line-height:1.8;

}

@media(max-width:992px){

.service-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.service-grid{

grid-template-columns:1fr;

}

}

/*============================*/

#why{

    background:#f8fafc;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.why-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 30px 80px rgba(0,0,0,.12);

}

.why-content h2{

    font-size:46px;

    margin:20px 0;

    line-height:1.2;

}

.why-content p{

    color:#64748b;

    line-height:1.8;

}

.why-list{

    margin-top:40px;

    display:grid;

    gap:25px;

}

.why-item{

    display:flex;

    gap:20px;

}

.why-icon{

    width:55px;

    height:55px;

    background:#2563eb;

    color:white;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

.why-item h4{

    margin-bottom:8px;

    font-size:20px;

}

@media(max-width:992px){

.why-grid{

grid-template-columns:1fr;

}

.why-content{

text-align:center;

}

.why-item{

text-align:left;

}

}

/*====================================*/

#timeline{

    background:white;

}

.timeline-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.timeline-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    border:1px solid #eee;

    transition:.35s;

}

.timeline-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(37,99,235,.15);

}

.timeline-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#2563eb;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:25px;

    font-size:28px;

    font-weight:bold;

}

.timeline-card h3{

    margin-bottom:15px;

    font-size:22px;

}

.timeline-card p{

    color:#64748b;

    line-height:1.8;

}

@media(max-width:992px){

.timeline-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.timeline-grid{

grid-template-columns:1fr;

}

}

/*===========================*/

#price{

    background:#f8fafc;

}

.price-table{

    max-width:900px;

    margin:auto;

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.price-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 30px;

    border-bottom:1px solid #eee;

    transition:.3s;

}

.price-item:hover{

    background:#eff6ff;

}

.price-item span{

    font-size:17px;

}

.price-item strong{

    color:#2563eb;

    font-size:20px;

}

.price-note{

    max-width:900px;

    margin:25px auto 0;

    text-align:center;

    color:#64748b;

}

@media(max-width:700px){

.price-item{

flex-direction:column;

gap:10px;

text-align:center;

}

}

/*============================*/

#gallery{

    background:white;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    transition:.35s;

}

@media(max-width:900px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-grid img{

height:230px;

}

}

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:20px;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.stars{

    font-size:24px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:30px;

}

.customer{

    display:flex;

    align-items:center;

    gap:15px;

}

.customer img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.customer h4{

    margin-bottom:4px;

}

.customer span{

    color:#888;

    font-size:14px;

}

@media(max-width:992px){

.testimonial-grid{

grid-template-columns:1fr;

}

}

/*====================================*/

#cta{

    padding:100px 0;

}

.cta-box{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    border-radius:30px;

    color:white;

    padding:70px;

    text-align:center;

    overflow:hidden;

    position:relative;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    right:-100px;

    top:-120px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    left:-60px;

    bottom:-70px;

}

.cta-box h2{

    font-size:42px;

    margin-bottom:20px;

    position:relative;

    z-index:2;

}

.cta-box p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    opacity:.9;

    position:relative;

    z-index:2;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

    position:relative;

    z-index:2;

}

.cta .btn-primary,
#cta .btn-primary{

    background:white;

    color:#2563eb;

}

#cta .btn-primary:hover{

    background:#f8fafc;

}

.btn-secondary{

    border:2px solid white;

    color:white;

    padding:16px 32px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;

    color:#2563eb;

}
@media(max-width:768px){

.cta-box{

padding:45px 25px;

}

.cta-box h2{

font-size:30px;

}

}

#contact{

    padding:100px 0;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:40px;

    margin-top:60px;

}

.contact-card{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fff;

    padding:25px;

    border-radius:20px;

    margin-bottom:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.contact-card .icon{

    width:60px;

    height:60px;

    border-radius:18px;

    background:#2563eb;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    flex-shrink:0;

}

.contact-card h3{

    margin-bottom:8px;

    font-size:20px;

}

.contact-card p{

    color:#666;

    line-height:1.8;

}

.map-box{

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.map-box iframe{

    width:100%;

    height:100%;

    min-height:450px;

    border:none;

}

@media(max-width:900px){

.contact-grid{

grid-template-columns:1fr;

}

.map-box iframe{

min-height:320px;

}

}

.contact-card{

transition:.3s;

}

.map-box iframe{

    width:100%;

    height:100%;

    min-height:450px;

    border:none;

}

@media(max-width:900px){

.contact-grid{

grid-template-columns:1fr;

}

.map-box iframe{

min-height:320px;

}

}

.contact-card{

transition:.3s;

}

.contact-card:hover{

transform:translateY(-5px);

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

#footer{

    background:#111827;

    color:white;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    font-size:28px;

    margin-bottom:20px;

}

.footer-text{

    color:#cbd5e1;

    line-height:1.8;

}

.footer-grid h4{

    margin-bottom:20px;

    font-size:18px;

}

.footer-grid ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-grid li{

    margin-bottom:12px;

    color:#cbd5e1;

}

.footer-grid a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer-grid a:hover{

    color:white;

}

.footer-bottom{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    text-align:center;

    color:#94a3b8;

    font-size:14px;

}

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

gap:40px;

}

}

.footer-social{

display:flex;

justify-content:center;

gap:25px;

margin-top:50px;

flex-wrap:wrap;

}

.footer-social a{

color:white;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.footer-social a:hover{

color:#60a5fa;

}
