.elementor-8 .elementor-element.elementor-element-08ffda9{margin-top:-180px;margin-bottom:-180px;}/* Start custom CSS for html, class: .elementor-element-01546ab *//* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background: #f8f9fb;
}

/* REMOVE HEADER / MENU FROM ALL DEVICES */
header,
.site-header,
.main-header,
.elementor-location-header,
nav {
    display: none !important;
}

/* HERO */
.hero {
    padding: 100px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, #0f9b9b, #00b4db);
    color: #fff;
    position: relative;
    margin-top: 60px;
}

/* LOGO */
.hero img {
    width: 160px;
    margin-bottom: 20px;
}

/* TEXT */
.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* BUTTONS */
.hero-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 26px;
    margin: 6px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.primary {
    background: linear-gradient(45deg, #ff7a00, #ff9500);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255,122,0,0.4);
}

.primary:hover {
    transform: translateY(-2px);
}

.secondary {
    background: #fff;
    color: #0f9b9b;
}

/* 📱 MOBILE */
@media (max-width: 480px) {

    .hero {
        padding: 90px 15px 60px;
    }

    .hero img {
        width: 140px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        width: 100%;
        max-width: 260px;
    }
}

/* 📱 TABLET */
@media (min-width: 481px) and (max-width: 768px) {

    .hero img {
        width: 180px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }
}

/* 💻 DESKTOP */
@media (min-width: 769px) {

    .hero img {
        width: 200px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: 0.5px;
    }

    .hero p {
        font-size: 18px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e5a660d */.about {
    padding: 50px 15px;
    text-align: center;
    background: #fff;
}

.about p {
    max-width: 650px;
    margin: auto;
    font-size: 15px;
    line-height: 1.6;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-240d1a1 */.services {
    padding: 70px 20px;
    text-align: center;
    background: #f9fbfc;
}

.services h2 {
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 600;
}

/* GRID */
.service-box {
    display: grid;
    gap: 25px;
}

/* CARD */
.service {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.35s ease;
    border: 2px solid transparent;
}

.service:hover {
    transform: translateY(-8px);
    border-color: #0f9b9b;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ICON */
.icon {
    margin-bottom: 18px;
    color: #0f9b9b;
    background: rgba(15,155,155,0.1);
    padding: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    transition: 0.3s;
}

.icon svg {
    width: 40px;
    height: 40px;
}

/* HOVER ICON */
.service:hover .icon {
    background: linear-gradient(135deg, #0f9b9b, #00b4db);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* TEXT */
.service h3 {
    color: #0f9b9b;
    margin-bottom: 10px;
    font-size: 20px;
}

.service p {
    font-size: 14px;
    color: #555;
}

/* 🔥 INSTAGRAM SPECIAL */
.highlight {
    border: 2px solid #E1306C;
}

.highlight h3 {
    color: #E1306C;
}

.highlight .icon {
    background: rgba(225,48,108,0.1);
    color: #E1306C;
}

.highlight:hover .icon {
    background: linear-gradient(135deg, #E1306C, #ff7a18);
}

/* RESPONSIVE */
@media(max-width:767px) {
    .service-box {
        grid-template-columns: 1fr;
    }
}

@media(min-width:768px) {
    .service-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:1100px) {
    .service-box {
        grid-template-columns: repeat(4, 1fr);
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-58db2ae */.why {
    padding: 50px 15px;
    text-align: center;
    background: #fff;
}

.why ul {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    display: inline-block;
    text-align: left;
}

.why li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 15px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ca4dfba */.contact {
    padding: 50px 15px;
    text-align: center;
    background: linear-gradient(135deg, #0f9b9b, #00b4db);
    color: #fff;
}

.contact form {
    max-width: 400px;
    margin: auto;
}

.contact input,
.contact select {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
    font-size: 14px;
}

.contact button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #ff7a00, #ff9500);
    border: none;
    color: #fff;
    border-radius: 50px;
    margin-top: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255,122,0,0.4);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d2bd0a0 */.sticky-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    z-index: 999;
}

.sticky-bar a {
    flex: 1;
    text-align: center;
    padding: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.call {
    background: #0f9b9b;
}

.whatsapp {
    background: #25D366;
}/* End custom CSS */