@font-face {
    font-family: 'inter';
    src: url('./fonts/Inter/Inter-Italic-VariableFont_opsz\,wght.ttf') format('ttf'),
        url('/fonts/Inter/Inter-VariableFont_opsz\,wght.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'inter', sans-serif;
}

nav.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1020;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

body {
    padding-top: 40px;
}

.error {
    color: red;
    font-size: 13px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

._text-type-primary {
    color: black;
}

._text-type-main {
    color: #F46036 !important;
}

._text-type-secondary {
    color: #555555 !important;
}

a {
    text-decoration: none !important;
}

.btn-primary {
    background-color: #F46036 !important;
    border: 1px solid #F46036;
}

._btn-lg {
    padding: 16px 40px;
}

.rounded {
    border-radius: 16px !important;
}

.badge-light {
    padding: 20px;
    background-color: white;
    color: black;
}

._text-semibold {
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    letter-spacing: 0px;
}

._label {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 2px;
    font-size: 12px;
    margin-bottom: 4px;

}

._f68 {
    font-size: 68px;
    font-weight: 700;
    line-height: 75px;
    letter-spacing: -1%;
}

._f40 {
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
}

._f30 {
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0%;
}

._f25 {
    font-size: 25px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0px;
}

._f20 {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0px;
}

._f20-bold {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0px;
}

._f16 {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0px;
}

._f24 {
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0px;
}




.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to right, #f25c05, #f25430);
    color: white;
    white-space: nowrap;
    position: relative;
}

.marquee {
    display: inline-block;
    padding: 15px 0;
    font-size: 1.2rem;
    animation: scroll 20s linear infinite;
}

.marquee-content {
    display: inline-block;
    padding-right: 50px;
    /* spacing between repeats */
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}



.accordion-item {
    border: none;
    border-radius: 15px;
    margin-bottom: 15px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.03); */
    /* background: #f9fafb; */
}

.accordion-button {
    background: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: #000;
    border: none;
    box-shadow: none;
    padding: 1.5rem;
}

.accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #555;
}

.accordion-button::after {
    content: '+';
    font-size: 24px;
    color: #ff4500;
    background-image: none;
}

.accordion-button:not(.collapsed)::after {
    content: '−';


}


.accordion-button:not(.collapsed) {
    background-color: white !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none;
}

.breathe-text {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}




.animated-text {
    font-size: 2.5rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animated-text.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    display: flex;
}

.footer-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.btn-query {
    background-color: #F46036;
    /* Orange */
}

.btn-call {
    background-color: rgb(18, 18, 136);
    color: white !important;
    * {
        color: white !important;
    }
}

.footer-btn i {
    margin-right: 6px;
    cursor: pointer;

}

@media (min-width: 768px) {
    .sticky-footer {
        display: none;
        /* Hide on desktop, show only in mobile */
    }
}