.elementor-123 .elementor-element.elementor-element-027bdf2{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-027bdf2 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F8FAFC;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HERO SECTION */

.hero-section{
    background:linear-gradient(
        135deg,
        #E0F2FE 0%,
        #DBEAFE 25%,
        #DDD6FE 60%,
        #FFE4D6 100%
    );
    padding:120px 0;
}

.hero-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:55% 45%;
    gap:70px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    padding:12px 25px;
    background:#ffffff;
    color:#2563EB;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(37,99,235,.12);
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    color:#0F172A;
    margin-bottom:25px;
    font-weight:800;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    color:#475569;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.btn-primary{
    background:#2563EB;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    background:#fff;
    color:#2563EB;
    border:2px solid #2563EB;
    text-decoration:none;
    padding:16px 35px;
    border-radius:12px;
    font-weight:600;
}

.hero-image{
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:600px;
    height:550px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* STATS */

.stats-wrapper{
    display:flex;
    gap:20px;
}

.stat-card{
    background:#fff;
    flex:1;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.stat-card h3{
    color:#2563EB;
    font-size:32px;
}

.stat-card p{
    margin-top:8px;
    font-size:14px;
}

/* SERVICES */

.services-section{
    padding:100px 0;
    background:#fff;
}

.services-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
    color:#0F172A;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    color:#2563EB;
    margin-bottom:15px;
}

/* CTA */

.cta-section{
    padding:100px 0;
    text-align:center;
    background:#0F172A;
    color:#fff;
}

.cta-section h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-section p{
    font-size:18px;
    margin-bottom:30px;
}

/* RESPONSIVE */

@media(max-width:991px){

.hero-container{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-content h1{
    font-size:48px;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.stats-wrapper{
    flex-direction:column;
}

.services-grid{
    grid-template-columns:1fr;
}

.hero-image img{
    height:auto;
    max-width:100%;
}

}/* End custom CSS */