/* Custom Styles for electtrical */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
}

/* Background Pattern for Hero */
.hero-bg-pattern {
    background-image: radial-gradient(#f59e0b 1px, transparent 1px);
    background-size: 16px 16px;
}

/* Floating Tooltips for Fixed Right Side Buttons */
.tooltip-right {
    position: absolute;
    right: 4rem;
    background-color: #0f172a;
    color: #ffffff;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.group:hover .tooltip-right {
    opacity: 1;
}