
.home-header {
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.home-header .search {
    max-width: 100%;
    margin: 5px 0;
}

@media only screen and (max-width:760px) {
    .home-header {
        gap: 15px;
    }
}

.menu-btn {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 999;
    overflow: hidden;
}

.menu-btn .bar {
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    background-color: #494E53;
    transition: all 0.3s ease-in-out;
}

.menu-btn .bar:nth-of-type(2) {
    top: calc(50% - 9px);
}

.menu-btn .bar:nth-of-type(3) {
    top: calc(50% + 9px);
}

.menu-btn.active .bar:nth-of-type(1) {
    display: none;
}

.menu-btn.active .bar:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
    background-color: #FFFFFF;
}

.menu-btn.active .bar:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
    background-color: #FFFFFF;
}

.nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    max-width: 24%;
    height: 100vh;
    padding: 100px 50px;
    background: #FB5D52;
    transform: translateX(500%);
    transition: transform 0.5s;
}

.nav.active {
    transform: translateX(0);
}

.nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav .nav-list-item {
    list-style-type: none;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #FFFFFF !important;
    white-space: nowrap;
    padding: 10px 0;
}

.nav .nav-list-item a {
    color: #FFFFFF !important;
}

.tab-content,
.tab-content-search {
    margin: 0 auto;
    text-align: center;
}

