/* Enhanced Hero Text Styling */
.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.text-reveal {
    display: block;
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 0.2s;
}

.text-gradient {
    display: block;
    font-size: 3.9rem;
    font-weight: 1000;
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 50%, #cc0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards 0.5s;
    text-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.text-grad {
    display: block;
    font-size: 3.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 50%, #cc0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards 0.5s;
    text-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.text-gradi {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 50%, #cc0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards 0.5s;
    text-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 0.8s;
}

.highlight-text {
    position: relative;
    font-weight: 600;
    color: #ff3333;
}

/* .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.5), #ff0000);
    transform: scaleX(0);
    transform-origin: left;
    animation: scaleIn 0.5s ease-out forwards 1.2s;
} */

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 1s;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff3333, #cc0000);
    border-radius: 8px;
    color: white;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Responsive styles for hero text */
@media (max-width: 992px) {
    .text-reveal {
        font-size: 2rem;
    }
    
    .text-gradient {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .capabilities-grid {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-features {
        flex-wrap: wrap;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .text-reveal {
        font-size: 1.8rem;
    }
    
    .text-gradient {
        font-size: 2.5rem;
    }
    
    .capabilities-grid {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .text-reveal {
        font-size: 1.5rem;
    }
    
    .text-gradient {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .capabilities-grid {
        gap: 0.8rem;
    }
}

/* Enhanced CTA Button Styling */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 1.2s;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.primary-button {
    background: linear-gradient(135deg, #ff3333, #cc0000);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.primary-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.4);
}

.primary-button i {
    transition: transform 0.3s ease;
}

.primary-button:hover i {
    transform: translateX(5px);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    filter: blur(5px);
    animation: glowEffect 3s infinite;
}

.secondary-button {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.secondary-button i {
    color: #ff3333;
    transition: all 0.3s ease;
}

.secondary-button:hover i {
    transform: rotate(20deg);
    color: #ff6666;
}

@keyframes glowEffect {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }
}

/* Section Styling */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    /* margin-bottom: 4rem; */
    /* max-width: 800px; */
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    /* margin-bottom: 1.5rem; */
    position: relative;
    display: inline-block;
    color: #ffffff;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff3333, #cc0000);
    border-radius: 2px;
} */

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Why EkTruck Section */
.why-ektruck-section {
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.why-ektruck-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(255, 0, 0, 0.1), transparent 70%);
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff3333, #cc0000);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff3333, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.feature-card .feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #0c0c0c;
    position: relative;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 90%, rgba(255, 0, 0, 0.1), transparent 70%);
    z-index: 0;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: rgba(255, 0, 0, 0.3);
    z-index: -1;
}

.step-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff3333, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-content {
    transform: translateX(10px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Ecosystem Section */
.ecosystem-section {
    background-color: #0a0a0a;
    position: relative;
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 10, 10, 1) 0%, rgba(15, 15, 15, 1) 100%);
    z-index: 0;
}

.stakeholders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stakeholder-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stakeholder-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff3333, #cc0000);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stakeholder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stakeholder-card:hover::after {
    transform: scaleX(1);
}

.stakeholder-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.2), rgba(204, 0, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.stakeholder-card:hover .stakeholder-icon {
    background: linear-gradient(135deg, #ff3333, #cc0000);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.stakeholder-icon i {
    font-size: 2.5rem;
    color: #ff3333;
    transition: all 0.3s ease;
}

.stakeholder-card:hover .stakeholder-icon i {
    color: white;
}

.stakeholder-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.stakeholder-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.2), transparent 70%);
    z-index: 0;
}

.cta-content {
    text-align: center;
   
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-content .primary-button {
    display: inline-flex;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container::before {
        left: 30px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 1.5rem;
    }
    
    .stakeholders-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-content .primary-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .stakeholder-card {
        padding: 2rem 1rem;
    }
}

/* ISO Certification Section */
.iso-section {
    position: relative;
    background-color: #0f0f0f;
    padding: 5rem 0;
    overflow: hidden;
    z-index: 1;
}

.iso-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 51, 51, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.certification-content {
    position: relative;
    z-index: 2;
    text-align: center;
    
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certification-badge {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    position: relative;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.certification-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: brightness(1.7) contrast(1.1);
    transition: transform 0.3s ease;
}

.certification-badge:hover {
    transform: translateY(-5px);
}

.certification-badge:hover img {
    transform: scale(1.1);
}

.iso-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.iso-section .text-gradient {
    background: linear-gradient(90deg, #ff3333, #ff6666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.iso-section .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .iso-section {
        padding: 4rem 0;
    }
    
    .certification-badge {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .iso-section .section-title {
        font-size: 2rem;
    }
    
    .iso-section .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .iso-section {
        padding: 3rem 0;
    }
    
    .certification-badge {
        width: 120px;
        height: 120px;
        margin-bottom: 0.8rem;
    }
    
    .iso-section .section-title {
        font-size: 1.8rem;
    }
}

/* Partners Section */
.partners-section {
    position: relative;
    background-color: #1a1a1a;
    padding: 4rem 0;
    overflow: hidden;
}

.partners-section .section-header {
 
    margin: 0 auto 2rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.partners-section .section-title {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.partners-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.marquee-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 0.5rem;
    overflow: hidden;
    z-index: 2;
    --marquee-speed: 35s;
    /* padding: 1rem; */
    border-radius: 12px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

/* Adjust speed for the reverse marquee */
.marquee-reverse {
    --marquee-speed: 40s; /* Slightly different speed for visual interest */
    background-color: #1a1a1a; /* Match the background color */
    border-color: rgba(255, 0, 0, 0.15); /* Slightly different border */
}

/* Add hover effect to the entire marquee container */
.marquee-container:hover {
    background-color: #1a1a1a;
    border-color: rgba(255, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 0, 0, 0.1);
}

/* Marquee container spacing */
.marquee-container + .marquee-container {
    margin-top: 0.5rem;
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee var(--marquee-speed) linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Reverse animation for the second track */
@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.partner-logo {
    /* background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 10px;
    padding: 0.5rem;
    min-width: 180px;
    /* height: 180px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(20, 20, 20, 0.8);
    z-index: 10;
}

.partner-logo i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.partner-logo img {
    width: 150px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.partner-logo:hover img {
    transform: scale(1.2);
    filter: brightness(1.1);
}

.partner-logo:hover i {
    color: #ff3333;
    transform: scale(1.2);
    animation: pulse 2s infinite;
}

.partner-logo span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Reverse direction marquee */
.marquee-reverse .marquee-track {
    animation-name: marquee-reverse;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0;
    }
    
    .partners-section .section-header {
        margin-bottom: 1.5rem;
    }
    
    .marquee-container {
        --marquee-speed: 25s;
        max-width: 95%;
        padding: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .marquee-reverse {
        --marquee-speed: 30s;
    }
    
    .marquee-container + .marquee-container {
        margin-top: 0.4rem;
    }
    
    .partner-logo {
        min-width: 150px;
        height: 150px;
        padding: 1.2rem;
    }
    
    .partner-logo i {
        font-size: 2.5rem;
    }
    
    .partner-logo img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .marquee-container {
        --marquee-speed: 20s;
        max-width: 100%;
        padding: 0.8rem;
    }
    
    .marquee-reverse {
        --marquee-speed: 25s;
    }
    
    .partner-logo {
        min-width: 120px;
        height: 120px;
        padding: 1rem;
    }
    
    .partner-logo i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .partner-logo img {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .partner-logo span {
        font-size: 0.8rem;
    }
}

/* Industries We Serve Section */
.industries-section {
    background-color: #0c0c0c;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 51, 51, 0.1), transparent 50%);
    z-index: 0;
}

.industries-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff3333' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 1;
}

.industries-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.industries-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.industries-section .section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.industries-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0.5rem 0;
    justify-content: center;
    align-items: stretch;
    overflow-x: visible;
}

.industry-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    flex: 0 0 170px;
    max-width: 170px;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.15), rgba(204, 0, 0, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.industry-icon i {
    font-size: 1.6rem;
    color: #ff3333;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.industry-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.industry-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .industries-grid {
        gap: 0.7rem;
    }
    
    .industry-card {
        flex: 0 0 160px;
        max-width: 160px;
    }
    
    .industry-icon {
        width: 55px;
        height: 55px;
}

.industry-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .industries-grid {
        gap: 0.6rem;
    }
    
    .industry-card {
        flex: 0 0 150px;
        max-width: 150px;
        padding: 1.2rem;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
    margin-bottom: 1rem;
    }
    
    .industry-icon i {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .industries-grid {
        overflow-x: auto;
        padding-bottom: 1.5rem;
        justify-content: flex-start;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 51, 51, 0.5) rgba(0, 0, 0, 0.1);
    }
    
    .industries-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .industries-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }
    
    .industries-grid::-webkit-scrollbar-thumb {
        background-color: rgba(255, 51, 51, 0.5);
        border-radius: 10px;
    }
    
    .industry-card {
        flex: 0 0 140px;
        max-width: 140px;
        padding: 1rem;
    }
    
    .industry-icon {
        width: 45px;
        height: 45px;
    }
    
    .industry-icon i {
        font-size: 1.3rem;
    }
    
    .industry-card h3 {
        font-size: 0.9rem;
}

.industry-card p {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .industries-section {
        padding: 4rem 0;
    }
    
    .industries-grid {
        margin: 0;
        padding: 0.5rem 0.5rem 1.5rem 0.5rem;
    }
    
    .industry-card {
        flex: 0 0 130px;
        max-width: 130px;
    }
}

/* AI ML IoT Section */
.ai-ml-section {
    background-color: #080808;
    position: relative;
    overflow: hidden;
}

.ai-ml-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(255, 0, 0, 0.1), transparent 70%);
    z-index: 0;
}

.ai-ml-content {
    position: relative;
    z-index: 2;
}

.ai-ml-description {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.ai-ml-description p {
    font-size: 1.0rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.capabilities-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    justify-content: center;
    align-items: stretch;
    overflow-x: visible;
}

.capability-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.8rem 0.6rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 110px;
    max-width: 110px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.capability-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.2), rgba(204, 0, 0, 0.2));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.capability-card h3 {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: white;
    text-align: center;
}

.capability-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    line-height: 1.2;
    text-align: center;
}

.capability-icon i {
    font-size: 1rem;
    color: #ff3333;
    transition: all 0.3s ease;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #ff3333, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.4);
}

.capability-card:hover .capability-icon {
    background: linear-gradient(135deg, #ff3333, #cc0000);
    transform: rotate(5deg);
}

.capability-card:hover .capability-icon i {
    color: white;
}

.benefits-container {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.benefits-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 0, 0, 0.05), transparent);
    z-index: -1;
}

.benefits-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.4);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #ff3333;
}

