@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #07100a;
    color: #e2e8f0;
}

.grad {
    background: linear-gradient(135deg, #2b770e, #55c22a, #a3e635);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-glow {
    background: linear-gradient(135deg, #2b770e, #3a9912);
    box-shadow: 0 0 20px rgba(43, 119, 14, .4);
    transition: all .3s;
}

.btn-glow:hover {
    box-shadow: 0 0 35px rgba(43, 119, 14, .7);
    transform: translateY(-2px);
}

.glass {
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .08);
}

#navbar {
    transition: background .3s, box-shadow .3s;
}

#navbar.scrolled {
    background: rgba(7, 16, 10, .95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}

.hero-bg {
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(43, 119, 14, .2) 0%, transparent 70%), #07100a;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.svc-card {
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(43, 119, 14, .2);
    border-color: rgba(43, 119, 14, .5) !important;
}

.port-card img {
    transition: transform .5s;
}

.port-card:hover img {
    transform: scale(1.07);
}

.stat-box {
    background: linear-gradient(135deg, rgba(43, 119, 14, .15), rgba(85, 194, 42, .08));
    border: 1px solid rgba(43, 119, 14, .25);
}

.dropdown-menu {
    display: none;
    min-width: 230px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

#mobile-menu {
    display: none;
}

#mobile-menu.open {
    display: block;
}

.timeline-dot {
    background: linear-gradient(135deg, #2b770e, #55c22a);
}

.stars {
    color: #f59e0b;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

.bounce {
    animation: bounce 1.6s infinite;
}

.grid-pattern {
    background-image: linear-gradient(rgba(43, 119, 14, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(43, 119, 14, .06) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.anim-float {
    animation: float 4s ease-in-out infinite;
}

/* WhatsApp pulse */
@keyframes wapulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0)
    }
}

.wa-pulse {
    animation: wapulse 2s infinite;
}