/*===============*/
/* design        */
/*===============*/

body {
    font-family: "Mitr", sans-serif;
    margin: 0;
    position: relative;
    background: var(--bg-1);
}

.go-up {
    position: fixed;
    background-color: white;
    width: 50px;
    height: 50px;
    color: var(--color-5);
    text-align: center;
    display: none;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    cursor: pointer;
    font-size: 25px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    border: 1px solid transparent;
}
.go-up svg {
    width: 50%;
    height: auto;
    color: var(--color-5);
    fill: var(--color-5);
}
.go-up:hover {
    background-color: transparent;
    border: 1px solid var(--accent-5);
}
.go-up:hover svg {
    fill: white;
}
/*===============*/
/* main section  */
/*===============*/

main.main-section {
    background-image: url(images/13.png);
    background-position: center;
    background-size: cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

main.main-section::before {
    content: "";
    position: absolute;
    background-color: #000;
    opacity: 0.5;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

main .content {
    margin: 0px 144px;
    z-index: 1;
    width: 75%;
}

main .main-title {
    font-size: clamp(35px, 4vw + 0.5rem, 65px);
    font-family: "Mitr";
    font-weight: bold;
    color: white;
    text-transform: capitalize;
    line-height: 1;
    margin-bottom: 20px;
}
main .sub-title {
    font-size: clamp(18px, 1.5vw + 0.5rem, 25px);
}

@media (max-width: 480px) {
    main .content {
        width: 100%;
    }
    main .cta-button {
        width: 100%;
        text-align: center;
    }
    main .content {
        margin: 0px 25px;
    }
}

/*===============*/
/* show-case     */
/*===============*/
.show-case {
    background-color: var(--bg-1);
}
.show-case .logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.show-case .logo-carousel:before,
.show-case .logo-carousel:after {
    position: absolute;
    top: 0;
    content: "";
    width: 250px;
    height: 100%;
    z-index: 2;
}

.show-case .logo-carousel:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), var(--bg-1));
}

.show-case .logo-carousel:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--bg-1));
}

.show-case .logo-track {
    display: flex;
    gap: 75px; /* Space between logos */
    width: max-content; /* Allow the track to have a width equal to the content */
}

/* Logo styling */
.show-case .logo {
    height: 65px;
    flex-shrink: 0;
    width: auto;
}

@media (max-width: 768px) {
    .show-case .logo {
        height: 52px;
    }
    .show-case .logo-carousel:before,
    .show-case .logo-carousel:after {
        position: absolute;
        top: 0;
        content: "";
        width: 150px;
        height: 100%;
        z-index: 2;
    }
}

/*===============*/
/* service       */
/*===============*/

.service {
    padding-bottom: 40px;
    background: var(--bg-5);
    color: var(--color-1) !important;
}

.service .section-title {
    font-weight: 700;
}
.service .card-container {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
    color: var(--color-1) !important;
}
.service .card-container .card {
    flex: 0 0 calc(100%);
}
.service .card-container .card img {
    /* height: clamp(190px, 190px + 10vw, 410px); */
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center center;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.service .card-container .card .card-title {
    margin: 24px 0 16px 0px;
    font-weight: 600;
}
.service .card-container .card .card-details {
    margin-bottom: 16px;
    color: #2f2f2f;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Change the number to set the desired line count */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.service .card-container .card .card-link {
    display: inline-block;
    margin: 10px 0px;
    text-decoration: none;
    color: white;
    padding: 15px 30px;
    background-color: var(--accent-5);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    border: 1px solid transparent;
}
.service .card-container .card .card-link:hover {
    background-color: transparent;
    border: 1px solid var(--accent-4);
    color: var(--color-4);
}
@media (min-width: 480px) {
    .service .card-container .card {
        flex: 0 0 calc(50% - 20px);
    }
}
@media (min-width: 1024px) {
    .service .card-container .card {
        flex: 0 0 calc(33.3333% - 26.667px);
    }
}

/*===============*/
/* service       */
/*===============*/
.why-choose-us {
    padding-top: 0px;
    padding-bottom: 0px;
}
.why-choose-us .section-title {
    line-height: 0.7;
    margin-bottom: 20px;
}

/*===============*/
/* FQA       */
/*===============*/
.faq-section {
    margin: 0 auto 50px auto;
    color: var(--sec-color-5);
    background-color: var(--bg-5);
}
.faq-section .tag,
.tag {
    color: var(--color-3);
}

.faq-section h2 {
    margin-bottom: 20px;
    color: var(--color-2);
    line-height: 0.7;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .faq-section h2 {
        line-height: 0.9;
    }
}
.faq-section .sub-title {
    width: 80%;
}

.faq-question {
    color: var(--sec-color-5);
    margin-bottom: 10px;
    cursor: pointer;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question h3 {
    color: var(--color-2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;

    color: var(--sec-color-5);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.faq-question.active .faq-answer {
    max-height: 500px;
    transition: all 0.3s ease-in;
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
