/* Hero Carousel Styles */
.custom-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.custom-hero .owl-carousel {
    height: 100vh;
}

.custom-hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: relative;
}

.custom-hero-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.custom-hero-slide .container {
    z-index: 2;
}

/* Ensure carousel dots are visible on hero */
.custom-hero .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.custom-hero .owl-dot {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.custom-hero .owl-dot.active {
    background: #FFF;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .custom-hero-slide {
        background-size: cover;
        background-position: center;
    }
}

/* Primary Color Override */
:root {
    --bs-primary: #9191e9 !important;
    --bs-primary-rgb: 145, 145, 233 !important;
}

/* Override primary color classes */
.text-primary {
    color: #9191e9 !important;
}

.bg-primary {
    background-color: #9191e9 !important;
}

/* .btn-primary {
    background-color: #9191e9 !important;
    border-color: #9191e9 !important;
}

.btn-primary:hover {
    background-color: #7a7ad8 !important;
    border-color: #7a7ad8 !important;
} */

/* .btn-outline-primary {
    color: #9191e9 !important;
    border-color: #9191e9 !important;
}

.btn-outline-primary:hover {
    background-color: #9191e9 !important;
    border-color: #9191e9 !important;
} 

.border-primary {
    border-color: #9191e9 !important;
}*/

.link-primary {
    color: #9191e9 !important;
}

.link-primary:hover {
    color: #7a7ad8 !important;
}

/* Override any inline styles that might use the old color */
[style*="#6f42c1"] {
    color: #9191e9 !important;
}

/* Feature box icon color override */
.feature-box-icon i.text-primary {
    color: #9191e9 !important;
}

.m-l-r{
    margin-left: 9rem;
    margin-right: 9rem;
}

/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    color: white;
    font-size: 28px;
}

@media (max-width: 991px) {
    .text-center-mobile {
        text-align: center !important;
    }
}

