/* rgb(39, 225, 216); */
/* secondary #496989; */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mobilecall{
    text-align: end;
    position: fixed;
    z-index: 10;
    left: 95%;
    top: 85%;
}

.mobilecall img{
    width: 8vh;
}

#main-part {
    padding: 0;
}

.heading {
    text-align: center;
    width: 70%;
    margin: auto;
}

.heading h1 {
    font-size: 50px;
    font-weight: 900;
}

.heading p {
    font-size: 18px;
}

#full-nav {
    padding: 0px;
    background: rgba(164, 164, 164, 0.35);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 20px;
    width: 100%;
    z-index: 10;
}

.navbar-brand{
    padding:0px;
}

.navbar-brand img {
    width: 11.5vh;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navbarSupportedContent .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: end;
}

#navbarSupportedContent .navbar-nav li {
    margin: 0 10px;
}

#navbarSupportedContent .navbar-nav li a.nav-link {
    font-weight: 500;
    color: white;
}

#navbarSupportedContent .navbar-nav li button {
    width: 40px;
    height: 40px;
    padding: 5px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#navbarSupportedContent .navbar-nav li button a {
    color: rgb(82, 82, 82);
    text-decoration: none;
}

#navbarSupportedContent .navbar-nav li button a img {
    width: 3vh;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
    margin-right: 15px;
}

.drop-d {
    background: rgb(255, 255, 255);
    position: absolute;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    column-gap: 10px;
    text-align: start;
    padding: 20px;
    box-shadow: 0 4px 9px rgb(178, 178, 178);
    display: none;
}

.drop-d .box {
    padding: 5px;
    width: 32%;
}

.drop-d .box ul {
    text-align: start;
    padding: 10px;
    width: 100%;
}

.drop-d .box ul li a {
    color: grey;
    text-decoration: none;
    color: rgb(41, 41, 41);
    font-size: 15px;
    font-weight: 0;

}

.drop-d .box ul li.head a {
    color: black;
    font-weight: 500;
}

.drop-d .box ul li {
    list-style-type: none;
    padding: 5px;
    width: 100%;
    padding-bottom: 10px;
}

.nav-item:hover .drop-d {
    display: flex;
}

#front-section {
    background: url('../images/index/banner-min.jpg') center center/cover no-repeat;
    position: relative;
    height: 850px;
    margin-top: -16px;
}

#front-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid white;
    background-color: rgba(0, 0, 0, 0.59);
    z-index: 1;
}

#front-section .row {
    position: relative;
    z-index: 2;
    /* Make sure content appears above the overlay */
}

#front-section .text-overlay {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-left: 80px;
    margin-top: 200px;
}

#front-section .text-overlay h1 {
    color: white;
    font-size: 50px;
    font-weight: 900;
}

#front-section .text-overlay h1 span {
    color: rgb(39, 225, 216);
}

#front-section .text-overlay .search-bar {
    width: 60%;
    margin: auto;
    margin-top: 40px;
    position: relative;
}

#front-section .text-overlay .search-bar form input {
    height: 45px;
}

#front-section .text-overlay .search-bar form button {
    background: rgb(39, 225, 216);
}

#front-section .text-overlay .search-bar form button:hover {
    background: rgb(33, 190, 182);
}

/* Basic styling */
#searchInput {
    font-size: 16px;
    transition: placeholder 0.4s ease-in-out;
}

/* To hide placeholder while animating */
.hide-placeholder::placeholder {
    color: transparent;
}

/* Suggestions list styling */
.suggestions-list {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    z-index: 1000;
    border-radius: 5px;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    text-align: start;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}


#front-section .text-overlay .recommended-services {
    margin-top: 50px;
}

#front-section .text-overlay .recommended-services h4 {
    color: white;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

#front-section .text-overlay .recommended-services h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80%;
    height: 5px;
    background-color: rgb(39, 225, 216);
}

#front-section .text-overlay .recommended {
    display: flex;
    justify-content: center;
    column-gap: 0px;
    row-gap: 20px;
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
    margin-top: 30px;
}

