.elementor-14 .elementor-element.elementor-element-68b9383{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-8fa4c40 *//* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f8fafc;
    color:#1e293b;
    line-height:1.6;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.header{
    background:#ffffff;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:1000;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo{
    font-weight:700;
    font-size:20px;
    color:#2563eb;
}

nav a{
    margin:0 12px;
    text-decoration:none;
    color:#475569;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#2563eb;
}

/* HEADER CTA */
.call-header{
    background:#2563eb;
    color:#fff;
    padding:10px 16px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
}

/* HERO */
.hero{
    position:relative;
    height:85vh;
    display:flex;
    align-items:center;
    background:url('https://images.unsplash.com/photo-1584515933487-779824d29309') center/cover no-repeat;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(15,23,42,0.75);
}

.hero-content{
    position:relative;
    color:#fff;
    max-width:650px;
}

.hero h1{
    font-size:42px;
    font-weight:700;
}

.hero p{
    margin:15px 0 25px;
    color:#e2e8f0;
}

/* BUTTONS */
.btn-call,
.btn-whatsapp{
    display:inline-block;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    font-weight:500;
    margin-right:10px;
}

.btn-call{
    background:#2563eb;
    color:#fff;
}

.btn-whatsapp{
    background:#22c55e;
    color:#fff;
}

/* SECTION */
section{
    padding:70px 0;
}

section h2{
    text-align:center;
    font-size:30px;
    margin-bottom:10px;
}

.section-desc{
    text-align:center;
    max-width:700px;
    margin:0 auto 40px;
    color:#64748b;
}

/* WHAT */
.what-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.what-card{
    background:#ffffff;
    padding:25px;
    border-radius:10px;
    border:1px solid #e2e8f0;
    transition:0.3s;
}

.what-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.what-card h4{
    color:#2563eb;
}

/* SERVICES GRID */
.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

/* SERVICES GRID */
.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

/* CARD */
.service-card{
    position:relative;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(10px);
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(226,232,240,0.6);
    transition:all 0.35s ease;
    text-align:center;
    cursor:pointer;
}

/* IMAGE */
.service-card img{
    width:100%;
    height:190px;
    object-fit:cover;
    transition:transform 0.4s ease;
}

/* CONTENT */
.service-card h3{
    margin:18px 0 10px;
    font-size:18px;
    font-weight:600;
}

.service-card p{
    padding:0 18px 15px;
    color:#64748b;
    font-size:14px;
}

/* TOP GRADIENT LINE */
.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#06b6d4);
}

/* REMOVE THIS */
/* .service-card::after { ... } */

/* NEW BUTTON */
.service-btn{
    display:block;
    width:100%;
    background:linear-gradient(135deg,#2563eb,#06b6d4);
    color:#fff;
    text-align:center;
    padding:12px;
    text-decoration:none;
    font-weight:500;
    border-radius:0 0 12px 12px;
    transition:0.3s;
}

/* HOVER EFFECT */
.service-btn:hover{
    background:linear-gradient(135deg,#1d4ed8,#0891b2);
    letter-spacing:0.5px;
}

/* CTA HOVER ANIMATION (subtle feedback) */
.service-card:hover::after{
    letter-spacing:1px;
    background:linear-gradient(135deg,#1d4ed8,#0891b2);
}

/* ABOUT */
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:10px;
}

/* WHY */
.why{
    background:#f1f5f9;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

.why-card{
    background:#ffffff;
    padding:20px;
    text-align:center;
    border-radius:8px;
    border:1px solid #e2e8f0;
    font-weight:500;
}

.why-card::before{
    content:"✓";
    display:block;
    font-size:20px;
    color:#2563eb;
    margin-bottom:8px;
}

/* CTA */
.cta{
    background:#2563eb;
    color:#fff;
    text-align:center;
}

.cta p{
    margin:10px 0 20px;
}

/* FOOTER */
footer{
    background:#0f172a;
    color:#cbd5f5;
    padding:50px 0 30px;
    text-align:center;
    position:relative;
}

/* subtle top divider */
footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#2563eb,#06b6d4);
}

/* footer text */
footer p{
    margin-bottom:10px;
    font-size:14px;
    line-height:1.6;
}

/* highlight phone */
footer p:nth-child(2){
    font-weight:600;
    color:#ffffff;
}

/* email style */
footer p:nth-child(3){
    color:#94a3b8;
}

/* hover effect (if clickable later) */
footer a{
    color:#cbd5f5;
    text-decoration:none;
}

footer a:hover{
    color:#38bdf8;
}

/* FLOATING WHATSAPP */
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    z-index:999;
    border-radius:50%;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

/* icon inside */
.whatsapp-float img{
    width:32px;
    height:32px;
}

/* hover animation */
.whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 15px 35px rgba(0,0,0,0.3);
}

/* subtle pulse animation (attention grab) */
@keyframes whatsappPulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,0.6);}
    70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

.whatsapp-float{
    animation:whatsappPulse 2s infinite;
}

/* MOBILE */
@media(max-width:768px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:28px;
    }

}/* End custom CSS */