/* 
 * LoanBazzar DSA Onboarding Page Stylesheet
 * Matches the Royal Blue & Warm Orange theme from About page
 */

/* Hero Section */
.dsa-hero {
    background-color: var(--light-gray);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.dsa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 70%;
    background: radial-gradient(circle at center, rgba(30, 64, 175, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.dsa-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 70%;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.dsa-hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 10%;
    width: 60px;
    height: 60px;
    background-color: rgba(30, 64, 175, 0.03);
    border-radius: 12px;
    transform: rotate(45deg);
    z-index: 0;
}

.process-flowchart::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px; /* Align with flow step margin */
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-orange));
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(30, 64, 175, 0.1);
    z-index: 1;
}

.dsa-hero-content::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 15%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.dsa-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.dsa-hero-text {
    width: 100%;
}

.dsa-hero-text h1 {
    font-size: 3.2rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dsa-hero-text p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.dsa-hero-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.dsa-hero-buttons .btn {
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    min-width: 180px;
    transition: all 0.3s ease;
}

.dsa-hero-buttons .btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.dsa-hero-buttons .btn-primary:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
}

.dsa-hero-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.dsa-hero-buttons .btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.1);
}

/* Section Styling */
.dsa-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.alternate-bg {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.alternate-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 300px;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

/* Section Headers */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.6;
}

.section-title::after {
    content: '';
    height: 3px;
    width: 60px;
    background: var(--primary-blue);
    display: block;
    margin: 15px auto 0;
}

