/* ============================
   🔴 PERFECT BUBBLE BLOCK MENU
   Astra Theme
============================ */

/* Entire dropdown (background removed) */
.ast-builder-menu-1 .sub-menu {
    background: transparent !important;
    padding: 8px 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Each item becomes a glassy  bubble block */
.ast-builder-menu-1 .sub-menu li {
    margin: 3px 10px !important;       /* Gap between bubbles */
}

/* Bubble button */
.ast-builder-menu-1 .sub-menu li a {
    background: #ffffff !important;
    padding: 10px 14px !important;
    border-radius: 14px !important;    /* Bubble shape */
    min-width: 200px !important;
    max-width: 50% !important;         /* 🔴 35% width added */
    display: block;
    border: 1px solid #e2e2e2 !important;
    font-size: 18px !important;
    color: #444 !important;
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
    transition: 0.25s ease;
    white-space: nowrap !important;    /* Text one line only */
}

/* Hover effect – Light Red Bubble */
.ast-builder-menu-1 .sub-menu li a:hover {
    background: #ffe5e5 !important;
    color: #cc0000 !important;
    border-color: #ffcccc !important;
    transform: translateX(4px);
}

/* SECOND LEVEL (inside dropdown) */
.ast-builder-menu-1 .sub-menu .sub-menu {
    position: absolute !important;
    left: 170px !important;
    top: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Second-level bubble blocks */
.ast-builder-menu-1 .sub-menu .sub-menu li a {
    min-width: 170px !important;
    max-width: 50% !important;         /* 🔴 50% width added */
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

/* Light red hover for second level also */
.ast-builder-menu-1 .sub-menu .sub-menu li a:hover {
    background: #ffe5e5 !important;
    color: #cc0000 !important;
}

/* Fix Astra arrows spacing */
.ast-builder-menu-1 .menu-item-has-children > a {
    padding-right: 24px !important;
}

/* Optional arrow icon */
.ast-builder-menu-1 .menu-item-has-children > a::after {
    content: "▸";
    margin-left: 5px;
    font-size: 18px;
    color: #cc0000;
}
/* Level 1 bubble width */
.ast-builder-menu-1 .sub-menu li a {
    width: 150px !important;
}

/* Level 2 bubble width */
.ast-builder-menu-1 .sub-menu .sub-menu li a {
    width: 200px !important;
}
/* ======= Glassy Magic Footer ======= */

.glass-footer {
    width: 100%;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Magic Hover Light Effect */
.glass-footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
    opacity: 0;
    transition: 0.6s ease;
    pointer-events: none;
}

.glass-footer:hover::before {
    opacity: 1;
    transform: translate(10%, 10%);
}

/* Text Styling */
.company-name {
    font-size: 28px;
    font-weight: 700;
    color: #000000;   /* black text */
    margin-bottom: 18px;
}

.footer-item {
    font-size: 16px;
    color: #000000;   /* black text */
    margin: 8px 0;
}

/* Links – Zoom + Glow */
.footer-item a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.25s ease, text-shadow 0.25s ease;
}

.footer-item a:hover {
    transform: scale(1.15);
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.7);
}