@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


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

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a; 
    color: white;
    line-height: 1.5;
	font-family: 'Poppins', sans-serif;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px; /* fixed bar height, adjust as needed */
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7); /* translucent */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center; /* vertically centers logo/nav inside */
}

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

/* Split into 3 sections */
.nav-left, .nav-center, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
}

.nav-center {
    justify-content: center;
}

.nav-right {
    justify-content: flex-end;
}

/* Logo */
.logo img {
    height: 100%;  /* fill the bar height */
    max-height: 220px; /* control logo max size */
    width: auto;
    object-fit: contain;
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

.nav-links a:hover {
    color: #76b900;
}

/* Quote Button */
.btn-quote {
    background: linear-gradient(135deg, #76b900, #5fa000);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(118, 185, 0, 0.3);
}


/* Hero Section with Video Background */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)); */
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(118, 185, 0, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.hero-content {
    text-align: left;
    align-items: flex-start;
    margin-right: auto;
    margin-left: 5%;
    margin-top: 15%;
    max-width: 500px;
    font-weight: 30 rem;
    font-size: small;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
} 

.hero h1 {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: #d9d9d9;
    margin-bottom: 2rem;
    font-weight: 100;
}

/* Features Section */
.features-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #010101 0%, #011701 50%, #001a00 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.feature-card {
    background: rgba(30, 40, 30, 0.4); /* greenish frosted glass */
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    border: 1px solid rgba(118, 185, 0, 0.25);
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(118, 185, 0, 0.12), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(118, 185, 0, 0.6);
    box-shadow: 0 20px 40px rgba(118, 185, 0, 0.25);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #76b900, #5fa000);
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(118, 185, 0, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(118, 185, 0, 0.4); }
    100% { box-shadow: 0 0 20px rgba(14, 21, 1, 0.8); }
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.95rem;
    color: #c7d8c7; /* slightly green-tinted white */
    line-height: 1.6;
}

/* Connecting lines */
.features-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(49, 78, 0, 0.3) 20%,
        rgba(19, 19, 20, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 80%,
        transparent 100%
    );
    z-index: -1;
}

/* Vertical dashed lines */
.features-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25%;
    width: 1px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(118, 185, 0, 0.3) 0px,
        rgba(29, 36, 46, 0.3) 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: -1;
}

.vertical-line-2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(118, 185, 0, 0.3) 0px,
        rgba(118, 185, 0, 0.3) 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: -1;
}

.vertical-line-3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 75%;
    width: 1px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(118, 185, 0, 0.3) 0px,
        rgba(118, 185, 0, 0.3) 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: -1;


}

/* Central navigation element */
.central-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: rgba(230, 233, 235, 0.8); */
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.central-nav:hover {
    background: rgba(118, 185, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Floating particles */
.particle {
    position: absolute;
    background: rgba(118, 185, 0, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Chat Button */
.chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #258728, #5eff58);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(118, 185, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(118, 185, 0, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid::before {
        display: none;
    }
    
    .features-grid::after,
    .vertical-line-2,
    .vertical-line-3 {
        display: none;
    }
    
    .central-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: left;
        padding: 2rem 1rem;
    }
    .hero-content {
        align-items: flex-start;
        text-align: left;
        margin-right: 0;
    }
    

    .hero h1 {
        font-size: 2 rem;
    }

    .nav-links {
        display: none;
    }

    .header {
        padding: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-section {
        padding: 60px 1rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

.process-section {

            text-align: center;
            padding: 6rem 8%;
            background-color: #0a0a0a;
            color: #fff;
        }

        .process-section h2 {
            font-size: 3rem;
            margin-bottom: 60px;
            font-weight: lighter;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-card {
            text-align: center;
            min-height: 250px; /* equal height */
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* keeps titles aligned */
            align-items: center;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        svg {
            width: 80px;
            height: 80px;
            fill: #3b82f6;
        }

        .process-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .process-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #cbd5e1;
        }

.why-choose {
    position: relative;
    background: #000 url("Why-choose-MakeExpress.png") no-repeat center center/cover;
    color: #fff;
    padding: 6rem 8%;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.why-choose::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* darken background so text is readable */
    z-index: 0;
}
        /* Left column: cards grid */
.why-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: flex: 1;
    max-width:1100px;
    margin: 0 auto;
}

.feature-block {
    background: rgba(20, 20, 20, 0.85); /* frosted black glass */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(118, 185, 0, 0.3);
    border-radius: 16px;
    padding: 1.8rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.feature-block:hover {
    transform: translateY(-10px);
    border-color: #76b900;
    box-shadow: 0 15px 30px rgba(118, 185, 0, 0.25);
}

.feature-block:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.feature-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
}

.feature-block p {
    font-size: 0.95rem;
    color: #d0d0d0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .why-choose {
        flex-direction: column;
        text-align: center;
    }
    .why-text {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .why-image img {
        max-width: 360px;
        margin-top: 2rem;
    }
}

    .feature-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .feature-item h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 1rem;
        color: #cbd5e1;
    }

    .parallax-image {
        width: 40%;
        transform: translateX(-200px);
        opacity: 0;
        transition: transform 1.5s ease-out, opacity 1.5s ease-out;
    }

    .parallax-image.visible {
        transform: translateX(0);
        opacity: 1;
    }

    .FAQ {
    background: url('bg_printer_nozel.png') no-repeat center center/cover;
    padding: 50px 20px;
    color: #fff; /* Adjust if needed based on image contrast */
}

   .faq-container {
            width: 60%;
            margin-left: 15%;
            margin-bottom: 15%;
            margin-top: 5%;
        }

        .faq-header {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .faq-category {
            color: #4285F4;
            text-decoration: none;
            font-size: large;
            display: block;
            margin-bottom: 30px;
        }

        .faq-item {
            border-bottom: 1px solid #333;
            margin-bottom: 10px;
        }

        .faq-question {
            width: 100%;
            padding: 15px;
            text-align: left;
            background: none;
            border: none;
            color: white;
            font-size: 0.8rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .arrow-icon {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
            padding: 0 15px;
            color: #ddd;
            font-size: 0.8rem;
        }

        .faq-answer.open {
            padding: 15px;
        }


.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}

.footer {
    background-color: #0a0a0a;
    padding: 20px 10px;
    text-align: center;
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 400px;
    margin: auto;
}

.footer-logo img {
    height: 200px;
    margin-bottom: 50px;
}

.footer-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-social a {
    display: inline-block;
    margin: 0 8px;
    color: #76b900;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #5fa000;
}

.features-grid::before,
.features-grid::after,
.vertical-line-2,
.vertical-line-3 {
    display: none !important;
}