@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100..900&display=swap');

.jost-regular {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400, 500, 600;
    /* Regular weight */
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    background-color: #fff;
    scroll-behavior: smooth;
    transition: all 0.5s ease 0s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    color: #202020;
}

p {
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    color: #202020;
}



/* Topbar */
.topbar {
    background-color: rgba(245, 245, 245, 1);
    font-size: 14px;
    padding: 10px 0;
}

.box-icon.round {
    border-radius: 50% !important;
}

.box-icon.w_28 {
    width: 28px;
    height: 28px;
}


.top-bar-right a {
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
}


.phone-icon {
    color: #28a745;
    animation: ring 1.5s infinite;
}

/* Ringing animation */
@keyframes ring {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(5deg);
    }

    60% {
        transform: rotate(-5deg);
    }

    70% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.top-bar-left a {
    padding-right: 10px;
    text-decoration: none;
    color: #202020;

}

/* Common Hover Animation */
.top-bar-left a svg {
    transition: transform 0.4s ease, color 0.4s ease;
}

.top-bar-left a:hover svg {
    transform: scale(1.3) rotate(10deg);
}

.top-bar-left a:hover .lucide-instagram {
    color: #E1306C;
    transition: 0.9s;
}

.top-bar-left a:hover:nth-child(1) {
    color: #E1306C;
}

/* Facebook */
.top-bar-left a:hover .lucide-facebook {
    color: #1877F2;
    transition: 0.9s;
}

.top-bar-left a:hover:nth-child(2) {
    color: #1877F2;
}

/* Twitter (X) */
.top-bar-left a:hover .lucide-twitter {
    color: #1DA1F2;
    transition: 0.9s;
}

.top-bar-left a:hover:nth-child(3) {
    color: #1DA1F2;
}

/* LinkedIn */
.top-bar-left a:hover .lucide-linkedin {
    color: #0077B5;
    transition: 0.9s;
}

.top-bar-left a:hover:nth-child(4) {
    color: #0077B5;
}

/* YouTube */
.top-bar-left a:hover .lucide-youtube {
    color: #FF0000;
    transition: 0.9s;
}

.top-bar-left a:hover:nth-child(5) {
    color: #FF0000;
}

/* Header */
.navbar-custom {
    background-color: #fff !important;
    padding: 20px 0px;
    /* border-bottom: 1px solid #ebebeb; */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #232323 !important;
    font-size: 13px;
    font-weight: 500;
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-transform: uppercase;

}

.btn-custom {
    background: linear-gradient(135deg, #4c4099, #a64ac9);
    padding: 12px 25px;
    color: #fff;
    border-radius: 50px;
    transition: all 0.5s ease;
    font-size: 13px;
    overflow: hidden;
    border: none;

    position: relative;
    z-index: 1;
}

/* Gradient shine effect */
.btn-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0));
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    transform: translateY(-3px) scale(1.05);
    /* lift + zoom */
    box-shadow: 0 8px 20px rgba(76, 64, 153, 0.4);
    color: #fff;
}

/* Existing desktop look (unchanged) */
.dropdown-panel {
    min-width: 200px;
    padding: 7px 18px;
    border: 1px solid #e9ecef;
    /* border-radius: 6px; */
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    font-size: 13px;
}

.dropdown-panel .dropdown-item {
    padding: 8px 0;
    margin: 2px 0;
    background: transparent !important;
    color: #1f1f1f;
    font-weight: 500;
    transition: transform .2s, color .2s
}

.dropdown-panel .dropdown-item:hover {
    transform: translateX(3px);
    color: #4c4099
}

.dropdown-submenu {
    position: relative
}

.dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 4px;
    border-radius: 6px;
    min-width: 220px;
    display: none
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block
}

.offcanvas-end {
    width: 280px !important;

}

/* Desktop: open on hover */
@media (min-width:992px) {
    .simple-dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0
    }
}

