/********** Template CSS **********/
:root {
    --primary: #F87216; /* Changed from blue (#015FC9) to orange */
    --secondary: #0DD3F1;
    --light: #F6F7FC;
    --dark: #15233C;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Spinner ***/
#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;
}

/*** Button ***/
.btn {
    transition: .5s;
    background: transparent; /* Transparent background for normal state */
    border-color: var(--primary); /* Orange border */
    color: white /* Orange text */
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF; /* White text on hover */
    background: var(--primary); /* Full orange background on hover */
    border-color: var(--primary);
}

.btn.btn-primary:hover {
    background: var(--primary); /* Maintain orange on hover */
    border-color: var(--primary);
}

.btn.btn-secondary:hover {
    background: var(--primary); /* Orange on hover */
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    background-color: #2A2A2A; /* Darker navbar background */
}

.navbar {
    background-color: #2A2A2A; /* Darker navbar background */
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-menu-link {
    margin-left: 25px;
    padding: 8px 20px;
    color: #FFFFFF; /* White for nav links on dark background */
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    border-radius: 4px;
    outline: none;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.navbar .navbar-nav .nav-menu-link:hover,
.navbar .navbar-nav .nav-menu-link.active {
    color: var(--primary); /* Orange on hover/active */
    opacity: 0.8;
}

.navbar .navbar-nav .nav-menu-link:focus {
    box-shadow: 0 0 0 2px var(--primary); /* Orange focus ring */
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    color: #FFFFFF; /* White dropdown arrow */
    transition: transform 0.25s ease;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}

.navbar .dropdown-menu {
    background-color: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar .dropdown-menu .dropdown-item {
    padding: 8px 20px;
    color: #000000; /* Black dropdown items */
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #F6F7FC; /* Light background on hover */
    color: var(--primary); /* Orange text on hover */
}

.blink {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.5;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
        background-color: #2A2A2A; /* Darker background for mobile nav */
        padding: 10px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
        background-color: #FFFFFF;
    }

    .navbar .navbar-nav .nav-menu-link {
        margin-left: 0;
        padding: 10px 15px;
        color: #FFFFFF; /* White links in mobile nav */
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 10px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease, top 0.5s ease;
        top: 150%;
        right: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary); /* Orange */
    border: 15px solid var(--primary);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header h1 {
    color: var(--primary); /* Orange for main headings */
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary); /* Orange */
}

/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgba(248, 114, 22, .9), rgba(248, 114, 22, .9)), url(../img/carousel-1.jpg) center right no-repeat; /* Orange gradient */
    background-size: cover;
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-2.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item h5 {
    color: #000000; /* Black for service item headings */
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary); /* Orange */
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary); /* Orange */
    border-color: var(--primary);
}

/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(248, 114, 22, .9), rgba(248, 114, 22, .9)), url(../img/carousel-1.jpg) center center no-repeat; /* Orange gradient */
    background-size: cover;
}

.appointment h1 {
    color: #FFFFFF; /* White for appointment heading */
}

/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary); /* Orange */
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary); /* Orange */
    border-color: var(--primary);
}

/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary); /* Orange */
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary); /* Orange */
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 {
    color: #FFFFFF; /* White for footer headings */
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid #A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    background-color: #0B0A0B; /* Match topbar color */
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF; /* White text for links on hover */
}


 .timeline {
        position: relative;
        padding: 20px 0;
    }
    .timeline::before {
        content: '';
        position: absolute;
        width: 6px;
        background-color: var(--primary);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
    }
    .timeline-item {
        padding: 10px 40px;
        position: relative;
        background-color: inherit;
        width: 50%;
    }
    .timeline-item::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 25px;
        right: -12.5px;
        background-color: #fff;
        border: 4px solid var(--primary);
        top: 15px;
        border-radius: 50%;
        z-index: 1;
    }
    .timeline-item.left {
        left: 0;
    }
    .timeline-item.right {
        left: 50%;
    }
    .timeline-item.right::after {
        left: -12.5px;
    }
    .timeline-content {
        padding: 20px 30px;
        background-color: var(--light); /* #F6F7FC */
        position: relative;
        border-radius: 6px;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
    .timeline-content svg {
        stroke: var(--primary);
    }
    @media (max-width: 768px) {
        .timeline::before {
            left: 30px;
        }
        .timeline-item {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }
        .timeline-item::after {
            left: 15px;
        }
        .timeline-item.right {
            left: 0%;
        }
    }


    /* Navbar Button Styles */
.navbar .btn-primary.blink {
    animation: blinker 1.5s linear infinite;
    background-color: transparent;
    border: 2px solid var(--primary);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .btn-primary.blink:hover {
    background-color: var(--primary);
    color: white;
}

/* Mobile view adjustments */
@media (max-width: 991.98px) {
    .navbar .btn-primary.blink {
        display: inline-block;
        width: auto;
        margin: 5px 0;
    }
    
    .navbar-collapse {
        padding-bottom: 15px;
    }
}

/* Blinking animation */
@keyframes blinker {
    50% {
        opacity: 0.7;
    }
}