   /* Base Styles & Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: #f9fafb;
            color: #111827;
        }
        
        .container {
            width: 100%;
            padding-right: 1rem;
            padding-left: 1rem;
            margin-right: auto;
            margin-left: auto;
        }
        
       
  .logo-container {
    border-bottom: 1px solid #efefef;
    text-align: center;
  }
  @media (max-width: 768px) {
    .logo-container img {
      width: 120px;
    }
  }
  
.hero-section {
    background-image: url('sy-1920-600.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 600px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1; 
}

@media (max-width: 768px) {
    .hero-section {
       
        background-size: contain;
       
        height: calc(100vw * 600 / 1920);
      
        background-color: #f5f5f5;
    }
}
@media (max-width: 1920px) {
    .hero-section {
        background-size: cover; 
        background-position: top; 
    }
    .hero-overlay {
        height: 100%; 
        background: rgba(0, 0, 0, 0.4); 
    }
}
        
        @media (min-width: 640px) {
            .container {
                max-width: 640px;
            }
        }
        
        @media (min-width: 768px) {
            .container {
                max-width: 768px;
            }
        }
        
        @media (min-width: 1024px) {
            .container {
                max-width: 1024px;
            }
        }
        
        @media (min-width: 1280px) {
            .container {
                max-width: 1280px;
            }
        }
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, #134aa7 0%, #3B82F6 100%);
            color: white;

            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            width: 100%;
        }
        
        .experience-title {
            font-size: clamp(2rem, 6vw, 4.5rem);
            font-weight: bold;
            margin-bottom: 1rem;
            animation: fadeIn 0.8s ease-in-out forwards;
        }
        
        .experience-subtitle {
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 600;
            margin-bottom: 2rem;
            animation: slideUp 0.6s ease-out forwards;
        }
        
        .subtitle-1 {
            animation-delay: 0.2s;
        }
        
        .subtitle-2 {
            animation-delay: 0.4s;
        }
        
        .manufacturer-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-size: 1.125rem;
            font-weight: 500;
            margin-bottom: 3rem;
            transition: transform 0.3s ease;
            animation: slideUp 0.6s ease-out forwards;
            animation-delay: 0.6s;
        }
        
        .manufacturer-badge:hover {
            transform: scale(1.03);
        }
        
        .decorative-circle {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(48px);
        }
        
        .circle-1 {
            top: 25%;
            left: 25%;
            width: 128px;
            height: 128px;
        }
        
        .circle-2 {
            bottom: 25%;
            right: 25%;
            width: 160px;
            height: 160px;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator i {
            font-size: 2.5rem;
        }
        
        /* Company Introduction Section */
        .company-intro {
            padding: 5rem 0;
            background-color: white;
        }
        
        .section-title {
            font-size: clamp(1.875rem, 3vw, 2.5rem);
            font-weight: bold;
            color: #111827;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .intro-text {
            font-size: 1.125rem;
            color: #4B5563;
            max-width: 36rem;
            margin: 0 auto 3rem;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
            max-width: 56rem;
            margin: 0 auto;
        }
        
        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .stat-card {
            background-color: #EFF6FF;
            border-radius: 0.75rem;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
        }
        
        .stat-card:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #134aa7;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #374151;
        }
        
        /* Product Showcase Sections */
        .product-showcase {
            padding: 7rem 0 5rem;
        }
        
        .product-container {
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1rem;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 3rem;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .product-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
		   .product-showcase {
            padding: 3rem 0 3rem;
        }
        
        .product-text h2 {
            font-size: clamp(1.875rem, 3vw, 2.125rem);
            font-weight: bold;
            line-height: 1.1;
        }
        
        .product-text .highlight {
            color: #134aa7;
        }
        
        .product-text p {
            margin-top: 1.5rem;
            font-size: 1.125rem;
            color: #475569;
            max-width: 28rem;
        }
        
        .cta-buttons {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
            }
        }
        
        .primary-button {
            background-color: #134aa7;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        
        .primary-button:hover {
            background-color: #2d0db8;
        }
        
        .secondary-button {
            margin-top: 1rem;
            color: #134aa7;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: text-decoration 0.3s ease;
        }
        
        .secondary-button:hover {
            text-decoration: underline;
        }
        
        .secondary-button i {
            margin-left: 0.5rem;
        }
        
        .product-image img {
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-image img:hover {
            transform: scale(1.03);
        }
        
        /* Impact Section */
        .impact-section {
            padding: 5rem 0;
            background-color: #F8FAFC;
        }
        
        /* Embedded Systems Section */
        .embedded-systems {
            padding: 5rem 0;
            background-color: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
            max-width: 72rem;
            margin: 0 auto;
        }
        
        @media (min-width: 640px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .service-card {
            background-color: #F8FAFC;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon-container {
            height: 12rem;
            background-color: #EEF2FF;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .service-icon {
            font-size: 5rem;
            color: #134aa7;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 1.5rem;
        }
        
        .service-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1E293B;
            margin-bottom: 0.75rem;
        }
        
        .service-description {
            font-size: 1rem;
            color: #475569;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background-color: #134aa7;
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: clamp(1.875rem, 3vw, 2.5rem);
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        
        .cta-text {
            font-size: 1.25rem;
            max-width: 32rem;
            margin: 0 auto 3rem;
        }
        
        .cta-button {
            display: inline-block;
            background-color: white;
            color: #134aa7;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 0.375rem;
            text-decoration: none;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #F3F4F6;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }
        
        .cta-button i {
            margin-left: 0.5rem;
        }
        
        /* Footer */
        .site-footer {
            padding: 3rem 0;
            background-color: #1F2937;
            color: white;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
        }
        
        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
            }
        }
        
        .footer-brand {
            margin-bottom: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .footer-brand {
                margin-bottom: 0;
            }
        }
        
        .brand-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .brand-tagline {
            font-size: 0.875rem;
            color: #9CA3AF;
        }
        
        .social-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .social-link {
            color: #9CA3AF;
            font-size: 1.25rem;
            transition: color 0.3s ease;
        }
        
        .social-link:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.875rem;
            color: #9CA3AF;
        }
        
        /* Animation Definitions */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        
        /* Scroll Animation for Sections */
        .section-animate {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }
        
        .section-animate.active {
            opacity: 1;
            transform: translateY(0);
        }