/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%),
                url('../images/monitor-hero.webp') center/cover;
    background-blend-mode: multiply;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(240,176,0,0.1) 50%, rgba(0,0,0,0.9) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #f0b000;
    text-shadow: 0 0 20px rgba(240, 176, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #f0b000, #ffcc33);
    color: #000;
    box-shadow: 0 8px 25px rgba(240, 176, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffcc33, #f0b000);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 176, 0, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #f0b000, #ffcc33);
     color: #000;
    box-shadow: 0 8px 25px rgba(240, 176, 0, 0.3);
}

.btn-secondary:hover {
    
    background: linear-gradient(135deg, #ffcc33, #f0b000);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 176, 0, 0.5);
}
.btn-primary, .btn-secondary {
    cursor: pointer;
    position: relative; /* Helps with z-index stacking */
    z-index: 10; /* Ensures buttons stay above other elements */
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(240, 176, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f0b000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #111 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 176, 0, 0.1);
    transition: all 0.4s ease;
    min-height: 300px;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 176, 0, 0.5);
    box-shadow: 0 20px 40px rgba(240, 176, 0, 0.2);
}

.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/monitor-1.avif') center/cover;
    opacity: 0.1;
    filter: blur(1px);
    z-index: 0;
}

.card-content {
    position: relative;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0b000, #ffcc33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(240, 176, 0, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: #000;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #ccc;
    line-height: 1.7;
    font-size: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, #111 0%, #000 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 176, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(240, 176, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(240, 176, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0b000, #ffcc33);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #000;
}

.benefit-content h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Industries Section */
.industries {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #111 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    display: block; /* Important for clickable area */
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 176, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;  /* Remove underline */
    color: inherit;         /* Inherit text color */
}

.industry-card:hover {
    border-color: rgba(240, 176, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(240, 176, 0, 0.2);
    color: inherit; /* Keep original text color */
}

.industry-card i {
    font-size: 3rem;
    color: #f0b000;
    margin-bottom: 1rem;
    display: block;
}

.industry-card h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}


/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #111 0%, #000 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 176, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(240, 176, 0, 0.3);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #f0b000;
    width: 24px;
}

.contact-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f0b000;
}

.hero-quote {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 176, 0, 0.2);
    text-align: center;
}

.hero-quote h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.highlight-quote {
    margin-bottom: 2rem;
}

.quote {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.7;
    font-style: italic;
}

.quote strong {
    color: #f0b000;
    font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-quote {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .services, .benefits, .industries, .contact {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .hero-quote {
        padding: 1.5rem;
    }
    
    .quote {
        font-size: 1rem;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .benefit-item, .industry-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #f0b000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffcc33;
}
/* Add these to your existing CSS */

/* Better mobile tap targets */
.btn-primary, .btn-secondary {
    min-width: 44px;
    min-height: 44px;
}

/* Mobile touch feedback */
.btn-primary:active, .btn-secondary:active {
    transform: scale(0.98) translateY(0);
}

/* Optimize animations for mobile */
@media (max-width: 768px) {
    .service-card, .benefit-item, .industry-card {
        animation: none;
        transition: transform 0.2s ease;
    }
    
    /* Reduce blur effects on mobile */
    .service-card, .benefit-item, .contact-item {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.08);
    }
}

/* Prevent layout shifts  newwwwwww*/
img, .service-icon, .benefit-icon {
    aspect-ratio: 1/1;
}

/* Faster hover response */
.btn-primary, .btn-secondary, .service-card, 
.benefit-item, .industry-card, .contact-item {
    transition: all 0.2s ease;
}