/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Link Styles */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header Styling */
header {
    background: rgba(28, 28, 28, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 36px;
    color: #ff0000;
    letter-spacing: 3px;
    text-transform: uppercase;
}

ul {
    list-style: none;
    display: flex;
}

ul li {
    margin: 0 20px;
}

ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

ul li a:hover {
    color: #ff0000;
}

/* Hero Section */
.hero {
    background: url('assets/images/hero-background.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1.5s ease-out;
}

.hero h1 {
    font-size: 70px;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.cta-btn {
    background: linear-gradient(90deg, #ff0000, #990000);
    color: #fff;
    padding: 18px 40px;
    font-size: 20px;
    border-radius: 50px;
    box-shadow: 0 6px 14px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: linear-gradient(90deg, #cc0000, #660000);
    transform: scale(1.08);
    box-shadow: 0px 0px 25px rgba(255, 0, 0, 1);
}

/* Services Section */
.services {
    padding: 100px 20px;
    text-align: center;
    background: #1a1a1a;
}

.services h2 {
    font-size: 50px;
    color: #ff0000;
    margin-bottom: 60px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.service-card {
    background: linear-gradient(145deg, #1f1f1f, #292929);
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.3);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-card h3 {
    font-size: 28px;
    color: #ff0000;
    margin-bottom: 18px;
}

.service-card p {
    font-size: 20px;
}

/* Footer Section */
footer {
    background: #121212;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    font-size: 20px;
}

footer nav {
    margin-top: 20px;
}

footer nav a {
    margin: 0 20px;
    color: #ff0000;
    font-size: 18px;
    font-weight: 600;
}

footer nav a:hover {
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 50px;
    }
    .hero p {
        font-size: 20px;
    }
    .service-cards {
        grid-template-columns: 1fr;
    }
}
/* Order Page - Ultra Premium Styling */
.order-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: radial-gradient(circle at center, #0a0a0a, #000);
    overflow: hidden;
    padding: 20px;
    position: relative;
}

/* Glowing Gradient Overlay */
.order-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.3), rgba(0, 0, 0, 0.7), rgba(255, 0, 0, 0.3));
    opacity: 0.6;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* 3D Floating Container */
.order-container {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 40px;
    width: 100%;
    max-width: 580px;
    text-align: center;
    box-shadow: 0px 12px 35px rgba(255, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease-in-out, floatEffect 4s infinite ease-in-out alternate;
    transform: perspective(1200px) rotateX(5deg);
}

.order-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0px 0px 15px rgba(255, 0, 0, 0.9);
    margin-bottom: 15px;
}

.order-container p {
    color: #ddd;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Glowing Inputs */
form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    font-weight: 700;
    color: #fff;
    margin: 12px 0 6px;
}

select,
textarea,
input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: none;
    font-size: 1.1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 0px 12px rgba(255, 0, 0, 0.3);
}

select:hover,
textarea:hover,
input:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 18px rgba(255, 0, 0, 0.6);
}

/* Insane Button */
.cta-btn {
    background: linear-gradient(90deg, #ff0000, #aa0000);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 22px rgba(255, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.cta-btn:hover {
    background: linear-gradient(90deg, #cc0000, #660000);
    transform: scale(1.1);
    box-shadow: 0px 0px 28px rgba(255, 0, 0, 1);
}

/* Neon Glow Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatEffect {
    from {
        transform: translateY(0px) perspective(1200px) rotateX(5deg);
    }
    to {
        transform: translateY(-12px) perspective(1200px) rotateX(0deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-container {
        width: 95%;
    }

    .order-container h2 {
        font-size: 2rem;
    }
}

/* Order Section */
.order {
    padding: 80px 20px;
    text-align: center;
    background-color: #1c1c1c;
}

.order h2 {
    font-size: 50px;
    color: #ff0000;
    margin-bottom: 30px;
}

.order p {
    font-size: 22px;
    margin-bottom: 50px;
}