#cta-btn {
    position: relative;
    padding: 5px 15px;
    border-radius: 5px;
    border: 2px solid rgb(39, 225, 216);
    background: rgba(185, 185, 185, 0.823);
    color: rgb(0, 0, 0);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

#cta-btn a {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: color 0.4s ease-in-out;
    position: relative;
    z-index: 2;
    /* Ensure link stays above the ::before pseudo-element */
}

#cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(39, 225, 216);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

#cta-btn:hover::before {
    left: 0;
}

#cta-btn:hover {
    border-color: rgb(39, 225, 216);
    color: #000000;
}

#cta {
    margin-top: 5%;
    padding: 10px 50px;
}

#cta .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 20px 0 20px;
    background: rgba(235, 235, 235, 0.992);
    border-radius: 5px;
}

#cta .content .box1 {
    width: 60%;
    padding: 5px;
}

#cta .content .box1 h1 {
    font-weight: 900;
    font-size: 45px;
}

#cta .content .box1 #cta-btn {
    width: 250px;
    padding: 12px 20px;
    border-radius: 5px;
    margin-top: 40px;
    background: transparent;
    border: 2px solid rgb(39, 225, 216);
}

#cta .content .box1 #cta-btn a {
    color: black;
    text-decoration: none;
    font-weight: 500;
}

#cta .content .box1 .text {
    margin-top: 10px;
    font-weight: 400;
}

#cta .content .box2 {
    width: 40%;
    text-align: end;

}

#cta .content .box2 img {
    width: 40vh;
    margin-right: 10px;
}

#showing-services {
    margin-top: 5%;
}

#showing-services .content {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-top: 50px;
}

#showing-services .content .box {
    padding: 20px;
    border: 1px solid rgb(177, 177, 177);
    width: 300px;
}

#showing-services .content .box-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border: none;
}

#showing-services .content .box-heading h4 {
    background: rgb(236, 236, 236);
    border-radius: 5px;
    font-weight: 500;
    font-size: 18px;
    width: 250px;
}

#showing-services .content .box-heading a {
    text-decoration: none;
    color: black;
    width: 250px;
    display: inline-block;
    padding: 20px 20px;
    border-radius: 5px;
}

.box-heading a.active {
    background-color: rgb(39, 225, 216);
    color: rgb(0, 0, 0);
}

#showing-services .content .box h5 {
    margin-top: 5px;
}

#showing-services .content .box p {
    margin-top: 10px;
    color: grey;
}

#whychooseus {
    margin-top: 5%;
}

#whychooseus .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
    margin-top: 50px;
}

#whychooseus .content .box {
    width: 300px;
    border: 1px solid rgb(241, 241, 241);
    text-align: center;
    padding: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(39, 225, 216, 0.3) 0px 8px 16px -8px;
}

#whychooseus .content .box img {
    width: 8vh;
    margin-top: 20px;
}

#whychooseus .content .box h4 {
    margin-top: 20px;
}

#whychooseus .content .box p {
    margin-top: 30px;
    color: grey;
}

#counter {
    margin-top: 5%;
}

#counter .points {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 10px;
}

#counter .points span {
    font-size: 50px;
    font-weight: 900;
    color: #496989;
}

#counter .points p {
    font-size: 18px;
    font-weight: 500;
}

#features {
    margin-top: 5%;
    padding-bottom: 50px;
}

#features .content {
    display: flex;
    justify-content: center;
}

#features .content .box {
    width: 50%;
    padding: 10px;
}

#features .content .box-1 {
    display: flex;
    justify-content: center;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 30px;
}

#features .content .box-1 .points {
    width: 45%;
    text-align: center;
    border: 1px solid rgb(232, 232, 232);
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0px 3px 1px rgb(39, 225, 216);
}

#features .content .box-1 .points img {
    margin-top: 10px;
}

#features .content .box-1 .points h4 {
    margin-top: 20px;
}

#features .content .box-1 .points p {
    margin-top: 20px;
    color: grey;
}

#features .content .box-1 .points.points-1 {
    position: relative;
    top: 50px;
}

#features .content .box-1 .points:hover {
    background: rgb(39, 225, 216);
    box-shadow: none;
}

#features .content .box-2 {
    padding: 20px;
}