/* ---- Mobile fix: make submenu behave like accordion ---- */
@media (max-width:991.98px) {

    /* main panel full-width & flat */
    .dropdown-panel {
        min-width: unset;
        box-shadow: none;
        border-radius: 12px
    }

    /* put submenu below, not right */
    .dropdown-submenu .dropdown-menu {
        position: static;
        /* important */
        display: none;
        margin: 8px 0 0 0;
        padding-left: 0;
        box-shadow: none;
        border: 1px solid #f1f1f1;
    }

    .dropdown-submenu.open>.dropdown-menu {
        display: block
    }

    /* caret indicator on mobile */
    .dropdown-submenu>.dropdown-toggle {
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .dropdown-submenu>.dropdown-toggle::after {
        content: "▾";
        margin-left: auto;
        transition: transform .2s;
    }

    .dropdown-submenu.open>.dropdown-toggle::after {
        transform: rotate(180deg)
    }
}

/* rgba(33, 37, 41, .1); */

.navbar .nav-link.active,
.navbar .dropdown-item.active {
    color: #4c4099 !important;
    font-weight: 600;
}

/*--------------------*/
.contact_us_right {
    background-color: rgb(245 245 245 / 51%);
    padding: 45px 40px;
    border-radius: 12px;
}

.contact_us_right h3 {
    font-weight: bold;
}

.contact_us_right p {
    color: #525252 !important;
    margin-bottom: 35px;
}

.form-label {
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    /* letter-spacing: 1px; */
}

.f-custom {

    font-size: 14px;
    color: #202020;
    padding-left: 40px;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    border-radius: 12px;
    height: 50px;
    border: 1px solid #f0f5f7;
    background-color: #fff;
}

.textarea-control {
    font-size: 14px;
    color: #202020;
    padding: 15px 15px;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    border-radius: 12px;
    border: 1px solid #f0f5f7;
    background-color: #fff;
}

.f-custom:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);

    border-color: #4c4099 !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(175 207 255 / 25%);
}

.form-group-icons {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 44px;
    left: 21px;
    font-size: 18px;
    color: #7e7e7e;
}

.contact_us_left h2 {
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, #4c4099, #a64ac9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    display: inline-block;
    animation: blink 2.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.icon-circles {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9f0f9;
    /* halka blue bg */
    display: flex;
    align-items: center;
    justify-content: center;
}

::selection {
    background: #a64ac9;
    /* Selection background color */
    color: white;
    /* Text color when selected */
}

::-moz-selection {
    background: #a64ac9;
    /* Firefox ke liye */
    color: white;
}

/* Icon alignment + space so text doesn't overlap icon */
.form-group-icons {
    position: relative;
}

.form-group-icons .input-icon {
    position: absolute;
    right: 12px;
    bottom: 12px;
    pointer-events: none;
    color: #6c757d;
}

.form-control.f-custom,
.textarea-control {
    padding-right: 44px;
}

/* Error message styling (Bootstrap-like) */
.invalid-feedback {
    display: block;
    font-size: .875rem;
}

/* Optional: green border on valid */
.is-valid {

    font-size: 12px !important;
}

.is-invalid {

    font-size: 12px !important;

}

.invalid-feedback {
    font-size: 13px !important;
    font-family: "Jost", sans-serif !important;
}

.form-control.is-invalid {
    border-color: #fff !important;
}

.form-control.is-invalid:focus {
    box-shadow: none !important;
}

/*- Scroll to top -*/
.scrolltotop {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #4c4099, #a64ac9);
    color: #fff;
    padding: 11px 11px;
    border-radius: 50%;
    font-size: 14px;
    z-index: 1111;
    transition: all .5s ease;
    cursor: pointer;
}

/*- Product -*/
.product-card {
    border: 1px solid #E9E9E9;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-top: none !important;
    position: relative;
}

.image-container {
    overflow: hidden;
}

.image-container:hover .card-img {
    transform: scale(1.1);
}

card-img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
    transition: transform 0.3s ease-in-out;
}

/*- INDEX -*/
.cta-strip {
    background: #ffffff;
    padding: 24px 0;
}

.cta-box {
    background-color: rgba(245, 245, 245, 1);
    border-radius: 5px;
    padding: 30px 22px;
    box-shadow: rgba(245, 245, 245, 1);
}

.cta-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
}

.cta-icon i {
    font-size: 40px;
    line-height: 1;
    color: #4c4099;
    /* red icon */
}

.cta-title {
    margin: 0;
    font-weight: 700;
    letter-spacing: .2px;
    color: #4c4099;
    /* red heading */
}

.cta-title em {
    font-style: italic;
    color: #111;
    /* black 'to' like the screenshot */
}

