body {
    margin: 0;
    font-family: 'Segoe UI',system-ui,-apple-system,sans-serif;
    background: #000;
    color: #fff;
    scroll-behavior: smooth
}

/* Premium Section Title */
h2 {
    font-size: 34px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    background: linear-gradient(90deg,#22c55e,#3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section {
    position: relative;
}

    section::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 2px;
        background: linear-gradient(90deg,#22c55e,#2563eb);
        opacity: .4;
    }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    cursor: pointer;
    gap: 6px;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 3px;
        background: #22c55e;
        border-radius: 2px;
        transition: .3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px,5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px,-6px);
    }

.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1300px;
    background: linear-gradient(135deg,rgba(15,15,15,.75),rgba(10,10,10,.55));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(34,197,94,.25);
    border-radius: 18px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: .4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,.6);
}

    .navbar:hover {
        background: rgba(15,15,15,.9);
    }

/* Desktop Menu */
.menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

    .menu a {
        text-decoration: none;
        color: #fff;
        font-size: 15px;
        letter-spacing: .5px;
        transition: .3s;
    }

        .menu a:hover {
            color: #22c55e;
        }
        .menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0%;
            height: 2px;
            background: linear-gradient(90deg,#22c55e,#3b82f6);
            transition: .35s;
        }
/* ===== MOBILE ===== */
@media (max-width:768px) {

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: linear-gradient(160deg,#0b0f14,#111827);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 30px;
        gap: 25px;
        transition: .4s ease;
        z-index: 2000;
    }

        .menu.active {
            right: 0;
        }

        .menu a {
            font-size: 18px;
            width: 100%;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,.05);
        }

    .hamburger {
        display: flex;
        z-index: 2100;
    }
}

.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/images/slide1.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-bg {
    animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.25);
    }
}
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 6s ease;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        filter: brightness(0.55);
    }

    .slide.active {
        opacity: 1;
    }

        .slide.active img {
            transform: scale(1.08);
        }

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.9));
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.overlay {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    text-align: center;
    max-width: 800px;
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.overlay {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    text-align: center;
    max-width: 800px;
}

    .overlay h1 {
        color: #22c55e;
        font-size: 48px;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }

    .overlay p {
        color: #3b82f6;
        font-size: 18px;
        margin-bottom: 25px;
    }

.about, .products, .gallery, .contact {
    padding: 140px 40px;
    text-align: center;
    position: relative
}


.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    align-items: stretch
}

.info-card {
    background: linear-gradient(145deg,#0f0f0f,#141414);
    border: 1px solid rgba(34,197,94,.3);
    border-radius: 25px;
    padding: 40px 30px;
    transition: .5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 300px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(40px)
}

    .info-card h3 {
        color: #22c55e;
        margin: 20px 0 15px 0;
        font-size: 22px;
        letter-spacing: 1px
    }

    .info-card p {
        color: #aaa;
        font-size: 15px;
        line-height: 1.6
    }

    .info-card:hover {
        box-shadow: 0 0 30px rgba(34,197,94,.4),0 0 60px rgba(37,99,235,.2);
        transform: translateY(-12px) scale(1.02);
        border-color: #2563eb
    }

.products .grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px
}

.gallery .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px
}

@media (max-width:1200px) {
    .products .grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:768px) {
    .products .grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:480px) {
    .products .grid {
        grid-template-columns: repeat(1,1fr);
    }
}

.card {
    background: linear-gradient(145deg,#0d0d0d,#161616);
    border: 1px solid rgba(34,197,94,.3);
    border-radius: 22px;
    padding: 25px;
    cursor: pointer;
    transition: .4s ease;
    position: relative;
    overflow: hidden;
}

    .card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg,transparent,rgba(34,197,94,.15),transparent);
        transition: .6s;
    }

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

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,.6),0 0 25px rgba(34,197,94,.3);
        border-color: #22c55e;
    }

    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 15px
    }

    .card h3 {
        margin: 10px 0 5px 0
    }

    .card p {
        color: #aaa;
        font-size: 14px;
        margin-bottom: 10px
    }

    .card button {
        display: inline-block;
        visibility: visible;
        opacity: 1;
        z-index: 5;
    }

.btn-green {
    background: linear-gradient(135deg,#16a34a,#22c55e);
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .3s;
    box-shadow: 0 5px 20px rgba(34,197,94,.3);
}

    .btn-green:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(34,197,94,.6);
    }

.btn-blue {
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 5px 20px rgba(37,99,235,.3);
}

    .btn-blue:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(37,99,235,.6);
    }

.gallery .grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    transition: .3s;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* ===== GALLERY MODAL ===== */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 3000;
}

    .gallery-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .gallery-modal img {
        max-width: 85%;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 20px;
        box-shadow: 0 0 40px rgba(34,197,94,.4);
        transition: opacity .3s ease, transform .3s ease;
    }

        .gallery-modal img.fade {
            opacity: 0;
            transform: scale(.97);
        }

.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    cursor: pointer;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(34,197,94,.2);
    border: 1px solid #22c55e;
    color: #fff;
    font-size: 30px;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 50%;
}

    .gallery-nav.left {
        left: 40px;
    }

    .gallery-nav.right {
        right: 40px;
    }

    .gallery-nav:hover {
        background: #22c55e;
    }

.gallery img:hover {
    transform: scale(1.05)
}

.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg,#16a34a,#2563eb);
    padding: 16px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 0 20px rgba(34,197,94,.6)
}

