/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
    background: var(--bs-primary);
    color: var(--bs-secondary);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-primary-outline-0 {
    border: 0;
    color: var(--bs-white) !important;
}

.btn-light-outline-0 {
    border: 0;
    color: var(--bs-primary) !important;
}

.btn-primary-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.btn-light-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-secondary) !important;
}

.topbar {
    padding: 10px 0;
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.topbar * {
    color: var(--bs-white) !important;
}

.topbar a {
    color: var(--bs-primary) !important;
}

.topbar a:hover {
    color: var(--bs-white) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar {
    background-color: var(--deep-black) !important;
    border-bottom: 2px solid var(--primary-yellow);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
    color: var(--pure-white) !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary-yellow) !important;
}

.navbar-brand {
    color: var(--bs-primary) !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-brand:hover {
    color: var(--bs-white) !important;
}

.navbar-toggler {
    border-color: var(--bs-primary) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFD600' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu {
    background-color: var(--bs-secondary) !important;
    border: 1px solid var(--bs-primary) !important;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-secondary) !important;
    border: 1px solid var(--bs-primary) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }
}

#searchModal .modal-content {
    background: var(--bs-secondary) !important;
    border: 2px solid var(--bs-primary) !important;
    color: var(--bs-white) !important;
}
/*** Navbar End ***/

/*** Carousel Start ***/
.carousel-item {
    position: relative;
    min-height: 100vh
    
}

.carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.4));
    background-size: cover;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
}

.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
    background: transparent;
}

#carouselId .carousel-indicators {
    padding-bottom: 30px;
}

#carouselId .carousel-indicators li {
    border-top: 10px solid var(--bs-white);
    border-bottom: 10px solid var(--bs-white);
    border-right: 5px solid var(--bs-white);
    border-left: 5px solid var(--bs-white);
    margin-right: 10px;
    border-radius: 10px;
    transition: 0.5s;
}

#carouselId .carousel-indicators li.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    border-right: 15px solid var(--bs-primary);
    border-left: 15px solid var(--bs-primary);
}
/*** Carousel End ***/


.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Services Start ***/
.services .services-item {
    transition: 0.5s;
}

.services .services-item:hover {
    background: var(--bs-primary) !important;
    border-color: var(--bs-secondary) !important;
}

.services .services-item:hover .services-content p,
.services .services-item:hover .services-content h3 {
    color: var(--bs-white);
    transition: 0.5s;
}

.services .services-item:hover .services-content a.btn {
    background: var(--bs-white);
    color: var(--bs-primary) !important;
}

.services .services-item:hover .services-content a.btn:hover {
    color: var(--bs-white) !important;
}

.services .services-item .services-img {
    overflow: hidden;
}

.services .services-item .services-img img {
    transition: 0.5s;
}

.services .services-item .services-img img:hover {
    transform: scale(1.3);
}
/*** Services End ***/



/*** About Start ***/
/*** Youtube Video start ***/
.video {
    position: relative;
    padding-right: 70px; 
    padding-bottom: 70px;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    margin-left: -35px;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-primary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** About End ***/


/*** Appointment  Start ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.appointment .appointment-form {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4));
    object-fit: cover;
    border-radius: 10px;
}

.appointment .appointment-time {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, .2));
    object-fit: cover;
    border-radius: 10px;
}
/*** Appointment End ***/

/*** Counter Start ***/
.counter-section .counter-item .counter-content {
    position: relative;
    margin-bottom: 60px;
    background-image: linear-gradient(rgba(252, 152, 195, 0.3), rgba(255, 255, 255, 0.3), rgba(136, 76, 210, 0.3));
    border-radius: 10px;
    z-index: 9;
}

.counter-section .counter-item {
    text-align: center;
    background: rgba(255, 255, 255, .5) !important;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    object-fit: cover;
    border-radius: 0 25% 0 25%;
}

.counter-section .counter-item .counter-content .svg-img {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    margin-bottom: -50px; 
    margin-left: -45px; 
    transform: rotate(180deg);
}

.counter-section .counter-item .counter-quantity {
    width: 110px;
    height: 110px;
    border-radius: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-secondary);
    font-weight: bold;
}
/*** Counter End ***/


/*** Events Start ***/
.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-secondary) !important;
}

.gallery .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-img img {
    transition: 0.5s;
}

.gallery .gallery-img:hover img {
    transform: scale(1.3);
}

.gallery .gallery-img .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 214, 0, 0.9);
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.gallery .gallery-img .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
    color: var(--bs-secondary);
    font-size: 2rem;
}

