* {
    box-sizing: border-box;
	
}
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}
a,button,h1,h2,h3{
	color:#1D1E20;
}
a{
	text-decoration: none !important;
	
	
}

/* ----------------- HEADER  -----------------*/



body.no-scroll {
    overflow: hidden;
}
.main-nav, .desktop-search-bar, .mobile-menu-overlay, .submenu, .search-input-wrapper {
    transition: all 0.4s ease-in-out;
}
.header {
    /*
	width: 100%;
	display: flex;
    justify-content: space-between;
    align-items: center;*/
    padding: 20px 50px;
    background-color: #fff;
	border-bottom: 1px solid transparent;
	box-shadow: 0px 0px 0px #00000000;
	box-sizing: border-box;
   /*position: fixed;*/
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 80px;
    transition: transform 0.4s ease-in-out,box-shadow 0.3s ease, border-bottom 0.3s ease;

}
.header.scrol {
  border-bottom: 1px solid #ccc;
  box-shadow: 0px 1px 5px #00000040;
}
.header.hidden-header {
    transform: translateY(-100%); 
    position: absolute;

}
.mobile-center-toggle {
		 
		display: none;
	}

.logo-container {
    display: flex;
    align-items: center;
}
.logo img {
    height: auto;
}
.logo.tablet-logo,
.logo.mobile-logo {
    display: none;
}
.main-nav {
    flex-grow: 1;
    margin: 0 20px;
}
.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}
.nav-item {
    margin: 0 15px;
    position: relative;
}
.nav-item a {
    text-decoration: none;
    font-size: 16px;
	color:#1D1E20;
    display: flex;
    align-items: center;
    padding: 10px 0;
    white-space: nowrap;
}
.nav-item a i {
    margin-right: 8px;
    font-size: 18px;
}

.has-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0px;
    margin: 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}
.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.submenu li a {
    padding: 8px 30px;
    display: block;
}
.submenu-icon-desktop {
    margin-left: 5px;
    font-size: 12px;
}
.icons-right {
    display: flex;
    align-items: center;
	
}
.icons-right a:hover {
	border-bottom: 3px solid #1D1E20;
	transform: translateY(-3px);
	transition: border-color 0.3s ease, border-width 0.3s ease,  transform 0.3s ease;
}
.icon {
    font-size: 17px;
    color: #1D1E20;
    margin-left: 10px;
    cursor: pointer;
    text-decoration: none;
}

