/* Dark Mode Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    overflow-x: hidden;
}

header {
    background: linear-gradient(to right, #5E35B1, #6b4ea4);
    color: white;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-card {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease-in-out, transform 0.5s ease-in-out;
}

.hero-card.show {
    opacity: 1;
    transform: scale(1);
}


.logo {
    font-size: 1.8rem;
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: #ffd700;
}

/* Intro Section */
.intro {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-card {
    background: rgba(30, 30, 30, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    max-width: 600px;
    text-align: center;
}

/* Services Section */
.services {
    text-align: center;
    padding: 80px 20px;
    background: #1e1e1e;
    position: relative;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
    margin-top: -100px; /* Moving cards upwards permanently */
}

.card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 90%;
    max-width: 350px;
    text-align: center;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.add-to-cart {
    margin-top: 10px;
    background: #ff6600;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.add-to-cart:hover {
    background: #cc5500;
}

/* About & Contact Sections */
.about, .contact {
    background: #1e1e1e;
    padding: 60px 20px;
    text-align: center;
}

.about-card, .contact-card {
    max-width: 600px;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    background: #222;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}

.customization-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #121212;
}

.customization-card {
    background: linear-gradient(135deg, #313131, #5f5f5f);
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    max-width: 400px;
}

.customization-card:hover {
    transform: scale(1.05);
}

.custom-link {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #483688;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.custom-link:hover {
    background: #42A5F5;
}

.customization-card {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease-in-out, transform 0.5s ease-in-out;
}

.customization-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #1f1e1e; /* Dark background */
}

.customization-card {
    background: linear-gradient(135deg, #28292a, #282a2c); /* Dark gradient */
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: 400px;
    position: relative;
}

/* Glowing effect */
.customization-card::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(66, 67, 68, 0.5), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

/* Hover animation: Pop-up effect with glow */
.customization-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(0, 132, 255, 0.6);
}

.customization-card:hover::before {
    opacity: 1;
}

/* Optional: Subtle glowing animation */
@keyframes glow {
    0% { box-shadow: 0px 0px 10px rgba(0, 132, 255, 0.3); }
    50% { box-shadow: 0px 0px 20px rgba(0, 132, 255, 0.5); }
    100% { box-shadow: 0px 0px 10px rgba(0, 132, 255, 0.3); }
}

.customization-card {
    animation: glow 2s infinite alternate;
}




.contact form input, .contact form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #343434;
    border-radius: 5px;
    background: #333;
    color: #e0e0e0;
}

.contact form button {
    background: #3f43a6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact form button:hover {
    background: #2d3a7f;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}