.benefit-item span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Integration Section Styles */
.integration-section {
    padding: 100px 0;
    background:#1a1a1a;
    position: relative;
    overflow: hidden;
}

.integration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.integration-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
}

.integration-description {
    /* max-width: 800px; */
    margin: 0 auto;
    text-align: center;
}

.integration-description h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.integration-description p {
    font-size: 1.0rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.integration-visual {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.flowchart-container {
    /* background: rgba(0, 0, 0, 0.2); */
    border-radius: 12px;
    padding: 30px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1); */
    transition: all 0.3s ease;
    width: 560px;
    margin: 0 auto;
}

.flowchart-container:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 51, 51, 0.3); */
}

.integration-flowchart {
    width: 500px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.integration-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    padding: 2rem 0;
}

.erp-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.erp-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.erp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 51, 51, 0.3);
}

.erp-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 51, 51, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff3333;
}

.erp-info {
    flex: 1;
}

.erp-info h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.erp-info p {
    font-size: 0.9rem;
    color: #666;
}

.connection-dot {
    width: 12px;
    height: 12px;
    background: #ff3333;
    border-radius: 50%;
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.center-column {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.platform-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.platform-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 2s infinite;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #ff3333, transparent);
    height: 2px;
    width: 0;
    animation: drawLine 1.5s forwards;
}

.line-1 {
    top: 25%;
    left: 0;
    width: 100%;
    animation-delay: 0.5s;
}

.line-2 {
    top: 75%;
    left: 0;
    width: 100%;
    animation-delay: 1s;
}

.line-3 {
    top: 0;
    left: 25%;
    height: 100%;
    width: 2px;
    animation-delay: 1.5s;
}

.line-4 {
    top: 0;
    left: 75%;
    height: 100%;
    width: 2px;
    animation-delay: 2s;
}

.integration-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    font-size: 1rem;
}

