

body{
    width: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f9fafb;
    scroll-behavior: smooth;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.bg-primary {
    background-color: #1e3a8a;
}

.text-primary {
    color: #1e3a8a;
}

.bg-accent {
    background-color: #facc15;
}

.text-accent {
    color: #facc15;
}

.transition {
    transition: all 0.3s ease;
}

/* Header and Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #1e3a8a;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem ;
}

.logo-img {
    width: 120px;
    height: auto;
    border:1px solid #d1d5db;
    border-radius: 10%;
}

.desktop-menu {
    display: none;
}

.desktop-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.desktop-menu a:hover {
    color: #93c5fd;
}

.desktop-menu i {
    margin-right: 0.5rem;
}

.desktop-menu li{
     list-style-type: none;
}
.mobile-menu-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-button:hover {
    color: #facc15;
}

.mobile-menu-button.active i::before {
    content: '\f00d';
}

#mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 72px);
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 1.5rem;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

#mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.mobile-menu-overlay.active {
    display: block;
}

#mobile-menu ul {
    list-style: none;
}

#mobile-menu li {
    margin: 0.75rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: dropdown 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--index, 0));
}

#mobile-menu li:last-child {
    border-bottom: none;
}

#mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
}

#mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #facc15;
}

#mobile-menu i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
    color: #facc15;
}

@keyframes dropdown {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero-bg {
    background: url('images/tech-office-buzz-stockcake.jpg') no-repeat center/cover;
    padding: 3rem 0;
    color: #fff;
}

.hero-bg .container {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 8px;
}

.hero-bg h1 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 2rem;
}

.hero-bg p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-bg a {
    display: inline-block;
    background-color: #b7c0c4;
    color: #020d2b;
    padding: 0.55rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.hero-bg a:hover {
    background-color: #090268;
     color: #edf0f8;
}

/* Card Styles */
.card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card i {
    color: #1e3a8a;
    font-size: 2.5rem;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.card p {
    font-size: 1rem;
    font-weight: 500;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}
.text-center{
    margin-top: 2rem;
}

/* Section Styles */
section {
    padding: 3rem 0;
}

section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

section p.text-center {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Flex Containers (Mobile) */
.flex-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* About Section */

#about{
          position: relative; /* Essential for positioning the pseudo-element */
  overflow: hidden; ;
}

#about::before{
 content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/vector2.png'); /* Your background image */
  background-size: cover;
  background-position: center;
  filter: blur(170px); /* Adjust the blur strength as needed */
  z-index: -1; 
}

#about .flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  

}

#about p{
    font-size: 1rem;
   font-weight: 500;
}

#about img {
    width: 100%;
    border-radius: 8px;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 767px) {
  #about .logo {
    display: none;
}
}




/* steps we take */

#steps{
     position: relative; /* Essential for positioning the pseudo-element */
  overflow: hidden; 
}

#steps::before{
 content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/networking-free-transparent-png-7.png'); /* Your background image */
  background-size: cover;
  background-position: center;
  filter: blur(25px); /* Adjust the blur strength as needed */
  z-index: -1; 
}

.content {
  position: relative; /* Ensures contep{nt is on top of the pseudo-element */
  z-index: 1; /* Higher z-index than the pseudo-element */
  /* Your content styles here */
}

#steps p{
    font-size: 1rem;
    font-weight: 500;
}