.gallery .gallery-img:hover .gallery-overlay,
.gallery .gallery-img:hover .search-icon {
    opacity: 1;
}
/*** Events End ***/


/*** Pricing Start ***/
.pricing {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing .pricing-item {
    color: var(--bs-primary);
}

.pricing .pricing-item .pricing-content {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--bs-primary);
    border-radius: 10px;
}

.pricing .owl-carousel.pricing-carousel {
    position: relative;
}

.pricing .owl-carousel.pricing-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);

}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev:hover,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** Pricing End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team .team-item .team-text {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.team .team-item .team-social {
    position: absolute;
    top: -180px; 
    left: 20px; 
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-social {
    top: 20px; 
    left: 20px;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    width: 100%;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.team .team-item:hover .team-img::after {
    bottom: 0;
    height: 100%;
}

.team .team-item .team-text {
    transition: 0.5s;
}

.team .team-item:hover .team-text {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/testimonial-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .testimonial-item {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
}

.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** testimonial end ***/

/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact .contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
/*** Contact End ***/

/*** footer start ***/
.footer {
    background: var(--deep-black);
    color: var(--pure-white);
}

.footer .footer-item a,
.footer .footer-item p {
    color: var(--bs-white);
    line-height: 40px;
    font-size: 17px;
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--primary-yellow) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 214, 0, 0.2);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/

/*** Floating Buttons Start ***/
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.call-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #0d6e63);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        left: 15px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
/*** Floating Buttons End ***/

/*** Enhanced Yellow & Black Theme Start ***/
/* Button hover effects */
.btn-primary:hover {
    background: var(--bs-secondary) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.3);
}

.btn-secondary:hover {
    background: var(--bs-primary) !important;
    border-color: var(--bs-secondary) !important;
    color: var(--bs-secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Card enhancements */
.card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--bs-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.2);
}

/* Section headings */
.text-primary {
    color: var(--bs-primary) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Links */
a {
    color: var(--bs-primary);
}

a:hover {
    color: var(--bs-secondary);
    text-decoration: underline;
}

/* Form focus states */
.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 214, 0, 0.25);
}

/* Navigation enhancements - Updated for proper dark theme */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
    color: var(--bs-white) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--bs-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--bs-primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Service item enhancements */
.services .services-item {
    border: 2px solid transparent;
    border-radius: 15px;
    overflow: hidden;
}

.services .services-item:hover {
    border-color: var(--bs-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.3);
}

/* Pricing card enhancements */
.pricing .pricing-content:hover {
    background: rgba(255, 214, 0, 0.95) !important;
    color: var(--bs-secondary) !important;
    transform: scale(1.05);
}

/* Team member enhancements */
.team .team-item {
    transition: all 0.3s ease;
}

.team .team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.3);
}

/* Testimonial enhancements */
.testimonial .testimonial-item:hover {
    background: rgba(255, 214, 0, 0.9) !important;
    color: var(--bs-secondary) !important;
    transform: scale(1.02);
}

/* Back to top button enhancements */
.back-to-top:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
}

/* Footer link enhancements */
.footer .footer-item a:hover {
    color: var(--bs-primary) !important;
    text-shadow: 0 0 5px rgba(255, 214, 0, 0.5);
}

/* Pulse animation for important elements */
@keyframes yellowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 214, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 214, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
    }
}

.btn-primary:not(:hover) {
    animation: yellowPulse 2s infinite;
}

/* Gradient backgrounds for hero sections */
.bg-primary-gradient {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #e6c200 100%);
}

