/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Section Responsive Grid */
@media (max-width: 768px) {
    .company-profile-section div[style*="grid-template-columns"] {
        display: block !important;
    }
    
    .company-profile-section .about-main {
        margin-bottom: 2rem !important;
    }
    
    .company-profile-section .about-pillars {
        gap: 1rem !important;
    }
}

/* Navigation */
.navbar-custom {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0 80px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #fff;
    position: relative;
    animation: scroll 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

@keyframes scroll {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Sections */
.services,
.gallery,
.about,
.contact {
    padding: 100px 0;
}

.services {
    background: #111;
}

.gallery {
    background: #0a0a0a;
}

.about {
    background: #111;
}

.contact {
    background: #0a0a0a;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Cards and Boxes */
.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Services Grid - Fixed */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Service Items - Fixed */
.service-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: rgba(102,126,234,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.service-item h3 {
    color: #e0e0e0;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-item .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Service Cards for Industries/Testimonials - Fixed */
.service-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 200px;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102,126,234,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.service-card .service-icon {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card i {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
    flex-grow: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Product Styles */
.product-category {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin: 4rem 0 2rem 0;
    text-align: center;
    position: relative;
}

.product-category::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #667eea;
    border-radius: 2px;
}

.product-subcategory {
    margin-bottom: 3rem;
}

.product-subcategory h3 {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #667eea;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-row {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-row:hover {
    transform: translateX(8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.product-img {
    flex: 0 0 120px;
    margin-right: 1.5rem;
}

.product-img img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.product-content {
    flex: 1;
}

.product-content h4 {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.product-specs {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.product-specs li {
    color: #b0b0b0;
    font-size: 0.9rem;
    padding: 0.3rem 0;
}

.product-specs strong {
    color: #667eea;
}

.product-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.product-link:hover {
    color: #764ba2;
}

/* About Page Styles */
.about-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 0 60px 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.about-row {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-row:hover {
    border-color: rgba(102, 126, 234, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Company Overview Row */
.about-row:first-of-type {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Mission & Vision Row */
.about-row.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Single Column Rows */
.about-row.about-values,
.about-row.about-certificates,
.about-row.about-team,
.about-row.about-industries {
    display: block;
}

.about-text, .about-mission, .about-vision {
    flex: 1;
}

.about-text h3, .about-mission h3, .about-vision h3,
.about-values h3, .about-certificates h3, .about-team h3, .about-industries h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text p, .about-mission p, .about-vision p, .about-team p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-values ul, .about-certificates ul, .about-industries ul {
    list-style: none;
    padding: 0;
}

.about-values li, .about-certificates li, .about-industries li {
    color: #b0b0b0;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    line-height: 1.6;
}

.about-values li:last-child, .about-certificates li:last-child, .about-industries li:last-child {
    border-bottom: none;
}

.about-values strong {
    color: #667eea;
    font-weight: 600;
}

.about-certificates a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-certificates a:hover {
    color: #764ba2;
}

.about-img {
    flex: 0 0 200px;
    text-align: center;
}

.about-img img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Services Page Styles */
.services-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 0;
}

.services-intro {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 0 40px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: rgba(102,126,234,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.service-item h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.service-item p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-item .btn {
    margin-top: auto;
}

/* Homepage Features Section - Fixed */
.features {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    color: #667eea;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.8;
    text-align: center;
    flex-grow: 1;
}

/* Timeline Styles for Services Page */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-step:nth-child(odd) .timeline-content {
    padding-right: 3rem;
    text-align: right;
}

.timeline-step:nth-child(even) .timeline-content {
    padding-left: 3rem;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.timeline-dot i {
    color: white;
    font-size: 1.5rem;
}

.timeline-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    max-width: 350px;
}

.timeline-content h3 {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.timeline-content p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Feature Row Styles for Services Page */
.services-feature-list {
    max-width: 800px;
    margin: 3rem auto;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-row:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    flex: 0 0 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: white;
    font-size: 1.8rem;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-content p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1rem;
}

.feature-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-content a:hover {
    color: #764ba2;
}

/* Process Section Background Effect */
.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 40px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.footer-brand span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    padding: 100px 0 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info, .contact-form {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info h3, .contact-form h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #e0e0e0;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    color: #b0b0b0;
    font-size: 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #b0b0b0;
    font-size: 1rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    color: #e0e0e0;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border: 1.5px solid #667eea;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.data-downloads {
    margin-top: 4rem;
}

.downloads-title {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.download-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.download-list .btn {
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .product-row {
        flex-direction: column;
        text-align: center;
    }
    
    .product-img {
        margin: 0 0 1rem 0;
        flex: none;
    }
    
    .about-row:first-of-type {
        flex-direction: column;
        text-align: center;
    }
    
    .about-row.about-mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-step {
        flex-direction: row !important;
        padding-left: 80px;
        text-align: left !important;
    }
    
    .timeline-step:nth-child(odd) {
        flex-direction: row !important;
    }
    
    .timeline-step:nth-child(odd) .timeline-content,
    .timeline-step:nth-child(even) .timeline-content {
        padding-left: 0;
        padding-right: 0;
        text-align: left;
        max-width: 100%;
    }
    
    .timeline-dot {
        left: 30px;
        transform: translateX(-50%);
        position: absolute;
    }
    
    .feature-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-logo {
        width: 28px;
        height: 28px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: #e0e0e0;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-row {
        padding: 1.5rem;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem;
        min-height: 240px;
    }
    
    .service-card {
        padding: 1.5rem;
        min-height: 220px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-card {
        min-height: 150px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info, .contact-form {
        padding: 1.2rem 0.7rem;
    }
    
    .data-downloads {
        margin-top: 2rem;
    }
}