/*     steps 2  */

 
     .x-funds-recovery .x-container {
        width: 90%;
     
        margin: 0 auto;
        position: relative;
    }
    
    @media (min-width: 1000px) {
        .x-funds-recovery .x-container {
            width: 60%;
        }
    }
    
    .x-funds-recovery .x-hero-section {
        margin-bottom: 3rem;
    
    }
    
    .x-funds-recovery .x-section-header h2 {
        font-size: 2.5rem;
        color: #1e293b;
        margin-bottom: 1rem;
        padding-top: 2rem;
        font-weight: 700;
        text-align: center;
    }
    
    .x-funds-recovery .x-section-header p {
        font-size: 1.1rem;
        color: #0b2b57;
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }
    
    .x-funds-recovery .x-process-steps {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .x-funds-recovery .x-step {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }
    
    .x-funds-recovery .x-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .x-funds-recovery .x-step.x-active {
        border-left: 4px solid #1d4ed8;
    }
    
    .x-funds-recovery .x-step-header {
        display: flex;
        align-items: center;
        padding: 1.25rem;
        background-color: white;
        color: #1e293b;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .x-funds-recovery .x-step.x-active .x-step-header {
        background-color: #284d9e;
        color: white;
    }
    
    .x-funds-recovery .x-step-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
        font-size: 1rem;
        transition: all 0.3s ease;
        color: #1d4ed8;
        background-color: rgba(29, 78, 216, 0.1);
    }
    
    .x-funds-recovery .x-step.x-active .x-step-icon {
        background-color: #6567fd;
        color: white;
    }
    
    .x-funds-recovery .x-step-title {
        font-size: 1.15rem;
        font-weight: 600;
        flex-grow: 1;
    }
    
    .x-funds-recovery .x-step-toggle {
        background: none;
        border: none;
        color: #1e293b;
        font-size: 1.1rem;
        cursor: pointer;
        transition: transform 0.3s ease, color 0.3s ease;
        padding: 0.5rem;
    }
    
    .x-funds-recovery .x-step.x-active .x-step-toggle {
        color: white;
        transform: rotate(180deg);
    }
    
    .x-funds-recovery .x-step-content {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
      
    }
    
    .x-funds-recovery .x-step.x-active .x-step-content {
        padding: 1.25rem;
        max-height: 1000px;
    }
    
    .x-funds-recovery .x-step-description {
        margin-bottom: 1rem;
        color: #475569;
        font-size: 0.95rem;
          font-weight: 600;
    }
    
    .x-funds-recovery .x-legal-action {
        background-color: #f0f7ff;
        border-left: 4px solid #1d4ed8;
        padding: 0.5rem;
        border-radius: 0 4px 4px 0;
        margin-top: 0.7rem;
          
    }
    
    .x-funds-recovery .x-legal-action-title {
        display: flex;
        align-items: center;
        color: #1d4ed8;
        font-weight: 600;
        margin-bottom: 0.4rem;
        font-size: 0.95rem;
    }
    
    .x-funds-recovery .x-legal-action-title i {
        margin-right: 0.5rem;
        font-size: 0.9rem;
    }
    
    .x-funds-recovery .x-legal-action-content {
        color: #0c4596;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    @media (max-width: 768px) {
        .x-funds-recovery .x-section-header h2 {
            font-size: 1.6rem;
        }
        
        .x-funds-recovery .x-step-header {
            padding: 1rem;
        }
        
        .x-funds-recovery .x-step-title {
            font-size: 1rem;
        }
        
        .x-funds-recovery .x-step-icon {
            width: 28px;
            height: 28px;
            font-size: 0.8rem;
        }
        
        .x-funds-recovery .x-step-toggle {
            font-size: 1rem;
        }
        
        .x-funds-recovery .x-step.x-active .x-step-content {
            padding: 0.5rem;
        }
    }
 





/* Statistics Section */
.stats-bg {
    background: linear-gradient(rgba(1, 14, 49, 0.5), rgba(1, 9, 31, 0.3)), url('images/workers.jpg') no-repeat center/cover;
    color: #fff;
    padding: 3rem 0;
    margin-top:3rem;
}

.stats-bg .flex-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    border: 2px solid rgb(221, 216, 216);
    border-radius: 20px;
        background-color: rgba(0, 0, 0, 0.8);
        padding-bottom: 1rem;

}

.stats-bg .flex-container > div {
    min-width: 200px;
}
.stats-bg .flex-container .stats{
    display: flex;
    align-items: center;
    justify-content: center;
}
.stats-bg h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.stats-bg p {
    font-size: 1.2rem;
    font-weight: 500;
}

.stats-bg i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Testimonials Section */


/* FAQ Section */
.faq-item {
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question:hover {
    color: #1e3a8a;
}

.faq-answer {
    display: none;
    padding-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.faq-answer.active {
    display: block;
}

/* Contact Section */
 /* Custom CSS */
        :root {
            --primary: #02006c;
            --error: #dc2626;
            --success: #16a34a;
            --gray: #6b7280;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f3f4f6;
            color: #111827;
        }

        .form-container {
            max-width: 600px;
            margin: 2rem auto;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        }
        
        #recoveryForm{
          
            padding:1rem;
            box-shadow:  0px 0px 10px rgba(0, 0, 0, 0.3);
            border-radius:10px;
            
        }

        .form-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #374151;
        }

        .form-input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.2s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
        }

        .error-message {
            color: var(--error);
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }

        .submit-btn {
            width:100%;
            padding: 0.75rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
            margin-bottom:1rem;
            
        }

        .submit-btn:hover {
            background-color: #1d4ed8;
        }

        .submit-btn:disabled {
            background-color: #93c5fd;
            cursor: not-allowed;
        }

        /* Success Popup */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            max-width: 400px;
            width: 90%;
            text-align: center;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .popup-overlay.active .popup-content {
            transform: translateY(0);
        }

        .popup-icon {
            font-size: 3rem;
            color: var(--success);
            margin-bottom: 1rem;
        }

        .popup-close-btn {
            margin-top: 1.5rem;
            padding: 0.5rem 1.5rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        /* Loading spinner */
        .spinner {
            display: inline-block;
            width: 1rem;
            height: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }


/* Footer */
footer {
    background-color: #1e3a8a;
    color: #fff;
    padding: 3rem 0;
}

footer h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #93c5fd;
}

