html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #FFFFFF;
    font-size: 17px;
    color: #6C6C6C;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}

p{
    line-height: 27px;
}

.btn:focus{
    box-shadow: none;
}

:root {
    --primary-01: #00AFEF;
    --primary-02: #BDCB1F;
    --primary-03: #E1AF1E;
    --black-01: #333131;
    --black-02: #6C6C6C;
    --white-01: #F5F5F5;
    --white-02: #FFFFFF;
}

/*Header*/
.header{
    background: transparent;
    z-index: 9;
    width: 100%;
    transition: all 0.2s ease-in-out;
    position: sticky;
    top: 0px;
    left: 0px;
}

/*Top Nav*/
.top-nav{
    background-color: var(--black-01);
    padding: 5px 0;
}
.top-nav-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.top-nav-content li{
    color: var(--white-01);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-nav-content li a{
    transition: all 0.3s ease-in-out;
}
.top-nav-content li a:hover{
    color: var(--primary-01);
}
.top-social-sec{
    display: flex;
    align-items: center;
    gap: 20px;
}
.social svg path{
    transition: all 0.3s ease-in-out;
}
.social:hover svg path{
    fill: var(--primary-01);
}
.top-contact-sec{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/*Main Nav*/
.main-nav{
    padding: 10px 0px;
    position: relative;
    background-color: #FFFFFF;
}
.navbar, 
.navbar-brand{
    padding: 0px;
}
.navbar-nav{
    gap: 42px;
    margin-right: 30px;
}
.navbar-nav .nav-item:last-child{
    display: none;
}
.logo{
    width: 300px;
}
.nav-link{
    display: block;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: var(--black-01);
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.nav-item .nav-link.active, 
.nav-item .nav-link:hover{
    color: var(--primary-01);
}
.btn-theme{
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 12px 24px;
    border-radius: 3px;
    background-color: #00AFEF !important;
    color: #FFF !important;
    font-size: 17px;
    font-weight: 700;
    line-height: normal;
    transition: all 0.3s ease-in-out;
    border: 0px !important;
}
/* Shine element */
.btn-theme::before{
    content:"";
    position:absolute;
    top:0;
    left:-90%;
    width:70%;
    height:100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 45%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0.8) 55%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
}

/* Hover shine animation */
.btn-theme:hover::before{
    animation: shine 0.9s ease forwards;
}

@keyframes shine{
    0%{
        left:-90%;
    }
    100%{
        left:140%;
    }
}

#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}          
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem;
}

@media all and (min-width: 1200px) {
.navbar .nav-item .dropdown-menu{ display: none; }
.navbar .nav-item:hover .dropdown-menu{ display: block; }
.navbar .nav-item .dropdown-menu{ margin-top:0; }
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 10px;
    margin-top: 0px;
    vertical-align: 3px;
    content: "";
    border-top: 0.3em solid !important;
    border: solid #000000 !important;
    border-width: 0 2px 2px 0 !important;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(45deg);
    border-right: 0em solid transparent; 
    border-bottom: 0; 
    border-left: 0em solid transparent; 
}
.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0px;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: 0px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    background: var(--white-02);
    box-shadow: 3px 3px 6px #0000001a;
    border-radius: 3px;
    overflow: hidden;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 20px;
    clear: both;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.nav-item .nav-link.active .dropdown-toggle::after{  
    border-top: 0.3em solid !important;
    border: solid var(--primary-01) !important;
    border-width: 0 2px 2px 0 !important;
}
.nav-item .nav-link:hover .dropdown-toggle::after{
    border-top: 0.3em solid !important;
    border: solid var(--primary-01) !important;
    border-width: 0 2px 2px 0 !important;
}
.dropdown-item:focus, .dropdown-item:hover, .dropdown-item.active {
    color: var(--white-02);
    background-color: var(--primary-01);
}
.h-support{
    font-size: 14px;
    opacity: 0.8;
}
.dropdown .dropdown-menu{
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    -ms-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}

@media all and (min-width: 1200px) {
.navbar .dropdown-menu-end{ right:0; left: auto; }
.navbar .nav-item .dropdown-menu{ display:block; opacity: 0;  visibility: hidden; transition:.3s; margin-top:0; }
.navbar .dropdown-menu.fade-down{ top:80%; transform: rotateX(-75deg); transform-origin: 0% 0%; }
.navbar .dropdown-menu.fade-up{ top:180%; }
.navbar .nav-item:hover .dropdown-menu{ transition: .3s; opacity:1; visibility:visible; top:100%; transform: rotateX(0deg); }
}

/* close */
.navbar-toggler{
    padding: 0px;
    border: 0px;
}
.menu_toggle{
    width: 50px !important;
    height: 50px;
    padding: 9px 10px 9px;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in;
    text-align: left;
    position: relative;
    right: 0;
    top: 0px;
    z-index: 90;
    border-radius: 3px;
    line-height: 0px;
    align-items: flex-end;
}
.menu_toggle span {
    height: 3px;
    width: 100%;
    background: var(--black-01);
    display: inline-block;
    transition: all 0.5s cubic-bezier(.62, .43, .35, 1.47);
    margin: 2px 0px;
}
.navbar-toggler:hover .menu_toggle span{
    background: var(--primary-01);
}
.menu_toggle span:nth-child(2){
    width: 75%;
}
.menu_toggle span:nth-child(3){
    width: 48%;
}

/* toggle icon animation */
#check1:checked~.menu_toggle span:nth-child(1) {
    width: 90%;
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

#check1:checked~.menu_toggle span:nth-child(2) {
    width: 0;
}

