    /* FORM BOX */
    .form-box {
        background: #01a0e2;
        padding: 25px;
        border-radius: 15px;
        color: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    /* INPUT FIX */
    .form-box .form-control {
        border-radius: 8px;
        border: none;
    }

    /* TRUST IMAGES */
    .trust-img {
        width: 150px;
    }

    /* HEADING */
    .hero-heading {
        font-size: 40px;
        line-height: 1.2;
    }

    /* PARAGRAPH */
    .hero-text {
        font-size: 18px;
        color: #555;
        line-height: 1.7;
        text-align: justify;
    }

    /* CARD */
    .solution-card {
        background: #fff;
        padding: 25px 20px;
        border-radius: 12px;
        transition: 0.3s;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    /* HOVER EFFECT */
    .solution-card:hover {
        transform: translateY(-5px);
    }

    /* ICON */
    .icon {
        font-size: 40px;
        color: #01a0e2;
    }

    /* HEADING */
    section h2 {
        font-size: 36px;
        /* pehle chhota tha */
    }

    /* SUBTEXT */
    section p.text-muted {
        font-size: 18px;
    }

    /* CARD TITLE */
    .solution-card h5 {
        font-size: 20px;
    }

    /* CARD TEXT */
    .solution-card p {
        font-size: 15px;
    }

    /* ICON */
    .icon {
        font-size: 48px;
        /* bada icon */
        color: #01a0e2 !important;
        /* 🔥 brand color */
    }

    .icon {
        margin-bottom: 10px;
    }

    .type-img {
        width: 600px;
        height: 600px;
        object-fit: contain;
        background: #f8fbff;
        padding: 15px;
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
    }

    .type-box:hover .type-img {
        transform: scale(1.1);
    }

    .type-box h6 {
        font-weight: 600;
        font-size: 16px;
    }

    /* BACKGROUND */
    .types-section {
        background: #14467b;
    }

    /* CARD */
    .type-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        transition: 0.3s;
    }

    /* IMAGE FIX */
    .type-card img {
        width: 100%;
        height: 260px;

        object-fit: cover;
        /* 🔥 main change (zoom effect) */
        padding: 10px;
        /* ❌ kam padding (pehle 20px tha) */

        background: #f5f7fa;
        border-radius: 8px;
    }

    /* CONTENT */
    .card-content {
        padding: 15px;
    }

    .card-content h5 {
        font-size: 16px;
        font-weight: 600;
        color: #14467b;
    }

    .card-content .btn {
        background: #14467b;
        border: none;
        border-radius: 25px;
        padding: 10px 20px;
        /* 🔥 bigger */
        font-size: 15px;
        /* 🔥 readable */
        font-weight: 500;
    }

    .card-content .btn:hover {
        background: #0f355c;
    }

    /* HOVER */
    .type-card:hover {
        transform: translateY(-5px);
    }

    /* HEADING */
    .section-title {
        font-size: 40px !important;
        font-weight: 600;
    }

    .section-subtitle {
        font-size: 20px !important;
    }

    /* CARD */
    /* CARD */
    .why-card {
        padding: 30px 20px;
        border-radius: 16px;
        background: #f8fbff;

        /* 🔥 SOFT SHADOW */
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

        transition: 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    /* ICON */
    .why-card .icon {
        font-size: 50px;
        color: #01a0e2;
        transition: 0.3s;
    }

    /* TITLE */
    .why-card h5 {
        font-size: 20px;
        font-weight: 600;
    }

    /* TEXT */
    .why-card p {
        font-size: 15px;
        color: #555;
    }

    /* 🔥 HOVER EFFECT */
    .why-card:hover {
        transform: translateY(-10px);

        /* stronger shadow */
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    }

    /* ICON HOVER */
    .why-card:hover .icon {
        transform: scale(1.2);
    }

    /* 🔥 GLOW BORDER (premium feel) */
    .why-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 2px;

        background: linear-gradient(45deg, #01a0e2, transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;

        opacity: 0;
        transition: 0.3s;
    }

    .why-card:hover::before {
        opacity: 1;
    }

    /* MOBILE */
    @media (max-width: 768px) {
        .section-title {
            font-size: 26px;
        }

        .section-subtitle {
            font-size: 15px;
        }
    }

    /* BADGE */
    .badge {
        font-size: 18px;
    }

    /* HEADING */
    .section-heading {
        font-size: 42px;
        line-height: 1.3;
    }

    /* SUBTEXT */
    .section-subtext {
        font-size: 18px;
        color: #555;
    }

    /* LIST */
    .need-list li {
        font-size: 18px;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        color: #333;
    }

    /* CHECK ICON */
    .check-icon {
        background: #e6f7fc;
        color: #01a0e2;
        font-size: 16px;
        padding: 6px 10px;
        border-radius: 50%;
    }

    /* IMAGE */
    .who-img {
        width: 100%;
        max-width: 520px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    /* FLOATING BOX */
    .floating-box {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #01a0e2;
        color: #fff;
        padding: 10px 18px;
        border-radius: 25px;
        font-size: 14px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    /* MOBILE */
    @media (max-width: 768px) {
        .section-heading {
            font-size: 28px;
            text-align: center;
        }

        .section-subtext {
            text-align: center;
            font-size: 16px;
        }

        .need-list li {
            font-size: 16px;
        }

        .floating-box {
            position: static;
            transform: none;
            margin-top: 15px;
        }
    }

    /* ACCORDION STYLE */
    .accordion-item {
        border: none;
        margin-bottom: 10px;
        border-radius: 10px;
        overflow: hidden;
    }

    /* BUTTON */
    .accordion-button {
        font-weight: 600;
        font-size: 24px;
        padding: 15px;
    }

    /* ACTIVE */
    .accordion-button:not(.collapsed) {
        background: #01a0e2;
        color: #fff;
    }

    /* BODY */
    .accordion-body {
        font-size: 15px;
        color: #555;
        background: #fff;
    }

    .faq {
        background-color: #14467b !important;
    }

    /* MODAL BOX */
    .custom-modal {
        border-radius: 15px;
        padding: 10px;
    }

    /* INPUT */
    .custom-modal .form-control {
        border-radius: 10px;
        padding: 12px;
    }

    /* BUTTON */
    .custom-modal .btn {
        padding: 12px;
        border-radius: 10px;
        font-size: 16px;
    }

    /* CARD */
    .solution-card {
        background: #fff;
        padding: 30px 20px;
        border-radius: 16px;

        /* 🔥 SHADOW (depth effect) */
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

        transition: 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    /* ICON */
    .solution-card .icon {
        font-size: 50px;
        color: #01a0e2;
        transition: 0.3s;
    }

    /* TITLE */
    .solution-card h5 {
        font-size: 20px;
        font-weight: 600;
    }

    /* TEXT */
    .solution-card p {
        font-size: 15px;
    }

    /* 🔥 HOVER EFFECT */
    .solution-card:hover {
        transform: translateY(-10px);

        /* stronger shadow */
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    }

    /* ICON HOVER */
    .solution-card:hover .icon {
        transform: scale(1.2);
    }

    /* 🔥 GLOW BORDER EFFECT */
    .solution-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 2px;

        background: linear-gradient(45deg, #01a0e2, transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;

        opacity: 0;
        transition: 0.3s;
    }

    .solution-card:hover::before {
        opacity: 1;
    }

    /* CARD */
    .testimonial-card {
        background: #fff;
        padding: 20px;
        border-radius: 12px;

        /* 🔥 shadow */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

        transition: 0.3s;
        height: 100%;
        position: relative;
    }

    /* TEXT */
    .testimonial-card p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* NAME */
    .testimonial-card h6 {
        font-weight: 600;
        color: #01a0e2;
    }

    /* 🔥 HOVER */
    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    /* QUOTE ICON EFFECT */
    .testimonial-card::before {
        content: "“";
        font-size: 40px;
        color: #01a0e2;
        position: absolute;
        top: 10px;
        left: 15px;
        opacity: 0.2;
    }

    .video-box {
        position: relative;
        cursor: pointer;
    }

    .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 50px;
        color: #fff;
        background: rgba(0, 0, 0, 0.6);
        padding: 12px 18px;
        border-radius: 50%;
    }

    .partners-section {
        background: #eef2f7;
        /* light grey background */
    }

    .partners-title {
        font-size: 38px;
        font-weight: 600;
        color: #1c4a6e;
    }

    /* BOX thoda bada */
    .partner-box {
        background: #fff;
        border: 1px solid #dcdcdc;
        padding: 25px;
        height: 110px;
        /* 👈 pehle 90 tha */

        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* LOGO size increase */
    .partner-box img {
        max-width: 100%;
        max-height: 70px;
        /* 👈 pehle 50 tha */
        object-fit: contain;
    }

    /* HOVER (optional premium feel) */
    .partner-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .achievements-section {
        background: #eef2f7;
    }

    /* Heading */
    .achievements-title {
        font-size: 40px;
        font-weight: 500;
        color: #1c4a6e;
    }

    /* Box */
    .achievement-box {
        background: #fff;
        border: 1px solid #dcdcdc;
        padding: 30px 20px;
        text-align: center;
        height: 140px;

        display: flex;
        flex-direction: column;
        justify-content: center;

        transition: 0.3s;
    }

    /* Number */
    .achievement-box h3 {
        font-size: 48px;
        font-weight: 700;
        color: #1bb3c8;
        margin-bottom: 10px;
    }

    /* Text */
    .achievement-box p {
        font-size: 18px;
        color: #333;
        margin: 0;
    }

    /* Hover (optional premium feel) */
    .achievement-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    /* Section */
    .why-section {
        background: #eef2f7;
        padding: 80px 0;
        /* 👈 spacing bada */
    }

    /* Heading */
    .why-title {
        font-size: 56px;
        /* 👈 pehle 48 tha */
        color: #1c4a6e;
        font-weight: 500;
        margin-bottom: 30px;
    }

    /* ITEM spacing */
    .why-item {
        margin-bottom: 35px;
        /* 👈 pehle 25 tha */
    }

    /* ICON */
    .why-item i {
        font-size: 24px;
        /* 👈 bada icon */
        color: #1c4a6e;
        display: block;
        margin-bottom: 8px;
    }

    /* TITLE */
    .why-item h5 {
        font-size: 26px;
        /* 👈 pehle 22 */
        font-weight: 600;
        margin-bottom: 6px;
        color: #1c4a6e;
    }

    /* TEXT */
    .why-item p {
        font-size: 17px;
        /* 👈 readable */
        color: #555;
        margin: 0;
        line-height: 1.6;
    }

    /* IMAGE */
    .why-img {
        width: 100%;
        max-width: 520px;
        /* 👈 image bada */
        border-radius: 12px;
    }

    /* Background */
    .awards-section {
        background: #1f4f7a;
        color: #fff;
    }

    /* Heading */
    .awards-title {
        font-size: 48px;
        font-weight: 400;
    }

    /* Subtext */
    .awards-sub {
        font-size: 18px;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
        opacity: 0.9;
    }

    /* Image box */
    .award-box {
        background: #fff;
        padding: 10px;
        border-radius: 8px;
        height: 180px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Image */
    .award-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    /* Buttons */
    .award-btn {
        background: #2f8bd6;
        border: none;
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 500;
    }

    .award-btn:hover {
        background: #1f6fb5;
    }

    /* Outline button */
    .award-btn-outline {
        background: #2f8bd6;
        color: #fff;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
    }

    .award-btn-outline:hover {
        background: #1f6fb5;
    }

    .spinner {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid #fff;
        border-top: 2px solid #000;
        /* Black color since button is yellow */
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        vertical-align: middle;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* HEADER */
    .custom-header {
        background: #1e66f5;
        padding: 14px 20px;
    }

    /* MODAL */
    .custom-modal {
        border-radius: 16px;
        overflow: hidden;
    }

    /* DESKTOP LEFT */
    .modal-left {
        background: #f4f9ff;
        padding: 20px;
    }

    /* MOBILE IMAGE */
    .modal-mobile-img img {
        width: 100%;
        border-radius: 0;
    }

    /* INPUT */
    .custom-modal .form-control {
        border-radius: 10px;
        padding: 12px;
        border: 1px solid #ddd;
    }

    /* BUTTON */
    .submit-btn {
        background: #1f4f7a;
        color: #fff;
        border-radius: 30px;
        padding: 14px;
        font-weight: 500;
    }

    /* MOBILE FIX */
    @media (max-width: 768px) {
        .modal-dialog {
            margin: 10px;
        }

        .modal-left {
            display: none !important;
        }

        .modal-body {
            max-height: 90vh;
            overflow-y: auto;
        }
    }

    /* =========================
   PREMIUM HEADER
========================= */


    /* ICON */
    .location-icon {
        width: 42px;
        height: 42px;
        background: linear-gradient(135deg, #1167ff, #01a0e2);
        color: #fff;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        font-size: 18px;

        box-shadow: 0 8px 20px rgba(17, 103, 255, 0.2);
    }

    /* LABEL */
    .location-label {
        font-size: 12px;
        line-height: 1;
    }

    /* CITY */
    .location-city {
        font-size: 15px;
        color: #1c2b36;
    }

    /* BUTTON */
    .header-btn {
        background-color: #FFC107;
        border: none;
        color: #fff;

        padding: 12px 26px;
        border-radius: 50px;

        font-weight: 600;
        font-size: 15px;
    }

    .header-btn:hover {
        background-color: #FFC107;
        color: #fff;
    }

    /* MOBILE */
    @media (max-width: 768px) {

        header .container>div {
            flex-direction: column;
            text-align: center;
        }

        .location-box {
            width: 100%;
            justify-content: center;
        }

        .header-btn {
            width: 100%;
        }
    }

    .location-btn {
        color: #14467b;
        text-decoration: none;
    }

    .location-btn:hover {
        background-color: #14467b;
        transform: scale(1.05);
    }

    .location-btn {
        border: 2px solid #14467b;
        background: 0 0;
        padding: 10px 15px;
        font-size: 16px;
        border-radius: 15px;
        text-align: center;
        transition: 0.3s ease-in-out;
    }

    .location-btn:hover {
        color: #fff;
    }

    .navbar-nav .nav-link {
        font-family: "YourWebFont", Arial, sans-serif;
    }

    .carousel-item {
        min-height: 200px;
    }

    iframe.lazy-video {
        width: 100%;
        height: 100%;
        border: none;
    }

    .carousel-fade .carousel-item {
        transition: opacity 1s ease-in-out;
        opacity: 0;
    }

    .carousel-fade .carousel-item.active {
        opacity: 1;
        z-index: 1;
    }

    .book-appnt-btn {
        background-color: #2490eb;
        border: none;
        border-radius: 8px;
        color: #fff;
        padding: 8px;
    }

    .book-appnt-btn:hover {
        background-color: #14467b;
        color: #fff;
    }

    .book-appnt-btn:hover,
    .btn-close,
    form .btn-form,
    form input,
    form textarea {
        transition: 0.3s ease-in-out;
    }

    form .btn-form {
        width: 100%;
        cursor: pointer;
    }

    .card {
        border: none;
        overflow: hidden;
    }

    .card-img-top {
        height: 200px;
        min-height: 150px;
        object-fit: cover;
    }

    .card-body {
        background: #fff;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .card-title {
        font-size: 20px;
        font-weight: 600;
    }

    .card-text {
        font-size: 15px;
        color: #000;
    }

    .aid-btn,
    .location-btn {
        color: #14467b;
        text-decoration: none;
    }

    .aid-btn {
        font-size: 16px;
        padding: 8px 20px;
        border: 1px solid #14467b;
        border-radius: 25px;
        transition: background 0.3s;
    }

    .aid-btn:hover {
        background-color: #14467b;
        color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .con-btn:hover,
    .location-btn:hover {
        background-color: #14467b;
        transform: scale(1.05);
    }

    .location-btn {
        border: 2px solid #14467b;
        background: 0 0;
        padding: 10px 15px;
        font-size: 16px;
        border-radius: 15px;
        text-align: center;
        transition: 0.3s ease-in-out;
    }

    .location-btn:hover {
        color: #fff;
    }

    .bi {
        color: #2490eb;
    }

    .con-btn {
        background-color: #2490eb;
        color: #fff;
        text-decoration: none;
        padding: 8px 0;
        border-radius: 8px;
    }

    .con-btn:hover {
        transition: 0.3s ease-in-out;
        color: #fff;
    }

    a {
        text-decoration: none !important;
    }

    @media (max-width: 576px) {
        .about-us-text p {
            text-align: justify;
        }

        .bsb-circle {
            width: 50px !important;
            height: 50px !important;
        }

        .bsb-circle svg {
            width: 30px !important;
            height: 30px !important;
        }
    }

    @media (max-width: 768px) {
        .our-services-text {
            text-align: justify;
        }

        .card-body {
            padding: 2rem !important;
        }

        .bi {
            width: 40px !important;
            height: 40px !important;
        }
    }

    .testimonial .section-title h2::after {
        display: none;
    }

    .testimonial_wrap h5 {

        color: #01a0e2;
    }

    .blog-card.style1 .blog-img img {
        border-radius: 10px 10px 0 0;
        height: 220px;
        width: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .blog-card.style1:hover .blog-img img {
        transform: scale(1.05);
    }

    .blog-card.style1 .blog-info h3 {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .blog-date {
        font-size: 14px;
        color: #666;
    }

    .link.style2 {
        font-weight: 500;
        color: #007bff;
        transition: all 0.3s ease;
    }

    .link.style2:hover {
        text-decoration: underline;
        color: #0056b3;
    }

    .bg-primary,
    .btn-primary {
        background-color: #2490eb !important;
    }

    .shorts-video {
        width: 180px;
        height: 320px;
        flex-shrink: 0;
        position: relative;
        cursor: pointer;
        overflow: hidden;
        border-radius: 12px;
        background-color: #000;
    }

    #hearing-aid {
        text-align: center;
        height: 400;
        width: 600;
    }

    #achievements {
        background: #2490eb;
        width: 80px;
        height: 80px;
    }

    #services {
        background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
    }

    #hearing-cost #hearing-cost-image {
        height: 400;
        width: 400;
    }

    .softhear-card {
        border-radius: 0.75rem;
        overflow: hidden;
        border: none;
        background-color: #fff;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }

    .softhear-card .row {
        min-height: 100%;
    }

    .softhear-card img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }


    .swiper-slide {
        width: 100%;
        max-width: 300px;
    }

    .bg-chathamas {
        background-color: #1e1e2f;
        padding: 60px 0;
    }

    .text-white {
        color: #fff;
    }

    .swiper {
        padding-bottom: 40px;
    }

    .swiper-slide {
        max-width: 300px;
    }

    .video-box {
        background-color: #000;
        border-radius: 8px;
        overflow: hidden;
        height: 400px;
    }

    .video-box .ratio {
        position: relative;
        width: 100%;
        height: 100%;
        padding-top: 0;
    }

    .video-box .ratio iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Swiper navigation buttons (internal arrows) */
    .swiper-button-next,
    .swiper-button-prev {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 50%;
        transition: background-color 0.3s;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

    /* External control buttons below the slider */
    .custom-controls {
        text-align: center;
        margin-top: 20px;
    }

    .custom-controls button {
        background-color: #ffffff;
        color: #1e1e2f;
        border: none;
        padding: 10px 25px;
        margin: 0 10px;
        margin-top: 30px;
        font-size: 16px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .custom-controls button:hover {
        background-color: #dcdcdc;
    }

    .blur-button {
        animation: pulseHighlight 4s infinite;
        /* slower duration */
        transition: transform 0.3s, box-shadow 0.3s;
    }

    @keyframes pulseHighlight {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 rgba(255, 255, 0, 0);
        }

        20% {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
        }

        40% {
            transform: scale(0.95);
            box-shadow: 0 0 5px rgba(255, 255, 0, 0.2);
        }

        60% {
            transform: scale(1.05);
            box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
        }

        80% {
            transform: scale(0.98);
            box-shadow: 0 0 3px rgba(255, 255, 0, 0.1);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 0 rgba(255, 255, 0, 0);
        }
    }

    .service-card {
        transition: transform .3s ease, box-shadow .3s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(255, 0, 0, 0.4);
    }

    .video-wrapper {
        position: relative;
        aspect-ratio: 16 / 9;
        width: 320px;
        max-width: 100%;
        border-radius: 12px;
        overflow: hidden;
        background: #000;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        flex-shrink: 0;
    }

    .video-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .3s;
    }

    .video-wrapper:hover img {
        transform: scale(1.05);
    }

    .video-wrapper .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 68px;
        height: 48px;
        background: url('https://i.imgur.com/TxzC70f.png') no-repeat center center;
        background-size: contain;
    }

    .video-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    @media (max-width: 576px) {
        .video-wrapper {
            width: 100%;
            aspect-ratio: 16 / 9;
        }
    }

    .custom-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.4);
        border: none;
        width: 45px;
        height: 45px;
        z-index: 5;
        cursor: pointer;
        transition: background .3s;
    }

    /* HERO BADGE RESPONSIVE */

    .hero-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
        text-align: center;
        font-weight: 600;
        border-radius: 50px;
        line-height: 1.5;
    }

    @media(max-width:768px) {

        .hero-badge {
            font-size: 30px;
            padding: 10px 16px !important;
            width: 100%;
        }
    }
