/* Industries Section Styles */
.industries-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
    
.industries-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.industry-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.7);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.industry-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary));
    transition: height 0.3s ease;
    z-index: -1;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.industry-card:hover::before {
    height: 100%;
}

.industry-card:hover h3,
.industry-card:hover p,
.industry-card:hover .industry-icon {
    color: white;
}

.industry-card:hover .industry-features span {
    background: rgba(255,255,255,0.2);
    color: white;
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.industry-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.industry-features span {
    background: #f1f5f9;
    color: #475569;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 90%);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto 25px;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--primary);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .industries-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header .subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Technologies Section Styles */
.technologies-section {
    position: relative;
    overflow: hidden;
}

.technologies-container {
    background: url('../imgs/tech-bg.avif') no-repeat center center/cover;
    margin: 0 auto;
    padding: 0 12%;
    padding-top: 40px;
    height: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.tech-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tech-tab {
    padding: 12px 24px;
    background: #f1f5f9;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.tech-tab:hover {
    background: #e2e8f0;
}

.tech-tab.active {
    background: linear-gradient(90deg, var(--primary-light), var(--secondary));
    color: white;
}

.tech-content {
    position: relative;
    min-height: 500px;
}

.tech-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tech-panel.active {
    display: block;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.tech-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.7);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(226, 232, 240, 0.9);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.tech-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon img {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.tech-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1e293b;
}

.tech-info p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .technologies-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .technologies-section {
        padding: 60px 0;
    }

    .technologies-container {
        height: auto;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .tech-tabs {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .tech-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .tech-card {
        padding: 20px;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .tech-icon img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .technologies-container {
        padding-bottom: 40px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header .subtitle {
        font-size: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion {
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background: white;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    border: none;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #475569;
    line-height: 1.7;
}

.faq-answer ul, .faq-answer ol {
    padding-left: 20px;
    margin: 15px 0;
    margin-left: 20px
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 126, 179, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(20, 126, 179, 0.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header .subtitle {
        font-size: 1rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    background: linear-gradient(145deg, #2dc6c689 0%, #1f7dc099 90%), url('../imgs/b1.jpeg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    padding-bottom: 20px;
    padding-top: 60px;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

.testimonials-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.testimonials-section-header .testimonials-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.testimonial-slide {
    background: linear-gradient(145deg, var(--primary-light) 0%, var(--secondary) 90%);
    border-radius: 26px;
    width: 100%;
    display: none;
    animation: fadeIn 0.5s ease;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.testimonial-slide:not(.active) {
    opacity: 0;
    transform: translateX(100%);
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 25px;
    font-style: italic;
}

.client-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.slider-prev, .slider-next {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--primary);
}

.slider-prev:hover, .slider-next:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .review {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header .subtitle {
        font-size: 1rem;
    }
    
    .testimonial-content {
        padding: 25px 20px;
    }
    
    .stars {
        font-size: 1.2rem;
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary));
    z-index: 1000;
    transition: width 0.1s ease;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}