#check1:checked~.menu_toggle span:nth-child(3) {
    width: 90%;
    transform: rotate(-45deg) translateY(-4px) translateX(4px);
}
#check1{
    display: none;
}

/*Hero Section*/
.hero-sec{
    width: 100%;
    min-height: calc(100vh - 219px);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-sec::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #0000004D;
    position: absolute;
    top: 0;
    left: 0;
    z-index:1;
}
/* carousel background */
.hero-bg{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}
.carousel-inner {
    height: 100%;
}
.hero-bg .carousel-item{
    height:100%;
}
.hero-img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation: kenburns 12s ease-in-out infinite alternate;
}

/* Ken Burns animation */
@keyframes kenburns {
    0%{
        transform:scale(1) translate(0,0);
    }

    50%{
        transform:scale(1.1) translate(-1%, -1%);
    }

    100%{
        transform:scale(1.2) translate(1%, 1%);
    }
}

.hero-nav{
    top:50%;
    transform:translateY(-50%);
    width: 32px;
    height: 32px;
    opacity:1;
    background-color: transparent;
    border: 1px solid var(--white-01);
    border-radius: 50%;
    z-index:3;
    transition: all 0.3s ease-in-out;
}
.hero-nav:hover{
    background-color: var(--primary-01);
    border-color: var(--primary-01);
}
.carousel-control-prev{
    left: 50px;
}
.carousel-control-next{
    right: 50px;
}

