:root {
    /* Thawa theme colors - updated to orange theme */
    --primary-color: #e67e22; /* Orange for Thawa */
    --primary-dark: #d35400;
    --primary-light: #f39c12;
    --accent-color: #3498db; /* Blue accent */
    --text-primary: #212121;
    --text-secondary: #757575;
    --background-light: #f5f5f5;
    --background-white: #ffffff;
    --divider-color: #e0e0e0;
    --error-color: #d32f2f;
    --success-color: #27ae60;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-light);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/Become\ a\ Partner1.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}




/* Enhanced error styling for partner form */
.form-control.error-field {
    border: 2px solid #e53e3e !important;
    background-color: #fdf2f2 !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1) !important;
}

.form-control.error-field:focus {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2) !important;
    outline: none !important;
}

/* Error message styling */
.field-error {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 6px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.field-error .error-icon {
    margin-right: 6px;
    font-size: 12px;
}

/* Animation for error message appearance */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Phone hint styling */
.phone-hint {
    color: #666;
    font-size: 12px;
    margin-top: 4px;
    font-style: italic;
}

/* Success state styling */
.form-control.success-field {
    border: 2px solid #27ae60 !important;
    background-color: #f8fffe !important;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1) !important;
}

/* Hover effects */
.form-control.error-field:hover {
    border-color: #c53030;
}

.form-control:not(.error-field):hover {
    border-color: #4299e1;
}

/* Focus effects for non-error fields */
.form-control:not(.error-field):focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
    outline: none;
}

/* Required field indicator styling */
.required-field::after {
    /* content: " *"; */
    color: #e53e3e;
    font-weight: bold;
}