#features .content .box-2 .heading h2 {
    position: relative;
    display: inline-block;
    color: black;
}

#features .content .box-2 .heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 80%;
    height: 3px;
    background-color: rgb(39, 225, 216);
}

#features .content .box-2 p {
    margin-top: 40px;
}

#features .content .box-2 .lists {
    margin-top: 40px;
}

#features .content .box-2 .lists ul li {
    font-size: 17px;
    margin-bottom: 30px;
    color: grey;
    list-style-type: none;
    position: relative;
    padding-left: 30px;
}

#features .content .box-2 .lists ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: rgb(39, 225, 216);
    animation: pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#features .content .box-2 .lists ul li span {
    font-weight: 700;
    color: rgb(16, 15, 15);
}

#partners {
    margin-top: 5%;
}

#partners .image-slider {
    width: 100vw;
    height: 100px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

#partners .images {
    display: flex;
    width: max-content;
    position: absolute;
    animation: none;
}

#partners .images img {
    width: 18vh;
    margin-right: 60px;
}

#index-testimonial {
    margin-top: 5%;
}

.testimonial {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fefdfdc4;
    padding: 50px 0;
}

.testimonial__inner {
    overflow: hidden;
    width: 80%;
    margin: auto;
}

.testimonial-slider {
    display: flex;
    transition: transform 1s ease;
}

.testimonial-slide {
    min-width: 33.33%;
    box-sizing: border-box;
    padding: 20px;
}

.testimonial_box {
    background-color: #ededed;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0px 5px 2px rgb(39, 225, 216, 0.493);
}

.testimonial_box-icon {
    padding: 10px 0;
}

.testimonial_box-icon i {
    font-size: 25px;
    color: #14213d;
}

.testimonial_box-text {
    padding: 10px 0;
}

.testimonial_box-text p {
    color: #293241;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}

.testimonial_box-img {
    padding: 20px 0 10px;
    display: flex;
    justify-content: center;
}

.testimonial_box-img img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 2px solid #e5e5e5;
}

.testimonial_box-name {
    padding-top: 10px;
}

.testimonial_box-name h4 {
    font-size: 20px;
    line-height: 25px;
    color: #293241;
    margin-bottom: 0;
}

.testimonial_box-job p {
    color: #293241;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 0;
}

#footer {
    margin-top: 5%;
    background: black;
    padding: 40px 20px 10px 20px;
}

#footer .footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

#footer .footer .box {
    width: 20%;
    padding: 10px;
}

#footer .footer .box ul li {
    list-style-type: none;
    padding-bottom: 15px;
}

#footer .footer .box ul li.head {
    font-weight: 700;
    color: rgb(39, 225, 216);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

#footer .footer .box ul li.head:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 2px;
    background-color: rgb(39, 225, 216);
}

#footer .footer .box ul li a {
    text-decoration: none;
    color: white;
    font-size: 17px;
}
#footer .s-media{
    display: flex;
    padding-right: 10px;
    justify-content: start;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;
}

#footer .footer .box ul li a span img {
    width: 4vh;
}

#footer .line {
    height: 3px;
    color: white;
}

#footer .copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* ABOUT PAGE */

#about-front {
    background: url('../images/about/handshake.jpg') center center/cover no-repeat;
    background-position: 90% 30%;
    position: relative;
    height: 450px;
    margin-top: -16px;
}

#about-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid white;
    background-color: rgba(0, 0, 0, 0.59);
    z-index: 1;
}

#about-front .text-overlay {
    width: 80%;
    margin: auto;
    text-align: center;
    margin-top: 170px;
    z-index: 5;
}

#about-front .text-overlay h1 {
    color: rgb(255, 255, 255);
    font-size: 70px;
    font-weight: 900;
    text-transform: capitalize;
}

#about-front .text-overlay h1 span {
    font-weight: 500;
    font-family: 'Times New Roman', Times, serif;
}

#about-us {
    margin-top: 5%;
}

#about-us .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 20px;
}

#about-us .content .box {
    width: 50%;
    padding: 20px;
}

#about-us .content .box p {
    font-size: 20px;
    color: grey;
}

#about-us .content .box p span {
    color: black;
    font-weight: 500;
}

