/* HERO */
.hero-title{
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.8rem;
    color: var(--color-scheme-1-text);
    /* responsive font-sizing with clamp */
    font-size: clamp(2rem, 6vw, 5.2rem);
    letter-spacing: .5px;
    display: inline-flex;
    white-space: nowrap;
    justify-content: center;
}
.hero-img{
    position: relative;
    max-height: 80vh;
    object-fit: contain;
    display:block;
}
.btn-explore{
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
    border: 1px solid var(--dodger);
    border-radius: 0.5rem;
    color: var(--color-white);
}

/* FAQs */
.accordion-item{
    font-family: Raleway;
    background-color: transparent;
    color: var(--color-scheme-1-text);
}
.faq-btn {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: none;
    background: var(--color-scheme-2-bg);
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}
.faq-btn.collapsed i.bi-chevron-down {
    transform: rotate(0deg);
    font-size: 1.3rem !important;
    color: var(--color-scheme-1-faq-title);
    transition: transform 0.40s ease;
}
.faq-btn:not(.collapsed) i.bi-chevron-down {
    transform: rotate(180deg);
    font-size: 1.3rem !important;
    color: var(--color-scheme-1-faq-title);
    transition: transform 0.40s ease;
}
.faq-title {
    /* font-size: 1.3rem; */
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--color-scheme-1-faq-title);
    margin: 0;
}
.faq-arrow {
    transition: transform 0.3s ease;
}
.faq-btn:not(.collapsed) .faq-arrow {
    transform: rotate(180deg);
}
.accordion-body {
    background: var(--faq-body-bg);
    padding: 20px 25px;
    border-radius: 0 0 10px 10px;
    margin-top: -10px;
}


/* Cards */
.solution-card{
    overflow: hidden;
    border: transparent;
    background: transparent;
}
.solution-card .card-body{
    padding: 1.25rem;
}
.card-title{
    font-family: Nunito;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: .6rem;
    color: var(--color-scheme-1-text);
}
.card-img-fit{
    width: 100%;
    height: auto;
    display: block;
}
.card-text{
    font-size: 1.125rem;
    color: var(--color-scheme-1-text);
}
.link-btn{
    display:inline-flex; 
    align-items:center; 
    gap:.5rem;
    font-size: 1rem;
    text-decoration:none; 
    font-weight:500;
    color: var(--color-scheme-1-text);
    margin-top: .75rem;
    transition: ease-in 0.1s all;
}
.link-btn > .bi-chevron-right {
    transition: ease-out 0.1s all;
}
.link-btn:hover > .bi-chevron-right {
    transform: translate(0.6rem, 0);
    transition: ease-in 0.2s all;
}


/* Contact */
.contact-icon{
    width: 40px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: var(--image-filter);
}
.contact-link-btn{
    font-size: 1rem;
    text-decoration:none;
    font-weight:500;
    color: var(--color-scheme-1-text);
}
.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
    border-radius: 1rem 1rem 0 0;
}


/* Contact form */
.check-input-hide{
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    opacity: 0%;
    transform: translate(0, 150%);
    z-index: -1;
    transition: transform 800ms, opacity 400ms, z-index 800ms;
}
.check-input{
    opacity: 100%;
    transform: translate(0, 15%);
    z-index: 0;
    transition: transform 800ms, opacity 400ms, z-index 800ms;
}
label {
    color: var(--color-scheme-1-text);
    transition: all 500ms ease-in-out;
}
#emailHelp{
    color: var(--color-scheme-1-text-muted);
}


/* Extra small devices (phones, portrait) */
@media (max-width: 575.98px) {
    .hero-title{
        margin-top: 5rem;
    }
    .left-sticky-top{
        margin-bottom: 40rem !important;
    }
    .faqs{
        margin-top: -40rem !important;
    }
}

/* Small devices (phones, landscape) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* CSS for larger phones / small tablets */
}

/* Only for medium screens */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .hero-title{
        margin-top: 5rem;
    }
    .left-sticky-top{
        margin-bottom: 32rem !important;
    }
    .faqs{
        margin-top: -32rem !important;
    }
}

/* Extra Large devices (desktops) */
@media (min-width: 1200px) {
    #faqAccordion{
        margin-top: -5.8rem;
    }
    .left-sticky-top{
        padding-top: 5.8rem;
        margin-top: 11rem;
        margin-bottom: 35rem !important;
    }
    .right-sticky-top{
        top: 6.4rem;
    }
    .faqs{
        margin-top: -35rem !important;
    }
    .contact-sub{
        width: 60%;
    }
    .message-form-sub{
        width: 45%;
    }
}