@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --btn-color: #fdfdfd; /* button color*/
    --btn-bg: #4f55c1; /* button bg color*/

    --primary-text-color: #4f55c1;
    --header-link-hover: #6c72e8;
    --input-hover-bd-color: #4f55c1;
}

html {
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
}

header {
    /* background-color: #fff;
    color: #000; */
}

header > .collapsible-header {
    display: flex;
    gap: 1rem;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
}

.animated-collapse {
    transition: width 0.3s ease;
}

.header-gradient {
    background: rgb(206, 174, 212);
    background: linear-gradient(
        83deg,
        #ceaed474 15%,
        #abd4e693 33%,
        #73edc097 79%,
        #8c91e86b 100%
    );
    filter: blur(100px);
}

.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 10px;
    padding: 5px 10px;
    transition:
        background-color 0.5s,
        color 0.5s;
}

.header-links:hover {
    color: var(--header-link-hover);
}

.primary-text-color {
    color: var(--primary-text-color);
}

.gradient-text {
    background: rgb(233, 92, 255);
    background: linear-gradient(
        93deg,
        rgba(233, 92, 255, 1) 12%,
        rgba(210, 125, 255, 1) 49%,
        rgba(159, 121, 255, 1) 93%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section {
    background-image: url('../assets/images/background/dots.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

.hero-bg-gradient {
    background: linear-gradient(
        180deg,
        rgba(24, 27, 32, 0.9) 30%,
        rgba(0, 0, 0, 0.258140756302521) 65%
    );
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-100 {
    opacity: 100 !important;
}

.btn {
    padding: 10px 15px;
    width: max-content;
    border-radius: 24px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.btn:hover {
}

.btn:disabled {
    cursor: default;
}

.input {
    padding: 10px;
    background-color: transparent;
    border-radius: 25px;
    /* outline: none; */
    min-width: 100px;
    border: 2px solid #818080;
    /* transition: border 0.3s; */
}

.input:active,
.input:focus,
.input:focus-within {
    border: 2px solid var(--input-hover-bd-color);
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 800px;
}

.carousel {
    display: inline-block;
    animation: scroll 10s linear infinite;
}

.carousel-img {
    display: inline-block;
    margin: 0 20px;
}

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

.footer-link {
    transition: color 0.3s;
}

.footer-link:hover {
    color: #483cf4;
}

.review-container {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.review-card {
    box-shadow: 0px 2px 4px #757474a0;
    border-radius: 15px;
    /* width: 200px; */
    /* height: 550px; */
    padding: 10px;
}

/* --------- collapsible div ---------- */
.collapsible {
    background-color: #f3f0f0;
    color: #2b2929;
    /* cursor: pointer; */
    padding: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
}

/* Style for the collapsible content */
.content {
    padding: 0 18px;
    /* display: none; */
    height: 0px;
    overflow: hidden;
    background-color: transparent;
    transition: height 0.5s;
    text-align: justify;
    margin-top: 10px;
}

.collapsible .active,
.collapsible:hover {
    /* background-color: #dedddd; */
}

#mainHeadline {
    padding-top: 80px;
    line-height: 1.25;
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: end;
        background-color: #181b20;
        color: #ffffff;
        overflow-y: auto;
        box-shadow: 2px 0px 3px #9f9f9f;
    }

    .header-links {
        color: rgb(255, 255, 255);
    }

    #weAnswerForYou,
    #youStayInformed {
        flex-direction: column-reverse;
    }

    .footer-col:last-child {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-col:first-child {
        width: 320px;
        text-align: left;
    }

    .footer-col:last-child {
        text-align: right;
    }
}

/* Custom Tailwind prefixed styles */
.tw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.tw-block {
    display: block;
}
.tw-w-full {
    width: 100%;
}
.tw-mb-3 {
    margin-bottom: 0.75rem;
}
.tw-mb-4 {
    margin-bottom: 1rem;
}
.tw-mb-6 {
    margin-bottom: 1.5rem;
}
.tw-px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.tw-py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.tw-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.tw-py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.tw-border {
    border-width: 1px;
}
.tw-border-gray-300 {
    border-color: #d1d5db;
}
.tw-rounded {
    border-radius: 0.25rem;
}
.tw-text-gray-700 {
    color: #374151;
}
.tw-text-red-500 {
    color: #ef4444;
}
.tw-text-white {
    color: #ffffff;
}
.tw-text-green-700 {
    color: #15803d;
}
.tw-text-red-700 {
    color: #b91c1c;
}
.tw-text-sm {
    font-size: 0.875rem;
}
.tw-font-medium {
    font-weight: 500;
}
.tw-font-bold {
    font-weight: 700;
}
.tw-bg-blue-600 {
    background-color: #2563eb;
}
.tw-bg-green-50 {
    background-color: #f0fdf4;
}
.tw-bg-red-50 {
    background-color: #fef2f2;
}
.tw-border-green-200 {
    border-color: #bbf7d0;
}
.tw-border-red-200 {
    border-color: #fecaca;
}
.tw-focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.tw-focus\:ring-2:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}
.tw-focus\:border-blue-500:focus {
    border-color: #3b82f6;
}
.tw-hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}
.tw-transition {
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.tw-duration-200 {
    transition-duration: 200ms;
}
.tw-disabled\:opacity-50:disabled {
    opacity: 0.5;
}
.tw-disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
}
.tw-flex {
    display: flex;
}
.tw-items-center {
    align-items: center;
}
.tw-justify-center {
    justify-content: center;
}
.tw-space-x-2 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 0.5rem;
}
.tw-hidden {
    display: none;
}
.tw-grid {
    display: grid;
}
.tw-gap-4 {
    gap: 1rem;
}
.tw-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.tw-resize-none {
    resize: none;
}
.tw-min-h-24 {
    min-height: 6rem;
}
.tw-p-4 {
    padding: 1rem;
}
.tw-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}
.tw-text-blue-900 {
    color: #1e3a8a;
}

/* Responsive grid */
@media (min-width: 768px) {
    .tw-md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contact-us {
        margin: 75px 0;
    }
}

/* Loading spinner */
.tw-animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.tw-h-4 {
    height: 1rem;
}
.tw-w-4 {
    width: 1rem;
}
.tw-border-2 {
    border-width: 2px;
}
.tw-border-blue-600 {
    border-color: #2563eb;
}
.tw-border-t-transparent {
    border-top-color: transparent;
}
.tw-rounded-full {
    border-radius: 9999px;
}
.contact-us h2 {
    margin-bottom: 25px;
}
.contact-us .reveal-up {
    max-width: 700px;
    width: 100%;
}
#contact-form {
    margin: 0 auto;
    color: black;
}
#contact-form label {
    color: white;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}
.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}