.bg-secondary-gradient {
    background: linear-gradient(135deg, var(--bs-secondary) 0%, #333333 100%);
}
/*** Enhanced Yellow & Black Theme End ***/

/*** Dark Background Implementation Start ***/
/* Main body dark background */
body {
    background-color: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/* Container backgrounds */
.container,
.container-fluid {
    background: transparent;
}

/* Section backgrounds */
section {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
}

/* Card backgrounds */
.card {
    background-color: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    border: 1px solid var(--bs-primary);
}

.card-body {
    background-color: transparent;
    color: var(--bs-white);
}

/* Content area backgrounds */
.bg-light {
    background-color: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

.bg-white {
    background-color: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

/* Text colors for dark theme */
h1, h2, h3, h4, h5, h6 {
    color: var(--bs-primary) !important;
}

p, .text-muted {
    color: var(--bs-white) !important;
}

/* Form elements dark styling */
.form-control {
    background-color: var(--bs-dark) !important;
    border: 1px solid var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.form-control:focus {
    background-color: var(--bs-dark) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.form-select {
    background-color: var(--bs-dark) !important;
    border: 1px solid var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.form-label {
    color: var(--bs-white) !important;
}

/* Table dark styling */
.table {
    background-color: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

.table th {
    background-color: var(--bs-secondary) !important;
    color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.table td {
    border-color: rgba(255, 214, 0, 0.3) !important;
}

/* Modal dark styling */
.modal-content {
    background-color: var(--bs-secondary) !important;
    border: 2px solid var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.modal-header {
    border-bottom: 1px solid var(--bs-primary) !important;
}

.modal-footer {
    border-top: 1px solid var(--bs-primary) !important;
}

/* Alert dark styling */
.alert {
    background-color: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    border: 1px solid var(--bs-primary) !important;
}

/* Breadcrumb dark styling */
.breadcrumb {
    background-color: var(--bs-dark) !important;
}

.breadcrumb-item a {
    color: var(--bs-primary) !important;
}

/* Pagination dark styling */
.page-link {
    background-color: var(--bs-dark) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.page-link:hover {
    background-color: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}

.page-item.active .page-link {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}

/* List group dark styling */
.list-group-item {
    background-color: var(--bs-dark) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.list-group-item:hover {
    background-color: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}

/* Accordion dark styling */
.accordion-item {
    background-color: var(--bs-dark) !important;
    border-color: var(--bs-primary) !important;
}

.accordion-button {
    background-color: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}

.accordion-body {
    background-color: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

/* Offcanvas dark styling */
.offcanvas {
    background-color: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/* Toast dark styling */
.toast {
    background-color: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    border: 1px solid var(--bs-primary) !important;
}

.toast-header {
    background-color: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/* Tooltip and Popover dark styling */
.tooltip-inner {
    background-color: var(--bs-secondary) !important;
    color: var(--bs-primary) !important;
}

.popover {
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-primary) !important;
}

.popover-body {
    color: var(--bs-white) !important;
}

.popover-header {
    background-color: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}

/* Spinner dark styling */
.spinner-border {
    color: var(--bs-primary) !important;
}

/* Progress bar dark styling */
.progress {
    background-color: var(--bs-dark) !important;
}

.progress-bar {
    background-color: var(--bs-primary) !important;
}

/* Badge dark styling */
.badge {
    background-color: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}

/* Override any remaining light backgrounds */
.bg-transparent {
    background-color: transparent !important;
}

/* Ensure text readability */
.text-dark {
    color: var(--bs-white) !important;
}

.text-body {
    color: var(--bs-white) !important;
}

/* Special sections that need dark background */
.hero-section,
.about-section,
.services-section,
.pricing-section,
.team-section,
.testimonial-section,
.contact-section {
    background-color: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/* Ensure content areas maintain dark theme */
.content-area {
    background-color: var(--bs-secondary) !important;
    min-height: 100vh;
}
/*** Dark Background Implementation End ***/

/* Updated Yellow & Black Theme */
:root {
    --primary-yellow: #FFD600;
    --deep-black: #000000;
    --charcoal-gray: #1C1C1C;
    --pure-white: #FFFFFF;
    --body-text: #333333;
    --headings: #000000;
    --muted-text: #777777;
    --success-green: #28a745;
    --danger-red: #dc3545;
    --info-blue: #17a2b8;
    --gray-100: #f8f9fa;
    --gray-300: #dee2e6;
    --gray-500: #adb5bd;
    --gray-700: #495057;
    --gray-900: #212529;
}

/* Header & Navigation */
.navbar {
    background-color: var(--deep-black) !important;
    border-bottom: 2px solid var(--primary-yellow);
}

.navbar .navbar-nav .nav-link {
    color: var(--pure-white) !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary-yellow) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--deep-black);
}

.btn-primary:hover {
    background-color: var(--deep-black);
    color: var(--primary-yellow);
}

/* Footer */
.footer {
    background-color: var(--deep-black);
    color: var(--pure-white);
}

.footer a {
    color: var(--primary-yellow);
}

.footer a:hover {
    color: var(--pure-white);
}

/* Option 1: Targeting links within the navigation container */
.container-fluid.bg-light .container.px-0 a {
  background-color: rgb(51, 51, 51)!important; /* Dark gray color for better contrast */
}

/* Option 2: Targeting common text elements directly within the navigation container */
/* Use this if your navigation text is not exclusively in anchor tags */
.container-fluid.bg-light .container.px-0 > *:not(script, style) {
  background-color: rgb(51, 51, 51)!important; /* Dark gray color for better contrast */
}