html {
    scroll-behavior: smooth;
}
.navbar{
    backdrop-filter: blur(10px); /* Adjust blur intensity as needed */
    background-color: rgba(255, 255, 255, 0.1); /* Adjust opacity as needed */
    width: 100%;
    position: fixed;
    left: 0px;
    z-index: 100;
}
.nav-link{
    font-weight: bold;
    color: white;
    font-size: 20px;
    text-shadow: 0 0 4px #6E07F3, 0 0 8px #6E07F3;
}
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-size: cover;
    background-position: center;
    background-image: url("./materials/bgimgs/2.jpg");
    align-items: center; 
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Fade transition */
}

.hero-content{
    width: 1000px;
    height: max-content;
}
.btn-danger{
    --bs-btn-bg:red;
}
.dropShadow {
    text-shadow: 0 0 4px #6E07F3, 0 0 8px #6E07F3;
}
.boxShadow{
    box-shadow: 0 0 8px #6E07F3, 0 0 16px #6E07F3;
}
.arrowSvg{
    height: 100px;
    width: 100vw;
    position: absolute;  
    z-index: 89; 
    bottom: 0px;
    left: 0px;
    align-items: end;
    justify-content: center;
}
.beat-animation {
    height: 50px;
    color: red;
    padding-bottom: 5px;
    animation: beat 1s infinite;
}

@keyframes beat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
.service{
    height: 400px;
    width: 100vw; 
    background-color: black;
}
.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}
.card-text {
    font-size: 1rem;
}
.container {
    padding: 2rem 0;
}
#services,#contact{
    scroll-margin-top: 73px; /* Adjust the offset as needed */
}
.card {
    display: none; /* Initially hide cards */
}
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999; /* Ensure it's above other content */
    text-decoration: none; /* Remove default link underline */
}
.call-icon{
    position: fixed;
    bottom: 60px;
    left: 15px;
    z-index: 9998; 
    text-decoration: none; 
}
