/*** Color Variables - HOCA Brand Colors ***/
:root {
    --bs-primary: #0d47a1;      /* Dark Blue from logo */
    --bs-secondary: #da251d;    /* Red from HOCA */
    --bs-light: #f8f9fa;
    --bs-dark: #1a1a2e;
    --bs-white: #ffffff;
    --bs-body: #6c757d;
    --bs-primary-rgb: 13, 71, 161;
    --bs-secondary-rgb: 218, 37, 29;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#spinner .spinner-border {
    color: var(--bs-primary) !important;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
    background: var(--bs-primary);
    color: var(--bs-white);
    border: none;
}

.back-to-top:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
    transform: translateY(-5px);
}

/*** 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-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    background: var(--bs-primary);
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}

.btn.btn-outline-primary {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

.btn.btn-outline-primary:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    border-color: var(--bs-primary);
}

.btn.btn-success {
    background: #25D366;
    border: none;
}

.btn.btn-success:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/*** Topbar Start ***/ 
.topbar {
    background: var(--bs-light) !important;
    border-bottom: 2px solid var(--bs-primary);
}

.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

.topbar .text-primary {
    color: var(--bs-primary) !important;
}

.topbar .border-primary {
    border-color: var(--bs-primary) !important;
}

.topbar a.text-muted:hover {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
    border-bottom: 3px solid var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
    color: var(--bs-dark);
    font-weight: 500;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
    font-weight: 600;
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.dropdown .dropdown-menu .dropdown-item {
    color: var(--bs-dark);
    transition: 0.3s;
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}

.navbar .navbar-nav .nav-link.btn-primary {
    background: var(--bs-primary);
    color: var(--bs-white) !important;
    padding: 10px 25px !important;
    border-radius: 50px;
}

.navbar .navbar-nav .nav-link.btn-primary:hover {
    background: var(--bs-secondary);
    color: var(--bs-white) !important;
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-white);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
}

.header-carousel .header-carousel-item.bg-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0a3d8a 100%) !important;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.95) 0%, rgba(218, 37, 29, 0.8) 100%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 80px 0;
    transition: 0.5s;
}

.bg-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bg-breadcrumb.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.bg-breadcrumb .container {
    position: relative;
    z-index: 1;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a:hover {
    color: var(--bs-white);
}

.bg-breadcrumb .breadcrumb .breadcrumb-item.active {
    color: #ffd700;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}
/*** Single Page Hero Header End ***/

/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.feature .feature-item:hover {
    background: var(--bs-primary);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.2);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-secondary);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon i {
    position: relative;
    z-index: 2;
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Feature End ***/

/*** About Start ***/
.about .about-item-content .text-primary {
    color: var(--bs-primary) !important;
}

.about .about-item-content .display-4 {
    color: var(--bs-dark);
}

.about .about-item-content .fa-check.text-primary {
    color: var(--bs-primary) !important;
}

.about .about-item-content .btn-primary {
    background: var(--bs-primary);
    border: none;
}

.about .about-item-content .btn-primary:hover {
    background: var(--bs-secondary);
}

.about .counter-item .text-primary {
    color: var(--bs-primary) !important;
}

.about .counter-item h4.text-dark {
    color: var(--bs-dark) !important;
}
/*** About End ***/

/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.15);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(13, 71, 161, 0.2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-secondary);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-secondary);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: var(--bs-primary);
    font-size: 18px;
    font-weight: 500;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
    background: var(--bs-light);
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
    filter: none;
}

