:root {
    --bg-concrete: #e4e4df;
    --text-dark: #1f1f1f;
    --brand-green: #006837;
    --accent-orange: #ffb078;
    --border-line: #d1d1cc;
}

body {
    background-color: var(--bg-concrete);
    color: var(--text-dark);
    font-family: "Plus Jakarta Sans", sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

/* =========================================================
           BACKGROUND 5-COLUMN VERTICAL GRID LINES
        ========================================================= */
.bg-grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -2;
    display: flex;
}

.bg-line-col {
    flex: 1;
    height: 100%;
    border-right: 1px solid var(--border-line);
    opacity: 0.7;
}

.bg-line-col:first-child {
    border-left: 1px solid var(--border-line);
}

/* =========================================================
           BACKGROUND CANVAS FOR RISING BUBBLES
        ========================================================= */
#bubbleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.font-condensed {
    font-family: "Bebas Neue", cursive, sans-serif;
    letter-spacing: 1px;
}

.text-brand-green {
    color: var(--brand-green) !important;
}

/* =========================================================
           HEADER & NAVIGATION STYLING
        ========================================================= */

/* Logo Sizing (Desktop 200x200, Mobile 100x100) */
.logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(32, 177, 61, 0.25));
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 22px rgba(32, 177, 61, 0.45));
}

.nav-link-custom {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 1px;
    padding: 8px 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link-custom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--brand-green) !important;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: 80%;
}

/* Mobile Layout & Menu Button Settings */
@media (max-width: 991.98px) {
    .logo-img {
        width: 100px !important;
        height: 100px !important;
    }

    .navbar-collapse {
        background: rgba(228, 228, 223, 0.98);
        backdrop-filter: blur(12px);
        padding: 20px;
        border-radius: 8px;
        margin-top: 15px;
        border: 1px solid var(--border-line);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .nav-link-custom {
        display: block;
        padding: 12px 0;
    }
}

.custom-toggler {
    border: 2px solid var(--brand-green);
    padding: 8px 12px;
    border-radius: 6px;
    outline: none !important;
    box-shadow: none !important;
}

.custom-toggler i {
    color: var(--text-dark);
    font-size: 1.4rem;
}

/* =========================================================
           ZOOM & SLIDE HEADING ANIMATIONS
        ========================================================= */
.animate-zoom-slide {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.animate-zoom-slide.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* =========================================================
           RIGHT-SIDE VERTICAL CAROUSEL & SCROLL CONTROL
        ========================================================= */
.right-side-nav {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.nav-arrow {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.nav-arrow:hover {
    background-color: var(--brand-green);
    color: #ffffff;
    border-color: var(--brand-green);
    transform: scale(1.15);
}

.dot-indicator {
    width: 8px;
    height: 8px;
    background-color: rgba(31, 31, 31, 0.25);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot-indicator.active {
    height: 24px;
    border-radius: 12px;
    background-color: var(--brand-green);
}

.vertical-mini-carousel {
    height: 90px;
    overflow: hidden;
    position: relative;
    width: 140px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    border-left: 3px solid var(--brand-green);
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.vertical-track {
    display: flex;
    flex-direction: column;
    animation: autoSlideUp 10s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.vertical-slide-item {
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes autoSlideUp {
    0%,
    20% {
        transform: translateY(0);
    }

    25%,
    45% {
        transform: translateY(-90px);
    }

    50%,
    70% {
        transform: translateY(-180px);
    }

    75%,
    95% {
        transform: translateY(-270px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =========================================================
           GENERAL LAYOUT STYLES
        ========================================================= */
.hero-title {
    font-size: clamp(3.2rem, 8vw, 8.5rem);
    line-height: 0.92;
}

.giant-heading {
    font-size: clamp(4.5rem, 11vw, 11.5rem);
    line-height: 0.85;
}

.badge-number {
    background-color: var(--accent-orange);
    color: var(--text-dark);
    width: 55px;
    height: 65px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    padding-bottom: 4px;
    transition: transform 0.3s ease;
}

.badge-number:hover {
    transform: translateY(-5px) rotate(-4deg);
}

.border-thin {
    border-top: 1px solid var(--border-line);
}

.table-row-item {
    border-bottom: 1px solid var(--border-line);
    padding: 24px 0;
    transition: all 0.3s ease;
}

.table-row-item:hover {
    background: rgba(32, 177, 61, 0.08);
    padding-left: 10px;
}