#about-us .content .box img {
    width: 80vh;
    margin-top: 100px;
}

#about-section2 {
    margin-top: 5%;
}

#about-section2 .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#about-section2 .content .box {
    width: 70%;
    padding: 20px;
}

#about-section2 .content .box h2 {
    font-weight: 700;
}

#about-section2 .content .box p {
    font-size: 18px;
}

#about-section2 .content .box2 {
    width: 30%;
    text-align: end;
}

#about-section2 .content .box2 img {
    width: 40vh;
}

#how-we-work {
    margin-top: 5%;
}

#how-we-work .content {
    width: 90%;
    margin: auto;
    margin-top: 50px;
}

#how-we-work .content ul li {
    margin-bottom: 40px;
    font-size: 18px;
    color: rgb(66, 66, 66);
    text-align: start;
}

#how-we-work .content ul li span {
    font-weight: 500;
    color: black;
}

#founder {
    margin-top: 5%;
}

#founder .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 20px;
    margin-top: 50px;
}

#founder .content .box {
    width: 50%;
    padding-left: 10px;
}

#founder .content .box p {
    font-size: 18px;
}

/* CONTACT US PAGE */
#contact-form {
    margin-top: 5%;
}

#contact-form .content {
    display: flex;
    justify-content: center;
    width: 100%;
}

#contact-form .form {
    width: 60%;
    margin-top: 50px;
}

#contact-form .form .form-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 30px;
    margin-bottom: 40px;
}

#contact-form .form .form-row label {
    font-weight: 500;
}

#contact-form .form .form-row input {
    width: 350px;
    height: 45px;
    padding-left: 10px;
}

#contact-form .form .form-row select {
    width: 350px;
    height: 45px;
    padding-left: 10px;
}

#contact-form .form .form-row textarea {
    width: 350px;
    height: 45px;
    padding-left: 10px;
}


#contact-form .form .form-row #submit-btn {
    padding: 8px 15px;
    border: 1px solid rgb(150, 150, 150);
    font-weight: 500;
    text-align: start;
    background: transparent;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

#contact-form .form #submit-btn:hover {
    background: rgb(39, 225, 216);
}


#contact-form .links {
    width: 40%;
    text-align: center;
}

#contact-form .links .heading {
    display: flex;
    justify-content: space-evenly;
}

#contact-form .links .heading img {
    background: #496989;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    
}

#contact-form .links .details{
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}

#contact-form .links .box {
    position: relative;
    top: 30px;
    gap: 20px;
    width: 70%;
    padding: 30px 10px;
    margin: auto;
    border: 1px solid rgb(222, 222, 222);
}

#contact-form .links .box h6{
    letter-spacing: 5px;
    font-size: 18px;
    color: rgb(98, 98, 98);
    font-weight: 400;
    text-transform: capitalize;
}

#contact-form .links .box p{
    margin-top: 20px;
}

#contact-form .links .box p a{
    font-weight: 700;
    color: black;
    letter-spacing: 2px;
    text-decoration: none;
    
}

/* Service page */

#servicepage-front {
    position: relative;
    height: 850px;
    margin-top: -16px;
    overflow: hidden;
    background: rgb(255, 255, 255);
}

#servicepage-front::before,
#servicepage-front::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
}

#servicepage-front::before {
    bottom: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(39, 225, 216, 0.6) 0%, rgba(39, 225, 216, 0.4) 50%);
    clip-path: polygon(0 100%, 100% 100%, 100% 60%, 0 75%);
}

#servicepage-front::after {
    bottom: 0;
    height: 80%;
    /* Adjust height for the second layer */
    background: linear-gradient(to top, rgba(39, 225, 216, 0.4) 0%, rgba(39, 225, 216, 0.2) 50%);
    clip-path: polygon(0 100%, 100% 100%, 100% 70%, 0 85%);
    z-index: 0;
}

#servicepage-front .wave-layer {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    /* Adjust height for the third layer */
    background: linear-gradient(to top, rgba(39, 225, 216, 0.2) 0%, rgba(39, 225, 216, 0) 50%);
    clip-path: polygon(0 100%, 100% 100%, 100% 80%, 0 90%);
    z-index: -1;
}

