.elementor-3939 .elementor-element.elementor-element-0dd32eb{--display:flex;}/* Start custom CSS for html, class: .elementor-element-71746ae */.hero {
    text-align: center;
    padding: 30px 20px;
}
.hero h1 {
    font-size: 2.5em;
    color: #48babb;
    animation: fadeIn 1.5s ease-in-out;
}
.hero p {
    font-size: 1.2em;
    color: white;
    animation: slideIn 1.5s ease-in-out;
}
.info-box {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-top: 20px;
    animation: fadeIn 1.5s ease-in-out;
}
.service-variants {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 15px;
    padding: 20px 0;
}
/* Make single block centered if only one */
.service-variants:has(.variant:only-child) {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.variant {
    background: #2a2a2a;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}
.variant:hover {
    transform: scale(1.05);
}
.variant img {
    max-width: 100%;
    border-radius: 10px;
}
.variant h3 {
    margin: 10px 0;
    color: #48babb;
}
.testimonial, .why-choose, .cta {
    text-align: center;
    padding: 30px 20px;
}
.why-choose h2, .testimonial h2, .cta h2 {
    color: #48babb;
}
.why-choose .tick {
    color: gold;
}
.cta-button {
    background: #48babb;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 52px;
    display: inline-block;
    transition: 0.3s;
    margin-bottom: 15px;
}
.cta-button:hover {
    background: white;
    color: black;
    box-shadow: 0 0 15px #48babb;
}
.cta-info {
    margin-top: 10px;
    text-align: center;
}

/* Installation Steps */
.install-steps {
    text-align: center;
    padding: 40px 20px;
}
.install-steps h2 {
    color: #48babb;
    margin-bottom: 30px;
}
.steps-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.step {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 12px;
    width: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}
.step:hover {
    transform: translateY(-5px);
}
.step img {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}
.step p {
    margin: 0;
    font-weight: bold;
    color: #fff;
}



/* Other */
.slider {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px;
}
.service-card {
    flex: 0 0 200px;
    background: rgba(72, 186, 187, 0.5);
    color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.7;
}
.service-card img {
    width: 100%;
    border-radius: 10px;
}
.service-card:hover {
    transform: scale(1.1);
    opacity: 1;
}
.popup { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: #1a1a1a; color: white; padding: 20px; box-shadow: 0 0 10px rgba(0,0,0,0.5); border-radius: 10px; }
.help-text { background: #48babb; color: white; padding: 10px; border-radius: 5px; cursor: pointer; text-align: center; }
.help-text:hover { background: #3A9698; color: white; }
.popup button:hover { background: white; color: #1a1a1a; }
.close { cursor: pointer; font-size: 20px; color: #48babb; }
select, input[type="checkbox"] { margin-top: 10px; }
label { margin-top: 10px; }
h { 
    text-align: center;
    
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Responsive */
@media screen and (max-width: 768px) {
    .hero h1 { font-size: 2em; }
    .hero p { font-size: 1em; }
    .service-variants { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
    .cta-button { padding: 12px 20px; font-size: 1em; }
    .steps-wrapper { flex-direction: column; align-items: center; }
}/* End custom CSS */