@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ROOT */
html,
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}


/* HERO */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("images/bottom.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* CENTER CONTENT */
.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.logo {
    width: 16%;
}

h1 {
    font-family: "Fira Sans", sans-serif;
    font-style: normal;
}

/* TEXT */
.hero h1 {
    color: #0b3a78;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
}

.tagline {
    background: #0b3a78;
    color: #fff;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 30px;
    margin: 2px 0;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.location {
    color: red;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.description {
    max-width: 900px;
    margin: 0 auto 0px;
    font-size: 20px;
    color: #0b3a78;
    font-weight: 600;
}

/* BUBBLES */
.bubble-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.bubble {
    position: absolute;
    bottom: -80px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05)),
        conic-gradient(from 0deg,
            rgba(255, 0, 150, 0.6),
            rgba(0, 255, 255, 0.6),
            rgba(0, 255, 0, 0.6),
            rgba(255, 255, 0, 0.6),
            rgba(255, 0, 0, 0.6),
            rgba(255, 0, 150, 0.6));
    background-blend-mode: screen;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        inset -10px -10px 18px rgba(255, 255, 255, 0.5),
        inset 8px 8px 15px rgba(255, 255, 255, 0.25),
        0 0 25px rgba(255, 255, 255, 0.4);
    opacity: 0.85;
    animation: bubbleFloat linear infinite, bubbleShine ease-in-out infinite;
}

/* BUBBLE ANIMATION */
@keyframes bubbleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0.6);
        opacity: 0;
    }

    10% {
        opacity: 0.85;
    }

    100% {
        transform: translateY(-130vh) translateX(80px) scale(1);
        opacity: 0;
    }
}

@keyframes bubbleShine {
    0% {
        filter: brightness(1) saturate(1);
    }

    50% {
        filter: brightness(1.5) saturate(1.4);
    }

    100% {
        filter: brightness(1) saturate(1);
    }
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 760px;
    margin: 20px auto 0;
    /* background: rgba(255, 255, 255, 0.75); */
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
}

.service-btn {
    display: inline-block;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b3a78, #0d4fa3);
    color: #fff;
    padding: 12px 9px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent);
    transition: 0.6s;
}

.service-btn:hover {
    transform: translateY(-6px)scale(1.04);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    color: yellow;
    text-decoration: none;
    border: 2px solid white;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn.red {
    border-left: 8px solid #e53935;
    border-right: 8px solid #e53935;
}

.service-btn.orange {
    border-left: 8px solid #fb8c00;
    border-right: 8px solid #fb8c00;
}

.service-btn.blue {
    border-left: 8px solid #1e88e5;
    border-right: 8px solid #1e88e5;
}

.service-btn.green {
    border-left: 8px solid #43a047;
    border-right: 8px solid #43a047;
}

/* SIDE DECOR */
.side-decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 35px;
    z-index: 4;
}

.side-decor.left {
    left: 30px;
}

.side-decor.right {
    right: 30px;
}

.decor {
    width: 250px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: 0.5s ease;
}

.d1 {
    transform: rotate(-12deg);
}

.d2 {
    transform: rotate(8deg);
}

.d3 {
    transform: rotate(12deg);
}

.d4 {
    transform: rotate(-6deg);
}

.decor:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

/* MOBILE */
@media(max-width:768px) {

    html,
    body {
        overflow: auto;
    }

    .hero h1 {
        font-size: 26px;
    }

    .description {
        font-size: 15px;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .side-decor {
        display: none;
    }
}

.footer-mini {
    padding: 10px 0;
    background-color: #b4010b;
    font-size: 14px;
}

.developer-link {
    color: #f1c40f;
    font-weight: 600;
    text-decoration: none;
}

.developer-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Mobile center */
@media(max-width:768px) {

    .footer-mini .text-left,
    .footer-mini .text-right {
        text-align: center !important;
    }
}