.search-toggle {
	padding: 0 10px;
	font-size: 25px;
	font-weight:bold;
}
.icon-accaunt {
    border: 1px solid #1D1E20;
    border-radius: 40px;
    padding: 6px 20px;
    font-weight: bold;
}
.icon-accaunt i{
   padding-right: 10px;
}
.icon-cart {
    font-weight:bold; 
	padding: 10px;
}
.icon-cart i{
   padding-right: 5px;
}
.header.icon {
    fill: #1D1E20;
}
.desktop-search-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    opacity: 0;
    pointer-events: none;
}
.desktop-search-bar.active {
    width: 50%;
    opacity: 1;
    pointer-events: auto;
}
.desktop-search-bar input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.mobile-menu-overlay {
    position: fixed; 
    top: 80px; 
    left: 0;
    width: 100%;
    height: calc(100vh - 80px); 
    max-height: 0; 
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    transition: max-height 0.4s ease-in-out, visibility 0s 0.4s;
    z-index: 999;
}
.mobile-menu-overlay.active {
    max-height: calc(100vh - 80px); 
    visibility: visible;
    transition: max-height 0.4s ease-in-out;
}
.mobile-menu-content {
    
    height: 100%; 
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch; 
    padding: 0;
}
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-list .nav-item {
    margin: 0;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.mobile-nav-list .nav-item a {
    padding: 15px 25px;
    font-size: 18px;

    display: block;
    width: 100%;
    flex-grow: 1;
}
.mobile-nav-list .nav-item a i {
    font-size: 20px;
    margin-right: 10px;
}
.mobile-icons-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
}
.mobile-icons-row a {
    font-size: 24px;
    text-decoration: none;
    padding: 0 10px;
}
.search-input-container {
    border-bottom: 1px solid #eee;
}
.search-input-wrapper {
    width: 100%;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.search-input-wrapper.active {
    max-height: 60px;
    opacity: 1;
    padding: 15px 25px;
}
.search-input-wrapper input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.submenu-toggle-mobile {
    display: none;
    font-size: 20px;
    padding: 15px 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}
.submenu-toggle-mobile.active {
    transform: rotate(90deg);
}
.mobile-nav-list .submenu {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f5f5f5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.mobile-nav-list .submenu.active {
    max-height: 500px;
	position:relative;
}
.mobile-nav-list .submenu li a {
    padding: 10px 40px;
    font-size: 16px;
    border-bottom: none;
}
@media (min-width: 1200px) {
	.bt {
		min-height: 60px;
		min-width: 295px;
		line-height: 35px;
		font-size: 26px;
	}
	
	.submenu li:hover { background-color:#d3dae4;}

}
@media (max-width: 1199px) {

    .header {
        padding: 15px 30px;
    }
    .logo.desktop-logo {
        display: none;
    }
    .logo.tablet-logo {
        display: block;
    }
    .nav-item a i {
        display: none;
    }
    .nav-item {
        margin: 0 10px;
    }
	.bt {
		min-height: 40px;
		min-width: 255px;
		line-height: 23px;
		font-size: 18px;
	}
}
@media (max-width: 767px) {
    .header {
        padding: 15px 20px;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
		border-bottom: 1px solid #eee;
		box-shadow: 0px 1px 5px #00000012;

    }
    
    .logo-container {
        flex-grow: 0;
    }
    .logo.desktop-logo,
    .logo.tablet-logo {
        display: none;
    }
    .logo.mobile-logo {
        display: block;
    }
    
    
    .main-nav {
        display: none;
    }
    
    
    .mobile-center-toggle {
        position: fixed; 
		display: flex;
        top: 60px; 
        left: 50%; 
        transform: translateX(-50%);
        z-index: 1100; 
        background: linear-gradient(to right, #fff, #fff),     linear-gradient(to bottom, #fff 0%, #fff 44%, #7b7b7b 100%);
		  background-clip: padding-box, border-box;
		background-origin: padding-box, border-box;
        border: 2px solid transparent;
		border-radius: 20px;
		width: 100px;
		height: 40px;
		padding: 12px;  
        align-items: center;
        justify-content: center;
       
        cursor: pointer;
        transition: top 0.4s ease-in-out, transform 0.4s ease-in-out, background-color 0.3s;
    }
	
    
    .mobile-center-toggle.header-hidden-toggle {
        transform: translateX(-50%) rotate(180deg); 
        top: 20px; 
    }
    
    .icons-right {
        display: flex; 
        align-items: center;
        gap: 15px;
    }
    
    .icons-right .icon {
        display: none; 
    }
    
    
    .hamburger-menu {
        display: block; 
    }
    
    .hamburger-menu.active i::before {
        content: "\f00d";
    }
    
    .desktop-search-bar {
        display: none;
    }
    
    .submenu-toggle-mobile {
            display: block;
			position: absolute;
			right: 0;
    }
}
:focus-visible {
    outline: -webkit-focus-ring-color auto 1px;
}
textarea:focus-visible,input:focus-visible {
    outline-offset: 0px;
	outline-width: 1px;
	    outline-color: #aeaeae;
    background-color: #f4f5ff3b;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.mx-auto {
    margin-right: auto!important;
    margin-left: auto!important;
}
.w-50{width:50%}
/* --------------- HEADER END  ---------------*/


/* ----------------- BODY  -----------------*/

.main-content {
    padding-top: 0px; 
}

.container {
    width: 100%;
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
}



.cta-button a {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}
.hero-section {
    background: #007bff url('https://www.elegantthemes.com/layouts/wp-content/uploads/2018/08/cleaning-services-09.jpg')  no-repeat center center / cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}
.hero-section .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.bt:hover{
	transform: translateY(-10px) translateX(10px) ;

	-webkit-box-shadow: 0 0 10px rgb(0 0 0 / 15%);
   box-shadow: -5px 7px 0px rgb(0 0 0 / 75%);
  
}
.bt:active{
	transform: translateY(-10px) translateX(10px) ;
	-webkit-box-shadow: 0 0 10px rgb(0 0 0 / 15%);
   box-shadow: -5px 7px 0px rgb(255 255 255 / 75%);
  
}


button:hover{background-color:#ccc;}
button {
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 100px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	font-weight: 400;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 10px 15px;
	overflow: hidden;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.blic {
  min-height: 100px;
  display: flex;
	overflow: hidden;
  align-items: center;
  justify-content: center;
}
.hero-section .bt{
	color: #fff;
	background: linear-gradient(to right, #70b7ff, #7662ff, #7d16fe);
}
.hero .bt{
	color: #1D1E20;
	background-color: #ffffff1f;
	border:2px solid #1D1E20;
}

.bt {
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 100px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	font-weight: 800;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 10px 15px;
	overflow: hidden;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.blic .bt:before {
  content: '';
  width: 100%;
  height: 200%;
  position: absolute;
  top: 0; left: 0;
  opacity: 0.6;
  filter: blur;
  background: linear-gradient(to left, transparent 0%, #fff 40%, #fff 50%, transparent 100%);
  transform: translate(-100%, -25%) rotate(10deg);
  animation: blick 4s infinite;
}

@keyframes blick {
  0% {
    transform: translate(-100%, -25%) rotate(10deg);
  }
  20% {
    transform: translate(100%, -25%) rotate(10deg);
  }
  100% {
    transform: translate(100%, -25%) rotate(10deg);
  }
}




.services-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.service-card, .benefit-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}
.service-icon i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}
.testimonial {
    background: #e9ecef;
    padding: 30px;
    border-left: 5px solid #007bff;
    margin-top: 30px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* --------------- BODY END  ---------------*/


/* ----------------- FOOTER  -----------------*/
.footer {
    background: #f4f5ff;
    padding: 40px 0;
	
    margin-top: 20px;
	box-shadow: 0px -3px 3px #00000040;
}
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.footer-contact p, .footer-social a {
    margin-bottom: 10px;
    display: block;
}
.footer-social a {
    color: #fff;
    margin-right: 10px;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #007bff;
}

/* --------------- FOOTER END ---------------*/
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        margin-top: 10px;
    }
	

}

/* --------------- Slider END ---------------*/


/* --------------- Slider END ---------------*/