/* Add content wrapper for all sections */
.section-content {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Introduction Section */
.dsa-intro {
    position: relative;
    z-index: 1;
}

/* Base container styles to match About page */
.container {
    max-width: 1200px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.dsa-intro p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1170px;
    margin: 0 auto;
}

.highlight-box {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight-box i {
    font-size: 2.2rem;
    color: var(--secondary-orange);
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
}

.highlight-box i::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.highlight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-box p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
    max-width: 1170px;
    margin: 0 auto;
}

.benefit-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.benefit-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background-color: rgba(30, 64, 175, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

/* Alternate colored icons */
.benefit-card:nth-child(even) .benefit-icon {
    background-color: rgba(249, 115, 22, 0.08);
}

.benefit-card:nth-child(even) .benefit-icon i {
    color: var(--secondary-orange);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Process Flowchart */
.process-flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 600px;
    margin: 50px auto;
    position: relative;
    padding: 20px 0;
    overflow: visible;
}

/* Connections between flow steps */
/* Arrow connections between steps */
.flow-step::after {
    content: '\f078'; /* fa-chevron-down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -35px;
    left: 25px; /* Align with vertical line */
    color: var(--primary-blue);
    font-size: 1.2rem;
    z-index: 3;
}

.flow-step:nth-child(even)::after {
    color: var(--secondary-orange);
}

/* Hide arrow only for the last item */
.flow-step:last-child::after {
    display: none;
}

.flow-step {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    z-index: 2;
    transition: all 0.3s ease;
    margin: 0 0 0 15px;
}

.flow-step:hover {
    transform: translateY(-8px);
}

.flow-icon {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.flow-step:nth-child(even) .flow-icon {
    border-color: var(--secondary-orange);
}

.flow-step:hover .flow-icon {
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.15);
    transform: scale(1.05);
}

.flow-icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.flow-step:nth-child(even) .flow-icon i {
    color: var(--secondary-orange);
}

.flow-step:hover .flow-icon i {
    transform: scale(1.1);
}

.flow-content {
    text-align: left;
    padding: 20px 25px 20px 35px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flow-step:hover .flow-content {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.flow-number {
    position: absolute;
    top: 50%;
    left: -17px;
    transform: translateY(-50%);
    background-color: var(--primary-blue);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 10px rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
    z-index: 5;
}

.flow-step:nth-child(even) .flow-number {
    background-color: var(--secondary-orange);
    box-shadow: 0 5px 10px rgba(249, 115, 22, 0.2);
}

.flow-step:hover .flow-number {
    transform: translateY(-50%) scale(1.1);
}

.flow-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    text-align: left;
}

.flow-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
    width: 100%;
    text-align: left;
}

/* Remove down arrows as we're in a single line now */
.flow-step::before {
    display: none;
}

/* Documents Section */
.documents-container {
    display: flex;
    gap: 30px;
    max-width: 850px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

.documents-category {
    flex: 1;
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.documents-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.documents-category:hover::before {
    opacity: 1;
}

.documents-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.documents-category:nth-child(2)::before {
    background: var(--secondary-orange);
}

.documents-category h3 {
    margin-bottom: 25px;
    color: var(--primary-blue);
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.documents-category:nth-child(2) h3 {
    color: var(--secondary-orange);
}

.documents-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-blue);
}

.documents-category:nth-child(2) h3::after {
    background: var(--secondary-orange);
}

.documents-list {
    padding-left: 0;
    list-style: none;
}

.documents-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.documents-list li:hover {
    background-color: rgba(0,0,0,0.02);
}

.documents-list li:last-child {
    margin-bottom: 0;
}

.documents-list li i {
    color: var(--primary-blue);
    margin-right: 15px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.documents-category:nth-child(2) .documents-list li i {
    color: var(--secondary-orange);
}

/* Form Styling */
.form-container {
    max-width: 800px;
    margin: 50px auto 0;
    background-color: var(--white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgba(30, 64, 175, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 0 12px 0 0;
    z-index: -1;
}

.form-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 0 0 0 12px;
    z-index: -1;
}

.form-group {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.form-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-group h3 {
    margin-bottom: 25px;
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.form-group h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-orange);
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-col {
    flex: 1;
    position: relative;
}

.form-col.full-width {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 16px;
    color: var(--text-dark);
    background-color: #fff;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

textarea {
    height: 120px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 3px;
    accent-color: var(--primary-blue);
}

.form-checkbox label {
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.form-checkbox a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.form-checkbox a:hover {
    color: var(--secondary-orange);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-submit .btn {
    padding: 14px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.form-submit .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.form-submit .btn:hover::before {
    left: 100%;
}

.form-submit .btn:hover {
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
    transform: translateY(-3px);
}

/* Testimonials */
.testimonials-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 10px;
    border: 1px solid #eee;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 250px;
    flex-shrink: 0;
    display: block;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at center, rgba(30, 64, 175, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
}

.testimonial-content {
    font-style: italic;
    position: relative;
    padding: 0 30px;
    color: #555;
    line-height: 1.7;
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 30px;
    min-height: 80px;
    display: block;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 5rem;
    color: var(--secondary-orange);
    position: absolute;
    left: -10px;
    top: -40px;
    opacity: 0.15;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Profile images removed as requested */

.testimonial-card:hover .testimonial-author img {
    border-color: var(--primary-blue);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 25px;
    position: relative;
    z-index: 10;
}

.carousel-btn {
    background-color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    outline: none;
}

.carousel-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(30, 64, 175, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.carousel-indicator.active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

/* Responsive testimonials styles */
@media (max-width: 991px) {
    .testimonial-card {
        padding: 35px 40px;
        max-width: 90%;
    }
    
    .testimonial-content {
        padding: 0 10px 0 30px;
        font-size: 1.1rem;
    }
    
    .carousel-controls {
        margin-top: 30px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 30px 25px;
        max-width: 95%;
    }
    
    .testimonial-content {
        padding: 0;
        font-size: 1rem;
    }
    
    .testimonial-content:before {
        font-size: 4rem;
        left: -5px;
        top: -25px;
    }
    
    .author-details h4 {
        font-size: 1.05rem;
    }
    
    .author-details p {
        font-size: 0.85rem;
    }
    
    .carousel-controls {
        margin-top: 25px;
        gap: 20px;
    }
}

.author-details {
    text-align: center;
    width: 100%;
}

.author-details h4 {
    margin: 0 0 5px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
}

.author-details p {
    margin: 0 0 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    color: var(--secondary-orange);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

/* CTA Section */
.dsa-cta {
    background: linear-gradient(135deg, var(--primary-blue), #3054b5);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

.dsa-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.dsa-cta h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.dsa-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.dsa-cta .btn {
    margin: 0 10px;
    padding: 14px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.dsa-cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
}

.dsa-cta .btn-primary:hover {
    background-color: var(--secondary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dsa-cta .btn-secondary {
    border: 2px solid var(--white);
}

.dsa-cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* FAQs */
.faq-accordion {
    max-width: 850px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-question.active {
    color: var(--primary-blue);
    background-color: rgba(30, 64, 175, 0.02);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 30px 25px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .dsa-hero-text h1 {
        font-size: 2.8rem;
    }
    
    .dsa-hero {
        padding: 100px 0 80px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .documents-category {
        padding: 30px;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .form-container {
        padding: 40px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-answer.active {
        padding: 0 25px 20px;
    }
}

@media (max-width: 991px) {
    .dsa-section {
        padding: 60px 0;
    }
    
    .dsa-hero {
        padding: 80px 0 60px;
    }
    
    .dsa-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .dsa-hero-text p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .dsa-hero-buttons {
        gap: 15px;
    }
    
    .dsa-hero-buttons .btn {
        min-width: 160px;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .intro-highlights {
        grid-template-columns: repeat(1, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }
    
    .highlight-box {
        margin-bottom: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    /* Flowchart responsive adjustments */
    .process-flowchart {
        gap: 40px;
        padding: 30px 15px;
        margin: 60px auto 30px;
        max-width: 550px;
    }
    
    .process-flowchart::before {
        left: 50%;
        top: 0;
        bottom: 0;
    }
    
    .flow-step {
        width: 100%;
        gap: 20px;
    }
    
    .flow-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .flow-content {
        padding: 20px 12px;
        min-height: 130px;
    }
    
    .flow-arrow {
        right: -15px;
        top: 80px;
    }
    
    .flow-content h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .documents-container {
        flex-direction: column;
        max-width: 600px;
    }
    
    .documents-category {
        margin-bottom: 30px;
    }
    
    .form-container {
        padding: 35px;
        max-width: 700px;
    }
    
    .dsa-cta h2 {
        font-size: 2.5rem;
    }
    
    .testimonial-content {
        padding: 0 10px 0 30px;
    }
}

@media (max-width: 767px) {
    .dsa-section {
        padding: 50px 0;
    }
    
    .dsa-hero {
        padding: 70px 0 50px;
    }
    
    .dsa-hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .dsa-hero-text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    .dsa-hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .dsa-hero-buttons .btn {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .section-title::after {
        width: 50px;
    }
    
    .dsa-intro p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    /* Mobile flowchart styling */
    .process-flowchart {
        gap: 35px;
        padding: 20px 10px;
        margin-top: 40px;
        max-width: 100%;
    }
    
    .flow-icon {
        width: 55px;
        height: 55px;
    }
    
    .flow-content {
        padding: 15px 20px 15px 30px;
        width: calc(100% - 80px);
    }
    
    .flow-step:hover {
        transform: translateY(-5px);
    }
    
    .flow-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .flow-content {
        text-align: left;
        min-height: auto;
        padding: 20px;
    }
    
    .flow-content h3 {
        margin-top: 0;
        text-align: left;
        margin-bottom: 8px;
    }
    
    .flow-content p {
        text-align: left;
    }
    
    .flow-arrow {
        position: absolute;
        bottom: -35px;
        left: 50%;
        top: auto;
        right: auto;
        transform: translateX(-50%) rotate(90deg);
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-container {
        padding: 30px 25px;
        margin-top: 30px;
    }
    
    .form-group {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-content {
        padding: 0 0 0 25px;
        font-size: 1rem;
    }
    
    .testimonial-author img {
        width: 55px;
        height: 55px;
    }
    
    .dsa-cta {
        padding: 70px 0;
    }
    
    .dsa-cta h2 {
        font-size: 2rem;
    }
    
    .dsa-cta p {
        font-size: 1.1rem;
    }
    
    .dsa-cta .btn {
        padding: 12px 25px;
        margin: 5px;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 20px 18px;
    }
}

@media (max-width: 575px) {
    .dsa-section {
        padding: 40px 0;
    }
    
    .dsa-hero {
        padding: 50px 0 40px;
    }
    
    .dsa-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .dsa-hero-text p {
        font-size: 1rem;
    }
    
    .dsa-hero-content::before,
    .dsa-hero-content::after,
    .dsa-hero::before,
    .dsa-hero::after {
        /* Hide decorative elements on mobile */
        display: none;
    }
    
    .dsa-hero-buttons .btn {
        padding: 10px 20px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 0.95rem;
    }
    
    /* Small mobile flowchart styling */
    .process-flowchart {
        gap: 45px; /* Increase gap for better spacing with arrows */
        padding: 20px 5px;
    }
    
    .flow-step {
        flex-direction: row;
        gap: 12px;
    }
    
    .flow-icon {
        width: 45px;
        height: 45px;
    }
    
    .flow-icon i {
        font-size: 1.2rem;
    }
/* Mobile flowchart styling - fixing number icon position */
    .flow-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        top: 50%;
        left: -14px;
    }
    
    .flow-content {
        padding: 15px 15px 15px 25px;
        width: calc(100% - 60px);
    }
    
    .flow-content h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .flow-content p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .flow-step::after {
        bottom: -25px;
        font-size: 1rem;
    }

    
    .dsa-intro p {
        font-size: 0.95rem;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .documents-category h3 {
        font-size: 1.2rem;
    }
    
    .form-container::before,
    .form-container::after {
        display: none;
    }
    
    .form-group h3 {
        font-size: 1.2rem;
    }
    
    .form-submit .btn {
        padding: 12px 30px;
        width: 100%;
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-content {
        padding: 0;
    }
    
    .testimonial-content:before {
        display: none;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin: 0 auto 15px;
    }
    
    .dsa-cta {
        padding: 60px 0;
    }
    
    .dsa-cta h2 {
        font-size: 1.8rem;
    }
    
    .dsa-cta p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .dsa-cta .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto 10px;
        display: block;
    }
}
