/* Custom Scrollbar Styles */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* light background */
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    /* primary color thumb */
    border-radius: 10px;
    border: 1px solid var(--light);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary);
    /* darker on hover */
}


/* Firefox support */

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
}

:root {
    --primary: #2a9d8f;
    --secondary: #264653;
    --accent: #e9c46a;
    --light: #f8f9fa;
    --dark: #343a40;
    --danger: #e76f51;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* Logo Styles */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    /* Adjust as needed */
    width: 40px;
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
}

body {
    line-height: 1.6;
    color: var(--dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Header Styles */

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding-left: 30px;
    padding-right: 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    
}


/* Add this to your CSS */

.nav-link.active {
    color: #4CAF50;
    /* Green color for active state */
    font-weight: bold;
    position: relative;
}

.footer-link.active {
    color: #00bcd4;
    /* Cyan blue - change this to your desired color */
    font-weight: bold;
    text-decoration: underline;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4CAF50;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

.language-switcher {
    margin-left: 20px;
}

.language-switcher select {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.signup-btn {
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-left: 20px;
    transition: background-color 0.3s;
}

.signup-btn:hover {
    background-color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding-right: 5px;
}


/* Hero Section */


/* Hero Slider Styles */

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 5%;
}

.hero-slides {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-size: cover; */
    background-position: center;
    object-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide .slide-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}


.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 150px;
    text-align: center;
    color: rgb(33, 31, 161);
    background-color: rgba(185, 197, 199, 0.7);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active {
    background: white;
}


/* Add these styles to your existing CSS */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 10px;
}


/* Add this new rule to handle single card on last page */

.pricing-grid.single-card {
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    justify-content: center;
}

.pricing-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
}

.pricing-pagination .page-btn {
    padding: 8px 15px;
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-pagination .page-btn.active {
    background: #4CAF50;
    color: white;
}

.pricing-pagination .page-btn:hover:not(.active) {
    background: #ddd;
}


/* Responsive Styles */

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .hero-content {
        padding: 120px 20px 0;
    }
}

.hero {
    background: linear-gradient(rgba(42, 157, 143, 0.8), rgba(38, 70, 83, 0.8));
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--secondary);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: white;
    transform: translateY(-3px);
}


/* Features Section */

.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary);
}


/* Services Section */

.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary);
}




/* Contact Section */

.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 20px;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--secondary);
}


/* Footer */

footer {
    background-color: var(--secondary);
    color: white;
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #aaa;
}

.copyright-left {
    flex: 1;
    text-align: left;
}

.copyright-center {
    flex: 1;
    text-align: center;
}

.copyright-right {
    flex: 1;
    text-align: right;
}

@media (max-width: 768px) {
    .copyright-container {
        flex-direction: column;
        gap: 10px;
    }

    .copyright-left,
    .copyright-center,
    .copyright-right {
        text-align: center;
        width: 100%;
    }
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.login-btn {
    padding: 6.5px 5px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all 0.3s;
}

.login-btn:hover {
    background-color: var(--primary);
    color: white;
}

.signup-btn {
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.signup-btn:hover {
    background-color: var(--secondary);
}

/* Hide dropdown by default */
.nav-dropdown {
    display: none;
    position: relative;
}

.nav-dropdown button.dropdown-toggle {
    background: none;
    border: none;
    font-size: 17px;
    cursor: pointer;
    color: inherit;
}

/* Show dropdown only between 768px and 1000px */
@media screen and (min-width: 769px) and (max-width: 1160px) {
    .nav-dropdown {
        position: relative;
        display: block;
    }

    .d-done {
        display: none;
    }

    #d-nav-link {
        margin-left: 0;
    }

}

/* Dropdown styling */
.nav-dropdown .dropdown-items {
    display: none;
    position: absolute;
    background-color: white;
    list-style: none;
    padding: 10px;
    margin: 0;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.nav-dropdown.open .dropdown-items {
    display: block;
}


.nav-dropdown .dropdown-items li a {
    display: block;
    padding: 5px 12px;
    text-decoration: none;
    color: #333;
    white-space: nowrap;

}

.nav-dropdown .dropdown-items li a:hover {
    background-color: #f0f0f0;
}

/* Mobile responsive styles */

@media (max-width: 768px) {
    .auth-buttons {
        gap: 10px;
    }

    .login-btn,
    .signup-btn {
        padding: 6px 10px;
        font-size: 14px;
    }
}


/* Responsive Styles */

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .header-right {
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: 20px;
    }

    .hero {
        height: auto;
        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    nav ul li a {
        padding-left: 10px;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 20px;
    }

    .signup-btn {
        padding: 6px 15px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 16px;
    }

    .price {
        font-size: 30px;
    }
}


/* Hospital List Styles */

.hospital-list {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hospital-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
}

.filter-group label {
    margin-right: 10px;
    font-weight: 500;
}

.filter-group select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-box {
    display: flex;
    margin-left: auto;
}

.search-box input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    width: 250px;
}

.search-box button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.hospitals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.hospital-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.hospital-card:hover {
    transform: translateY(-10px);
}

.hospital-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    object-position: center;
}

