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

body {
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd, #7dd3fc);
    color: #0f172a;
    overflow-x: hidden;
}

/* GLASS EFFECT */
.glass {
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* NAVBAR */
.nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
}

.nav a {
    margin-left: 5px;
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    transition: 0.3s;
}
/* HOVER (only non-active links) */
.nav-links a:not(.active):hover{
    color:#d4af37;
    opacity:1;
}

/* ACTIVE (always stays highlighted) */
.nav-links a.active{
    color:#d4af37;
    opacity:1;
}

/* HERO */
/* HERO BASE */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* BACKGROUND (NO BLUR) */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("./images/hero-bg.png") center/cover no-repeat;
    z-index: 1;
}

/* CURSOR BLUR LAYER */
.cursor-blur {
    position: absolute;
    inset: 0;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* REVERSED: blur ONLY inside cursor circle */
    mask-image: radial-gradient(
        circle 160px at 50% 50%,
        black 0%,
        transparent 70%
    );

    -webkit-mask-image: radial-gradient(
        circle 160px at 50% 50%,
        black 0%,
        transparent 70%
    );

    pointer-events: none;
    z-index: 2;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding: 60px;
    max-width: 520px;
}
/* BUTTONS */
.btn {
    display: inline-block;
    margin: 20px 10px 0;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.primary {
    background: #3b82f6;
    color: white;
}

.primary:hover {
    background: #2563eb;
}

.secondary {
    border: 1px solid #3b82f6;
    color: #1e3a8a;
}

/* PRODUCTS */
.products {
    padding: 120px 40px;
    text-align: center;
}

.products h2 {
    font-size: 2rem;
}

/* GRID */
.grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.08);
}

/* FIXED IMAGE STYLE */
.card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
}

/* CARD CONTENT */
.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 8px;
}

.card-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CARD BUTTON */
.card-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    border-radius: 20px;
    background: #60a5fa;
    color: white;
    text-decoration: none;
}

/* ABOUT */
.about {
    margin: 40px;
    padding: 60px;
}

.about-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
}

.about h4 {
    color: #2563eb;
    margin: 10px 0 20px;
}

.about p {
    margin: 18px auto;
    line-height: 1.8;
    max-width: 750px;
    font-size: 0.95rem;
    color: #1e293b;
}

/* CONTACT */
.contact {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.contact-box {
    padding: 40px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.contact input,
.contact textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border-radius: 20px;
    border: none;
    outline: none;
}

.contact button {
    margin-top: 10px;
    padding: 12px;
    width: 100%;
    border-radius: 25px;
    border: none;
    background: #3b82f6;
    color: white;
    cursor: pointer;
}

/* FOOTER */
.footer {
    margin: 40px;
    padding: 50px 20px;
    text-align: center;
}

/* BRAND SIGNATURE */
.brand {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.tagline {
    margin-top: 10px;
    font-size: 0.95rem;
    opacity: 0.7;
}

/* SOCIAL BUTTONS */
.socials {
    margin: 25px 0;
}

.social-btn {
    display: inline-block;
    margin: 8px;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    color: white;
    transition: all 0.3s ease;
}

/* COLORS */
.whatsapp {
    background: #25D366;
}

.facebook {
    background: #1877F2;
}

.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* HOVER EFFECT */
.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* COPYRIGHT */
.footer p {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* MOBILE FIX */
@media (max-width: 768px) {
   
    .hero {
        background-attachment: scroll;
    }

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

    .hero-content {
        padding: 30px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }
}
.form-status {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #1e3a8a;
}
