* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(255, 165, 0, 0.3);
    border-bottom: 2px solid #ff6b35;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
    filter: brightness(1.2);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ff6b35;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.6);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ffa500);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(255, 107, 53, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255, 165, 0, 0.02) 50%, transparent 51%);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 900;
}

.hero-tagline {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ff6b35;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.7);
    letter-spacing: 3px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 400;
}

.hero-values {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffa500;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
    letter-spacing: 2px;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b35, #ffa500);
    color: #000;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    font-family: 'Orbitron', monospace;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ffa500, #ff6b35);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid #ff6b35;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.section-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffa500);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    color: #ffa500;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 400;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.feature i {
    color: #ff6b35;
    font-size: 1.4rem;
}

.feature span {
    color: #ffffff;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid #ff6b35;
}

/* Services Section */
.services {
    background: #0a0a0a;
}

.service-block {
    margin-bottom: 5rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-block.reverse .service-content {
    direction: rtl;
}

.service-block.reverse .service-text {
    direction: ltr;
}

.service-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-text h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    color: #ffa500;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-text h5 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #ffa500;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.service-text p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.service-list, .feature-list {
    list-style: none;
    margin: 2rem 0;
}

.service-list li, .feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
}

.service-list li:before, .feature-list li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    color: #ffffff;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    font-weight: 400;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid #ff6b35;
}

/* Products Section */
.products {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.product-card {
    background: rgba(20, 20, 20, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.product-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-card p {
    color: #e0e0e0;
    line-height: 1.6;
    font-weight: 400;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-family: 'Orbitron', monospace;
    color: #ff6b35;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 400;
}

.contact-map {
    background: rgba(20, 20, 20, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 12px;
    filter: grayscale(20%) contrast(1.2);
}
/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #ffffff;
    padding: 4rem 0 2rem 0;
    border-top: 2px solid #ff6b35;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
}

.footer-logo p {
    font-family: 'Orbitron', monospace;
    color: #ffa500;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Orbitron', monospace;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
    font-weight: 400;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    font-size: 1.05rem;
    font-weight: 400;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 6rem; /* Added extra padding to prevent overlap */
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    color: #cccccc;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.developer-credit {
    font-size: 0.9rem;
    color: #999;
}

.developer-credit a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: #ffa500;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 25px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-buttons.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.float-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.6);
}

.call-btn {
    background: linear-gradient(135deg, #ff6b35, #ffa500);
    order: 1; /* Call button on left */
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    order: 2; /* WhatsApp button on right */
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content,
    .about-content,
    .service-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(20, 20, 20, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 3rem 0;
        backdrop-filter: blur(15px);
        border-top: 2px solid #ff6b35;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 50px;
    }
    
    .hero-content {
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .hero-values {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom {
        padding-bottom: 8rem; /* Extra padding for mobile */
    }
    
    .floating-buttons {
        bottom: 20px;
        padding: 0 20px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .service-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .hero-values {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .service-text h3,
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .service-text h4,
    .about-text h4 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-map {
        padding: 1rem;
    }
    
    .contact-map iframe {
        height: 250px;
    }
    
    .product-card img {
        height: 180px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-block {
        padding: 2rem 0;
    }
    
    .floating-buttons {
        padding: 0 15px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding-bottom: 7rem; /* Adjusted for smaller mobile screens */
    }
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}