﻿ 
    *

{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    user-select: none;
}

    .nav-arrow.left {
        left: 20px;
    }

    .nav-arrow.right {
        right: 20px;
    }


/* Overlay Text */
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
    padding: 35px 130px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
}

    .overlay-text h1 {
        font-size: 3em;
        margin-bottom: 10px;
    }

    .overlay-text h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .overlay-text p {
        font-size: 1.2em;
    }

/* 🔹 Responsive: Reduce size by 50% on mobile */
@media (max-width: 768px) {
    .overlay-text {
        padding: 18px 65px; /* 50% smaller padding */
    }

        .overlay-text h1 {
            font-size: 1.5em; /* 50% smaller */
        }

        .overlay-text h2 {
            font-size: 1em;
        }

        .overlay-text p {
            font-size: 0.6em;
        }
}


.bg-texture {
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px dashed rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #f0f0f0 75%), linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

.bg-texture_line {
    border: 1px dashed rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #f0f0f0 75%), linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}



.faq-section {
    max-width: 900px;
}

.faq-title {
    font-size: 1.8rem;
    color: #1e2a4a;
}

.faq-badge {
    background: #d8ccff;
    color: #4b1fae;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 1rem;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    color: #1e2a4a;
    transition: color 0.3s ease;
}

    .faq-question:hover {
        color: #0d6efd;
    }

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e2a4a;
    transition: transform 0.2s ease, color 0.2s ease;
}

.faq-answer {
    display: none;
    font-size: 0.95rem;
    color: #333;
    margin-top: 10px;
    line-height: 1.6;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #0d6efd;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}


.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

    .card:hover {
        transform: translateY(-10px);
    }

 
