/*
Theme Name: Jetflow External Cleaning
Theme URI: https://nuhatech.org
Description: A custom theme built for Jetflow External Cleaning by Nuhatech.org
Author: Nuhatech
Author URI: https://nuhatech.org
Version: 1.0.0
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	
}
.ntnashow {
	display: none;
}
.ntfooter svg.e-fas-caret-right {
    width: 5px;
}
.ntfooter svg.e-fas-map-marker-alt, .ntfooter svg.e-fas-phone, .ntfooter svg.e-fas-envelope {
	width: 10px;
}
.ntfooter ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ntfooter2 ul {
    display: flex;
    margin: 0;
    padding: 0;
}
.ntfooter2 svg {
    width: 7px;
}
.ntsingleservice img {
    height: 450px;
}
.jetflow-form {
    width: 100%;
}
.jetflow-form p {
    margin: 3px 0px !important;
}
.jetflow-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.jetflow-form .form-col {
    width: 50%;
}

.jetflow-form .form-row.full {
    display: block;
}

.jetflow-form input,
.jetflow-form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.jetflow-form input:focus,
.jetflow-form select:focus {
    border-color: #00aaff;
    outline: none;
}

.jetflow-form input[type="submit"] {
    width: 100%;
    background: #00aaff;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
}

.jetflow-form input[type="submit"]:hover {
    background: #008ecc;
}
.service-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}
.service-box::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: inherit; /* Elementor background */
    background-size: cover;
    background-position: center;

    transition: transform 0.6s ease;
    transform: scale(1);
    z-index: 1;
}
.ntmainsbox:hover .service-box::before {
    transform: scale(1.1);
}

/* Ribbon */
.service-ribbon {

    position: absolute !important;
    top: 100px;
    left: -15px;

    background: #0678CC;
    color: #fff;

    padding: 6px 30px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;

    transform: rotate(-45deg);
    transform-origin: left top;

    line-height: 1;
    z-index: 5;

    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
/* Ensure text stays above overlay */
.service-box * {
    position: relative;
    z-index: 2;
}
/*  Responsive */
@media (max-width: 767px) {
    .jetflow-form .form-row {
        flex-direction: column;
    }

    .jetflow-form .form-col {
        width: 100%;
    }
	.ntnashow {
	display: block;
}
	.ntsingleservice img {
    height: 200px;
}
}