.cta-sub {
    margin: 2px 0 0;
    color: #6b6b6b;
    font-weight: 500;
}

.btn-cta {
    background: #d71919;
    border: none;
    color: #fff;
    border-radius: 12px;
    padding: .8rem 1.6rem;
    box-shadow: 0 6px 14px rgba(215, 25, 25, .25);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn-cta:hover {
    transform: translateY(-1px);
    filter: brightness(.98);
    box-shadow: 0 10px 20px rgba(215, 25, 25, .28);
    color: #fff;
}

.service-card {
    background: #fff;
    border-radius: 5px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
    /* sabhi card same height honge */
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4c4099, #a64ac9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.service-icon i {
    font-size: 32px;
    color: #fff;
}

.service-title {
    color: #202020 !important;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: "Jost", sans-serif;
}

.service-text {
    color: #9e9e9e;
    font-size: 14px;
}

.shipping-copy {
    color: #fff;
}

.feature-card {
    border: 1px dashed #ccc;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    padding: 40px 20px;
    transition: all .3s ease;
    height: 100%;
    /* sabhi same height */
}

.feature-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4c4099, #a64ac9);
    /* red circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 36px;
    color: #fff;
}

.feature-title {

    font-size: 18px;
    margin: 0;
    color: #111;
    font-family: "Jost", sans-serif;
}

.video-hero {
    position: relative;

    border-bottom: 0;
    overflow: hidden;
}

.video-hero .bg {
    aspect-ratio: 16 / 6;
    /* height control, responsive */
    background: url('../../assets/images/video-img.webp') center/cover no-repeat;
    filter: brightness(.75);
}

.video-hero .play-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* so hover doesn’t block */
}

.play-btn {
    pointer-events: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    transition: transform .15s ease, box-shadow .15s ease;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .45);
}

.play-btn svg {
    width: 26px;
    height: 26px;
    fill: #1f2937;
}

@media (max-width: 576px) {
    .play-btn {
        width: 56px;
        height: 56px;
    }

    .play-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Small screens: center + stack nicely */
@media (max-width: 767.98px) {
    .cta-icon {
        margin: 0 auto 10px;
    }

    .cta-title,
    .cta-sub {
        text-align: center;
    }

    .btn-cta {
        width: 100%;
    }
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.testimonial-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 16px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 14px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-user img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h6 {
    margin: 0;
    font-weight: 600;
}

.testimonial-user small {
    font-size: 13px;
    color: #777;
}

.rating {
    background: #ffd500;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 14px;
}

/* Navigation + Pagination wrapper */
.swiper-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

/* Arrows style */
.swiper-button-next,
.swiper-button-prev {
    position: static !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
    color: #000;
}

/* Pagination (dots) */
.swiper-pagination {
    position: static !important;
}

.swiper-pagination-bullet {
    background: #bbb;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #000;
}

/*- Breadcrumb -*/
.breadcrumb-section {
    position: relative;
    background: url('../images/breadcrumb-img.jpg') center/cover no-repeat;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 55px;
}

/* Gradient overlay */
.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4c4099, #a64ac9);
    opacity: 0.90;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    font-family: "Jost", sans-serif !important;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.breadcrumb-item.active {
    color: #fff;
    /* active item color (golden highlight) */
    font-weight: 600;
    font-size: 14px;
    margin-top: 2px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

/*- BLog -*/
.blog-card {
    border: none;
    background: transparent;
}

.blog-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
    overflow: visible;
}

.blog-img img:hover {
    transform: scale(1.05);
}

.date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #4c4099, #a64ac9);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    z-index: 4;
}

.blog-meta {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
}

.blog-meta a {
    color: #4c4099;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.blog-meta span {
    margin: 0 6px;
    color: #888;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
    color: #111;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    color: #4c4099;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.read-more:hover {
    color: #4c4099;
    padding-left: 5px;
}

/*- Footer -*/
footer {
    background: linear-gradient(135deg, #4c4099, #a64ac9),
        url('../images/shape-20.png') center/cover no-repeat;
    color: #fff;
    position: relative;
    padding: 120px 0px 0px 0px;
    margin-top: 80px;
    background-blend-mode: overlay;
}

/* footer {
    position: relative;
    background: url('../images/shape-20.png') center/cover no-repeat;
    color: #fff;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4c4099, #a64ac9);
    opacity: 0.9;
    
    
} 
*/


footer .footer-logo img {
    max-width: 40px;
    margin-right: 8px;
}

footer .footer-logo h4 {
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    color: #fff;
}

.footer-main-heading {
    color: #fff;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 35px;
    position: relative;
}

footer h5::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -6px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 13px;
}

footer ul li a:hover {
    color: #e0e0e0;
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 38px;
    margin-right: 8px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #007bff;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-box {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 5px;
}

.footer-box h4 {
    font-weight: 700;
    color: #1c1c1c;
}

.footer-box p {
    margin: 0 0 10px;
    font-size: 15px;
}

.footer-box .phone {
    font-size: 18px;
    font-weight: 700;
    color: #4c4099;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    font-size: 14px;
    color: #fff;
}

.footer-p {
    color: #e0e0e0;
}

/* Decorative images */
.footer-stetho {
    position: absolute;
    left: 40px;
    bottom: 0;
    width: 85px;
}

.footer-heartbeat {
    position: absolute;
    right: 120px;
    top: 20px;
    width: 120px;

}

.footer-shape {
    z-index: -1;
}

/*- About us -*/
.about-section {
    padding: 60px 0;
}

.about-section h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 25px;
}

