/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Navy Blue Colors - الألوان الكحلية */
    --primary-color: #fbbf24;
    --primary-dark: #f59e0b;
    --primary-light: #fcd34d;
    --secondary-color: #1e3a5f;
    --accent-color: #fbbf24;
    
    /* Dark Navy Background - الخلفيات */
    --dark-color: #1e3a5f;
    --darker-color: #0f1c2e;
    --navy-medium: #162d4a;
    
    /* Light Colors - الألوان الفاتحة */
    --light-color: #f8fafc;
    --gray-color: #ffffff;
    --gold-light: #fef3c7;
    
    /* Special Colors - ألوان خاصة */
    --whatsapp-color: #25D366;
    --phone-color: #fbbf24;
    
    /* Gradients - التدرجات */
    --gradient-primary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #1e3a5f 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-navy: linear-gradient(135deg, #1e3a5f 0%, #0f1c2e 100%);
    --gradient-dark: linear-gradient(135deg, #1e3a5f 0%, #0f1c2e 100%);
}

/* Screen Reader Only - For SEO and Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--darker-color);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
    font-weight: 600;
}

/* Global Gold Accents - تأثيرات ذهبية عامة */
::selection {
    background: var(--primary-color);
    color: var(--darker-color);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.skip-link:focus {
    top: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--darker-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(15, 28, 46, 0.97);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo i {
    color: var(--primary-color);
    font-size: 2.2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-en {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-ar {
    font-size: 0.75rem;
    color: var(--gray-color);
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Cairo', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Code Window */
.code-window {
    background: var(--dark-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* AI Visual Section */
.ai-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(251, 191, 36, 0.25);
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.ai-main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ai-visual:hover .ai-main-img {
    transform: scale(1.05);
}

.ai-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(30, 58, 95, 0.4) 100%);
    pointer-events: none;
}

.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.ai-particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 4s ease-in-out infinite;
}

.ai-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.ai-particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: 0.5s; }
.ai-particles span:nth-child(3) { top: 80%; left: 30%; animation-delay: 1s; }
.ai-particles span:nth-child(4) { top: 30%; left: 70%; animation-delay: 1.5s; }
.ai-particles span:nth-child(5) { top: 50%; left: 20%; animation-delay: 2s; }
.ai-particles span:nth-child(6) { top: 10%; left: 60%; animation-delay: 2.5s; }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.ai-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-gold);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--darker-color);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    animation: pulse-badge 2s ease-in-out infinite;
}

.ai-badge i {
    font-size: 1.2rem;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.window-header {
    background: #2d3748;
    padding: 12px 15px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.window-content {
    padding: 25px;
    direction: ltr;
}

.window-content pre {
    font-family: 'Fira Code', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
}

.keyword { color: #c678dd; }
.variable { color: #e06c75; }
.function { color: #61afef; }
.property { color: #e5c07b; }
.string { color: #98c379; }
.boolean { color: #d19a66; }

/* Stats Section */
.stats {
    background: var(--dark-color);
    padding: 60px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-item p {
    color: var(--gray-color);
    margin-top: 5px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-color);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.25);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--gray-color);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--dark-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--darker-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card.featured {
    border: 2px solid var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-image {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(30, 58, 95, 0.2) 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image.has-screenshot {
    padding: 0;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image .fallback-icon {
    display: none;
    width: 100%;
    height: 200px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(30, 58, 95, 0.2) 100%);
}

.product-image .fallback-icon i {
    font-size: 5rem;
    color: var(--primary-color);
}

.product-image i {
    font-size: 5rem;
    color: var(--primary-color);
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-content > p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray-color);
}

.product-features li i {
    color: var(--accent-color);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 15px;
}

.about-text p {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.feature h4 {
    margin-bottom: 5px;
}

.feature p {
    color: var(--gray-color);
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
}

.tech-circle {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
}

.tech-circle i {
    font-size: 8rem;
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px 20px rgba(251, 191, 36, 0.3); }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark-color);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    width: 100%;
}

.contact-card {
    background: var(--darker-color);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
}

.contact-card.whatsapp .contact-icon {
    background: rgba(37, 211, 102, 0.2);
    color: var(--whatsapp-color);
}

.contact-card.phone .contact-icon {
    background: rgba(251, 191, 36, 0.2);
    color: var(--primary-color);
}

.contact-card.email .contact-icon {
    background: rgba(251, 191, 36, 0.2);
    color: var(--primary-color);
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    word-break: break-all;
    text-align: center;
    justify-content: center;
}

.whatsapp-btn {
    background: var(--whatsapp-color);
    color: white;
}

.whatsapp-btn:hover {
    background: #1da855;
    transform: scale(1.05);
}

.phone-btn {
    background: var(--phone-color);
    color: white;
}

.phone-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.email-btn {
    background: var(--primary-color);
    color: white;
}

.email-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--darker-color);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #334155;
    border-radius: 10px;
    background: var(--dark-color);
    color: var(--light-color);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.float-btn.whatsapp {
    background: var(--whatsapp-color);
    animation: bounce 2s infinite;
}

.float-btn.call {
    background: var(--phone-color);
}

.float-btn:hover {
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Footer */
.footer {
    background: var(--darker-color);
    padding: 80px 0 30px;
    border-top: 1px solid #334155;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.footer-logo .logo-en {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-color);
}

.footer-logo .logo-ar {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 500;
}

.footer-section p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-color);
}

.contact-list li i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: var(--gray-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        display: block;
    }

    .ai-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .ai-main-img {
        height: 280px;
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-features {
        align-items: center;
    }

    .feature {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .tech-circle {
        width: 220px;
        height: 220px;
    }

    .tech-circle i {
        font-size: 5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--darker-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.4rem;
    }

    .logo-en {
        font-size: 1rem;
    }

    .logo-ar {
        font-size: 0.6rem;
    }

    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 50px;
    }

    .hero-image {
        display: block;
        order: -1;
        margin-bottom: 30px;
    }

    .ai-visual {
        max-width: 100%;
    }

    .ai-main-img {
        height: 220px;
    }

    .ai-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
        bottom: 15px;
        right: 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stats {
        padding: 40px 0;
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-item i {
        font-size: 1.8rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    .services,
    .products,
    .about,
    .contact {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        padding: 35px;
    }

    .product-image i {
        font-size: 3.5rem;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 1.2rem;
    }

    .product-badge {
        top: 15px;
        left: 15px;
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text .lead {
        font-size: 1rem;
    }

    .tech-circle {
        width: 180px;
        height: 180px;
    }

    .tech-circle i {
        font-size: 4rem;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.3rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .floating-buttons {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .stats .container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-item i {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .product-features li {
        font-size: 0.85rem;
    }

    .contact-info {
        gap: 15px;
    }

    .contact-card {
        padding: 20px 15px;
    }
}
