:root {

/* Product Card Styles */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2rem;
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-img-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    margin: -1rem -1rem 0;
}

.card .card-img-top {
    height: 200px;
    width: 100%;
    object-fit: contain;
    background: #f8f9fa;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.card .card-body {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.card .card-footer {
    padding: 1rem 1.25rem;
    background: none;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.tag-category {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(13, 110, 253, 0.1);
    margin-right: 8px;
    display: inline-block;
}

.price {
    color: #0d6efd;
    font-size: 1rem;
    font-weight: 600;
}

/* Product Card Responsive Styles */
@media (max-width: 767.98px) {
    .card .card-img-top {
        height: 180px;
    }
    
    .card .card-body {
        padding: 1rem;
    }
    
    .card .card-footer {
        padding: 0.75rem 1rem;
    }
    
    .card .card-title {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .card .card-img-top {
        height: 160px;
    }
    
    .card .btn-primary {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Responsive Product Card Styles */
@media (max-width: 991.98px) {
    .card .card-img-top {
        height: 180px;
    }

    .card .card-body {
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .card {
        margin-bottom: 1.5rem;
    }

    .card .card-img-top {
        height: 200px;
    }

    .blue-circle-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .card .card-img-top {
        height: 180px;
    }

    .card .card-body {
        padding: 0.75rem;
    }

    .card .btn-primary {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .card .card-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .card .price {
        margin-top: 0.5rem;
    }
}

/* Product Scroll Styles */
.products-scroll-wrapper {
    position: relative;
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
}

.products-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #0d6efd #f1f1f1;
    -ms-overflow-style: scrollbar;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    cursor: grab;
}

.products-scroll::-webkit-scrollbar {
    height: 8px;
    display: block;
}

.products-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.products-scroll::-webkit-scrollbar-thumb {
    background-color: #0d6efd;
    border-radius: 4px;
    border: 2px solid #f1f1f1;
}

.products-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #0a58ca;
}

.products-scroll:active {
    cursor: grabbing;
}

.products-scroll .row {
    flex-wrap: nowrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
    padding: 0.5rem 0;
}

.products-scroll .col-12 {
    min-width: 300px;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

/* Scroll Navigation Buttons */
.scroll-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.scroll-nav-button:hover {
    background: #0d6efd;
    color: white;
}

.scroll-prev {
    left: 0.5rem;
}

.scroll-next {
    right: 0.5rem;
}

@media (max-width: 768px) {
    .product-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-scroll .row {
        scroll-snap-type: x mandatory;
        scroll-padding: 0 12px;
    }
    
    .products-scroll .col-10 {
        scroll-snap-align: start;
    }
}
    --primary-blue: #0066cc;
    --light-blue: #e6f3ff;
    --dark-gray: #333;
    --primary: #0d6efd;
    --secondary: #6c757d;
    --success: #198754;
}

/* Base Styles */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    padding-top: 76px; /* Default navbar height for desktop */
}


/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: white;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.hero-section {
      position: relative;
      background: url('assets/CARROUSEL.jpeg') no-repeat center center/cover;
      min-height: 700px;
    }
.hero-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      padding-left: 4rem;
      padding-right: 2rem;
}
.hero-text small {
      font-size: 0.9rem;
      color: #7da7ff;
      text-transform: uppercase;
      letter-spacing: 1.2px;
}
.hero-text h1 {
      font-weight: 700;
      font-size: 3rem;
      margin-bottom: 1rem;
}
.hero-text p {
      font-size: 1.1rem;
      max-width: 470px;
      margin-bottom: 2rem;
      color: #333a7f;
}
.hero-text .btn-primary {
      background-color: #0082f7;
      border: none;
      padding: 0.625rem 2.25rem;
      font-weight: 600;
      font-size: 1rem;
}

/* Hero Section Responsive Styles */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-overlay {
        padding: 2rem 1.5rem;
        text-align: center;
        justify-content: center;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 400px;
    }
    
    .hero-overlay {
        padding: 1.5rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .hero-text .btn-primary {
        padding: 0.5rem 1.75rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
}

.features-section {
      max-width: 1140px;
      margin: 3rem auto 4rem auto;
      padding: 0 1rem;
}
.feature-card {
      background-color: #e9f0ff;
      border-radius: 8px;
      padding: 2rem 1.5rem 2.5rem 1.5rem;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.05);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-bottom: 4px solid #0082f7;
      height: 100%;
}
.feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 22px rgb(0 130 247 / 0.3);
}
.feature-icon {
      font-size: 3.5rem;
}

/* Product Card Styles */
.product-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.product-card .img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .img-container img {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .tags {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--light-blue);
    border-radius: 20px;
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

.product-card .price {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.product-card .btn-learn-more {
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 6px;
}
  .margin-bottom: 1rem; {
  .color: #1a1a45;
}
.feature-title {
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 1rem;
}
.feature-desc {
      font-size: 1rem;
      color: #2e3175;
      margin-bottom: 1.7rem;
      min-height: 88px;
}
.feature-btn {
      background-color: #0082f7;
      border: none;
      padding: 0.5rem 1.75rem;
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 4px;
      color: white;
      text-decoration: none;
      display: inline-block;
}
.feature-btn:hover {
      background-color: #0066cc;
      text-decoration: none;
      color: white;
}
/* Icons style using SVG inline style */
.icon-doctor,
.icon-medical-cross,
.icon-consultation {
      stroke: #1a1a45;
      fill: none;
      stroke-width: 2;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-title {
    color: var(--dark-gray);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Custom Button Styles */
.btn-primary-custom {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary-custom:hover {
    background-color: #0052a3;
    border-color: #0052a3;
}

/* Vision Mission Section */
.vision-mission-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    color: var(--dark-gray);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.mission-card {
    text-align: center;
    padding: 2rem 1rem;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.mission-title {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
}

.partner-logo {
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

/* Gallery Section */
.gallery-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.gallery-item {
    background-color: #dee2e6;
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background-color: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-title {
    color: var(--dark-gray);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Footer Styles */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 40px 0 20px;
}

.footer h5 {
    color: white;
    margin-bottom: 1rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: #0052a3;
    color: white;
}

/* Dokter Bawah Section */
.doctor-section {
    position: relative;
      background: url('assets/DOKTOR.png') no-repeat center center/cover;
      min-height: 700px;
}

.doctor-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.doctor-section .content-column {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
    border-radius: 10px;
}

.doctor-section .text-container {
    max-width: 580px;
    padding-right: 2rem;
}

.doctor-section h2 {
    color: #1a1a45;
    line-height: 1.3;
}

.doctor-section .lead {
    font-size: 1.1rem;
    color: #4a5568;
}

@media (max-width: 991.98px) {
    .doctor-section {
        padding: 0 3%;
        background-position: center;
        min-height: 500px;
        max-width: 100%;
    }

    .doctor-section .content-column {
        padding: 3rem 1.5rem;
        margin: 1rem;
    }

    .doctor-overlay {
        background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0.7) 100%);
    }
}

@media (max-width: 767.98px) {
    .doctor-section {
        background-position: 80% center;
        min-height: 450px;
    }

    .doctor-section .content-column {
        padding: 2.5rem 1rem;
        margin: 0.5rem;
        text-align: center;
    }

    .doctor-overlay {
        background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 70%, rgba(255,255,255,0.8) 100%);
    }
}

@media (max-width: 575.98px) {
    .doctor-section {
        background-position: 75% center;
        min-height: 400px;
        background-size: cover;
    }

    .doctor-section .content-column {
        padding: 2rem 1rem;
        margin: 0.5rem;
    }

    .doctor-overlay {
        background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 80%, rgba(255,255,255,0.9) 100%);
    }

    .doctor-section .text-container {
        max-width: 100%;
    }
}
    position: relative; {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0;
}

.doctor-image-wrapper img {
    max-height: 600px;
    object-fit: contain;
    margin-right: -2rem;
}

@media (max-width: 991.98px) {
    .doctor-section {
        min-height: auto;
    }
    
    .doctor-section .content-column {
        padding: 3rem 1.5rem;
    }
    
    .doctor-section br {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .doctor-section .content-column {
        padding: 3rem 1rem;
        text-align: center;
    }
    
    .doctor-section .btn-group {
        justify-content: center;
    }
    
    .doctor-section h2 {
        font-size: 2rem;
    }
}

.doctor-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-img-container img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.doctor-img-container:hover img {
    transform: scale(1.02);
}

/* Responsive Design */
/* Desktop Container Widths */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
        padding-left: 2rem;
        padding-right: 2rem;
        margin: 0 auto;
    }

    section, .section {
        padding-left: 0;
        padding-right: 0;
    }

    .form-section,
    .content-section {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        max-width: 960px;
        padding-left: 2rem;
        padding-right: 2rem;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        max-width: 720px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin: 0 auto;
    }
}

/* Responsive Design for smaller screens */
@media (max-width: 1199.98px) {
    .hero-section {
        min-height: 600px;
    }

    .product-image {
        height: 400px;
    }
}

@media (max-width: 991.98px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-title,
    .contact-title,
    .section-title {
        font-size: 1.75rem;
    }

    .feature-card {
        margin-bottom: 2rem;
    }

    .service-icon {
        margin: 0 auto 1rem;
    }

    .services-section {
        text-align: center;
    }

    .product-image {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    /* Button Responsive Styles */
    .blue-circle-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        top: 0.75rem;
        right: 0.75rem;
    }

    .btn-primary.btn-sm {
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 0.5rem 1rem;
    }

    .card .card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .card .price {
        text-align: center;
        margin-top: 0.5rem;
    }

    /* Navigation and Body Sync */
    body {
        padding-top: 50px; /* Match navbar height on mobile */
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }
    
    /* Adjust section paddings for mobile */
    section, .section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Form and content padding adjustments */
    .form-section,
    .content-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* List and text content adjustments */
    .text-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* List Produk Responsive */
    .section {
        padding: 2rem 0;
    }

    .section .display-4 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section ul {
        padding-left: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .section ul li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .section .btn {
        width: 100%;
        margin-bottom: 2rem;
    }

    /* Product Cards Responsive */
    .product-card {
        margin-bottom: 1.5rem;
    }

    .product-card .img-container {
        height: 200px;
        overflow: hidden;
    }

    .product-card .img-container img {
        height: 100%;
        object-fit: cover;
    }

    .product-card .card-body {
        padding: 1rem;
    }

    .product-card h5 {
        font-size: 1.1rem;
    }

    .product-card .price {
        font-size: 0.9rem;
    }

    .product-card .btn-learn-more {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .product-card .tags {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }

    .navbar {
        padding: 0.25rem 0;
        min-height: 50px;
    }

    .navbar-brand img {
        height: auto;
        width: 170px;
    }

    .navbar-nav {
        text-align: center;
        padding: 0.75rem 0;
        background-color: white;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .navbar-collapse {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .navbar .form-control {
        margin: 0.5rem 0;
        width: 100%;
    }

    /* Dokter Bawah Section Responsive */
    .bg-gradient-lightblue {
        padding: 2rem 0;
    }

    .doctor-img-container {
        text-align: center;
        margin-top: 2rem;
    }

    .doctor-img-container img {
        max-width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }

    .form-control {
        height: 40px;
        font-size: 0.9rem;
    }

    h3.fw-bold {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .btn-dark {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .nav-item {
        margin: 0.5rem 0;
    }

    /* Hero Section */
    .hero-section {
        min-height: 500px;
    }

    .hero-overlay {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-text .btn-primary {
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
        width: auto;
        min-width: 200px;
    }

    @media (max-width: 575.98px) {
        .hero-text .btn-primary {
            width: 100%;
            padding: 1rem;
            font-size: 1.2rem;
            margin-top: 1rem;
        }
    }

    /* Mobile-specific Adjustments */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* Form Adjustments */
    .form-control {
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem;
    }

    /* Sections Padding */
    .section {
        padding: 40px 0;
    }

    .services-section {
        padding: 2rem 1rem;
    }

    /* Feature Cards Mobile */
    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
        height: auto;
    }

    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .feature-desc {
        font-size: 0.9rem;
        min-height: auto;
        margin-bottom: 1.25rem;
    }

    /* Text Adjustments */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    p {
        font-size: 0.95rem;
    }

    /* Spacing Adjustments */
    .mt-5 {
        margin-top: 4rem !important;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .pt-5 {
        padding-top: 2rem !important;
    }

    .pb-5 {
        padding-bottom: 2rem !important;
    }

    /* Button Adjustments */
    .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Footer Adjustments */
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }

    .footer h5 {
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-size: 1.1rem;
    }

    .social-icons {
        margin-top: 1rem;
        justify-content: center;
    }

    /* Cards and Images */
    .product-image {
        height: 300px;
    }

    .product-card {
        margin-bottom: 2rem;
    }

    /* Footer */
    .footer {
        text-align: center;
    }
    
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand,
    .footer-contact,
    .footer-links,
    .marketplace-icons,
    .newsletter-form {
        width: 100%;
        text-align: center;
    }
    
    .footer .social-links {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer .row > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer h5 {
        text-align: center;
    }

    .footer p {
        text-align: center;
    }

    .footer ul.list-unstyled {
        align-items: center;
        padding: 0;
    }

    .footer .copyright-text {
        text-align: center !important;
        margin-bottom: 1rem;
    }

    /* Choose Us Section */
    .choose-us-section {
        flex-direction: column;
    }

    .left-img {
        border-radius: 1rem 1rem 0 0;
        min-height: 200px;
    }

    .right-content {
        border-radius: 0 0 1rem 1rem;
        padding: 2rem 1.5rem;
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    /* Button styles for extra small devices */
    .blue-circle-btn {
        width: 24px;
        height: 24px;
        font-size: 0.875rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    .btn-primary.btn-sm {
        font-size: 0.875rem;
        padding: 0.375rem 1rem;
    }

    .card .card-footer {
        padding: 0.5rem 0;
    }

    .price {
        font-size: 0.875rem;
    }

    /* Typography */
    .hero-text h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-primary-custom {
        width: auto;
        padding: 12px 20px;
        margin-bottom: 0.5rem;
    }

    /* Spacing */
    .section {
        padding: 30px 0;
    }

    /* Cards */
    .product-image {
        height: 250px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 1.5rem 1rem 4rem;
    }

    /* Icons */
    .icon-labels {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Gallery */
    .gallery-card {
        height: 150px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > .row {
    animation: fadeInUp 0.6s ease-out;
}

.highlight-label {
    font-size: 0.9rem;
    font-weight: 600;
    background-color: rgba(0,123,255,0.15);
    color: #0d6efd;
    padding: 0.2rem 0.75rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    user-select: none;
}
    .btn-quality {
    background-color: #0d6efd;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    user-select: none;
    border: none;
}
    .btn-quality:focus, .btn-quality:hover {
    background-color: #0b5ed7;
    color: white;
    text-decoration: none;
}
    .quality-icon {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 1.5;
}
    .feature-list {
    font-size: 0.9rem;
    color: #495057;
    margin-top: 0.75rem;
}
.feature-list li {
            margin-bottom: 0.6rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feature-list svg {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            stroke: #0d6efd;
            stroke-width: 2;
            fill: none;
        }
        .product-image-wrapper {
            border-radius: 0.5rem;
            padding: 2rem 1.5rem 1.5rem 1.5rem;
            max-width: 400px;
            margin: auto;
            position: relative;
        }
        .quality-tag-top {
            position: absolute;
            top: 1rem;
            left: 1rem;
        }
        .quality-tag-bottom {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
        }
        .product-image {
            border-radius: 0.25rem;
            display: block;
            margin: 0 auto;
        }
        .learn-more-btn {
            margin-top: 1.5rem;
            background-color: #0d6efd;
            border: none;
            padding: 0.5rem 1.25rem;
            font-weight: 600;
            color: white;
            border-radius: 0.25rem;
            transition: background-color 0.3s ease;
        }
        .learn-more-btn:hover {
            background-color: #0b5ed7;
            color: white;
        }
        @media (max-width: 767.98px) {
            .product-image-wrapper {
                max-width: 100%;
                margin-top: 2rem;
            }
        }

    .product-card {
      box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 0.075);
      border-radius: 0.375rem;
      background-color: #fff;
      padding: 1rem;
      transition: box-shadow 0.3s ease;
      max-width: 300px;
      margin: auto;
    }
    .product-card:hover {
      box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 0.15);
    }
    .tags {
      font-size: 0.75rem;
      font-weight: 600;
      color: #1974f3;
      background-color: #e9ecef;
      border-radius: 10px;
      padding: 2px 8px;
      margin-right: 0.4rem;
      user-select: none;
    }
    .btn-learn-more {
      font-weight: 600;
      font-size: 0.875rem;
    }
    .price {
      font-weight: 700;
      font-size: 1rem;
      color: #2c7be5;
      margin-left: auto;
    }
    .img-container {
      height: 180px;
      display: flex;
      justify-content: center;
      align-items: center;
      user-select: none;
      margin-bottom: 0.6rem;
    }
    .img-container img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
      pointer-events: none;
    }
    .btn-circle {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 1.5rem;
      padding-top: 0;
      line-height: 1;
    }
    .card-body {
      position: relative;
      min-height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .testimonial-card {
      background-color: #1e88e5;
      color: white;
      border-radius: 12px;
      padding: 2rem 2rem 3rem 2rem;
      position: relative;
      min-height: 280px;
      box-shadow: 0 8px 15px rgb(30 136 229 / 0.3);
    }

    .testimonial-card::before {
      content: "“";
      font-size: 4.5rem;
      color: rgba(27, 38, 91, 0.85);
      font-weight: 900;
      position: absolute;
      top: -1rem;
      right: 1.5rem;
      line-height: 1;
      user-select: none;
    }

    .testimonial-text {
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 3.5rem;
      white-space: pre-line;
      letter-spacing: 0.015em;
    }

    .client-info {
      position: absolute;
      bottom: 1.6rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .client-profile {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background-color: white;
      flex-shrink: 0;
      box-shadow: 0 3px 8px rgb(0 0 0 / 0.15);
    }

    .client-name {
      font-weight: 600;
      font-size: 0.95rem;
      margin: 0;
      color: white;
      user-select: none;
    }

    .client-role {
      font-size: 0.825rem;
      color: #cfd8dc;
      user-select: none;
      margin-top: -0.1rem;
      margin-bottom: 0;
    }

    /* Responsive spacing on heading */
    .page-header {
      margin-top: 3.5rem;
      margin-bottom: 3rem;
    }

    @media (max-width: 575.98px) {
      .testimonial-card {
        min-height: auto;
        padding-bottom: 4rem;
      }
    }

    .custom-box {
      position: relative;
      background: linear-gradient(90deg, #0d6efd, #0a58ca); /* Bootstrap primary gradient style */
      height: 200px;
      border-radius: 0px;
      margin-top: 1.5rem;
      overflow: visible;
    }
    /* White curved shapes corners */
    .custom-box::before,
    .custom-box::after {
      content: "";
      position: absolute;
      border: 0 solid white;
      background: white;
      box-sizing: content-box;
    }
    /* Bottom left corner shape */
    .custom-box::before {
      width: 60px;
      height: 60px;
      bottom: 0;
      left: 0;
      border-radius: 0 0 80px 0;
      border-width: 20px 0 0 20px;
    }
    /* Top right corner shape */
    .custom-box::after {
      width: 80px;
      height: 80px;
      top: 0;
      right: 0;
      border-radius: 0 80px 0 0;
      border-width: 24px 24px 0 0;
    }

.services-section {
      padding: 4rem 1rem;
      background-color: #ffffff;
    }
.service-icon {
      background-color: #0d6efd;
      color: white;
      padding: 1rem;
      border-radius: 0.6rem;
      display: inline-flex;
      align-items: start;
      justify-content: start;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      box-shadow: 0 4px 8px rgb(13 110 253 / 0.2);
      height: 3.5rem;
      width: 3.5rem;
}
h2 {
      font-weight: 700;
      margin-bottom: 0.25rem;
}
h5 {
      font-weight: 600;
}
p.description {
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      font-size: 1rem;
      color: #6c757d;
      margin-bottom: 3rem;
}
.service-text {
      color: #212529;
      font-weight: 500;
}
.service-subtext {
      color: #868e96;
      font-size: 0.9rem;
      line-height: 1.4;
}
    .choose-us-section {
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 0.5rem 1rem rgb(0 123 255 / 0.25);
    }
    .left-img {
      background-color: #2296f3 ;
      object-fit: cover;
      height: 100%;
      width: 100%;
      min-height: 320px;
      border-top-left-radius: 1rem;
      border-bottom-left-radius: 1rem;
    }
    .right-content {
      background-color: #2296f3 ;
      color: white;
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 320px;
      border-top-right-radius: 1rem;
      border-bottom-right-radius: 1rem;
    }
    .right-content h2 {
      font-weight: 700;
      margin-bottom: 2rem;
    }
    .icon-text {
      display: flex;
      align-items: start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .icon-text svg {
      flex-shrink: 0;
      width: 1.75rem;
      height: 1.75rem;
      margin-top: 0.15rem;
      stroke-width: 1.5;
    }
    .icon-text p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.3;
      font-weight: 500;
    }
    .icon-text p span {
      font-weight: 700;
      display: block;
      margin-bottom: 0.25rem;
    }
    .btn-learn {
      max-width: 140px;
      font-weight: 600;
      font-size: 1rem;
    }
    @media (max-width: 767.98px) {
      .left-img {
        border-radius: 1rem 1rem 0 0;
        min-height: 200px;
      }
      .right-content {
        border-radius: 0 0 1rem 1rem;
        padding: 2rem 1.5rem;
        min-height: auto;
      }
      .choose-us-section {
        flex-direction: column;
      }
    }

  /* Custom styles for FAQ section */

/* Remove default accordion styling */
.custom-accordion-item {
    background-color: transparent !important;
    border: none !important;
    margin-bottom: 1rem;
}

/* Custom accordion button styling */
.custom-accordion-button {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid #dee2e6 !important;
    font-size: 1.1rem;
    color: #212529 !important;
}

/* Remove focus outline */
.custom-accordion-button:focus {
    box-shadow: none !important;
    border-color: #dee2e6 !important;
}

/* Style for expanded accordion button */
.custom-accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: #212529 !important;
    box-shadow: none !important;
    border-bottom: 1px solid #dee2e6 !important;
}

/* Custom accordion body styling */
.custom-accordion-body {
    background-color: #e3f2fd !important;
    border: none;
}

/* Arrow color customization */
.custom-accordion-button::after {
    color: #007bff;
}

/* Rotate arrow when expanded */
.custom-accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }
    
    .custom-accordion-button {
        font-size: 1rem;
    }
}

/* Smooth transitions */
.accordion-collapse {
    transition: all 0.3s ease;
}

.custom-accordion-button {
    transition: all 0.2s ease;
}

/* Hover effects */
.custom-accordion-button:hover {
    background-color: rgba(0, 123, 255, 0.05) !important;
}

    .landing-section {
      background: linear-gradient(90deg, #d7e9fd 0%, #a9c9ff 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 2rem;
    }
    .btn-phone-icon::after {
      content: "📞";
      margin-left: 0.4rem;
      font-size: 1.2rem;
    }
    .input-email {
      max-width: 400px;
    }
    .doctor-image-container {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .doctor-image {
      max-width: auto;
      height: auto;
      max-height: auto;
      object-fit: cover;
    }
 h1 {
      color: #26215F;
      font-weight: 700;
      margin-bottom: 2rem;
    }
    .icon-labels {
      display: flex;
      justify-content: center;
      gap: 4rem;
      font-size: 1rem;
      color: #333;
      user-select: none;
    }
    .icon-labels .item {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      cursor: default;
    }
    /* Icons with consistent style */
    .icon-labels svg {
      fill: #007bcd;
      width: 1.3em;
      height: 1.3em;
    }

    .icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid #0d6efd;
      color: #0d6efd;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem auto;
      font-size: 1.5rem;
      line-height: 1;
    }
    .icon-circle.misi-2 {
      border-color: #6c757d;
      color: #6c757d;
    }
    .icon-circle.misi-3 {
      border-color: #198754;
      color: #198754;
    }
    .logo-img {
      max-width: 100px;
      height: auto;
      filter: grayscale(0.2);
      transition: filter 0.3s ease;
    }
    .logo-img:hover {
      filter: grayscale(0);
    }
    .logo img {
      max-height: 60px;
      object-fit: contain;
      margin: 0 1.5rem;
    }
    .logo-group {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      margin-top: 2rem;
      margin-bottom: 2rem;
    }
     .gallery-card {
      background-color: #e2e6ea;
      border-radius: 0.35rem;
      height: 180px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .gallery-icon {
      font-size: 2.5rem;
      color: #6c757d;
    }
/* Custom styling to match the screenshot style */
    .product-card {
      box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 0.075);
      border-radius: 0.375rem;
      transition: box-shadow 0.3s ease;
    }
    .product-card:hover {
      box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 0.15);
    }
    .product-image {
      height: 500px;
      object-fit: contain;
    }
    .btn-circle {
      width: 36px;
      height: 36px;
      padding: 0;
      border-radius: 50%;
      font-size: 22px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .pagination-custom a,
    .pagination-custom span {
      padding: 0.4rem 0.7rem;
      cursor: pointer;
      user-select: none;
    }
    .pagination-custom a.page-link, 
    .pagination-custom span.page-link {
      color: #0d6efd;
    }
    .section {
      padding: 50px 0;
    }
    .card {
     border: none;
     border-radius: 15px;
    }
    .form-label {
      color: #007bff;
      font-weight: 600;
    }
    .btn-submit {
      background-color: #2c2a58;
      color: white;
      font-weight: 500;
    }
    .btn-submit:hover {
      background-color: #1a1940;
    }
    .social-icons svg {
      width: 24px;
      height: 24px;
      fill: #222;
      margin-right: 15px;
      cursor: pointer;
      transition: fill 0.3s ease;
    }
    .social-icons svg:hover {
      fill: #007bff;
    }
    .social-icons {
      margin-top: 10px;
      display: flex;
      align-items: center;
    }
    .info-text {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 1rem;
    }
    .bg-gradient-lightblue {
      background: linear-gradient(90deg, #dbefff 0%, #a4cffc 100%);
      min-height: 80vh;
    }
    .doctor-img-container {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      height: 100%;
    }
    .doctor-img-container img {
      max-width: 200%;
      height: 100%;
      border-radius: 0;
      object-fit: contain;
    }
    @media (max-width: 767.98px) {
      .doctor-img-container {
        justify-content: center;
        margin-top: 2rem;
      }
      .doctor-img-container img {
        max-width: 70%;
      }
    }
     /* Menambahkan gaya kustom */
    .bg-gradient-lightblue {
      background: linear-gradient(to right, #e2f1ff, #d1eaff);
    }

    /* 
      Membuat wadah gambar tidak memiliki padding dan memastikan 
      tingginya menyesuaikan dengan baris (row)
    */
    .image-container-flush {
      padding: 0;
      height: 100%;
    }

    /* 
      Style untuk gambar:
      - width & height 100%: Mengisi penuh wadahnya.
      - object-fit: cover: Kunci utama agar gambar tidak gepeng/distorsi.
        Gambar akan menutupi seluruh area, dengan beberapa bagian mungkin terpotong.
    */
    .img-cover {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Menambahkan padding pada kolom teks untuk estetika */
    .content-column {
      padding: 3rem;
    }
     .products-scroll {
        scrollbar-width: thin;
        scrollbar-color: #0d6efd transparent;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
      }
      
      .products-scroll::-webkit-scrollbar {
        height: 8px;
      }
      
      .products-scroll::-webkit-scrollbar-track {
        background: transparent;
        border-radius: 4px;
      }
      
      .products-scroll::-webkit-scrollbar-thumb {
        background-color: #0d6efd;
        border-radius: 4px;
      }
        body {
      padding-top: 3rem;
      padding-bottom: 3rem;
      background-color: #f8f9fa;
    }
    .card {
      border-radius: 0.75rem;
      box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
      transition: box-shadow 0.3s ease;
    }
    .card:hover {
      box-shadow: 0 5px 20px rgb(0 0 0 / 0.15);
    }
    .tag-category {
      font-size: 0.75rem;
      padding: 0.1rem 0.6rem;
      border-radius: 0.375rem;
      color: #0d6efd;
      background-color: #d9ebff;
      border: 1px solid #a2c4ff;
      margin-right: 0.35rem;
      user-select: none;
    }
    .btn-circle {
      width: 36px;
      height: 36px;
      padding: 0;
      border-radius: 50%;
      font-size: 20px;
      line-height: 1;
      text-align: center;
      background-color: #0d6efd;
      color: white;
      border: none;
      box-shadow: 0 2px 8px rgb(13 110 253 / 0.5);
      transition: background-color 0.3s ease;
    }
    .btn-circle:hover {
      background-color: #0b5ed7;
      box-shadow: 0 4px 12px rgb(11 94 215 / 0.7);
    }
    .price {
      font-weight: 600;
      font-size: 1.1rem;
      color: #26215F;
    }
    .code-product {
      font-size: 0.6rem;
      color: #1e88e5;
      margin-left: 0.25rem;
      user-select: none;
    }
    .spec-list {
      font-size: 0.875rem;
      color: #495057;
      padding-left: 1rem;
      margin-top: 0.25rem;
      margin-bottom: 0.6rem;
      user-select: none;
    }
      body {
      padding: 1rem;
      background: #f9f9f9;
    }

    .card-img-top {
      object-fit: contain;
      height: 180px;
      background: #fff;
    }

    .card {
      border-radius: 1rem;
      box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 0.1);
      position: relative;
      overflow: visible;
    }

    /* Button styles */
.blue-circle-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
}

.blue-circle-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary-blue);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.blue-circle-btn:active {
    transform: scale(0.95);
}

.btn-primary.btn-sm {
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}
    position: absolute; {
    right: 1rem;
    top: 7rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0.15rem 0.35rem rgb(13 110 253 / 0.6);
}

    .tags {
      font-size: 0.7rem;
      font-weight: 600;
      color: #668cff;
      text-transform: uppercase;
      user-select: none;
      background-color: #e3eaff;
      padding: 0.2rem 0.5rem;
      border-radius: 0.3rem;
      margin-right: 0.3rem;
      display: inline-block;
    }

    .card-text small {
      color: #555;
    }

    .price {
      font-weight: 700;
      font-size: 1.1rem;
      color: #222;
    }
      /* Custom styling for the plus-circle icon */
    .btn-circle {
      width: 32px;
      height: 32px;
      padding: 6px 0px;
      border-radius: 50%;
      text-align: center;
      font-size: 18px;
      line-height: 1.42857;
    }
    .card-img-top {
      object-fit: contain;
      height: 180px;
      background-color: #f8f9fa;
    }
    .tag {
      font-size: 0.75rem;
      margin-right: 5px;
      padding: 2px 8px;
      border-radius: 12px;
      background-color: #e9ecef;
      color: #495057;
    }
    /* Pagination center */
    .pagination {
      justify-content: center;
    }
    .product-card {
      min-height: 380px;
    }
    .product-desc {
      font-size: 0.85rem;
    }
    .tag {
      font-size: 0.75rem;
      background-color: #e7f1ff;
      color: #0d6efd;
      border-radius: 0.375rem;
      padding: 0.15rem 0.5rem;
      margin-right: 0.25rem;
      cursor: pointer;
      user-select: none;
      display: inline-block;
    }
    .btn-floating {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      font-size: 20px;
      line-height: 20px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    /* Make product cards consistent height on large screens */
    @media(min-width: 992px) {
      .product-card .card-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 310px;
      }
    }
    /* Sidebar Styles */
    #filterSidebar {
      width: 280px;
      height: 100vh;
      position: fixed;
      top: 0;
      left: -280px;
      background-color: #fff;
      border-right: 1px solid #ddd;
      z-index: 1055;
      transition: left 0.3s ease;
      padding: 1.5rem 1.5rem 1.5rem 1.5rem;
      overflow-y: auto;
    }
    #filterSidebar.show {
      left: 0;
      box-shadow: 2px 0 5px rgba(0,0,0,0.15);
    }
    /* Backdrop for sidebar */
    #sidebarBackdrop {
      z-index: 1040;
      position: fixed;
      top: 0; left: 0; bottom: 0; right: 0;
      background: rgba(0,0,0,0.3);
      display: none;
    }
    #sidebarBackdrop.show {
      display: block;
    }
    /* Sidebar header style */
    #filterSidebar h5 {
      font-weight: 600;
      margin-bottom: 1.25rem;
    }
    /* Checkbox group spacing */
    .filter-group {
      margin-bottom: 1.75rem;
    }
    /* Smaller label styling */
    .form-check-label {
      user-select: none;
      font-size: 0.9rem;
    }
        /* To hide horizontal scrollbar but keep scroll */
    .scrolling-wrapper::-webkit-scrollbar {
      height: 6px;
    }
    .scrolling-wrapper::-webkit-scrollbar-track {
      background: transparent;
    }
    .scrolling-wrapper::-webkit-scrollbar-thumb {
      background-color: rgba(13, 110, 253, 0.4);
      border-radius: 10px;
    }
  