#servicepage-front .content {
    display: flex;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
    row-gap: 20px;
    top: 200px;
    z-index: 2;
}

#servicepage-front .content .text-overlay {
    width: 60%;
    padding-left: 30px;
}

#servicepage-front .content .text-overlay h1 {
    font-size: 60px;
    font-weight: 700;
}

#servicepage-front .content .text-overlay h1 span {
    color: rgb(39, 225, 216);
}

#servicepage-front .content .text-overlay p {
    font-size: 18px;
    margin-top: 30px;
}

#servicepage-front #cta-btn {
    padding: 12px 20px;
    width: 250px;
    margin-top: 20px;
    background: transparent;
}

#servicepage-front #cta-btn a {
    font-weight: 500;
    font-size: 18px;
}

#servicepage-front .content .form {
    width: 40%;
    padding: 10px;
}

#servicepage-front .content .form h4 {
    width: 80%;
    margin: auto;
    font-size: 25px;
    font-weight: 700;
    position: relative;
    text-align: center;
    margin-top: -10px;
}

#servicepage-front .content .form h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 70%;
    height: 3px;
    background-color: rgb(39, 225, 216);
}

#servicepage-front .content .form form {
    padding: 10px;
    width: 80%;
    margin: auto;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    border-radius: 10px;
    padding-top: 40px;
}

#servicepage-front .content .form form .consult-form {
    margin-top: 50px;
    text-align: center;
}

#servicepage-front .content .form form .consult-form input {
    width: 80%;
    height: 45px;
    margin-bottom: 10px;
    padding-left: 10px;
    border-radius: 5px;
    border: 1px solid rgb(206, 206, 206);
}

#servicepage-front .content .form form .consult-form select {
    width: 80%;
    height: 50px;
    margin-bottom: 10px;
    padding-left: 10px;
    border-radius: 5px;
    border: 1px solid rgb(206, 206, 206);
    color: grey;
}

select option:disabled {
    color: grey;
}

select option:not(:disabled) {
    color: black;
    /* This sets the color of all other options to black */
}

#servicepage-front .content .form form .consult-form .btns {
    width: 80%;
    margin: auto;
    text-align: start;
    margin-top: 10px;
}

#servicepage-front .content .form form .consult-form #submit-btn {
    padding: 8px 15px;
    border: 1px solid rgb(217, 217, 217);
    font-weight: 500;
    text-align: start;
    background: transparent;
    border-radius: 5px;
}

#servicepage-front .content .form form .consult-form #submit-btn:hover {
    background: rgb(39, 225, 216);
}

#servicepage-front .content .form form .consult-form #remark {
    color: rgb(20, 141, 135);
    font-size: 14px;
    text-align: center;
    width: 100%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 10px;
}

#service-counts {
    width: 80%;
    margin-top: 80px;
}

#service-counts .points {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 10px;
}

#service-counts .points .box {
    padding: 2px;
}

#service-counts .points .line {
    color: rgb(192, 192, 192);
    font-size: 50px;
}

#service-counts .points .box span {
    font-size: 30px;
    font-weight: 900;
    color: rgb(55, 55, 55);
}

#service-counts .points .box p {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}

#readable-content {
    margin-top: 5%;
}

#readable-content .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 100px;
}

#readable-content .content .box1 {
    width: 70%;
    padding: 20px;
    text-align: start;
}

#readable-content .content .box1 p {
    font-size: 20px;
}

#readable-content .content .box1 h3 {
    font-weight: 700;
    margin-top: 40px;
}

#readable-content .content .box1 .points {
    margin-top: 30px;
}

#readable-content .content .box1 .points-1 ol {
    list-style-type: none;
}

#readable-content .content .box1 .points-1 ol li {
    display: flex;
}

#readable-content .content .box1 .points-1 ol li span img {
    width: 3vh;
}

#readable-content .content .box1 .points-1 ol li span {
    margin-right: 5px;
}

#readable-content .content .box1 .points-1 ol li a {
    text-decoration: none;
}

#readable-content .content .box1 .points-1 ol {
    padding-left: 0;
}

#readable-content .content .box1 .points ol li {
    font-size: 20px;
    padding-bottom: 20px;
}