.faq-section .accordion .accordion-item .accordion-body {
    background: var(--bs-white);
    border-top: 2px solid var(--bs-primary);
}
/*** FAQs End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.15);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(13, 71, 161, 0.2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
    font-weight: 500;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-primary);
}

.blog .blog-item .blog-content a.btn:hover {
    color: var(--bs-secondary);
}

.blog .blog-item .blog-content .h4 {
    color: var(--bs-dark);
    transition: 0.3s;
}

.blog .blog-item .blog-content .h4:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(13, 71, 161, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-secondary);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-item {
    transition: 0.5s;
}

.testimonial .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(13, 71, 161, 0.1);
}

.testimonial .text-primary {
    color: var(--bs-primary) !important;
}

.testimonial .stars .fa-star {
    color: #ffc107;
}

.testimonial .stars .fa-star.text-body {
    color: #dee2e6 !important;
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(13, 71, 161, 0.1);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}
    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}
    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}
    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

.contact .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 71, 161, 0.15);
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
    border-top: 5px solid var(--bs-primary);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.5s;
    text-decoration: none;
}

.footer .footer-item p {
    line-height: 35px;
    color: rgba(255, 255, 255, 0.7);
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
    padding-left: 5px;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
    transform: translateY(-3px);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}

.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(13, 71, 161, 0.7);
}

.footer .footer-item .footer-instagram .footer-search-icon a {
    color: var(--bs-white);
    font-size: 20px;
}

.footer .footer-item .btn-xl-square {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.footer .footer-item .btn-xl-square:hover {
    background: var(--bs-secondary);
    transform: translateY(-3px);
}

.footer .footer-item h4.text-white {
    color: var(--bs-white) !important;
}

.footer .footer-item .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}
/*** Footer End ***/

/*** Copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright .text-body {
    color: rgba(255, 255, 255, 0.7) !important;
}

.copyright .border-bottom {
    border-bottom: 1px solid var(--bs-primary) !important;
}

.copyright .border-bottom:hover {
    color: var(--bs-primary) !important;
}

.copyright a.text-white {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: 0.3s;
}

.copyright a.text-white:hover {
    color: var(--bs-primary) !important;
}

.copyright .text-light {
    color: var(--bs-primary) !important;
}
/*** Copyright End ***/

/*** WhatsApp Float Button ***/
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .tooltip-text {
    visibility: hidden;
    width: 140px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    right: 70px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9) 0%, rgba(218, 37, 29, 0.7) 100%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
    color: #ffffff;
}

.page-header .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Service Detail */
.service-description h2,
.service-description h3,
.service-description h4 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--bs-dark);
}

.service-description ul,
.service-description ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-description ul li,
.service-description ol li {
    margin-bottom: 8px;
}

/* Privacy & Terms Content */
.privacy-content h2,
.terms-content h2 {
    color: var(--bs-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content h3,
.terms-content h3 {
    color: var(--bs-secondary);
    margin-top: 20px;
    margin-bottom: 12px;
}

.privacy-content ul,
.terms-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-content ul li,
.terms-content ul li {
    margin-bottom: 8px;
}

.privacy-content a,
.terms-content a {
    color: var(--bs-primary);
    text-decoration: none;
}

.privacy-content a:hover,
.terms-content a:hover {
    color: var(--bs-secondary);
    text-decoration: underline;
}

/* Booking Page Styles */
.booking-form .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 71, 161, 0.15);
}

.booking-form .form-label {
    font-weight: 500;
    color: var(--bs-dark);
}

/* Price Table Styles */
.price-table thead {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.price-table tbody tr:hover {
    background: rgba(13, 71, 161, 0.05);
}

.price-table .table-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

/* Alert Styles */
.alert-info {
    background: rgba(13, 71, 161, 0.1);
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

.alert-success {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    color: #1da851;
}

.alert-danger {
    background: rgba(218, 37, 29, 0.1);
    border-color: var(--bs-secondary);
    color: var(--bs-secondary);
}

/* HOCA Brand Colors Override */
.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.border-secondary {
    border-color: var(--bs-secondary) !important;
}

/* Breadcrumb Active Color */
.breadcrumb .breadcrumb-item.active {
    color: #ffd700 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bg-breadcrumb {
        padding: 50px 0;
    }
    
    .bg-breadcrumb .display-4 {
        font-size: 2.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}