/********** Template CSS **********/

/* Smooth scrolling for in-page anchors */
html {
    scroll-behavior: smooth;
}

/* Prevent sticky header from overlapping anchored sections */
#service {
    scroll-margin-top: 90px;
    /* adjust if header height changes */
}




/* Timeline Styles */
.timeline-wrapper {
    position: relative;
    padding: 60px 0;
    overflow-x: hidden;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #e9ecef;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item {
    display: inline-block;
    width: 20%;
    padding: 0 15px;
    position: relative;
    vertical-align: top;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.timeline-content::before,
.timeline-content::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary);
    transform-origin: left center;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    top: -30px;
    left: 50%;
    transform: rotate(-45deg);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    bottom: -30px;
    left: 50%;
    transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content::before {
    bottom: -30px;
    left: 50%;
    transform: rotate(-45deg);
}

.timeline-item:nth-child(even) .timeline-content::after {
    top: -30px;
    left: 50%;
    transform: rotate(45deg);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    color: #711A00;
    align-items: center;
    justify-content: center;
    margin: -50px auto 15px;
    position: relative;
    z-index: 1;
}



.timeline-content h5 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 1rem;
}

.timeline-content p {
    margin: 0;
    color: var(--body);
    font-size: 0.875rem;
}

@media (max-width: 991px) {
    .timeline-wrapper {
        padding: 40px 0;
    }

    .timeline-item {
        width: 33.333%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .timeline-item {
        width: 100%;
    }
}

.back-to-top {
    top:70px;
    position: absolute;
    background-color: #711A00;
    color: white;
    display: none;
    right: 30px;
    height: 50px;
    bottom: 30px;
    z-index: 99;
}

.go-to-bottom {
    position: fixed;
    right: 30px;
    bottom: 80px;
    color: white;
    z-index: 9999;
    background-color: #711A00;
    display: none; /* hidden by default; JS will show when appropriate */
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** 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;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
    border-radius: 30px;
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    /* top: -100px; */
    position: absolute;

    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .brand-logo {
    height: 48px;
    width: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .navbar .brand-logo {
        height: 42px;
    }
    .canara-bg{
    background-image: none !important;
    }
}
@media (max-width: 468px) {
    .navbar .brand-logo {
        height: 25px;
    }
}

/* Three-column navbar layout: logo | centered nav | CTA */
.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

/* Navbar container width overrides */
.navbar-container {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (min-width: 1600px) {
    .navbar-container {
        max-width: 1550px;
    }
}

.navbar .navbar-nav {
    justify-content: center;
}

.nav-cta {
    display: flex;
    align-items: center;
}




/* Ensure the toggler still sits on the right for small screens */
@media (max-width: 991.98px) {
    .navbar {
        display: flex;
        flex-wrap: wrap;
    }

    .nav-cta {
        display: none;
        /* hide CTA on smaller screens; keep inside collapsed menu if needed */
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel .carousel-item {
    position: relative;
    height: 100vh;
    /* Make each slide fill the viewport height */
}

.carousel .carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* Ensure all images fill without distortion */
}

.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgb(0 0 0 / 44%);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: -100px;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        height: 75vh;
        /* Shorter on smaller screens to fit content */
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }

    #header-carousel {
        display: flex;
        flex-direction: column;
    }

    .carousel .carousel-indicators  {
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 0;
        order: 2;
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }

    .carousel-inner {
        order: 1;
    }

    .carousel-indicators button {
        flex: 0 1 auto;
        margin: 0;
        position: static;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        height: 60vh;
        min-height: 420px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 5rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

.canara-bg {
    background-image: url(../img/bg/canarabg.jpg);
    background-size: auto 60%;
    background-repeat: no-repeat;
    background-position: right center;
    margin-top: 3rem;
    background-attachment: fixed;
}

/* Statistics Section */
.stats-item {
    background: transparent;
    transition: all 0.3s ease;
    border: none;
}

.stats-item:hover {
    transform: translateY(-5px);
}

.stats-icon {
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: var(--bs-primary) !important;
}

.stats-item:hover .stats-icon i {
    transform: scale(1.1);
    color: var(--bs-primary) !important;
}

.stats-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    text-transform: none;
}

.stats-item p {
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .stats-icon i {
        font-size: 2.5rem !important;
    }

    .stats-item {
        padding: 2rem 1rem !important;
    }
}

@media (max-width: 576px) {
    .stats-icon i {
        font-size: 2rem !important;
    }
}


@keyframes animateUpDown {
    0% {
        top: -25px;
    }

    50% {
        top: -45px;
    }

    100% {
        top: -25px;
    }
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/carousel-1.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}
.feature-caption{
    padding: 3rem;
}
.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) left center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
    .feature-caption{
    padding: 2rem;
}
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    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: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}

/* Product Page Specific Styles */
.products-page {
    padding: 80px 0 60px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--default-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Search Bar */
.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-right: 50px;
    background-color: var(--surface-color);
    color: var(--default-color);
}

.search-container input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(156, 107, 48, 0.2);
}