#readable-content .content .box1 .points ol li span {
    font-weight: 700;
}

#readable-content .content .box1 .points ol li ul {
    margin-top: 30px;
}

#readable-content .content .box1 table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    margin-top: 50px;
}

#readable-content .content .box1 td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 10px;
    font-size: 18px;
}

#readable-content .content .box1 td img {
    width: 10vh;
}

#readable-content .content .box1 tr:nth-child(even) {
    background-color: #dddddd;
}

#readable-content .content .box2 {
    width: 30%;
    position: relative;
}

#readable-content .content .box2 .form {
    padding: 5px;
    position: sticky;
    top: 0;
    width: 100%;
}

#readable-content .content .box2 .form h4 {
    width: 100%;
    margin: auto;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    text-align: center;
}

#readable-content .content .box2 .form h4:after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -15px;
    width: 70%;
    height: 3px;
    background-color: rgb(39, 225, 216);
}

#readable-content .content .box2 .form form {
    padding: 20px;
    width: 80%;
    margin: auto;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    border-radius: 10px;
    padding-top: 40px;
    border: 1px solid rgb(39, 225, 216);
}

#readable-content .content .box2 .form form .consult-form {
    margin-top: 50px;
    text-align: center;
}

#readable-content .content .box2 .form form .consult-form input {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding-left: 10px;
    border-radius: 5px;
    border: 1px solid rgb(206, 206, 206);
}

#readable-content .content .box2 .form form .consult-form select {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding-left: 10px;
    border-radius: 5px;
    border: 1px solid rgb(206, 206, 206);
    color: grey;
}

select option:disabled {
    color: grey;
}

select option:not(:disabled) {
    color: black;
}

#readable-content .content .box2 .form form .consult-form .btns {
    width: 100%;
    margin: auto;
    text-align: start;
    margin-top: 10px;
}

#readable-content .content .box2 .form form .consult-form #submit-btn {
    padding: 8px 15px;
    border: 1px solid rgb(217, 217, 217);
    font-weight: 500;
    text-align: start;
    border-radius: 5px;
    background: transparent;
}

#readable-content .content .box2 .form form .consult-form #submit-btn:hover {
    background: rgb(39, 225, 216);
}

#readable-content .content .box2 .form form #remark {
    display: none;
}


#readable-content .faq {
    width: 100%;
    margin-top: 50px;
}

#readable-content .faq .first {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border: 1px solid black;
    background: rgba(241, 241, 241, 0.962);
    cursor: pointer;
    margin-top: 10px;
    border: 10px;
}

#readable-content .faq .first p {
    font-weight: 500;
    font-size: 20px;
    margin-left: 30px;
    margin-top: 12px;
}

#readable-content .faq .first p span {
    margin-right: 20px;
    font-weight: 700;
}

#readable-content .faq .first .arrow-icon img {
    width: 2vh;
    margin-right: 30px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

#readable-content .faq .output {
    padding: 10px;
    margin-bottom: 20px;
    background: rgba(237, 237, 237, 0.937);
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

#readable-content .faq .output p {
    padding-left: 60px;
    font-size: 18px;
}

#readable-content .faq .output.show {
    display: block;
    opacity: 1;
}

#related-services {
    margin-top: 8%;
}

#related-services .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 40px;
    width: 80%;
    margin: auto;
    margin-top: 50px;
    padding-left:20px;
}

#related-services .content #cta-btn {
    width: 28%;
    padding: 15px 20px;
    background: rgb(234, 234, 234);
}

#related-services .content button a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 18px;
}

#service-why-we {
    margin-top: 8%;
}

#service-why-we .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    margin-top: 50px;
}

#service-why-we .content .box {
    padding: 30px;
    text-align: center;
    border: 1px solid grey;
    border-radius: 5px;
    box-shadow: 0px 2px 2px rgb(39, 225, 216);
    width: 20%;
}

#service-why-we .content .box img {
    width: 5vh;
}

#service-why-we .content .box span {
    margin-top: 30px;
    color: #496989;
    ;
    font-size: 30px;
    font-weight: 700;
}

#service-why-we .content .box p {
    margin-top: 10px;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
}