<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&amp;family=Public+Sans:ital,wght@0,100..900;1,100..900&amp;display=swap');



/* General Styles */
:root {
    --primary-color: #FF6B38;
    --text-dark: #333333;
    --bg-light: #F5F8FF;
}

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

.language-selector select {
    border: none;
    background-color: transparent;
    font-size: 0.9rem;
    cursor: pointer;
    width: 119%;
}



/* Contact Button */
.btn-contact {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #e55a2d;
    transform: translateY(-2px);
}

/* Language Selector */
.language-selector select {
    border: none;
    background-color: transparent;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Mobile Styles */




/* CSS */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    MARGIN-TOP: 3%;
    MARGIN-BOTTOM: 3%;
}



.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    /* color: grey; */
}
.tab-btn i {
    margin-right: 8px;
    font-size: 16px;
    vertical-align: middle;
}

.tab-btn.active {
    /* background: #ff6b33; */
    color: black;
    FONT-WEIGHT: BOLD;
    border: 2px solid #ff6b33;
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-item {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(-135deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}
/* Mobile Responsive CSS */
@media screen and (max-width: 768px) {
    .faq-container {
        padding: 15px;
        margin: 0 10px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    /* Make tabs scrollable horizontally on mobile */
    .faq-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        gap: 5px;
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .tab-btn {
        padding: 8px 15px;
        font-size: 14px;
        flex: 0 0 auto;
        border-radius: 15px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 14px;
        line-height: 1.4;
        padding-right: 25px; /* Space for arrow */
    }

    .arrow {
        width: 8px;
        height: 8px;
        border-right: 1.5px solid #333;
        border-bottom: 1.5px solid #333;
    }

    .faq-answer {
        padding: 0 15px 15px;
        font-size: 14px;
    }

    .faq-item {
        margin-bottom: 8px;
    }
}

/* For extra small devices */
@media screen and (max-width: 375px) {
    .faq-container {
        padding: 10px;
    }

    h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .tab-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .faq-question h3 {
        font-size: 13px;
    }

    .faq-answer {
        font-size: 13px;
    }
}

/* Hide scrollbar but keep functionality */
.faq-tabs::-webkit-scrollbar {
    display: none;
}

.faq-tabs {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}


@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Trusted Brands Section Animation */
.trusted-brands {
    position: relative;
    background: linear-gradient(135deg, #f6f9fc, #eef2f7);
    overflow: hidden;
    padding: 50px 0;
}

.trusted-brands-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

/* Moving Lines Background */
.moving-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 123, 255, 0.1), transparent);
    animation: moveLine 8s linear infinite;
}

@keyframes moveLine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(1000%);
    }
}

/* Content Positioning */
.hero .container,
.trusted-brands .container {
    position: relative;
    z-index: 1;
}

/* Hero Content Animation */
.hero h1 {
    animation: fadeInUp 1s ease-out;
}

.hero p {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero button {
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brand Logos Animation */
.brand-logos img {
    transition: transform 0.3s ease;
    animation: floatUpDown 3s ease-in-out infinite;
}

.brand-logos img:hover {
    transform: scale(1.1);
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* Glowing Effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}
.subscribe-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #0056b3;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}













</pre></body></html>