.search-container i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Product Card */
.product-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--floating-shadow);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-description {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-details {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-details:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.btn-details i {
    margin-right: 6px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.product-rating i {
    color: var(--highlight-color);
    font-size: 1rem;
    margin-right: 2px;
}

.product-rating span {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-left: 5px;
}

/* Filter Chips */
.filter-chips-container {
    margin: 0 auto 30px;
    max-width: 100%;
    overflow-x: auto;
    padding: 5px 0;
    display: flex;
    justify-content: center;
}

.filter-chips {
    display: flex;
    gap: 10px;
    padding: 5px 15px;
    flex-wrap: nowrap;
    min-width: max-content;
    margin: 0 auto;
}

.filter-chip {
    background-color: var(--surface-color);
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--default-color);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-chip:hover {
    background-color: color-mix(in srgb, var(--primary-color), transparent 90%);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-chip.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* No Results Message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.no-results i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.no-results h3 {
    color: var(--heading-color);
    margin-bottom: 10px;
}

.no-results p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

}

@media (max-width: 576px) {
    .products-page {
        padding: 60px 0 40px;
    }

    .page-header {
        margin-bottom: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
    .feature-caption{
    padding: 2rem;
}
}


/*** Template CSS ****/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 0rem;
}

.pb-6 {
    padding-bottom: 3rem;
}


/* 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;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    border-radius: 50%;
    background-color: white;
    box-shadow: 1px 1px 4px 0px gray ;
    justify-content: center;
    font-weight: normal;
}

/* Navbar */
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/* Header */
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.418);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }

    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
    .carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    flex-direction: row;
    margin: 0;
}
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}




/* Features */
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/carousel-1.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/* Service */
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/* Appoinment */
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) left center no-repeat;
    background-size: cover;
}


/* Team */
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/* Testimonial */
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/* Contact */
        /* CSS Variables for Theme Colors */
        :root {
            --canara-primary: #711A00;
           
            --canara-primary-dark: #5A1400;
            --canara-error: #8B4B3C;
            --canara-error-light: #A56B5C;
            --canara-error-dark: #6B2F2F;
            --canara-gold: #D4A574;
            --canara-gold-light: #E4C094;
            --canara-gold-dark: #B8925A;
        }

        /* Lottie Alert Container */
        #lottieAlertContainer {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
            max-width: 400px;
            pointer-events: none;
        }

        /* Base Lottie Alert */
        .lottie-alert {
            background: rgba(255, 255, 255, 1);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(113, 26, 0, 0.15);
            margin-bottom: 16px;
            opacity: 0;
            transform: translateX(100%) scale(0.8);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
            border: 1px solid rgba(113, 26, 0, 0.1);
            pointer-events: auto;
            position: relative;
        }

        .lottie-alert.show {
            opacity: 1;
            transform: translateX(0) scale(1);
        }

        .lottie-alert.removing {
            animation: lottieSlideOut 0.4s ease-in forwards;
        }

        @keyframes lottieSlideOut {
            to {
                opacity: 0;
                transform: translateX(100%) scale(0.7);
            }
        }

        /* Alert Content */
        .lottie-alert-content {
            display: flex;
            align-items: center;
            padding: 20px;
            gap: 16px;
        }

        /* Lottie Animation Container */
        .lottie-animation {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
        }

        /* Alert Text */
        .lottie-alert-text {
            flex: 1;
        }

        .lottie-alert-title {
            font-weight: 600;
            font-size: 16px;
            margin: 0 0 4px 0;
            color: var(--canara-primary);
        }

        .lottie-alert-message {
            font-size: 14px;
            margin: 0;
            font-weight: 800;
            color: var(--canara-primary);
            line-height: 1.4;
        }

        /* Success Alert - Using Canara Theme Success Colors */
        .lottie-alert.success {
            background: white;
            box-shadow: 0 8px 32px rgba(74, 124, 92, 0.2);
        }

        .lottie-alert.success .lottie-alert-title {
            color: var(--canara-success-dark);
        }

        .lottie-alert.success .lottie-alert-message {
            color: var(--canara-primary);
        }

        /* Error Alert - Using Canara Theme Error Colors */
        .lottie-alert.error {
            border-left: 4px solid var(--canara-error);
            background: linear-gradient(135deg, 
                rgba(139, 75, 60, 0.1) 0%, 
                rgba(255, 255, 255, 0.95) 50%, 
                rgba(113, 26, 0, 0.05) 100%);
            box-shadow: 0 8px 32px rgba(139, 75, 60, 0.2);
        }

        .lottie-alert.error .lottie-alert-title {
            color: var(--canara-error-dark);
        }

        .lottie-alert.error .lottie-alert-message {
            color: var(--canara-error);
        }

        /* Close Button */
        .lottie-alert-close {
            position: absolute;
            top: 8px;
            right: 8px;
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            padding: 4px;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            color: var(--canara-primary);
        }

        .lottie-alert-close:hover {
            background: rgba(113, 26, 0, 0.1);
            color: var(--canara-primary-dark);
            transform: scale(1.1);
        }

        /* Progress Bar - Theme Colors */
        .lottie-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: rgba(113, 26, 0, 0.1);
            width: 100%;
            overflow: hidden;
        }

        .lottie-progress-bar {
            height: 100%;
            width: 100%;
            transform: translateX(-100%);
            animation: lottieProgress 8s linear forwards;
        }

        .success .lottie-progress-bar {
            background: linear-gradient(90deg, var(--canara-primary), var(--canara-primary));
        }

        .error .lottie-progress-bar {
            background: linear-gradient(90deg, var(--canara-error), var(--canara-error-dark));
        }

        @keyframes lottieProgress {
            to {
                transform: translateX(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 480px) {
            #lottieAlertContainer {
                right: 10px;
                left: 10px;
                max-width: none;
                top: 10px;
            }
            
            .lottie-alert {
                transform: translateY(-100%) scale(0.8);
            }
            
            .lottie-alert.show {
                transform: translateY(0) scale(1);
            }
            
            .lottie-alert-content {
                padding: 16px;
            }
            
            .lottie-animation {
                width: 50px;
                height: 50px;
            }
        }

        /* Hover Effects with Theme Colors */
        .lottie-alert:hover {
            transform: translateX(-8px) scale(1.02);
            box-shadow: 0 12px 40px rgba(113, 26, 0, 0.2);
        }

        .lottie-alert.show:hover {
            transform: translateX(-8px) scale(1.02);
        }

        .lottie-alert.success:hover {
            box-shadow: 0 12px 40px rgba(74, 124, 92, 0.25);
        }

        .lottie-alert.error:hover {
            box-shadow: 0 12px 40px rgba(139, 75, 60, 0.25);
        }

        /* Pulse Effect for New Alerts */
        .lottie-alert.new {
            animation: lottieNewAlert 0.6s ease-out;
        }

        @keyframes lottieNewAlert {
            0% {
                transform: translateX(100%) scale(0.8);
            }
            50% {
                transform: translateX(-10px) scale(1.05);
                box-shadow: 0 15px 50px rgba(113, 26, 0, 0.3);
            }
            100% {
                transform: translateX(0) scale(1);
            }
        }


        /* Custom scrollbar for alerts if needed */
        .lottie-alert::-webkit-scrollbar {
            width: 4px;
        }

        .lottie-alert::-webkit-scrollbar-track {
            background: rgba(113, 26, 0, 0.1);
        }

        .lottie-alert::-webkit-scrollbar-thumb {
            background: var(--canara-primary);
            border-radius: 2px;
        }
        
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/* Appoinment */
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


/* Footer */
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    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: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}




