footer p,
footer li {
    font-size: 1rem;
    font-weight: 500;
    list-style-type: none;

}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #1e3a8a;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    background-color: #1e40af;
}

/* Animations */
@keyframes fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fade 0.5s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    #mobile-menu,
    #mobile-menu li,
    #testimonials .flex-container,
    .animate-fade {
        animation: none;
        transition: none;
        transform: none;
    }
}

/* iPad Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    #services .flex-container,
    #steps .flex-container,
    #testimonials .flex-container,
    #scams .flex-container,
    #recent-results .flex-container,
    #comparison .flex-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bg .flex-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-bg h1 {
        font-size: 2.5rem;
    }

    .hero-bg p {
        font-size: 1.25rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .card h3 {
        font-size: 1.25rem;
    }

    .card p {
        font-size: 1rem;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
        gap: 1.5rem;
    }

    .mobile-menu-button,
    #mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }

    .hero-bg {
        padding: 4rem 0;
    }

    section {
        padding: 4rem 0;
    }

    #about .flex {
        flex-direction: row;
        gap: 2rem;
    }

    #about .flex > div,
    #about .flex > img {
        flex: 1 1 50%;
        max-width: 50%;
    }

  
}

/* Large Desktop Styles */
@media (min-width: 1024px) {
    #services .flex-container {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    #services .flex-container > .card {
        flex: 1 1 calc(33.333% - 1rem);
        max-width: 400px;
    }

    #steps .flex-container,
    #testimonials .flex-container,
    #scams .flex-container {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    #steps .flex-container > .card,
    #testimonials .flex-container > .card,
    #scams .flex-container > .card {
        flex: 1 1 calc(25% - 1.125rem);
        max-width: 300px;
    }

    #recent-results .flex-container,
    #comparison .flex-container {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    #recent-results .flex-container > .card,
    #comparison .flex-container > .card {
        flex: 1 1 calc(33.333% - 1rem);
        max-width: 400px;
    }

    .stats-bg .flex-container {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stats-bg .flex-container > div {
        flex: 1 1 calc(33.333% - 1rem);
        max-width: 400px;
    }

    footer .flex-container {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    footer .flex-container > div {
        flex: 1 1 calc(33.333% - 1rem);
        max-width: 400px;
    }

    .hero-bg h1 {
        font-size: 3rem;
    }

    .hero-bg p {
        font-size: 1.25rem;
    }

    section h2 {
        font-size: 2.25rem;
    }

    .card h3 {
        font-size: 1.5rem;
    }

    .card p,
    #about p,
    .faq-answer {
        font-size: 1.1rem;
    }
}


/* Add other existing styles as needed */

            :root {
            --primary-color: #2a5bd7;
            --secondary-color: #1e429f;
            --accent-color: #ff6b35;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: #f5f7fa;
            color: var(--dark-color);
        }
        
        .testimonial-section {
            padding: 80px 0;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-content {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Desktop Grid View (4 columns) */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        /* Mobile/Tablet Slider View */
        .testimonial-slider-container {
            display: none;
            position: relative;
            width: 100%;
        }
        
        .testimonial-slider {
            overflow: hidden;
            width: 100%;
        }
        
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card {
            min-width: 100%;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .client-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 3px solid var(--primary-color);
        }
        
        .client-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            text-align: left;
        }
        
        .client-location {
            color: #666;
            font-size: 0.9rem;
            text-align: left;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            text-align: left;
            position: relative;
            padding-left: 20px;
        }
        
        .testimonial-text::before {
            content: '"';
            font-size: 3rem;
            color: var(--accent-color);
            position: absolute;
            left: -10px;
            top: -20px;
            opacity: 0.3;
        }
        
        .recovery-details {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            text-align: left;
        }
        
        .recovery-amount {
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .recovery-time {
            color: #666;
            font-size: 0.9rem;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .slider-dot.active {
            background: var(--primary-color);
        }
        
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            border: none;
            font-size: 1.2rem;
            color: var(--primary-color);
            z-index: 10;
        }
        
        .slider-arrow:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .slider-arrow.prev {
            left: -20px;
        }
        
        .slider-arrow.next {
            right: -20px;
        }
        
        /* Responsive Breakpoints */
        @media (max-width: 1023px) {
            .testimonial-grid {
                display: none;
            }
            
            .testimonial-slider-container {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .testimonial-card {
                padding: 25px;
            }
            
            .client-avatar {
                width: 60px;
                height: 60px;
            }
            
            .slider-arrow {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .section-content {
                width: 85%;
            padding: 0;
            margin: 0 auto;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .testimonial-card {
                margin: 0;
                padding: 20px;
            }
            
            .slider-arrow {
                display: none;
            }
        }


        /* pop up */
/* Ensure popup is hidden by default */