.hospital-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s;
}

.hospital-card:hover .hospital-image img {
    transform: scale(1.1);
}

.hospital-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--secondary);
}

.hospital-rating i {
    color: var(--accent);
    margin-right: 5px;
}



.hospital-info {
    padding: 20px;
}

.hospital-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.hospital-city,
.hospital-category {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #666;
}

.hospital-city i,
.hospital-category i {
    margin-right: 8px;
    color: var(--primary);
}

.hospital-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    color: #666;
}

.hospital-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.view-btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.view-btn:hover {
    background-color: var(--secondary);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.page-btn,
.next-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-btn:hover:not(.active),
.next-btn:hover {
    background-color: #f1f1f1;
}

@media (max-width: 768px) {
    .hospital-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-group label {
        margin-bottom: 5px;
    }

    .search-box {
        margin-left: 0;
        width: 100%;
    }

    .search-box input {
        width: 100%;
    }

    .hospitals-grid {
        grid-template-columns: 1fr;
    }
}


/* Modal Backdrop */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.5);
}


/* Modal Dialog - Centered */

.modal-dialog {
    position: relative;
    width: auto;
    margin: 1.75rem auto;
    /* Changed from 0.5rem to auto for centering */
    max-width: 800px;
    /* Added max-width */
    pointer-events: none;
    display: flex;
    min-height: calc(100% - 3.5rem);
    align-items: center;
    /* Vertically center */
}


/* Modal Content */

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}


/* Modal Header */

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}


/* Modal Title */

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.1rem;
}


/* Close Button */

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
    cursor: pointer;
}

.btn-close:hover {
    opacity: 0.75;
}


/* Modal Body */

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0.5rem;
    max-height: 500px;
    overflow-y: auto;
}


/* Modal Footer */

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.50rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}


/* Modal Sizes */

.modal-lg {
    max-width: 800px;
}


/* Utility Classes */

.fade {
    transition: opacity 0.15s linear;
}

.show {
    display: block !important;
    opacity: 1;
}


/* For modal open/close */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}


/* Additional centering styles */

.modal.show .modal-dialog {
    transform: none;
}

/* Pricing Section */

.pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.50);
    text-align: center;
    transition: transform 0.3s;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ensure features list and content inside card scrolls if needed */
.pricing-features {
    overflow-y: auto;
    flex-grow: 1;
    margin-top: 10px;
    margin-bottom: 15px;
    padding-right: 5px;
    list-style: none;

}

/* Optional: smooth scroll inside card */
/* .pricing-features::-webkit-scrollbar {
    width: 6px;
} */
.pricing-features::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0;
    padding-top: 0;
}

.price span {
    font-size: 16px;
    font-weight: normal;
    color: #666;
}



.pricing-features li {
    padding: 5px 0;
    border-bottom: 0.5px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card {
    position: relative;
    padding-top: 20px;
    /* extra space for badge */
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Highlight for Membership Plans */
.membership-card {
    border: 2px solid #56eb11;
    background-color: #f6fff4;
    box-shadow: 0 0 15px rgba(86, 235, 17, 0.3);
}

/* Badge styled like "Most Popular" */
.membership-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #56eb11;
    color: white;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Badge for other categories */
.category-badge {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
}


/* Responsive adjustments */

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-lg {
        max-width: 800px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 900px;
    }
}