/* Enhanced Services Grid Layout */

/* Enhanced Services Section */
.services-professional-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-professional-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 40 L 0 0 L 40 40" stroke="%23e9ecef" stroke-width="0.5" fill="none"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" opacity="0.1"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.services-professional-section .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Services Header */
.services-header-enhanced {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0px 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(44, 62, 80, 0.05) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.services-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-transform: none;
    letter-spacing: -1px;
    line-height: 1.2;
}

.title-accent {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    margin: 0 auto 25px;
    border-radius: 2px;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #3498db;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.services-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Services Grid Modern */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 60px;
}

/* Service Item Modern */
.service-item-modern {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item-modern:hover::before {
    transform: scaleX(1);
}

.service-item-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.15);
    border-color: #3498db;
}

/* Service Icon Modern */
.service-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1px;
    transition: all 0.4s ease;
    position: relative;
    animation: pulse 2s infinite;
}

.service-item-modern:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.3);
    animation: none;
}

.service-icon-modern i {
    font-size: 28px;
    color: white;
    transition: transform 0.3s ease;
}

/* Service Content Modern */
.service-content-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title-modern {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.service-item-modern:hover .service-title-modern {
    color: #3498db;
}

.service-text-modern {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Service Features List Modern */
.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.feature-item-modern:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

.feature-item-modern i {
    color: #3498db;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-item-modern:hover i {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

.feature-item-modern span {
    font-size: 13px;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-item-modern:hover span {
    color: rgb(95, 95, 95);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(52, 152, 219, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(52, 152, 219, 0.3);
    }
}

/* Service Features Modern */
.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-modern li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.service-features-modern li i {
    color: #3498db;
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-item-modern:hover .service-features-modern li {
    color: #2c3e50;
    transform: translateX(5px);
}

.service-item-modern:hover .service-features-modern li i {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

/* CTA Section Modern */
.services-cta-modern {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.services-cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.cta-content-modern {
    position: relative;
    z-index: 2;
}

.cta-heading-modern {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-text-modern {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-actions-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-modern,
.cta-secondary-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-primary-modern {
    background: rgba(255,255,255,0.2);
    color: white;
}

.cta-secondary-modern {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.cta-primary-modern:hover,
.cta-secondary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-primary-modern:hover {
    background: rgba(255,255,255,0.3);
}

.cta-secondary-modern:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.cta-primary-modern i,
.cta-secondary-modern i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Services Three Per Row Layout */
.services-three-per-row {
    margin-bottom: 30px;
}

/* Service Card Modern Styling */
.service-card-modern {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #3498db;
}

/* Icon Box Enhancement */
.service-card-modern .mt-icon-box-sm {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    transition: all 0.3s ease;
}

.service-card-modern:hover .mt-icon-box-sm {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.service-card-modern .mt-icon-box-sm i {
    font-size: 28px;
    color: white;
}

/* Content Styling */
.service-card-modern .icon-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-modern .mt-tilte {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card-modern:hover .mt-tilte {
    color: #3498db;
}

.service-card-modern .service-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Button Styling */
.service-card-modern .site-button-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid #3498db;
    border-radius: 20px;
    background: transparent;
}

.service-card-modern .site-button-link:hover {
    background: #3498db;
    color: white;
    transform: translateX(5px);
}

.service-card-modern .site-button-link .arrow-animation {
    transition: transform 0.3s ease;
}

.service-card-modern .site-button-link:hover .arrow-animation {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-three-per-row .col-lg-4 {
        margin-bottom: 30px;
    }
    
    .services-main-title {
        font-size: 42px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .service-card-modern {
        margin-bottom: 20px;
    }
    
    .service-card-modern .mt-icon-box-sm {
        width: 60px;
        height: 60px;
    }
    
    .service-card-modern .mt-icon-box-sm i {
        font-size: 24px;
    }
    
    .service-card-modern .mt-tilte {
        font-size: 16px;
    }
    
    .services-main-title {
        font-size: 36px;
    }
    
    .services-subtitle {
        font-size: 15px;
    }
    
    .services-header-enhanced {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .services-three-per-row {
        margin-bottom: 20px;
    }
    
    .service-card-modern {
        padding: 20px !important;
        margin-bottom: 15px;
    }
    
    .services-main-title {
        font-size: 30px;
        line-height: 1.3;
    }
    
    .services-subtitle {
        font-size: 14px;
    }
    
    .title-underline {
        width: 60px;
        height: 3px;
    }
    
    .services-header-enhanced {
        margin-bottom: 30px;
    }
}

/* Row Spacing */
.services-three-per-row + .services-three-per-row {
    margin-top: 30px;
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-modern.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered Animation */
.services-three-per-row .service-card-modern:nth-child(1) { animation-delay: 0.1s; }
.services-three-per-row .service-card-modern:nth-child(2) { animation-delay: 0.2s; }
.services-three-per-row .service-card-modern:nth-child(3) { animation-delay: 0.3s; }

.services-three-per-row:nth-child(2) .service-card-modern:nth-child(1) { animation-delay: 0.4s; }
.services-three-per-row:nth-child(2) .service-card-modern:nth-child(2) { animation-delay: 0.5s; }
.services-three-per-row:nth-child(2) .service-card-modern:nth-child(3) { animation-delay: 0.6s; }

.services-three-per-row:nth-child(3) .service-card-modern:nth-child(1) { animation-delay: 0.7s; }
.services-three-per-row:nth-child(3) .service-card-modern:nth-child(2) { animation-delay: 0.8s; }
.services-three-per-row:nth-child(3) .service-card-modern:nth-child(3) { animation-delay: 0.9s; }

/* Enhanced About Section */
.about-section-enhanced {
    position: relative;
    overflow: hidden;
}

.about-content-modern {
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.section-header-about {
    text-align: center;
    margin-bottom: 40px;
}

.about-title {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
    font-weight: 400;
}

.brochure-section-modern {
    margin-top: 30px;
}

.brochure-card-modern,
.app-dev-card-modern {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.brochure-card-modern::before,
.app-dev-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.brochure-card-modern:hover::before,
.app-dev-card-modern:hover::before {
    transform: scaleX(1);
}

.brochure-card-modern:hover,
.app-dev-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.brochure-icon,
.app-dev-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.brochure-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.app-dev-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.brochure-card-modern:hover .brochure-icon,
.app-dev-card-modern:hover .app-dev-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.brochure-title,
.app-dev-title {
    font-size: 17px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.brochure-description,
.app-dev-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.brochure-btn,
.app-dev-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.brochure-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.app-dev-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.brochure-btn:hover,
.app-dev-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Experience Section */
.experience-section-modern {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.experience-header {
    text-align: center;
    margin-bottom: 40px;
}

.experience-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.experience-number .count {
    font-size: 45px;
    font-weight: 700;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.experience-number .years {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

.experience-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Skills Progress */
.skills-progress-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skill-item {
    margin-bottom: 30px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
}

.skill-percentage {
    font-size: 16px;
    font-weight: 600;
    color: #3498db;
}

.progress-bar-modern {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 4px;
    width: 0;
    transition: width 2s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .about-title {
        font-size: 36px;
    }
    
    .experience-number .count {
        font-size: 56px;
    }
    
    .about-content-modern,
    .experience-section-modern {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 32px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .experience-number .count {
        font-size: 48px;
    }
    
    .about-content-modern,
    .experience-section-modern {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .brochure-card-modern,
    .app-dev-card-modern {
        padding: 25px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 28px;
    }
    
    .experience-number .count {
        font-size: 42px;
    }
    
    .about-content-modern,
    .experience-section-modern {
        padding: 20px;
    }
    
    .brochure-card-modern,
    .app-dev-card-modern {
        padding: 20px;
    }
    
.about-content-modern,
.experience-section-modern {
padding: 25px;
margin-bottom: 20px;
}
    
.brochure-card-modern,
.app-dev-card-modern {
padding: 25px;
margin-bottom: 20px;
}
}

@media (max-width: 576px) {
.about-title {
font-size: 28px;
}
    
.experience-number .count {
font-size: 42px;
}
    
.about-content-modern,
.experience-section-modern {
padding: 20px;
}
    
.brochure-card-modern,
.app-dev-card-modern {
padding: 20px;
}
    
.section-header-about {
margin-bottom: 30px;
}
    
.experience-header {
margin-bottom: 30px;
}
}

.section-header-about {
margin-bottom: 30px;
}
    
.experience-header {
margin-bottom: 30px;
}

/* Enhanced FAQ Section */
.faq-section-enhanced {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
position: relative;
}

.faq-header-center {
text-align: center;
margin-bottom: 30px;
}

.faq-title-modern {
font-size: 42px;
font-weight: 700;
color: #2c3e50;
margin-bottom: 15px;
line-height: 1.2;
}

.faq-subtitle-modern {
font-size: 18px;
color: #666;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
font-weight: 400;
}

/* FAQ Accordion Modern */
.faq-modern-left {
padding: 40px;
background: white;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
height: 100%;
}

.faq-accordion-modern {
display: flex;
flex-direction: column;
gap: 20px;
}

.faq-item-modern {
border: 1px solid #f0f0f0;
border-radius: 15px;
overflow: hidden;
transition: all 0.3s ease;
background: white;
}

.faq-item-modern:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-color: #3498db;
}

.faq-question {
padding: 25px 30px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
transition: all 0.3s ease;
position: relative;
}

.faq-question:hover {
background: #f8f9fa;
}

.faq-question.active {
background: linear-gradient(135deg, #3498db, #2ecc71);
color: white;
}

.faq-title {
font-size: 18px;
font-weight: 600;
margin: 0;
display: flex;
align-items: center;
gap: 15px;
color: inherit;
}

.faq-icon {
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(135deg, #3498db, #2ecc71);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
transition: all 0.3s ease;
}

.faq-question.active .faq-icon {
background: rgba(255,255,255,0.2);
transform: scale(1.1);
}

.faq-toggle {
font-size: 14px;
transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
transform: rotate(180deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
background: #f8f9fa;
}

.faq-answer.active {
max-height: 500px;
}

.faq-content {
padding: 0 30px 25px;
}

.faq-content p {
margin-bottom: 15px;
line-height: 1.6;
color: #666;
margin-top: 1%;
}

.faq-content p:last-child {
margin-bottom: 0;
}

/* Industry List */
.industry-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin-top: 2%;
}

.industry-item {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 15px;
background: white;
border-radius: 10px;
border: 1px solid #e9ecef;
transition: all 0.3s ease;
}

.industry-item:hover {
background: linear-gradient(135deg, #3498db, #2ecc71);
color: white;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.industry-item i {
color: #3498db;
transition: color 0.3s ease;
}

.industry-item:hover i {
color: white;
}

/* Solutions Section */
.faq-modern-right {
padding: 40px;
background: white;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
height: 100%;
}

.solutions-header {
text-align: center;
margin-bottom: 40px;
}

.solutions-title {
font-size: 32px;
font-weight: 700;
color: #2c3e50;
margin-bottom: 15px;
line-height: 1.2;
}

.solutions-subtitle {
font-size: 16px;
color: #666;
margin-bottom: 0;
font-weight: 400;
}

.solutions-grid-modern {
display: flex;
flex-direction: column;
gap: 30px;
}

.solution-card-modern {
display: flex;
align-items: flex-start;
gap: 20px;
padding: 25px;
background: #f8f9fa;
border-radius: 15px;
border: 1px solid #e9ecef;
transition: all 0.3s ease;
}

.solution-card-modern:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
border-color: #3498db;
background: white;
}

.solution-icon {
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, #3498db, #2ecc71);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
flex-shrink: 0;
transition: all 0.3s ease;
}

.solution-card-modern:hover .solution-icon {
transform: scale(1.1) rotate(5deg);
box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.solution-content {
flex: 1;
}

.solution-title {
font-size: 20px;
font-weight: 600;
color: #2c3e50;
margin-bottom: 15px;
transition: color 0.3s ease;
}

.solution-card-modern:hover .solution-title {
color: #3498db;
}

.solution-description {
font-size: 14px;
color: #666;
line-height: 1.6;
margin: 0;
}

/* FAQ Responsive Design */
@media (max-width: 992px) {
.faq-title-modern {
font-size: 36px;
}
    
.solutions-title {
font-size: 28px;
}
    
.faq-modern-left,
.faq-modern-right {
padding: 30px;
margin-bottom: 30px;
}
    
.solutions-header {
margin-bottom: 40px;
}
}

@media (max-width: 768px) {
.faq-title-modern {
font-size: 32px;
}
    
.faq-subtitle-modern {
font-size: 16px;
}
    
.solutions-title {
font-size: 24px;
}
    
.solutions-subtitle {
font-size: 15px;
}
    
.faq-modern-left,
.faq-modern-right {
padding: 25px;
}
    
.faq-question {
padding: 20px;
}
    
.faq-content {
padding: 0 20px 20px;
}
    
.solution-card-modern {
padding: 20px;
flex-direction: column;
text-align: center;
}
    
.industry-list {
grid-template-columns: 1fr;
}
}

@media (max-width: 576px) {
.faq-title-modern {
font-size: 28px;
}
    
.faq-header-center {
margin-bottom: 40px;
}
    
.faq-modern-left,
.faq-modern-right {
padding: 20px;
}
    
.faq-question {
padding: 15px;
}
    
.faq-title {
font-size: 16px;
flex-direction: column;
gap: 10px;
text-align: center;
}
    
.faq-icon {
width: 35px;
height: 35px;
font-size: 14px;
}
    
.solution-card-modern {
padding: 15px;
}
    
.solution-icon {
width: 50px;
height: 50px;
font-size: 20px;
}
    
.solution-title {
font-size: 18px;
}
}