/********** 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: 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);
}

.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;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 42px;
    padding: 24px 0;
    color: var(--bs-light);
    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-yellow);
}

.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;
        color: var(--bs-light);
    }

    .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: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .7);
    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: 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 {
        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;
    }
}

@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;
}


/*** 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;
}

@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-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: #dbdbdb;
}

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

.service .service-item img {
    margin-top: -45px;
    /* padding-left: 45px; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.service .service-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

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

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

.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-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.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);
    }
}

@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-light);
    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-yellow);
    margin-right: 10px;
}

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

.copyright {
    background: #222222;
}

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

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




/* new */
.hover-card-for-about-page {
    transition: transform 0.3s, box-shadow 0.3s;
}

.hover-card-for-about-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

.section-title-for-about-page {
    font-weight: 700;
    font-size: 2rem;
    color: #32729c;
}

.icon-circle-for-about-page {
    width: 50px;
    height: 50px;
    background-color: #32729c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.overview-section-about-page-table {
    background-color: #ffffff;
    padding: 60px 20px;
}

.overview-title-about-page-table {
    color: #000000;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
}

.table-hover-about-page-table tbody tr:hover {
    background-color: #32729c;
    transition: background-color 0.3s;
    color: #fff;
}

.table td, .table th {
    vertical-align: middle;
}

.table thead {
    background-color: #32729c;
    color: #fff;
}

.card-home-page-product {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-home-page-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-text-home-page-product {
    font-style: italic;
}

.card-home-page-services {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-home-page-services:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-title-home-page-services {
    font-weight: bold;
    font-size: 1.2rem;
}

.card-text-home-page-services {
    font-size: 0.95rem;
}

.icon-home-page-services {
    font-size: 2rem;
    color: #32729c;
    margin-bottom: 10px;
}

.card-home-page-infrastructure {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card-home-page-infrastructure:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.icon-home-page-infrastructure {
    font-size: 2rem;
    color: #32729c;
    margin-bottom: 10px;
}

.card-title-home-page-infrastructure {
    font-weight: 600;
    font-size: 1.1rem;
}

.section-description-home-page-infrastructure {
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.card-home-page-features {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card-home-page-features:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.icon-home-page-features {
    font-size: 1.8rem;
    color: #32729c;
    margin-right: 10px;
}

.feature-text-home-page-features {
    font-size: 1rem;
    font-weight: 500;
}

.section-description-home-page-features {
    font-size: 1rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.card-home-page-advantages {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}

.card-home-page-advantages:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.1);
}

.icon-home-page-advantages {
    font-size: 2rem;
    color: #32729c;
    margin-bottom: 12px;
}

.card-title-home-page-advantages {
    font-size: 1.2rem;
    font-weight: 600;
}

.card-text-home-page-advantages {
    font-size: 1rem;
    color: #444;
}

.feature-card-home-page-features {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-card-home-page-features:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* new */


/* product pages  */
/* first page  */

.section-title-product-page-first {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title-product-page-first h2 {
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-size: 2.2rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title-product-page-first h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title-product-page-first p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0.8rem auto 0;
}

.product-card-product-page-first {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: row;
    border: none;
    position: relative;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.product-card-product-page-first:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-card-product-page-first::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-product-page-first:hover::before {
    opacity: 1;
}

.product-img-container-product-page-first {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-card-product-page-first img {
    width: 100%;
    height: 100%;
    padding: 24px;
    object-fit: contain;
    transition: transform 0.6s ease, filter 0.4s ease;
    /* filter: brightness(0.95); */
}

.product-card-product-page-first:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.product-badge-product-page-first {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent), #f97316);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-details-product-page-first {
    padding: 2rem 2rem 0rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: white;
}

.product-title-product-page-first {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}

.product-title-product-page-first:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    bottom: 0;
    left: 0;
    border-radius: 3px;
}

.product-specs-product-page-first {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-spec-product-page-first {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 0px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(100, 116, 139, 0.1);
}

.product-spec-product-page-first:last-child {
    border-bottom: none;
}

.product-spec-product-page-first:hover {
    transform: translateX(5px);
    color: var(--dark);
}

.product-spec-product-page-first strong {
    color: var(--dark);
    min-width: 110px;
    display: inline-block;
    font-weight: 600;
}

.product-spec-product-page-first i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
    background: rgba(37, 99, 235, 0.1);
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-spec-product-page-first:hover i {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.product-actions-product-page-first {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-product-page-first {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
}

.price-product-page-first:before {
    content: 'Starting at';
    position: absolute;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray);
    top: -14px;
    left: 0;
}

.btn-enquire-product-page-first {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-enquire-product-page-first:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
}

.btn-enquire-product-page-first i {
    transition: transform 0.3s ease;
}

.btn-enquire:hover i {
    transform: translateX(3px);
}

/* Floating animation for cards */
@keyframes float-p {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.product-card {
    animation: float-p 6s ease-in-out infinite;
}

.product-card-product-page-first:nth-child(2) {
    animation-delay: 0.5s;
}

.product-card-product-page-first:nth-child(3) {
    animation-delay: 1s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-img-container-product-page-first {
        height: 200px;
    }

    .product-details-product-page-first {
        padding: 1.5rem;
    }

    .product-title-product-page-first {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .section-title-product-page-first h2 {
        font-size: 1.8rem;
    }

    .product-card-product-page-first {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* first page  */
/* product pages  */

/* profile */


.profile-container-pc {
    background: white;
    width: 75%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.profile-header-pc {
    background-color: #32729c;
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    font-size: 24px;
    font-weight: bold;
    align-items: center;
    gap: 20px;
}

.profile-name-img-pc {
    margin-top: 40px;
}

.profile-name-img-pc img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #000000;
    margin-bottom: 16px;
}

.profile-name-img-pc h2 {
    color: #32729c;
}

.profile-content-pc {
    padding: 20px;
    text-align: left;
    flex: 1;
}

.profile-content-pc p {
    margin: 10px 0;
}




/* profile */
.card-img-top-mannual {
    /* width: 100%; */
    height: 300px;
    object-fit: contain;
}

/* Side Funnel Styles */
.side-funnel {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.funnel-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.funnel-button.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.funnel-button.call {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.funnel-button.email {
    background: linear-gradient(135deg, #ff6a00 0%, #ff3c3c 100%);
}

.funnel-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.funnel-button .tooltip {
    position: absolute;
    left: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.funnel-button .tooltip:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.funnel-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .side-funnel {
        bottom: 15px;
        left: 15px;
    }

    .funnel-button {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .side-funnel {
        bottom: 10px;
        left: 10px;
    }

    .funnel-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .funnel-button .tooltip {
        right: 60px;
        font-size: 12px;
        padding: 6px 10px;
    }
}