body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background-color: #0ea5c6;
}

.footer {
    background-color: #0d1b2a;
    color: white;
    padding: 40px 0;
}


.hero-section {
    background-image: url(../images/slider-bg.png);
    background-size: cover;
    background-position: top;
    min-height: 880px;
    position: relative;
    padding-top: 200px;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

.hero-badge {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-logo img {
    max-width: 180px;
    border-radius: 50%;
    background: #fff;
    padding: 10px;
}

h1.hero-title {
    font-family: "Chewy", system-ui;
}

h1.hero-title {
    font-family: "Chewy", system-ui;
    font-size: 80px;
    display: block;
    margin-bottom: 30px;
    color: #0f123a;
}

h2.hero-subtitle {
    font-family: "Original Surfer", sans-serif;
    font-size: 30px;
    font-weight: 800;
}

.hero-shape-img {
    position: absolute;
    z-index: -1;
}

img.hero-shape-img.shape-1 {
    top: 10pc;
    right: 15pc;
}

img.hero-shape-img.shape-2 {
    right: 8pc;
    bottom: 0;
}

img.hero-shape-img.shape-3 {
    top: 15pc;
    left: 10pc;
}

img.hero-shape-img.shape-4 {
    bottom: 10pc;
    left: 20pc;
}

@keyframes rotatePlanet {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.shape-3 {
    animation: rotatePlanet 20s linear infinite;
}

@keyframes floatMoon {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.shape-2 {
    animation: floatMoon 6s ease-in-out infinite;
}

@keyframes shakeBottle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }
}

.shape-4 {
    animation: shakeBottle 2s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes rocketFly {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    50% {
        transform: translate(-60px, -80px) rotate(-15deg);
    }

    100% {
        transform: translate(-120px, -150px) rotate(-30deg);
    }
}

.shape-1 {
    animation: rocketFly 6s ease-in-out infinite alternate;
    transform-origin: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp {
    background: #25D366;
}

.facebook {
    background: #1877F2;
}

.instagram {
    background: #E4405F;
}

.youtube {
    background: #FF0000;
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* SMALL MOBILE */
@media (max-width: 372px) {}

/* MOBILE */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 100px;
        min-height: 100vh;
    }

    .hero-logo img {
        max-width: 140px;
    }

    h1.hero-title {
        font-size: 48px;
    }

    h2.hero-subtitle {
        font-size: 22px;
    }

    img.hero-shape-img.shape-1 {
        top: 18pc;
        right: 0;
        width: 100px;
        animation: none;
        opacity: 0.7;
    }

    img.hero-shape-img.shape-2 {
        right: 0;
        bottom: 0;
        width: 60px;
        opacity: 0.4;
    }

    img.hero-shape-img.shape-3 {
        top: 15pc;
        left: 0px;
        width: 80px;
        opacity: 0.4;
    }

    img.hero-shape-img.shape-4 {
        bottom: 0;
        left: 0;
        width: 50px;
        opacity: 0.5;
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {}

/* LAPTOP */
@media (min-width: 1025px) and (max-width: 1439px) {}