/**
 * About Us Page Styles
 * Modern, comprehensive styling for all About page sections
 */

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ===========================
   Hero Section
   =========================== */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #070714 0%, #1a1a2e 100%);
    padding: 100px 20px 70px;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="2"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.about-hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.about-hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: clamp(16px, 1.6vw, 19px);
    color: #b8b8c8;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===========================
   Our Story Section
   =========================== */
.about-story-section {
    padding: 80px 0;
    background: #0f0f1e;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-story-content {
    max-width: 600px;
}

.about-story-content .section-title {
    color: #ffffff;
}

.about-story-text {
    color: #b8b8c8;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-story-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 500;
}

.highlight-item i {
    color: #d4af37;
    font-size: 20px;
}

.about-story-image {
    position: relative;
}

.image-wrapper {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.story-image-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #d4af37;
    color: #070714;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.exp-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

/* ===========================
   Mission, Vision, Values Section
   =========================== */
.about-mvv-section {
    padding: 80px 0;
    background: #070714;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.mvv-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mvv-icon i {
    font-size: 32px;
    color: #d4af37;
}

.mvv-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.mvv-text {
    color: #b8b8c8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mvv-list {
    list-style: none;
    padding: 0;
}

.mvv-list li {
    color: #ffffff;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mvv-list li i {
    color: #d4af37;
    font-size: 14px;
}

/* ===========================
   Statistics Section
   =========================== */
.about-stats-section {
    padding: 64px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(7, 7, 20, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    border-color: #d4af37;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 28px;
    color: #d4af37;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: #b8b8c8;
}

/* ===========================
   Services Section
   =========================== */
.about-services-section {
    padding: 80px 0;
    background: #0f0f1e;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 32px;
    color: #d4af37;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.service-text {
    color: #b8b8c8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #ffffff;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li i {
    color: #d4af37;
    font-size: 14px;
}

/* ===========================
   How It Works Section
   =========================== */
.about-howitworks-section {
    padding: 80px 0;
    background: #070714;
}

.howitworks-timeline {
    max-width: 900px;
    margin: 48px auto 0;
    position: relative;
}

.howitworks-timeline::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #d4af37, rgba(212, 175, 55, 0.1));
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #d4af37, #c49b2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #070714;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.timeline-content {
    flex: 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #b8b8c8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-icon {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon i {
    font-size: 24px;
    color: #d4af37;
}

/* ===========================
   Team Section
   =========================== */
.about-team-section {
    padding: 80px 0;
    background: #0f0f1e;
    position: relative;
    max-width: 100vw;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.team-grid.slick-initialized {
    display: block;
    margin-top: 64px;
    position: relative;
}

.team-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.team-image {
    margin-bottom: 24px;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid #d4af37;
}

.team-avatar i {
    font-size: 60px;
    color: #d4af37;
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    color: #b8b8c8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.team-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #d4af37;
    color: #070714;
    transform: scale(1.1);
}

/* ===========================
   Testimonials Section
   =========================== */
.about-testimonials-section {
    padding: 80px 0;
    background: #070714;
    position: relative;
    max-width: 100vw;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonials-grid.slick-initialized {
    display: block;
    margin-top: 64px;
    position: relative;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #d4af37;
    font-size: 18px;
    margin-right: 4px;
}

.testimonial-text {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 40px;
    color: #d4af37;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: #b8b8c8;
}

/* ===========================
   Awards Section
   =========================== */
.about-awards-section {
    padding: 80px 0;
    background: #0f0f1e;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.award-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.award-card:hover {
    border-color: #d4af37;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.award-icon i {
    font-size: 40px;
    color: #d4af37;
}

.award-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.award-organization {
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
}

/* ===========================
   Partners Section
   =========================== */
.about-partners-section {
    padding: 80px 0;
    background: #070714;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.partner-logo {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: #d4af37;
    transform: scale(1.05);
}

.partner-logo i {
    font-size: 48px;
    color: #d4af37;
    display: block;
    margin-bottom: 16px;
}

.partner-logo span {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* ===========================
   FAQ Section
   =========================== */
.about-faq-section {
    padding: 80px 0;
    background: #0f0f1e;
}

.faq-grid {
    max-width: 900px;
    margin: 48px auto 0;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: #d4af37;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 18px;
    color: #b8b8c8;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

/* ===========================
   CTA Section
   =========================== */
.about-cta-section {
    padding: 80px 0;
    background: #070714;
}

.cta-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #252545 100%);
    border-radius: 30px;
    padding: 48px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.cta-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 18px;
    color: #b8b8c8;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-stat {
    text-align: center;
    padding: 30px;
    background: rgba(7, 7, 20, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 8px;
}

.cta-stat-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-story-content {
        max-width: 100%;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
        padding: 60px 20px 48px;
    }
    
    .about-hero-actions {
        flex-direction: column;
    }
    
    .about-story-highlights {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        right: 20px;
        bottom: -20px;
        padding: 20px;
    }
    
    .exp-number {
        font-size: 36px;
    }
    
    .howitworks-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-number {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .timeline-icon {
        display: none;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cta-stat {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* ===========================
   Slick Carousel Styles
   =========================== */

/* Team Carousel */
.team-grid.slick-initialized {
    display: block;
}

.team-grid .team-card {
    outline: none;
}

.team-grid .slick-list {
    padding: 20px 0 40px;
}

.team-grid .slick-slide {
    padding: 0 12px;
    outline: none;
}

/* Testimonials Carousel */
.testimonials-grid.slick-initialized {
    display: block;
}

.testimonials-grid .testimonial-card {
    outline: none;
}

.testimonials-grid .slick-list {
    padding: 20px 0 40px;
}

.testimonials-grid .slick-slide {
    padding: 0 12px;
    outline: none;
}

/* Slick Dots */
.team-grid .slick-dots,
.testimonials-grid .slick-dots {
    position: absolute;
    bottom: -32px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 10;
}

.team-grid .slick-dots li,
.testimonials-grid .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0;
}

.team-grid .slick-dots li button,
.testimonials-grid .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 2px solid #d4af37;
    border-radius: 50%;
    background: transparent;
    font-size: 0;
    line-height: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.team-grid .slick-dots li button:before,
.team-grid .slick-dots li button:after,
.testimonials-grid .slick-dots li button:before,
.testimonials-grid .slick-dots li button:after {
    display: none;
}

.team-grid .slick-dots li.slick-active button,
.testimonials-grid .slick-dots li.slick-active button {
    background: #d4af37;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Slick Arrows */
.team-grid .slick-prev,
.team-grid .slick-next,
.testimonials-grid .slick-prev,
.testimonials-grid .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    border: 2px solid #d4af37;
    border-radius: 50%;
    z-index: 100;
    transition: all 0.3s ease;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

.team-grid .slick-prev:hover,
.team-grid .slick-next:hover,
.testimonials-grid .slick-prev:hover,
.testimonials-grid .slick-next:hover {
    background-color: #d4af37;
    background-size: 32px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.team-grid .slick-prev {
    left: -20px;
}

.team-grid .slick-next {
    right: -20px;
}

.testimonials-grid .slick-prev {
    left: -20px;
}

.testimonials-grid .slick-next {
    right: -20px;
}

/* Remove slick default arrow content */
.team-grid .slick-prev:before,
.team-grid .slick-next:before,
.testimonials-grid .slick-prev:before,
.testimonials-grid .slick-next:before {
    display: none;
}

/* Add custom arrow icons using background images */
.team-grid .slick-prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23070714'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.team-grid .slick-next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23070714'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.testimonials-grid .slick-prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23070714'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.testimonials-grid .slick-next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23070714'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

/* Change arrow color on hover */
.team-grid .slick-prev:hover,
.testimonials-grid .slick-prev:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23070714'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}

.team-grid .slick-next:hover,
.testimonials-grid .slick-next:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23070714'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
}

/* Responsive adjustments for carousels */
@media (max-width: 1024px) {
    .team-grid .slick-prev,
    .team-grid .slick-next,
    .testimonials-grid .slick-prev,
    .testimonials-grid .slick-next {
        width: 45px;
        height: 45px;
        background-size: 20px;
    }
}

@media (max-width: 768px) {
    .team-grid .slick-prev,
    .team-grid .slick-next,
    .testimonials-grid .slick-prev,
    .testimonials-grid .slick-next {
        width: 40px;
        height: 40px;
        background-size: 18px;
        left: -12px;
    }
    
    .team-grid .slick-next,
    .testimonials-grid .slick-next {
        left: auto;
        right: -12px;
    }
    
    .team-grid .slick-dots,
    .testimonials-grid .slick-dots {
        bottom: -28px;
        gap: 6px;
    }
    
    .team-grid .slick-dots li,
    .testimonials-grid .slick-dots li {
        width: 10px;
        height: 10px;
    }
    
    .team-grid .slick-dots li button,
    .testimonials-grid .slick-dots li button {
        width: 10px;
        height: 10px;
    }
}