.icon {
    font-size: 40px;
    background: linear-gradient(135deg,#22c55e,#2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

/* ===== MODAL STYLE ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 2000;
}

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.modal-box {
    position: relative;
    background: #111111;
    border: 1px solid rgba(34,197,94,.5);
    border-radius: 25px;
    padding: 40px;
    width: 90%;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 0 40px rgba(34,197,94,.4);
    animation: scaleIn .3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

    .modal-box img {
        width: 100%;
        aspect-ratio: 4 / 3;
        height: auto;
        max-height: 50vh;
        object-fit: contain;
        background: #000;
        border-radius: 15px;
        margin-bottom: 20px;
    }

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

@keyframes scaleIn {
    from {
        transform: scale(.8);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.modal-specs {
    margin-top: 15px;
    text-align: left;
    background: #0d0d0d;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(37,99,235,.4);
}

    .modal-specs ul {
        padding-left: 18px;
        margin: 0;
    }

    .modal-specs li {
        margin-bottom: 6px;
        color: #ccc;
        font-size: 14px;
    }

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(34,197,94,.4);
    box-shadow: 0 0 25px rgba(34,197,94,.3);
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* ===== CONTACT PREMIUM ===== */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.contact-card {
    background: linear-gradient(145deg,#0d0d0d,#161616);
    border: 1px solid rgba(34,197,94,.3);
    border-radius: 20px;
    padding: 35px 25px;
    transition: .4s;
    min-width: 220px;
}

    .contact-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 0 30px rgba(34,197,94,.4),0 0 60px rgba(37,99,235,.2);
        border-color: #22c55e;
    }

.contact-icon {
    font-size: 38px;
    margin-bottom: 15px;
    background: linear-gradient(135deg,#22c55e,#2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card h3 {
    margin-bottom: 10px;
    color: #22c55e;
}

.contact-card p,
.contact-card a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
}

    .contact-card a:hover {
        color: #22c55e;
    }


/* ===== PREMIUM SOCIAL BUTTONS ===== */
/* ===== ULTRA PREMIUM SOCIAL ICON BAR ===== */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
}

.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: #111;
    border: 1px solid rgba(255,255,255,.1);
    transition: .4s;
    position: relative;
    overflow: hidden;
}

    .social-btn::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        opacity: 0;
        transition: .4s;
    }

    .social-btn.instagram:hover {
        background: linear-gradient(135deg,#fd5949,#d6249f,#285AEB);
        transform: scale(1.15);
        box-shadow: 0 0 25px rgba(214,36,159,.7);
    }

    .social-btn.linkedin:hover {
        background: linear-gradient(135deg,#0A66C2,#0e76a8);
        transform: scale(1.15);
        box-shadow: 0 0 25px rgba(10,102,194,.7);
    }

    .social-btn.youtube:hover {
        background: linear-gradient(135deg,#FF0000,#cc0000);
        transform: scale(1.15);
        box-shadow: 0 0 25px rgba(255,0,0,.7);
    }

    .social-btn:hover i {
        animation: pulse 0.6s;
    }

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.3)
    }

    100% {
        transform: scale(1)
    }
}

/* Logo Responsive Control */
.logo-wrapper {
    display: flex;
    align-items: center;
    height: 60px;
    max-width: 220px;
    overflow: hidden
}

.logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(34,197,94,.45));
    transition: .4s;
}

    .logo:hover {
        transform: scale(1.08) rotate(-1deg);
        filter: drop-shadow(0 0 18px rgba(37,99,235,.8));
    }
.contact-section {
    padding: 80px 20px;
    text-align: center;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    background: #0c0c0c;
    border: 1px solid #00ffa6;
    border-radius: 12px;
    padding: 25px;
    width: 220px;
    transition: .3s;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 15px #00ffa644;
    }

    .contact-card i {
        font-size: 28px;
        color: #00ffa6;
        margin-bottom: 10px;
    }

    .contact-card h3 {
        margin-bottom: 10px;
    }

    .contact-card p {
        color: #ccc;
    }

    .contact-card a {
        background: #00ffa6;
        color: black;
        padding: 8px 15px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
    }


.social-bar {
    margin-top: 40px;
}

    .social-bar a {
        display: inline-block;
        margin: 10px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        border: 1px solid #00ffa6;
        border-radius: 50%;
        color: #00ffa6;
        font-size: 20px;
        transition: .3s;
    }

        .social-bar a:hover {
            background: #00ffa6;
            color: black;
        }
.contact-link {
    color: #00ffa6;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

    .contact-link:hover {
        color: white;
    }
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient( 120deg, #0a0f14, #071c17, #0a0f14 );
    overflow: hidden;
}



.hero-slide {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    animation: fade 1s;
}


    .hero-slide.active {
        display: flex;
    }


.hero-content {
    max-width: 600px;
    color: white;
}


    .hero-content h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }


    .hero-content span {
        color: #00ffa6;
    }


    .hero-content p {
        font-size: 18px;
        color: #aaa;
        margin-bottom: 30px;
    }



.hero-buttons {
    display: flex;
    gap: 20px;
}



.btn-primary {
    padding: 14px 30px;
    background: #00ffa6;
    color: black;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}



.btn-secondary {
    padding: 14px 30px;
    border: 1px solid #00ffa6;
    color: #00ffa6;
    border-radius: 8px;
    text-decoration: none;
}



.hero-image img {
    width: 500px;
    animation: float 3s infinite ease-in-out;
}



@keyframes float {

    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(0)
    }
}



@keyframes fade {

    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}
/* PREMIUM HERO */
.premium-hero {
    max-width: 900px;
    margin: auto;
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg,#22c55e,#3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-btn {
    font-size: 16px;
    padding: 14px 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat span {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #22c55e;
}

.hero-stat small {
    color: #aaa;
    font-size: 14px;
}