/* Form group spacing when errors are present */
.form-group:has(.field-error) {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for error messages */
@media (max-width: 768px) {
    .field-error {
        font-size: 0.8rem;
    }
    
    .phone-hint {
        font-size: 11px;
    }
}



/* form Section */
.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.join-team-section {
    position: relative;
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-secondary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.inquiry-form-container {
    background-color: var(--background-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 40px;
}

.form-header {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 0L50 0L0 50Z' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M100 0L100 50L50 0Z' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M100 100L50 100L100 50Z' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M0 100L0 50L50 100Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    opacity: 0.2;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}

.form-header p {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
}

.form-body {
    padding: 40px 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-section {
    margin-bottom: 35px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--divider-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--divider-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--text-primary);
    background-color: rgba(245, 245, 245, 0.5);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
    background-color: white;
}

.form-control::placeholder {
    color: #bdbdbd;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--divider-color);
    border-radius: 8px;
    font-size: 16px;
    appearance: none;
    background-color: rgba(245, 245, 245, 0.5);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e67e22' 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;
    background-size: 16px;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
    background-color: white;
}

.checkbox-group {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 576px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

.checkbox-label {
    /* display: flex; */
    align-items: center;
    cursor: pointer;
    /* padding: 8px 12px; */
    border-radius: 6px;
    transition: background-color 0.2s;
    user-select: none;
}

.checkbox-label:hover {
    background-color: rgba(230, 126, 34, 0.05);
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    background-color: transparent;
    transition: all 0.2s;
}

.checkbox-input:checked ~ .checkbox-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-input:checked ~ .checkbox-custom:after {
    display: block;
}
.privacy{
    padding-left: 5px;
}

.submit-row {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 15px rgba(230, 126, 34, 0.4);
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(230, 126, 34, 0.3);
}

.required-text {
    text-align: right;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.required-field::after {
    content: "*";
    color: var(--error-color);
    margin-left: 4px;
}

.form-info {
    background-color: rgba(230, 126, 34, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.form-info p {
    margin: 0;
    color: var(--text-primary);
    font-size: 15px;
}

/* Decorative elements */
.decorative-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.15;
}

.shape-1 {
    top: 20px;
    left: 5%;
    width: 150px;
    height: 150px;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.shape-2 {
    bottom: 30px;
    right: 5%;
    width: 200px;
    height: 200px;
    background-color: var(--accent-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Modal Overlay - for privacy policy and success message */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.modal-content {
    background-color: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

/* Modal Header */
.modal-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 30px;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 0L50 0L0 50Z' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M100 0L100 50L50 0Z' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M100 100L50 100L100 50Z' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M0 100L0 50L50 100Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    opacity: 0.2;
    border-radius: 12px 12px 0 0;
}

.modal-header h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    position: relative;
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.2s;
    z-index: 2;
}

.modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Modal Body */
.modal-body {
    padding: 30px;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 16px;
}

.modal-body h4 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-weight: 600;
    font-size: 18px;
}

.modal-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.modal-body li {
    margin-bottom: 8px;
}

/* Success Message Styles */
.success-content {
    text-align: center;
    padding: 40px 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.success-icon::before {
    content: '';
    width: 30px;
    height: 15px;
    border-left: 4px solid white;
    border-bottom: 4px solid white;
    transform: rotate(-45deg);
    position: relative;
    top: -4px;
}

.success-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.success-message {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.btn-close-success {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(40, 58, 156, 0.4);
}

.btn-close-success:hover {
    background-color: #070707;
    box-shadow: 0 6px 15px rgba(40, 58, 156, 0.4);
    transform: translateY(-2px);
}







/* Partner Testimonials Section */
  /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-opacity='0.03'%3E%3Cpolygon fill='%23e67e22' points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.4;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
        }

        .section-header p {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
            border-radius: 2px;
        }

/* Marquee container */
        .marquee-container {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        .marquee-content {
            display: flex;
            width: fit-content;
            animation: marqueeScroll 80s linear infinite;
        }

        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .marquee-content:hover {
            animation-play-state: paused;
        }

        /* Redesigned testimonial cards */
        .testimonials-grid {
            display: flex;
            gap: 30px;
            flex-shrink: 0;
        }

        /* Add margin-right to the first grid to create gap before duplication */
        .testimonials-grid:first-child {
            margin-right: 30px;
        }

        .testimonial-card {
            background: var(--background-white);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
            min-width: 380px;
            max-width: 400px;
            flex-shrink: 0;
            border-top: 4px solid var(--primary-color);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .quote-icon {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            color: #e0e0e0;
            opacity: 0.7;
        }

        .rating {
            display: flex;
            gap: 3px;
            margin-bottom: 15px;
        }

        .rating i {
            color: #ffd700;
            font-size: 16px;
        }

        .testimonial-text {
            font-size: 15px;
            color: var(--text-primary);
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .partner-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .partner-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--primary-color);
            flex-shrink: 0;
        }

        .partner-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .partner-details {
            flex: 1;
        }

        .partner-details h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 3px;
        }

        .partner-details .position {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 5px;
        }

        /* Partner slider nav */
.partner-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.partner-dots {
    display: flex;
    gap: 8px;
}

.partner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.18);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.partner-dot.active {
    background: var(--primary-color);
    transform: scale(1.35);
}

.partner-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: white;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.partner-arrow:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}



        .company-info {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .company-logo1 {
            width: 20px;
            height: 20px;
            border-radius: 3px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .company-logo1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .company-name {
            font-size: 13px;
            font-weight: 500;
            color: #4a90e2;
        }


        /* Success Metrics */
        .success-metrics {
            background: var(--background-white);
            border-radius: 15px;
            padding: 40px 8px;
            margin-top: 40px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            position: relative;
            z-index: 2;
        }

        .success-metrics h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 30px;
            font-weight: 600;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .metric-item {
            padding: 20px 15px;
        }

        .metric-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-bottom: 8px;
        }

        .metric-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Partnership Benefits */
        .partnership-benefits {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 50px 30px;
            border-radius: 15px;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .partnership-benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 0L50 0L0 50Z' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M100 0L100 50L50 0Z' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M100 100L50 100L100 50Z' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M0 100L0 50L50 100Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
            opacity: 0.2;
        }

        .benefits-content {
            position: relative;
            z-index: 2;
        }

        .benefits-title {
            text-align: center;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 35px;
        }

        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
        }

        .benefit-icon {
            background: rgba(255, 255, 255, 0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-text {
            font-size: 16px;
            font-weight: 500;
        }

        /* CTA Section */
        .testimonial-cta {
            text-align: center;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }

        .cta-button {
            background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
            color: white;
            border: none;
            border-radius: 50px;
            padding: 18px 40px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(230, 126, 34, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 32px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .testimonial-card {
                padding: 25px 20px;
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .benefits-list {
                grid-template-columns: 1fr;
            }

            .partnership-benefits {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .partner-testimonials {
                padding: 50px 0;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .metric-number {
                font-size: 28px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                margin: 0 10px;
            }
        }

        /* ── Mobile fix for partner testimonials ── */
@media (max-width: 576px) {
    .testimonial-card {
        min-width: calc(100vw - 40px);   /* full width minus side padding */
        max-width: calc(100vw - 40px);
        padding: 20px;
    }

    .testimonials-grid {
        gap: 20px;
    }

    /* Fewer visible dots on mobile — hide overflow */
    .partner-dots {
        max-width: 180px;
        overflow: hidden;
        justify-content: center;
    }

    .partner-nav {
        gap: 10px;
    }

    .partner-arrow {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    /* Slow down marquee slightly on mobile */
    .marquee-content {
        animation-duration: 40s !important;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 320px;
    }
}
@media (max-width: 768px) {
    .partner-dots {
        display: none;
    }
}