/* Extracted from home.html - Custom classes only */

/* Override default paragraph margins */
.elementor-widget-container p,
.gbc-hero p,
.gbc-services p,
.gbc-about p,
.gbc-properties p,
.gbc-cta p,
.gbc-testimonials p {
    margin-bottom: 0 !important;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #4e0399, #C084FC);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1523;
}

::-webkit-scrollbar-thumb {
    background: #4c1d95;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d28d9;
}

.mascot-float {
    animation: mascotPeek 3s ease-in-out infinite alternate;
}

@keyframes mascotPeek {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-5px) rotate(2deg); }
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

/* Client Avatars Styling */
.gbc-client-avatars {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gbc-avatars-group {
    display: flex;
    gap: -0.75rem;
}

.gbc-avatars-group img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.75rem;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gbc-avatars-group img:first-child {
    margin-left: 0;
}