/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/


.accordion-button {
font-size: 0.8rem;
} 








/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background: url('../img/bg/kitchenply.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-badge .badge {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-content-left h1 {
    line-height: 1.2;
    font-weight: 800;
}

.contact-content-left .feature-item {
    margin-bottom: 0.75rem;
}

.contact-content-left .feature-item i {
    font-size: 1.1rem;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form-container {
    border: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    font-weight: 700;
    color: var(--bs-dark);
}

.contact-form-container .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contact-form-container .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
    background-color: #fff;
}

.contact-form-container .btn-primary {
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-secondary));
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-form-container .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.3);
}

.contact-info-quick .bi {
    font-size: 1.1rem;
}

.btn-outline-warning {
    border-width: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    background-color: var(--bs-white);
    border-color: var(--bs-warning);
    color: var(--bs-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--bs-warning-rgb), 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-content-left h1 {
        font-size: 2.5rem;
    }

    .contact-form-container {
        padding: 2rem !important;
        margin-top: 2rem;
    }
}


















/* Enhanced Mobile Carousel Caption Styles */
@media (max-width: 576px) {
    .carousel .carousel-caption {
        padding: 1rem !important;
        padding-left: 1rem !important;
        background: rgba(0, 0, 0, 0.7) !important;
        border-radius: 10px;
        margin: 1rem;
        bottom: 20px !important;
        top: auto !important;
        left: 10px !important;
        right: 10px !important;
    }

    .carousel .carousel-caption h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .carousel .carousel-caption h3 {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
        font-weight: 400 !important;
    }

    .carousel .carousel-caption .btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
        margin-top: 0.5rem !important;
    }

    .carousel .carousel-item {
        height: 50vh !important;
        min-height: 350px !important;
    }
}

@media (max-width: 480px) {
    .carousel .carousel-caption {
        padding: 0.8rem !important;
        margin: 0.5rem !important;
        bottom: 15px !important;
        left: 5px !important;
        right: 5px !important;
    }

    .carousel .carousel-caption h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.3rem !important;
    }

    .carousel .carousel-caption h3 {
        font-size: 0.8rem !important;
        margin-bottom: 0.8rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .carousel .carousel-caption .btn {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }

    .carousel .carousel-item {
        height: 45vh !important;
        min-height: 300px !important;
    }
}

@media (max-width: 375px) {
    .carousel .carousel-caption h1 {
        font-size: 1.3rem !important;
    }

    .carousel .carousel-caption h3 {
        font-size: 0.75rem !important;
        -webkit-line-clamp: 1 !important;
        line-clamp: 1 !important;
    }

    .carousel .carousel-caption .btn {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }
}