.hero-sec .container{
    height: 100%;
    position: relative;
    z-index: 2;
}
.hero-content{
    max-width: 956px;
    width: 100%;
    padding: 50px 0;
}
.hero-small-title{
    color: var(--primary-01);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.hero-title{
    color: var(--white-02);
    text-align: center;
    font-size: 60px;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 24px;
}
.hero-text{
    color: var(--white-01);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 48px;
}
.hero-btn-sec{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.hero-btn-sec .btn-theme{
    border: 2px solid var(--primary-01) !important;
}
.btn-theme.btn-br{
    background-color: transparent !important;
}
.btn-theme.btn-br:hover{
    background-color: var(--primary-01) !important;
}

/*Who We Are*/
.badge-sec{
    display: flex;
    align-items: center;
    gap: 24px;
}
.btn-sec2{
    display: flex;
    align-items: center;
    gap: 12px;
}


/*Feature Section*/
.feature-sec{
    background: #FFF;
    box-shadow: 0 -13px 30px 0 rgba(0, 0, 0, 0.04);
}
.feature-box{
    width: 100%;
    height: 100%;
    border-left: 1px solid #DDD;
    padding: 34px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.feature-box .ft-18{
    color: var(--black-01);
    margin-bottom: 12px;
}

/*What We Do*/
.wwd-sec{
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    position: relative;
    margin-top: -100px;
}
.wwd-sec::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000000CC;
    position: absolute;
    top: 0;
    left: 0;
}
.wwd-sec .title{
    color: var(--white-01);
}
.service-box{
    width: 100%;
    height: 100%;
    background-color: var(--white-02);
}
.sb-top{
    position: relative;
}
.sb-icon-box{
    width: 87px;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 40px;
    left: 40px;
}
.bg-blue{
    background-color: var(--primary-01);
}
.bg-green{
    background-color: var(--primary-02);
}
.bg-orange{
    background-color: var(--primary-03);
}
.sb-bottom{
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}
.sb-bottom .title{
    color: var(--black-01);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.sb-bottom p{
    margin-bottom: 0px;
}
.btn-read-more{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-01) !important;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.rm-arrow{
    margin-right: 5px;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}
.btn-read-more:hover .rm-arrow{
    margin-left: 15px;
    margin-right: 0px;
}
.wwd-sec .cust-gap{
    --bs-gutter-y: 40px;
    --bs-gutter-x: 40px;
}


/*Why Choose Us*/
.content-box{
    display: flex;
    flex-direction: column;
    gap: 34px;
}
.wcu-ul{
    display: flex;
    align-items: center;
    gap: 34px;
}
.wcu-ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black-01);
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
}
.wcu-ul li::before{
    content: '';
    min-width: 24px;
    height: 24px;
    background-image: url(../../img/icons/fi-sr-badge-check.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}



/*Schedule an appointment or email us your question*/
.schedule-an-appointment{
    background-color: var(--primary-01);
    padding: 80px 0;
}
.schedule-an-appointment .title{
    color: var(--white-02);
    font-size: 36px;
    font-weight: 800;
    line-height: 60px;
    margin-bottom: 0px;
}
.btn-sec{
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: end;
}
.btn-theme.btn-green{
    background-color: var(--primary-02) !important;
    color: var(--white-02) !important;
}
.btn-theme.btn-orange{
    background-color: var(--primary-03) !important;
    color: var(--white-02) !important;
}


/*Our Service Area*/
.sec-pad{
    padding: 100px 0;
}
.service-area-bg{
    background-size: cover;
    background-position: center;
    position: relative;
}
.service-area-bg::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #FFFFFF91;
    position: absolute;
    top: 0px;
    left: 0px;
}
.small-top-title{
    color: var(--primary-01);
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.title{
    color: var(--black-01);
    font-size: 45px;
    font-weight: 800;
    line-height: 60px;
    margin-bottom: 34px;
}
.service-area-bg .cust-gap{
    --bs-gutter-y: 34px;
    --bs-gutter-x: 34px;
}
.sa-title{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    margin-bottom: 10px;
    color: var(--black-01);
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
}
.sa-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sa-ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black-01);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    position: relative;
}
.sa-ul li::before{
    content: '';
    background-image: url(../../img/icons/checked-correct.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 20px;
    height: 14px;
}

/*About Us Page*/
.small-schedule-sec{
    padding: 18px 0;
}
.bg-theme{
    background-color: var(--primary-01);
}
.schedule-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}
.schedule-box .title{
    color: var(--white-02);
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 60px;
    margin-bottom: 0px;
}
.btn-sec{
    display: flex;
    align-items: center;
    gap: 24px;
}
.owner-img{
    text-align: left;
    position: relative;
}
.rotary-logo{
    position: absolute;
    bottom: -18px;
    right: -3px;
}


/*Services Page*/
.read-more-box{
    padding: 12px;
    background-color: var(--black-01);
}
.service-box1{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}


