.elementor-39 .elementor-element.elementor-element-7fd1b3e{--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;}.elementor-39 .elementor-element.elementor-element-4bf5bfc{--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;}.elementor-39 .elementor-element.elementor-element-f6a90b7{--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;}.elementor-39 .elementor-element.elementor-element-6e13861{--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-c83757b *//* 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;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a2eeffb *//* HERO */
.services-hero{
    position:relative;
    height:50vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:url('https://images.unsplash.com/photo-1584515933487-779824d29309') center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(15,23,42,0.75);
}

.hero-content{
    position:relative;
    color:#fff;
    max-width:700px;
}

.hero-content h1{
    font-size:38px;
    font-weight:700;
}

.hero-content p{
    margin-top:10px;
    color:#e2e8f0;
}

/* SECTION */
.services-section{
    padding:70px 0;
}

.section-title{
    text-align:center;
    font-size:30px;
    margin-bottom:40px;
}

/* GRID */
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

/* CARD */
.service-card{
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #e2e8f0;
    text-align:center;
    cursor:pointer;
    transition:0.3s;
    position:relative;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

/* IMAGE */
.service-image{
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:180px;
    object-fit:cover;
    transition:0.4s;
}

.service-card:hover img{
    transform:scale(1.05);
}

/* TEXT */
.service-card h3{
    margin:15px 0 10px;
    font-size:18px;
    font-weight:600;
}

.service-card p{
    padding:0 15px 15px;
    font-size:14px;
    color:#64748b;
}

/* CTA STRIP */
.service-card::after{
    content:"View Details →";
    display:block;
    background:#2563eb;
    color:#fff;
    padding:10px;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
}

.service-card:hover::after{
    background:#1d4ed8;
}

/* MODAL */
.service-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(15,23,42,0.7);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

/* MODAL CONTENT */
.modal-content{
    background:#fff;
    padding:30px;
    border-radius:12px;
    max-width:500px;
    width:90%;
    text-align:center;
    position:relative;
    animation:fadeUp 0.3s ease;
}

/* CLOSE BUTTON */
.close-btn{
    position:absolute;
    top:10px;
    right:15px;
    font-size:24px;
    cursor:pointer;
}

/* MODAL TEXT */
.modal-content h2{
    margin-bottom:10px;
}

.modal-content p{
    color:#64748b;
    margin-bottom:20px;
}

/* MODAL BUTTONS */
.modal-buttons a{
    display:inline-block;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    margin:5px;
    font-size:14px;
    font-weight:500;
}

.call-btn{
    background:#2563eb;
    color:#fff;
}

.whatsapp-btn{
    background:#22c55e;
    color:#fff;
}

/* ANIMATION */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:768px){

    .hero-content h1{
        font-size:26px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b43a7b9 *//* CTA SECTION */
.cta-section{
    position:relative;
    padding:80px 20px;
    text-align:center;
    background:url('https://images.unsplash.com/photo-1584515933487-779824d29309') center/cover no-repeat;
    overflow:hidden;
}

/* OVERLAY (GRADIENT FOR PREMIUM LOOK) */
.cta-overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:linear-gradient(135deg,rgba(37,99,235,0.9),rgba(6,182,212,0.85));
}

/* CONTENT */
.cta-content{
    position:relative;
    color:#fff;
    max-width:700px;
    margin:auto;
    animation:fadeUp 0.8s ease;
}

.cta-content h2{
    font-size:34px;
    font-weight:700;
}

.cta-content p{
    margin:15px 0 25px;
    color:#e2e8f0;
    font-size:15px;
}

/* BUTTON WRAPPER */
.cta-buttons{
    margin-top:10px;
}

/* BUTTON BASE */
.cta-buttons a{
    display:inline-block;
    padding:12px 24px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    margin:6px;
    transition:all 0.3s ease;
}

/* CALL BUTTON (PRIMARY) */
.cta-call{
    background:#ffffff;
    color:#2563eb;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.cta-call:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(0,0,0,0.3);
}

/* WHATSAPP BUTTON (SECONDARY) */
.cta-whatsapp{
    background:#22c55e;
    color:#fff;
}

.cta-whatsapp:hover{
    transform:translateY(-3px);
    background:#16a34a;
}

/* ANIMATION */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */
@media(max-width:768px){

    .cta-content h2{
        font-size:26px;
    }

    .cta-buttons a{
        display:block;
        width:100%;
        margin:8px 0;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6a816ad *//* 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;
}/* End custom CSS */