.about-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.working-hours {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
}

.working-hours .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #4c409954;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #4c4099;
    flex-shrink: 0;
}

.working-hours h6 {
    margin: 0 0 5px;
    font-size: 15px;
    color: #666;
}

.working-hours p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;

}

.working-hours strong {
    font-weight: 700;
    color: #111;
    font-size: 13px;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background: #fff;
    margin-bottom: 45px;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    /* start from right */
    animation: scroll-left 30s linear infinite;
}

.marquee-content span {
    display: inline-block;
    font-size: 42px;
    font-weight: 600;
    color: #4c4099;
    padding-right: 50px;
    /* space between loops */
}


@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.about_img_card {
    width: 100%;
    object-fit: cover;
}


.floating-img {
    animation: floatUpDown 4s ease-in-out infinite;
}

/* 1st image */
.floating-img:nth-child(1) {
    animation-duration: 4s;
    animation-delay: 0s;
}

/* 2nd image */
.floating-img:nth-child(2) {
    animation-duration: 5s;
    animation-delay: 1s;
}

/* 3rd image */
.floating-img:nth-child(3) {
    animation-duration: 6s;
    animation-delay: 0.5s;
}

/* 4th image */
.floating-img:nth-child(4) {
    animation-duration: 7s;
    animation-delay: 1.5s;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.services-section {
    background: linear-gradient(135deg, #4c4099, #a64ac9);
    /* dark blue */
    padding: 30px 0;
    color: #fff;
    border-radius: 12px;
}

.service-box {
    text-align: left;
    color: #fff;
    padding: 20px;
}

.service-number {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.service-title {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #fff;
}


@media(max-width: 767px) {
    .footer-box {
        margin-top: 30px;
    }

    .footer-stetho {
        width: 80px;
        left: 10px;
    }

    .footer-heartbeat {
        width: 80px;
        right: 20px;
    }
}

.certificates-section {
    background-color: #4c40990f;
    padding: 80px 0;
    text-align: center;
    position: relative;
    margin-top: -59px;
    margin-bottom: -80px;
}

.certificates-section h2 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 50px;
    color: #4c4099;
}

/* Swiper styling */
.swiper {
    padding-bottom: 80px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.certificate-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.certificate-card img {
    width: 100%;
    display: block;
}

/* Center slide bigger */
.swiper-slide-active .certificate-card {
    transform: scale(1.15);
    z-index: 5;
}

.swiper-slide-next .certificate-card,
.swiper-slide-prev .certificate-card {
    transform: scale(0.9);
    opacity: 0.8;
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
    background: #e91e63;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    bottom: 10px;
    top: auto;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

.swiper-controls-sc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 100px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 45px !important;
    background: linear-gradient(135deg, #4c4099, #a64ac9) !important;
    color: #fff !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
    color: #fff;
}

.btn-product {
    width: 100%;
    background: linear-gradient(135deg, #4c4099, #a64ac9);
    color: #fff;
    font-family: "Urbanist", serif;
    border-radius: 12px;
    padding: 8px 0px;
    transition: all .5s ease;
    font-size: 15px;
}

.btn-product-2 {
    width: 100%;
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    font-family: "Urbanist", serif;
    border-radius: 12px;
    padding: 8px 0px;
    transition: all .5s ease;
    font-size: 15px;
}

.product-heading {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 10px;
}

.hr_custom {
    background-color: #f7f7f7;
    margin-top: 5px;
    height: 1px;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
    transition: transform 0.3s ease-in-out;
}

.product-section {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.pro-des {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Kitni line dikhani hai */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* ... dikhane ke liye */
}

.carousel-item {
    height: 70vh;
    /* adjust for desktop */
    min-height: 300px;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 45vh;
    }

    /* mobile */
}

@media (max-width: 576px) {
    .nav-link {
        color: #232323 !important;
        border-bottom: 2px solid #e0e0e0 !important;
        padding-left: 0px !important;
        
       
       
    }
    .btn-custom{
        margin-top: 15px;
    }

    /* mobile */
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Caption box */
.carousel-caption {
    background: rgba(0, 0, 0, 0.35);
    padding: 0.8rem 1rem;
    /* border-radius: 10px; */
    backdrop-filter: blur(4px);
}

/* Bigger arrows with subtle background for mobile visibility */
.carousel-control-prev,
.carousel-control-next {
    width: 4.5rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 2.25rem;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
}

/* Make indicators (dots) a little larger */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: .9;
}

.category_section {
    background: linear-gradient(135deg, #4c4099, #a64ac9);
    padding: 70px 0px;
    margin-bottom: 45px;
}

:root {
    --section-bg: #f2e1fd;
    /* dark blue section */
    --card-bg: #ffffff;
    --icon-circle: #e7f3f6;
    /* light icy circle */
    --hover-bg: #f2e1fd;
    /* teal on hover */
    --text-dark: #111827;
    --sub-link: #49c1d0;
    /* light teal for "5 Doctors" */
    --radius: 22px;
}

.category-sec {
    background: var(--section-bg);
}

.cat-card {
    /*background: var(--card-bg);*/
    /*border-radius: var(--radius);*/
    /*padding: 28px 22px;*/
    /*box-shadow: 0 8px 18px rgba(0, 0, 0, .08);*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: flex-start;*/
    /*transition: all .25s ease;*/
    /*color: var(--text-dark);*/
 display: flex;              /* required so flex children behave */
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;

  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  transition: all .25s ease;
  color: var(--text-dark);

  /* ensure it stretches to full height of column (Bootstrap h-100 also helps) */
  height: 100%;
  text-decoration: none;
}

.cat-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--icon-circle);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 28px;
    color: var(--text-dark);
}

.cat-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
}

.cat-sub {
    font-size: 15px;
    color: var(--sub-link);
}

/* Hover */
.cat-card:hover {
    background: var(--hover-bg);
    color: #fff;
}

.cat-card:hover .icon-wrap {
    background: #fff;
    color: var(--hover-bg);
}

.cat-card:hover .cat-sub {
    color: #fff;
}

.top-bar-right {
    float: none;
    margin-top: 12px;
}

@media (min-width: 768px) {
    .top-bar-right {
        float: right !important;
        margin-top: 0px !important;
    }
}
.common_heading h2 {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.accordion-button {
    border: 1px solid #e7e7e7;
    margin-bottom: 10px;
    border-radius: 12px !important;
    font-weight: 500;
    padding: 27px 30px;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(64, 79, 104, .05);
}

.faq-card {
    width: 100%;
    max-width: 800px;
    margin: auto;
}
.accordion-body {
    /* border-top: 1px solid #ecedf2; */
    padding: 24px 30px 26px;
}
.btn-custom-two{
    background: linear-gradient(135deg, #56ab2f, #a8e063);
    padding: 12px 25px;
    color: #fff;
    border-radius: 50px;
    transition: all 0.5s ease;
    font-size: 13px;
    overflow: hidden;
    border: none;
    position: relative;
    z-index: 1;
}
.btn-custom-two:hover{
    color:#fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(32, 177, 0, 0.4);
}



@media (max-width: 576px) {
    .carousel-item img {
        width: 100%;
        height: 250px !important;
        object-fit: unset; /* optional, object-fit band */
    }
}