/*Residencial Page*/
.black-box{
    padding: 24px 12px;
    background-color: var(--black-01);
}
.sub-title{
    color: var(--primary-01);
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.gallery-box1{
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}
.btn-close:focus{
    box-shadow: none;
}
.gallery-box2{
    width: 100%;
    height: 525px;
    background-size: cover;
    background-position: center;
}


/*Wallpaper Page*/
.wp-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    column-count: 2;
    column-gap: 0px;
    width: fit-content;
}
.wp-ul li{
    border-radius: 50px;
    color: var(--white-01);
    background-color: var(--primary-01);
    padding: 4px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    width: fit-content;
}


/*Flooring Page*/
.fp-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fp-ul li span{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black-01);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    position: relative;
}
.fp-ul li span::before{
    content: '';
    background-image: url(../../img/icons/checked-correct.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 20px;
    height: 14px;
}
.inner-ul{
    list-style: disc;
    padding-left: 50px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.inner-ul li{
    color: var(--black-01);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
}


/*Conatct Page*/
.contact-flex{
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/*Footer*/
.footer{
    background-color: #232323;
}
.p-footer{
    padding: 60px 0 40px;
}
.f-logo-sec{
    display: flex;
    flex-direction: column;
    gap: 34px;
}
.f-text{
    color: var(--white-01);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0px;
}
.social-sec{
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-sec .social{
    min-width: 34px;
    height: 34px;
    background-color: var(--white-01);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.social-sec .social:hover{
    background-color: var(--primary-01);
}
.social-sec .social:hover svg path{
    fill: var(--white-02);
}
.f-title{
    color: var(--white-02);
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 24px;
}
.f-ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    columns: 2;
    column-gap: 80px;
    width: fit-content;
}
.f-ul li{
    width: fit-content;
    margin-bottom: 16px;
}
.f-ul li a{
    color: var(--white-02);
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    transition: all 0.3s ease-in-out;
}
.f-ul li a:hover{
    color: var(--primary-01);
}
.f-link{
    color: var(--white-02);
    font-size: 24px;
    font-weight: 600;
    line-height: 27px;
    transition: all 0.3s ease-in-out;
}
.f-link:hover{
    color: var(--primary-01);
}
.s-footer{
    padding: 20px 0;
    border-top: 1px solid #5A5A5A;
}
.copyright-text{
    text-align: center;
    color: var(--white-02);
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
}


/*Modal Start*/
.modal label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--black-01);
}

.modal input[type="text"],
.modal input[type="number"],
.modal input[type="tel"],
.modal select{
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #bbb;
    border-radius: 3px;
    font-size: 17px;
    font-weight: 500;
    box-sizing: border-box;
    background-color: #e5e5e5;
    line-height: normal;
}

.modal select:hover,
.modal input:hover,
.modal select:focus,
.modal input:focus {
    border-color: #356081;
}

.conditional-section{
    display:none;
}
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #007bff; /* Optional: Adds theme color */
    cursor: pointer;
}

.radio-group label {
    font-weight: 600;
    color: var(--black-01);
    margin-top: 5px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white url("../images/icons/chevron-down.png") no-repeat right 12px center;
    background-size: 15px;
    padding-right: 35px; /* gives room for arrow on right */
    cursor: pointer;
}
.modal-content{
    position: relative;
}

.btn-close{
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    opacity: 1 !important;
    cursor: pointer;
    --bs-btn-close-bg: none;
    width: auto;
    padding: 0px;
    z-index: 9;
}
.btn-close svg{
    width: 30px;
    height: 30px;
    transition: all 0.3s ease-in-out;
}
.btn-close:hover svg path{
    transition: all 0.3s ease-in-out;
}
.btn-close:hover svg path{
    fill: var(--primary-01);
}
.modal-body{
    padding: 50px 20px 20px;
}
.modal-body .title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    color: var(--black-01);
    margin-bottom: 0px;
}
.form-select:focus{
    box-shadow: none;
}


.ft-18{
    font-size: 18px;
}
.semi-bold{
    font-weight: 600;
}
.bold{
    font-weight: 700;
}
.extra-bold{
    font-weight: 800;
}

.black-text{
    color: var(--black-01);
}

.z-1{
    position: relative;
    z-index: 1;
}