.feature-item i {
    color: #ff3333;
    font-size: 1.2rem;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

@keyframes drawLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .integration-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .erp-column {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .erp-card {
        flex: 1;
        min-width: 250px;
        max-width: 300px;
    }

    .center-column {
        order: -1;
    }

    .connection-lines {
        display: none;
    }

    .integration-features {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .integration-section {
        padding: 60px 0;
    }
    .integration-description h3 {
        font-size: 1.5rem;
    }
    .integration-description p {
        font-size: 0.9rem;
    }
    .erp-card {
        padding: 1rem;
    }
    .erp-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .erp-info h4 {
        font-size: 1rem;
    }
    .erp-info p {
        font-size: 0.8rem;
    }
    .flowchart-container {
        padding: 15px;
        width: 530px;
    }
    .integration-flowchart {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .integration-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .erp-card {
        flex-direction: column;
        text-align: center;
    }
    
    .flowchart-container {
        padding: 10px;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .integration-flowchart {
        width: 100%;
        max-width: 100%;
    }
}

/* Ecosystem Section with Capability-style Cards */
.ecosystem-section .capabilities-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    justify-content: center;
    align-items: stretch;
    overflow-x: visible;
}

.ecosystem-section .capability-card {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.8rem 0.6rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 110px;
    max-width: 110px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ecosystem-section .capability-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.2), rgba(204, 0, 0, 0.2));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.ecosystem-section .capability-card h3 {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: white;
    text-align: center;
}

.ecosystem-section .capability-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    line-height: 1.2;
    text-align: center;
}

.ecosystem-section .capability-icon i {
    font-size: 1rem;
    color: #ff3333;
    transition: all 0.3s ease;
}

.ecosystem-section .capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #ff3333, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.ecosystem-section .capability-card:hover::before {
    transform: scaleX(1);
}

