

/* ****************************************************************** */
/***************************** section 7 ******************************/
/* ****************************************************************** */

        :root {
            --primary-gradient: linear-gradient(135deg, #071099 0%, #001f74 100%);
            --secondary-gradient: linear-gradient(135deg, #1161ac 0%, #48acfd 100%);
            --accent-color: #092ed3;
            --accent-light: #080074;
            --text-light:rgb(255, 255, 255);
            --text-muted: #b0b8c8;
            --card-bg: rgba(5, 88, 196, 0.08);
            --card-border: rgba(255, 255, 255, 0.15);
            --shadow-color: rgba(0, 0, 0, 0.3);
        }


        
       .faq-section {
            position: relative;
            padding: 6rem 2rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .faq-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(20px);
        }

        .faq-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            margin-bottom: 4rem;
            text-align: center;
            position: relative;
        }

        .faq-title-container {
            position: relative;
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .faq-title {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
            position: relative;
        }

        .question-mark-decoration {
            width: 80px;
            height: 80px;
            opacity: 0.6;
            filter: drop-shadow(0 8px 20px rgba(43, 74, 212, 0.4));
            animation: float 3s ease-in-out infinite;
        }

        .question-mark-decoration:nth-child(1) {
            animation-delay: 0s;
        }

        .question-mark-decoration:nth-child(3) {
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
        }

        .faq-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            font-weight: 400;
            max-width: 70%;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(20px);
            line-height: 1.8;
        }

        .faq-accordion-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            opacity: 0;
            transform: translateY(20px);
            position: relative;
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .faq-item {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px var(--shadow-color);
            backdrop-filter: blur(20px);
            border: 1px solid var(--card-border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(20px);
            position: relative;
        }

        .faq-item:hover {
            border-color: rgba(0, 26, 143, 0.6);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
        }

        .faq-item:hover::before {
            transform: scaleX(1);
        }

        .faq-item.active {
            border-color: rgba(11, 43, 185, 0.8);
            background: rgba(255, 255, 255, 0.12);
        }

        .faq-item.active::before {
            transform: scaleX(1);
        }

        .faq-header-btn {
            padding: 1.8rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .faq-header-btn h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-light);
            transition: color 0.3s ease;
        }

        .faq-item:hover .faq-header-btn h3 {
            color: #ffffff;
        }

        .faq-header-btn i {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--accent-color);
            font-size: 1.1rem;
            padding: 8px;
            border-radius: 50%;
            background: rgba(102, 126, 234, 0.1);
        }

        .faq-item.active .faq-header-btn i {
            transform: rotate(180deg);
            color: var(--accent-light);
            background: rgba(102, 126, 234, 0.2);
        }

        .faq-content-inner {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-content-text {
            padding: 0 2rem 2rem;
        }

        .faq-content-text p {
            color: var(--text-muted);
            margin-bottom: 1rem;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .faq-content-text ul {
            color: var(--text-muted);
            font-size: 0.95rem;
            padding-left: 1.5rem;
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .faq-content-text li {
            margin-bottom: 0.5rem;
        }

        .faq-content-text p:last-child {
            margin-bottom: 0;
        }

        /* Floating Question Mark Decorations */
        .floating-question-marks {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .floating-qmark {
            position: absolute;
            width: 60px;
            height: 60px;
            opacity: 0.1;
            filter: blur(1px);
            animation: floatSlow 8s ease-in-out infinite;
        }

        .floating-qmark:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-qmark:nth-child(2) {
            top: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-qmark:nth-child(3) {
            bottom: 30%;
            left: 8%;
            animation-delay: 4s;
        }

        .floating-qmark:nth-child(4) {
            bottom: 15%;
            right: 15%;
            animation-delay: 6s;
        }

        @keyframes floatSlow {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
            50% { transform: translateY(-20px) rotate(10deg); opacity: 0.2; }
        }

        /* Background decorations */
        .faq-decoration {
            position: absolute;
            pointer-events: none;
            z-index: 0;
            opacity: 0;
        }

        .faq-decoration-1 {
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(80, 109, 235, 0.15) 0%, rgba(102, 126, 234, 0) 70%);
            top: -250px;
            right: -250px;
            animation: pulse 4s ease-in-out infinite;
        }

        .faq-decoration-2 {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 18, 122, 0.15) 0%, rgba(3, 60, 146, 0) 70%);
            bottom: -200px;
            left: -200px;
            animation: pulse 4s ease-in-out infinite 2s;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.1; }
            50% { transform: scale(1.1); opacity: 0.2; }
        }

        .faq-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.08) 2px, transparent 2px);
            background-size: 30px 30px;
            z-index: -1;
            opacity: 0;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .faq-title {
                font-size: 2.5rem;
            }
            
            .question-mark-decoration {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 992px) {
            .faq-accordion-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .faq-title {
                font-size: 2.2rem;
            }
            
            .faq-title-container {
                flex-direction: column;
                gap: 0;
            }
        }

        @media (max-width: 768px) {
            .faq-header {
            gap: 0;
        }
            .faq-section {
                padding: 4rem 1.5rem;
            }

            .faq-title {
                font-size: 2rem;
            }

            .faq-subtitle {
                max-width: 100%;
                font-size: 1rem;
            }

            .question-mark-decoration {
                width: 50px;
                height: 50px;
            }

            .faq-header-btn {
                padding: 1.5rem;
            }

            .faq-content-text {
                padding: 0 1.5rem 1.5rem;
            }
        }