* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fa;
}

/* PREMIUM BLACK HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.2);
}

/* LOGO */
.logo {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffcc00;
    text-transform: uppercase;
}

/* NAV LINKS */
nav a {
    color: #ffcc00;
    text-decoration: none;
    margin-left: 30px;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* Underline animation */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ffcc00;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Hover glow */
nav a:hover {
    color: #ffd633;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.6);
}


/* HERO */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.overlay p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    background: #00bcd4;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #0097a7;
}

/* ARROWS */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    cursor: pointer;
    padding: 10px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
}

.prev { left: 20px; }
.next { right: 20px; }

/* DOTS */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    opacity: 0.5;
}

.dot.active {
    opacity: 1;
    background: #00bcd4;
}

/* HOME PRODUCTS */
.home-products {
    padding: 80px 8%;
    text-align: center;
}

.product-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.preview-card {
    background: white;
    padding: 30px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.preview-card:hover {
    transform: translateY(-10px);
}

/* WHY SECTION */
.why {
    background: #111;
    color: white;
    padding: 80px 8%;
    text-align: center;
}

.why-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.why-box {
    width: 250px;
}

/* FOOTER */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px;
}

/* BRAND STRIP */
.brand-strip {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: #111;
    color: #ffcc00;
    font-weight: bold;
}

/* PRODUCT IMAGE */
.preview-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* STATS SECTION */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 70px 8%;
    background: #000;
    color: #ffcc00;
    text-align: center;
}

.stat-box h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* CTA SECTION */
.cta {
    background: linear-gradient(135deg, #000, #222);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    margin-bottom: 20px;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #ffcc00;
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

/* PRODUCTS PAGE */
.products-page {
    padding: 80px 8%;
    text-align: center;
    background: #111;
    color: #ffcc00;
}

.products-page h1 {
    margin-bottom: 50px;
    font-size: 40px;
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* PRODUCT CARD */
.product-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.1);
}


.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(255, 204, 0, 0.3);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    margin-bottom: 10px;
    color: #fff;
}

.product-card p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ccc;
}

.price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffcc00;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;   /* keeps full image visible */
    border-radius: 10px;
    margin-bottom: 15px;
}
.product-card .cart-btn {
    margin-top: auto;
}



/* CART BUTTON */
.cart-btn {
    background: #ffcc00;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.cart-btn:hover {
    background: #ffd633;
}


.about-section {
    padding: 80px 10%;
    background: #0f0f0f;
    color: white;
}

.about-container {
    max-width: 1200px;
    margin: auto;
}

.about-section h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

.about-subtitle {
    text-align: center;
    color: #ffcc00;
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-top: 20px;
    color: #ffcc00;
}

.about-text p {
    line-height: 1.6;
    margin-top: 10px;
}

.about-text ul {
    margin-top: 15px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
}
.glow-divider {
    width: 120px;
    height: 4px;
    margin: 30px auto 60px;
    background: #ffcc00;
    box-shadow: 0 0 15px #ffcc00;
    border-radius: 5px;
}
.stats-section {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    flex-wrap: wrap;
    text-align: center;
}

.stat h2 {
    font-size: 40px;
    color: #ffcc00;
}

.stat p {
    margin-top: 10px;
    color: #ccc;
}
.founder-section {
    margin-top: 100px;
    text-align: center;
}

.founder-section h2 {
    color: #ffcc00;
    margin-bottom: 40px;
}

.founder-card {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.1);
}

.founder-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.founder-card p {
    max-width: 400px;
    color: #ccc;
}
.contact-section {
    padding: 80px 10%;
    background: #0f0f0f;
    color: white;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
}

.contact-section h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-subtitle {
    text-align: center;
    color: #ffcc00;
    margin-bottom: 50px;
}

.contact-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #1a1a1a;
    color: white;
}

.contact-form button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #ffcc00;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: white;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: #ffcc00;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #ccc;
}
