.embossed-text {
            font-size: 4rem;
            font-weight: 700;
            color: #c0c0c0;
            text-shadow: 1px 1px 0px #ffffff, -1px -1px 0px #95a5a6;
        }

	 .wave-text {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffe6;
        }

        .wave-text span {
            display: inline-block;
            animation: wave 2s ease-in-out infinite;
        }

        .wave-text span:nth-child(1) { animation-delay: 0s; }
        .wave-text span:nth-child(2) { animation-delay: 0.1s; }
        .wave-text span:nth-child(3) { animation-delay: 0.2s; }
        .wave-text span:nth-child(4) { animation-delay: 0.3s; }
        .wave-text span:nth-child(5) { animation-delay: 0.4s; }
        .wave-text span:nth-child(6) { animation-delay: 0.5s; }
        .wave-text span:nth-child(7) { animation-delay: 0.6s; }
        .wave-text span:nth-child(8) { animation-delay: 0.7s; }
	    .wave-text span:nth-child(9) { animation-delay: 0.8s; }
	    .wave-text span:nth-child(10) { animation-delay: 0.9s; }
	    .wave-text span:nth-child(11) { animation-delay: 0.10s; }
	    .wave-text span:nth-child(12) { animation-delay: 0.11s; }
	    .wave-text span:nth-child(13) { animation-delay: 0.12s; }
	    .wave-text span:nth-child(14) { animation-delay: 0.13s; }
	    .wave-text span:nth-child(15) { animation-delay: 0.14s; }

        @keyframes wave {
            0%, 40%, 100% { transform: translateY(0); }
            20% { transform: translateY(-20px); }
        }

	.script-fancy {
            font-family: 'Dancing Script', cursive;
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffe6;
        }
    .elegant-serif {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
        }    

         .dropdown:hover .dropdown-menu {
            display: block;
        }
        .dropdown-menu {
            transition: opacity 1s ease;

        }
.fixed-call-btn {
    position: fixed;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #36e002fa, #43faaee8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(62, 70, 63, 0.733);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
    color: white;
    font-size: 24px;
}

.fixed-call-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 35px rgb(49, 53, 48);
}
.tooltip {
    position: absolute;
    bottom: 80px;
    left: 20px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #383434b9, #313635ab);
    color: white;
    padding: 2px 4px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(55, 58, 55, 0.623);
    z-index: 1001;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #2a302c88;
}

.fixed-call-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 50px;
}