.tab-content ul,
.tab-content-search ul {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #FB5D52;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.tab-content li,
.tab-content-search li {
    margin: 0 !important;
    padding: 0 !important;
    border-right: 1px solid #FB5D52;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 42px !important;
    color: #FB5D52;
    text-align: center;
}

.tab-content li:last-child,
.tab-content-search li:last-child {
    border: none;
}

.tab-content li a,
.tab-content-search li a {
    color: #FB5D52;
    display: block;
    padding: 0 30px;
    transition: all .4s ease-in-out;
}

.tab-content li a:hover,
.tab-content-search li a:hover {
    color: #FFFFFF;
    background-color: #FB5D52;
    transition: all .4s ease-in-out;
}

.tab-content li a.select,
.tab-content-search li a.select {
    color: #FFFFFF;
    background-color: #FB5D52;
    transition: all .4s ease-in-out;
}

.tab-details,
.tab-details-search {
    margin: 0;
    padding: 20px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 15px;
    border-top: 1px solid #FB5D52;
    box-shadow: 0px 10px 35px 0px #EFDFDD99;
    position: relative;
}

.tab-details .form-control,
.tab-details-search .form-control {
    background-color: #FFF6F5;
    border-radius: 10px;
    border: 1px solid #ECD7D4;
    padding: 14px 45px 14px 15px;
    font-size: 14px;
    color: #484C5B;
    font-weight: 500;
    width: 100%;
    display: block;
}

.tab-details select,
.tab-details-search select {
    background: #FFF6F5 url(../img/dd-arrow.png) no-repeat right;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.tab-details .your-location,
.tab-details-search .your-location {
    background: #FFF6F5 url(../img/pointer-icon.svg) no-repeat right;
}

.tab-details .btn-secondary,
.tab-details-search .btn-secondary {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media only screen and (max-width:760px) {

    .tab-content ul,
    .tab-content-search ul {
        border-radius: 10px 10px 0 0;
    }

    .tab-content li,
    .tab-content-search li {
        font-size: 14px !important;
        line-height: 34px !important;
    }

    .tab-content li a,
    .tab-content-search li a {
        padding: 0 12px;
    }

    .tab-details,
    .tab-details-search {
        padding: 10px;
        border-radius: 10px;
    }

    .tab-details .form-control,
    .tab-details-search .form-control {
        margin: 5px auto;
        font-size: 14px;
    }

    .nav {
        max-width: 60%;
        padding: 50px 30px;
    }

    .nav .nav-list-item {
        font-size: 16px;
        padding: 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1200px) {
    .nav {
        max-width: 30%;
        padding: 50px 30px;
    }
}

.other-services-section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* .other-services-section::before {
    content: "";
    width: 1120px;
    height: 1120px;
    background-color: #FFF6F5;
    border-radius: 50%;
    position: absolute;
    left: -260px;
    top: -400px;
    z-index: -100 !important;
} */

.other-services-section h2 {
    font-weight: 700;
}

.services-wrapper {
    padding: 20px 0 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.services-wrapper .service {
    width: calc(50% - 15px);
    min-height: 200px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 0px 50px 0px #F6E1DE;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

.services-wrapper .service article {
    width: calc(100% - 130px);
}

.services-wrapper .service figure {
    width: 100px;
}

@media only screen and (max-width:760px) {
    .other-services-section {
        padding: 10px 0;
    }

    .other-services-section::before {
        display: none;
    }

    .services-wrapper {
        padding: 0 0 30px 0;
        gap: 15px;
    }

    .services-wrapper .service {
        width: 100%;
        padding: 15x;
        flex-wrap: wrap-reverse;
        gap: 0;
        text-align: center;
    }

    .services-wrapper .service article {
        width: 100%;
    }

    .services-wrapper .service figure {
        width: 100%;
    }
}

.get-a-call-back-form {
    padding: 20px !important;
}

.get-a-call-back-form .form-control {
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #ECD7D4;
    padding: 14px 15px;
    font-size: 14px;
    color: #484C5B;
    font-weight: 500;
    width: 100%;
    display: block;
}

.get-a-call-back-form .your-name {
    background: #FFFFFF url(../img/user-icon.svg) no-repeat right;
}

.get-a-call-back-form .your-email {
    background: #FFFFFF url(../img/messege-icon.svg) no-repeat right;
}

.get-a-call-back-form .your-phone {
    background: #FFFFFF url(../img/phone-icon.svg) no-repeat right;
}

.get-a-call-back-form select {
    background: #FFF6F5 url(../img/dd-arrow.png) no-repeat right;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.get-a-call-back-form button[type="button"] {
    width: 100%;
}

textarea {
    resize: none;
    overflow: auto;
}

.divider {
    display: flex;
}

.divider:before,
.divider:after {
    content: "";
    flex: 1;
}

.line {
    align-items: center;
    margin: 1em -1em;
}

.line:before,
.line:after {
    height: 1px;
    margin: 0 1em;
}

.one-line:before,
.one-line:after {
    background: #484C5B;
}

.dashboard-info-section .profile-box article p.txticon {
    position: relative;
    padding-left: 25px;
    margin: 0;
    margin-bottom: 2px;
    font-size: 14px;
}

.dashboard-info-section .profile-box article p.txticon i {
    position: absolute;
    left: 0;
    top: 4px;
}

.add-new-file {
    min-height: 100px;
    background: #66CF2726;
    border-radius: 10px;
    padding: 15px;
}

.filelabel {
    width: 100%;
    height: 82px;
    border: 1px dashed #66CF27;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5px;
    transition: border 300ms ease;
    cursor: pointer;
    text-align: center;
    margin: 0;
}

.filelabel i {
    display: block;
    font-size: 30px;
    padding-bottom: 5px;
}

.filelabel i,
.filelabel .title {
    color: #64CE23;
    transition: 200ms color;
}

.filelabel:hover {
    border: 1px solid #64CE23;
}

.filelabel:hover i,
.filelabel:hover .title {
    color: #64CE23;
}

#FileInput {
    display: none;
}

/* Testimonials Section */
.users-says-section {
    position: relative;
    padding: 50px 0 50px 0;
    text-align: center;
}

.users-says-imag {
    text-align: center;
}

.users-says-imag img:last-child {
    display: none;
}

.js-users-says .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.js-users-says .slick-dots li {
    margin: 0 4px;
}

.js-users-says .slick-dots li button {
    width: 8px;
    height: 8px;
    background: rgba(251, 93, 82, 0.3);
    font-size: 0;
}

.js-users-says .slick-dots li.slick-active button {
    background: #FB5D52;
}

.js-users-says .slick-dots li button::before {
    content: "";
    display: none;
}

.js-users-says .slick-dots {
    bottom: 52px;
}

.js-users-says .slick-prev {
    top: unset;
    bottom: -80px;
    left: calc(50% - 40px);
    background: rgba(251, 93, 82, 0.15);
    display: none !important;
}

.js-users-says .slick-next {
    top: unset;
    bottom: -80px;
    right: calc(50% - 40px);
    background: rgba(251, 93, 82, 0.15);
    display: none !important;
}

.google-reviews {
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-reviews p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: #484C5B;
    margin-bottom: 0;
}

.google-reviews p span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: #2623AC;
}

.google-reviews ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 6px;
    margin: 0;
    list-style-type: none;
}

.google-reviews ul li a i {
    font-size: 20px;
    color: #F9B53D;
}

.users-say-content {
    margin: 0 auto;
    max-width: 1000px;
    background-color: #FFFFFF;
}

.users-say-content p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #484C5B;
    margin-bottom: 0;
    padding-bottom: 25px;
}

.users-say-content h5 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #1E212F;
    padding-bottom: 58px;
}

.users-say-content h5 span {
    display: block;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #484C5B;
}


@media (min-width:1200px) {
    .users-says-section {
        z-index: 10;
        padding: 100px 0 50px 0;
    }

    .users-says-section::before {
        position: absolute;
        content: "";
        bottom: -130px;
        left: -60px;
        width: 290px;
        height: 290px;
        border-radius: 50%;
        background: #FFA69F;
        filter: blur(142px);
        z-index: 2;
    }

    .users-says-imag img:last-child {
        display: block;
    }

    .users-says-imag img:first-child {
        display: none;
    }

    .users-says-imag {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .users-say-content p {
        font-size: 20px;
        line-height: 30px;
        padding-bottom: 30px;
    }

    .users-say-content h5 {
        font-size: 25px;
        line-height: 30px;
        padding-bottom: 68px;
    }

    .users-say-content h5 span {
        font-size: 20px;
        line-height: 30px;
    }
}

.floating-images {
    margin: 3rem auto;
    padding: 0;
    width: 100%;
    min-height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.floating-images .avatar-wrapper {
    width: 60px;
    display: flex;
}

.floating-images .avatar-wrapper img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

@media only screen and (max-width:760px) {
    .floating-images {
        margin: 1rem auto;
        min-height: 75px;
    }

    .floating-images .avatar-wrapper {
        width: 30px;
        display: flex;
    }

    .floating-images .avatar-wrapper img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        overflow: hidden;
        object-fit: cover;
    }
}

@media only screen and (min-width:761px) and (max-width:1200px) {
    .other-services-section::before {
        display: none;
    }
}



.confirm-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .confirm-backdrop,
  .confirm-backdrop-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .confirm-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 820px;
  }
  
  .confirm-body figure {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  
  .confirm-body p {
    margin-top: 20px;
  }
  
  .confirm-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .confirm-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .captcha-container {
    margin-top: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
    display: flex; /* Use flexbox */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    gap: 10px; /* Add spacing between items */
}

.captcha-box {
    padding: 0.375rem;
    font-size: 14px;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 3px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 10px;
    user-select: none; 
    display: flex; 
    align-items: center; 
    white-space: nowrap;
}

.captcha-box .form-control {
    width: 80px;
    font-size: 14px;
    display: inline-block;
    margin-left: 10px;
}

.captcha-refresh {
    cursor: pointer;
    margin-left: 15px;
}

.payment-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 20px auto;
    max-width: 1200px;
    width: 90%;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.safe_transaction{
    text-align: start;
}

.payment-info img {
    width: 70px;
    height: auto;
}

.payment-info h6 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.payment-info p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content:flex-start;
    gap: 15px; 
}

.payment-icons img {
    width: 70px;
    height: auto;
    display: block;
}