.ecosystem-section .capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.4);
}

.ecosystem-section .capability-card:hover .capability-icon {
    background: linear-gradient(135deg, #ff3333, #cc0000);
    transform: rotate(5deg);
}

.ecosystem-section .capability-card:hover .capability-icon i {
    color: white;
}

/* Responsive styling for ecosystem capability cards */
@media (max-width: 992px) {
    .ecosystem-section .capabilities-grid {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .ecosystem-section .capability-card {
        flex: 0 0 150px;
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .ecosystem-section .capabilities-grid {
        gap: 0.8rem;
    }
    
    .ecosystem-section .capability-card {
        flex: 0 0 120px;
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .ecosystem-section .capability-card {
        flex: 0 0 100px;
        max-width: 100px;
    }
}

/* Card click animation and ripple effect */
.card-ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 51, 51, 0.3);
    transform: scale(0);
    animation: ripple-effect 0.75s ease-out;
    z-index: 0;
    pointer-events: none;
}

@keyframes ripple-effect {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.industry-card.card-clicked {
    animation: card-click 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes card-click {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* Enhanced hover effect for industry cards */
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff3333, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.5s ease;
}

.industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(225deg, rgba(255, 51, 51, 0.5), rgba(255, 0, 0, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 51, 51, 0.5);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 0, 0.2);
    z-index: 5;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover::after {
    opacity: 1;
}

.industry-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.8), rgba(255, 0, 0, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.9), rgba(204, 0, 0, 0.7));
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(255, 0, 0, 0.2);
}

.industry-card:hover .industry-icon::after {
    opacity: 1;
}

.industry-card:hover .industry-icon i {
    color: white;
    transform: rotate(10deg);
}

.industry-card:hover h3 {
    color: #ff3333;
}

.industry-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.industry-card .card-hover-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
    color: #ff3333;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    justify-content: center;
}

.industry-card .card-hover-indicator i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.industry-card:hover .card-hover-indicator {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.industry-card:hover .card-hover-indicator i {
    transform: translateX(3px);
}

.section-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Update capabilities-grid to be scrollable on mobile/tablet */
.capabilities-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    justify-content: center;
    align-items: stretch;
    overflow-x: visible;
}

@media (max-width: 992px) {
    .capabilities-grid {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0.5rem 0.5rem 1.5rem 0.5rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 51, 51, 0.5) rgba(15, 15, 15, 0.3);
        gap: 0.8rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        position: relative;
    }
    
    .capabilities-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .capabilities-grid::-webkit-scrollbar-track {
        background: rgba(15, 15, 15, 0.3);
        border-radius: 4px;
    }
    
    .capabilities-grid::-webkit-scrollbar-thumb {
        background: rgba(255, 51, 51, 0.5);
        border-radius: 4px;
    }
    
    .capability-card {
        flex: 0 0 180px;
        max-width: 180px;
        margin-bottom: 0.5rem;
    }
    
    /* Add scroll indicator hint */
    .capabilities-grid::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 30px;
        background: linear-gradient(to right, transparent, rgba(15, 15, 15, 0.7));
        pointer-events: none;
        opacity: 0.8;
        z-index: 1;
    }
}
