/* ================= HERO SECTION ================= */
    :root {
        --primary-green: #27ae60;
        --dark-green: #1a5c40;
        --bg-light: #f8fafc;
        --text-main: #2c3e50;
        --border-color: #d1d5db;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter';

    }

    body {
        background-color: var(--bg-light);
        font-family: 'Inter', sans-serif;
    }

    /* --- NAVBAR SECTION --- */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 6%;
        background: #f9f9f9;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 9999;
        /* Critical: Stay above hero/banner */
        height: 80px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--dark-green);
        font-weight: 700;
        font-size: 1.3rem;
        text-decoration: none;
    }

    .nav-logo i {
        font-size: 1.8rem;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 30px;
        margin-left: 360px;
    }

    .nav-links li a {
        text-decoration: none;
        color: #121212;
        font-size: 0.95rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .nav-links li a:hover {
        color: #206785;
    }

    .login-btn {
        /* background: var(--primary-green); */
        /* background: linear-gradient(180deg, #2dc97c 0%, #138f82 100%); */
        background: linear-gradient(to right, #199e82, #206785);
        color: white !important;
        padding: 10px 22px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
    }

    .login-btn:hover {
        /* background: #168a5d; */
        background: #206a85;
    }

    /* --- SEARCH HERO SECTION --- */
    .main-content {
        padding: 60px 5%;
        /* display: flex; */
        justify-content: center;
    }

    .search-card {
        width: 100%;
        /* max-width: 1150px; */
        /* background-image: url('backwave.jpeg'); */

        /* background: #fff; */
        /* border-radius: 24px; */
        overflow: visible;

        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    }

    .green-banner {
        /* background: linear-gradient(90deg, #38d39f, #27ae60); */
        padding: 25px 20px;
        text-align: center;
        color: #000;
        text-align: left;
    }

    .green-banner h1 {
        font-size: 2.6rem;
        margin-bottom: 15px;
    }

    /* --- GRID SEARCH FORM --- */
    .search-grid {
        padding: 40px;
        display: grid;
        grid-template-columns: 1.2fr 1fr 0.8fr 1fr auto;
        /* gap: 15px; */
        align-items: end;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form-group label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #444;
    }

    .input-box {
        position: relative;
        display: flex;
        align-items: center;
    }

    .input-box i {
        position: absolute;
        left: 12px;
        color: #999;
    }

    .input-box input,
    .input-box select {
        width: 100%;
        padding: 6px 12px 6px 38px;
        border: 1.5px solid var(--border-color);
        border-radius: 10px;
        outline: none;
        font-size: 0.9rem;
    }

    .search-trigger {
        background: var(--primary-green);
        color: white;
        border: none;
        padding: 6px 28px;
        border-radius: 10px;
        font-weight: 700;
        cursor: pointer;
        height: 37px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* --- QUICK TAGS & UPLOAD --- */
    .bottom-actions {
        /* padding: 0 20px 40px; */
        padding: 0 38px 100px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: -85px;
        margin-left: 50px;
    }

    .tags-container {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-left: 0px;
    }

    .pill-tag {
        padding: 8px 18px;
        /* background: linear-gradient(180deg, #2dc97c 0%, #138f82 100%); */
        background: linear-gradient(to right, #199e82, #206785);
        border: 1.5px solid var(--primary-green);
        color: #ffffff;
        border-radius: 8px;
        font-size: 0.85rem;
        text-decoration: none;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pill-tag:hover {
        /* background: #168a5d; */
        background: #206a85;
        color: #fff;
    }

    .upload-btn {
        background: var(--primary-green);
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* --- RESPONSIVE LOGIC --- */
    @media (max-width: 1100px) {
        .search-grid {
            grid-template-columns: 1fr 1fr;
        }

        .search-trigger {
            grid-column: span 2;
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        /* Mobile would use a hamburger menu */
        .search-grid {
            grid-template-columns: 1fr;
        }

        .search-trigger {
            grid-column: span 1;
        }

        .green-banner h1 {
            font-size: 1.8rem;
        }

        .search-bar {
            flex-direction: column;
            align-items: stretch;
        }

    }

    .hero-search {
        /* background: linear-gradient(180deg, #eef6f4, #ffffff); */
        padding: 25px 20px;
        display: flex;
        justify-content: center;
    }

    .hero-content {

        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 0px;

    }

    .hero-content h1 {
        font-size: 32px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 8px;
        line-height: 1.4;
        font-family: montserrat;
    }

    .hero-content h1 span {
        color: #1ea672;
    }

    .search-bar {
        display: flex;
        align-items: stretch;
        padding: 10px;
        border-radius: 14px;
        /* box-shadow: 0 8px 24px rgba(0,0,0,0.08); */
        /* box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 16px 0px; */
        margin: 20px 0;
        width: 100%;

        flex-wrap: nowrap;
        height: 82px;
    }

    .head {
        margin-left: 15px;
        margin-top: -45px;
    }


    .search-bar input,
    .search-bar select {
        border: none;
        /* background: #f6f7f8; */
        /* padding: 14px 0px; */
        /* border-radius: 8px; */
        flex: 1;
        font-size: 14px;
        /* border: 1px solid rgba(159, 158, 158, 0.35); */
        /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08); */
    }

    .search-bar button {
        /* background: #1ea672; */
        /* background: linear-gradient(180deg, #2dc97c 0%, #138f82 100%); */
        background: linear-gradient(to right, #199e82, #206785);
        color: white;
        border: none;
        padding: 0 30px;
        height: 61px;
        /* IMPORTANT */
        border-bottom-right-radius: 17px;
        border-top-right-radius: 17px;
        font-weight: 500;
        cursor: pointer;
        font-size: 16px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.2);
    }

    .search-bar button:hover {
        /* background: #168a5d; */
        background: #206a85;
    }

    .custom-input {
        border-bottom-left-radius: 17px;
        border-top-left-radius: 17px;
    }

    /* ---------------secondsectioncss */
    .hero {
        background: #fff;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .hero-content h2 {
        font-size: 36px;
        /* color: #4f8f6f; */
        color: #206785;
        margin-bottom: 40px;
    }

    /* Search container */
    .search-box {
        max-width: 900px;
        margin: auto;

        border: 2px solid transparent;
        border-radius: 18px;

        background:
            linear-gradient(#fff, #fff) padding-box,
            linear-gradient(to right, #199e82, #206785) border-box;

        display: flex;
        align-items: center;
        padding: 10px;
        height: 130px;



    }

    /* Input */
    .search-box input {
        flex: 1;
        border: none;
        font-size: 16px;
        padding: 14px;
        outline: none;
        margin-top: -76px;
    }

    /* Button */
    .search-box button {
        /* background: linear-gradient(90deg, #2bb673, #1f9c68); */
        background: linear-gradient(to right, #199e82, #206785);
        border: none;
        color: white;
        padding: 14px 22px;
        border-radius: 25px;
        cursor: pointer;
        font-weight: 600;
        margin-top: 76px;
    }


    /* Hover */
    .search-box button:hover {
        /* opacity: 0.9; */
        /* background: #168a5d; */
        background: #206a85;
    }

    upload-btn:hover {
        background: #206a85;
    }

    @media (max-width: 900px) {
        .search-bar {
            flex-wrap: wrap;
            margin: 20px 00px;

        }

        .head {
            margin-left: 0px;
        }

        .search-bar button {
            border-radius: 17px;
        }

        .newborder {
            border-bottom-right-radius: 17px;
            border-top-right-radius: 17px;
        }

        .tags-container {
            margin-left: -6px;
        }

        @media (max-width: 900px) {
            .search-box {
                display: block;
            }
        }


        .search-bar button {
            margin-top: 5px;
        }
    }

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

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

    /* --------------------footer style----------------- */
    .footer {
        /* background: #168a5d; */
        background: linear-gradient(to right, #199e82, #206785);
        color: #ffffff;
        padding: 60px 20px 20px;

    }

    .footer-container {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .footer-col h2.logo {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .footer-col h3 {
        margin-bottom: 20px;
        font-size: 16px;
        letter-spacing: 1px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        display: inline-block;
        padding-bottom: 5px;
    }

    .footer-col p {
        font-size: 14px;
        line-height: 1.9;
        opacity: 0.9;
    }

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

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

    .footer-col ul li a {
        text-decoration: none;
        color: #ffffff;
        font-size: 14px;
        opacity: 0.85;
        transition: 0.3s;
    }

    .footer-col ul li a:hover {
        opacity: 1;
        padding-left: 5px;
    }

    /* Social icons */
    .social-icons {
        margin-top: 20px;
    }

    .social-icons a {
        display: inline-block;
        width: 36px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        margin-right: 8px;
        border-radius: 50%;
        border: 1px solid rgba(120, 190, 125, 0.4);
        background: rgba(255, 255, 255, 0.1);
        color: white;
        text-decoration: none;
        transition: 0.3s;
    }

    .social-icons a:hover {
        background: #2bb673;
    }

    /* Bottom */
    .footer-bottom {
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 14px;
        opacity: 0.8;
    }

    /* -------------responsive-------------------- */
    /* Tablet */
    @media (max-width: 992px) {
        .footer-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Mobile */
    @media (max-width: 600px) {
        .footer-container {
            grid-template-columns: 1fr;
            text-align: left;
        }

        .footer-col h3 {
            border: none;
        }

        .social-icons a {
            margin: 5px;
        }
    }



    /* -------------end footer style------------------- */

    /* ---------------------upload style-------------- */
    .upload-section {
        padding: 0px 20px;
        background: #fff;
        font-family: 'Inter', sans-serif;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .upload-header {
        text-align: left;
        width: 100%;
        max-width: 900px;
        margin-bottom: 25px;
    }

    .upload-header h2 {
        font-size: 2rem;
        color: var(--dark-text);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .upload-header p {
        color: var(--gray-text);
        font-size: 1.1rem;
    }

    /* Main Card Container */
    .upload-card {
        width: 100%;
        max-width: 900px;
        background: #fff;
        border-radius: 15px;
        padding: 40px;
        /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
        box-shadow: 10px 17px 110px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid var(--border-light);
    }

    /* Dashed Drop Zone */
    .drop-zone {
        width: 100%;
        border: 2px dashed var(--border-light);
        border-radius: 10px;
        padding: 40px 20px;
        text-align: center;
        margin-bottom: 30px;
        transition: border-color 0.3s ease;
        cursor: pointer;
        border: 1px dashed;
    }

    .drop-zone:hover {
        border-color: var(--primary-green);
    }

    .drop-zone p {
        font-size: 1.2rem;
        color: var(--dark-text);
        margin-bottom: 5px;
    }

    .drop-zone span {
        color: var(--primary-green);
        font-weight: 600;
        text-decoration: underline;
    }

    .file-types {
        font-size: 0.85rem;
        color: var(--gray-text);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Action Button */
    .upload-btn {
        /* background: linear-gradient(90deg, #38d39f, #27ae60); */
        background: linear-gradient(to right, #199e82, #206785);
        color: white;
        border: none;
        padding: 15px 40px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .upload-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
    }

    .upload-btn i {
        font-size: 0.9rem;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .upload-header h2 {
            font-size: 1.6rem;
        }

        .upload-card {
            padding: 25px;
        }

        .drop-zone {
            padding: 30px 15px;
        }
    }

    /* ------------------endupload style--------------- */

    /* -----------------boxes----------------- */
    .services-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns for desktop */
        gap: 20px;
        padding: 36px 5%;
        max-width: 1350px;
        /* margin: 0 auto; */
        background: #fff;
    }

    .service-box {
        background: #f8f9fa;
        border: 2px solid transparent;
        border-radius: 12px;
        padding: 30px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .service-box:hover {
        background: #ffffff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);

        border-color: #169581;
    }

    /* Active/Highlighted state */
    .active-border {

        background: #ffffff;
    }

    .service-box i {
        font-size: 1.8rem;
        margin-bottom: 25px;
        display: block;
    }

    .service-box h3 {
        font-size: 1.2rem;
        color: #1a1a1a;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .service-box p {
        color: #666;
        font-size: 0.95rem;
    }

    /* Specific Icon Colors */
    .color-orange {
        color: #ff8c00;
    }

    .color-red {
        color: #e63946;
    }

    .color-blue {
        color: #00b4d8;
    }

    .color-green {
        color: #2a9d8f;
    }

    .color-purple {
        color: #206785;
    }

    .color-magenta {
        color: #d62828;
    }

    /* Bottom Button */
    .center-btn {
        text-align: center;
        padding-bottom: 50px;
    }

    .explore-btn {
        background: transparent;
        border: 2px solid #206785;
        color: #206785;
        padding: 12px 40px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: 0.3s;
    }

    .explore-btn:hover {
        /* background: #206885; */
        color: #fff;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .services-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .services-container {
            grid-template-columns: 1fr;
        }
    }

    /* -----------------endboxes-------------- */
    .but {
        /* background: #1ea672; */

        color: #000;
        border: none;
        padding: 17px 83px;
        border-radius: 42px;
        font-weight: 500;
        cursor: pointer;
        font-size: 17px;
    }

    .but:hover {
        color: #484848;
    }

    .newbut {
        justify-self: center;
        border: 2px solid #169581;
        border-radius: 42px;
    }

    /* ------------------dropdown----------------------- */
    .search-box-wrapper {
        display: flex;
        align-items: center;
        background: #fff;
        border: 1.5px solid #27ae60;
        border-radius: 12px;
        /* Slight border radius for the whole box */
        overflow: visible;
        width: 100%;
        max-width: 900px;
    }

    .input-group {
        display: flex;
        align-items: center;
        padding: 0 15px;
        border-right: 1px solid #eee;
        flex: 1;
        position: relative;
    }

    .icon {
        color: #27ae60;
        margin-right: 10px;
    }

    /* Custom Dropdown Styling */
    .custom-select {
        width: 100%;
        position: relative;
        cursor: pointer;
    }

    .select-trigger {
        padding: 15px 0;
        font-size: 0.95rem;
        color: #4b5563;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .custom-options {
        position: absolute;
        top: 100%;
        left: -15px;
        width: calc(100% + 30px);
        background: white;
        border: 1px solid #eee;
        border-radius: 0 0 12px 12px;
        /* Bottom rounded corners */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 100;
    }

    .custom-select:hover .custom-options {
        display: block;
    }

    .option {
        display: block;
        padding: 12px 15px;
        color: #4b5563;
        transition: background 0.2s;
    }

    /* NO BLUE HOVER: Using a light green or grey instead */
    .option:hover {
        background: #a3dfbc;
        color: #1c221e;
        opacity: 0.8;
    }

    .location-input,
    .insurance-select {
        border: none;
        outline: none;
        padding: 15px;
        flex: 1;
        border-right: 1px solid #eee;
    }

    .search-btn {
        background: #27ae60;
        color: white;
        border: none;
        padding: 15px 30px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 0 10px 10px 0;
    }

    /* -----------dropdown--------- */
    /* ----------------mynewcss------------ */
    .results-header-container {
        padding: 20px 5%;
        background: #fff;
        border-bottom: 1px solid #f5f5f5;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    /* Unified Search Bar Styling */
    .search-bar-unified {
        display: flex;
        align-items: center;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .input-segment {
        flex: 1;
        padding: 10px 15px;
        border-right: 1px solid var(--border-color);
    }

    .input-segment select,
    .input-segment input {
        width: 100%;
        border: none;
        outline: none;
        font-size: 0.95rem;
        background: transparent;
    }

    .search-btn-unified {
        background: linear-gradient(to right, #27ae60, #2ecc71);
        color: white;
        border: none;
        padding: 15px 30px;
        font-weight: 600;
        cursor: pointer;
        font-size: 1rem;
    }

    /* Filter and Price Row */
    .filter-stats-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .procedure-info-box {
        background: #e9f7ef;
        border-left: 4px solid var(--primary-green);
        padding: 8px 15px;
        border-radius: 6px;
    }

    .proc-title {
        display: block;
        font-weight: 700;
        color: var(--primary-green);
        font-size: 1.1rem;
    }

    .proc-code {
        font-size: 0.8rem;
        color: var(--text-gray);
    }

    .filter-dropdown-group {
        display: flex;
        gap: 20px;
    }

    .filter-item label {
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--text-gray);
        margin-bottom: 5px;
    }

    .filter-item select {
        padding: 6px 12px;
        border-radius: 6px;
        border: 1px solid var(--border-color);
    }

    .price-summary-card {
        text-align: center;
        background: #fdfdfd;
        border: 1px solid #e9f7ef;
        padding: 10px 25px;
        border-radius: 12px;
    }

    .main-price {
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--primary-green);
    }

    .price-indicators {
        display: flex;
        gap: 20px;
        font-size: 0.7rem;
        margin-top: 5px;
    }

    .low-price b {
        color: #27ae60;
    }

    .high-price b {
        color: #e74c3c;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .search-bar-unified {
            flex-direction: column;
            border-radius: 8px;
        }

        .input-segment {
            width: 100%;
            border-right: none;
            border-bottom: 1px solid var(--border-color);
        }

        .search-btn-unified {
            width: 100%;
        }

        .filter-stats-row {
            justify-content: center;
            text-align: center;
        }

        .price-summary-card {
            width: 100%;
        }
    }

    /* .dropdown:hover{
      background: #c4f9e2;
    } */
    /* -----------dropdown------------ */
    .custom-dropdown {
        position: relative;
        width: 250px;
        z-index: 50;
    }

    .selected {
        padding: 12px;
        border: 1px solid #ccc;
        /* border-radius: 8px; */
        background: #f6f7f8;
        cursor: pointer;
        border-top-left-radius: 17px;
        border-bottom-left-radius: 17px;
        height: 63px;
        color: #757575;
        align-content: center;
        font-size: 14px;
    }

    .selected1 {
        padding: 12px;
        border: 1px solid #ccc;
        /* border-radius: 8px; */
        background: #f6f7f8;
        cursor: pointer;
        border-top-right-radius: 17px;
        border-bottom-right-radius: 17px;
        height: 52px;
        color: #757575;
    }


    .option {
        padding: 10px;
        cursor: pointer;
    }

    /* .option:hover {
      background: #f2f2f2;
    } */
    .search-bar,
    .custom-dropdown {
        position: relative;
        z-index: 20;
    }

    .custom-dropdown,
    .search-bar input {
        flex: 1 1 200px;
        min-width: 0;
    }

    .search-bar button {
        flex: 0 0 auto;
    }

    @media (max-width: 768px) {


        .search-bar button {
            width: 100%;
        }

        .bottom-actions {
            margin-top: -44px;
            margin-left: 34px;
        }

    }

    /* ------------------lable */
    .search-field {
        position: relative;
        background: #fff;
        border: 1px solid #e5e5e5;
        padding: 18px 16px;
        width: 350px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        font-family: Arial, sans-serif;
        border-bottom-left-radius: 17px;
        border-top-left-radius: 17px;

    }

    .search-field input {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .search-field input:focus {
        outline: none;
        box-shadow: none;
    }

    .search-label {
        font-size: 12px;
        color: #7a7a7a;
        display: block;
        margin-bottom: 4px;
    }

    .custom-dropdown {
        cursor: pointer;
        position: relative;
        color: #383838;
    }

    .selected {
        font-size: 15px;
        color: #333;
    }

    .options {
        display: none;
        position: absolute;
        top: 78px;
        left: 10px;
        width: 333px;
        background: white;
        border: 1px solid #e5e5e5;
        border-radius: 5px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        overflow-y: scroll;
        max-height: 300px;

        display: none;
        /* default hidden */
        z-index: 999;
    }

    .options.show {
        display: block;
        /* show when active */
    }

    .option {
        padding: 10px 16px;
        cursor: pointer;
    }



    .field-box {
        flex: 1;
        min-width: 220px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 14px 18px;
        flex-direction: column;
        justify-content: center;
        background: #ffffff;
        border: 1px solid #e7e7e7;
        box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.2);

    }

    .field-label {
        font-size: 12px;
        color: #000000;
        display: block;
        margin-bottom: 4px;
    }

    .field-box input {
        border: none;
        outline: none;

        font-size: 14px;
        color: #1a1a1a;
        background: #ffffff;
    }

    .custom-dropdown input {
        width: 100%;
        padding: 12px;
        border: none;
        outline: none;
        font-size: 15px;
        background: transparent;
        cursor: text;
        /* Important */
    }

    .search-wrapper {
        /* use your actual wrapper class */
        position: relative;
        overflow: visible !important;
    }

    /* ------------------------newsection----------------------- */
    .specialties-section {
        padding: 0 20px;
        background: #f9fbfa;
    }

    /* Grid Layout */
    .specialties-container {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* border: 1px solid #0db760;
    border-radius: 12px; */
        overflow: hidden;
    }

    /* Card */
    .specialty-card {
        text-align: center;
        padding: 40px 20px;
        /* border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color); */
        cursor: pointer;
        transition: all 0.3s ease;
        background: #fff;
        border: 5px solid #f9fbfa;
        border-radius: 15px;
    }

    .specialty-card:nth-child(4n) {
        border-right: none;
    }

    .specialty-card:nth-last-child(-n+4) {
        border-bottom: none;
    }

    .specialty-card h4 {
        margin-top: 18px;
        font-size: 1.1rem;
        color: var(--text-dark);
        font-weight: 600;
    }

    /* Icon Circle */
    .icon-circle {
        width: 75px;
        height: 75px;
        margin: auto;
        border-radius: 50%;
        background: var(--light-green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        /* color: var(--primary-green); */
        color: #1f6d84;
        transition: all 0.3s ease;
    }

    /* Hover Effect */
    .specialty-card:hover {
        /* background: var(--light-green); */
        border: 1px solid #206985;
        /* border-image: linear-gradient(to right, #199e82, #206785) 1; */
    }

    .specialty-card:hover .icon-circle {
        background: #206885;
        color: #fff;
        transform: scale(1.1);
    }

    /* Active Card (like selected in Figma) */
    .specialty-card.active {
        background: #fff;
    }

    .specialty-card.active .icon-circle {
        background: var(--primary-green);
        color: #fff;
    }

    /* RESPONSIVE */

    /* Tablet */
    @media (max-width: 992px) {
        .specialties-container {
            grid-template-columns: repeat(2, 1fr);
        }

        .specialty-card:nth-child(2n) {
            border-right: none;
        }

        .specialty-card:nth-last-child(-n+2) {
            border-bottom: none;
        }
    }

    /* Mobile */
    @media (max-width: 576px) {
        .specialties-container {
            grid-template-columns: 1fr;
        }

        .specialty-card {
            border-right: none !important;
        }

        .specialty-card:last-child {
            border-bottom: none;
        }
    }

    /* .specialty-card:hover{
border: 1px solid #27ae60;
} */
    /* -------------nesection */
    /* Section */
    .doctors-section {
        padding: 0px 75px;
        background: #f9fbfa;
    }

    @media (max-width: 768px) {
        .doctors-section {
            padding: 0px 20px;
        }
    }

    /* Grid Layout */
    .doctors-container {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    /* Doctor Card */
    .doctor-card {
        background: #fff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .doctor-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .doctor-info {
        padding: 5px;
        text-align: center;
    }

    .doctor-info h4 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--dark-text);
    }

    .doctor-info p {
        margin-top: 8px;
        font-size: 0.85rem;
        color: #149082;
        font-weight: 500;
    }

    /* Hover Effect */
    .doctor-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(31, 143, 95, 0.2);
    }

    /* Active Card (like selected in Figma) */
    .doctor-card:hover {
        border: 2px solid #138f82;
    }

    /* Join Card */
    .join-card {
        background: #138f82;
        color: white;
        border-radius: 14px;
        padding: 40px 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .join-card h3 {
        margin-bottom: 15px;
    }

    .join-card p {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    .join-btn {
        margin: 25px auto 0;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #fff;
        color: var(--primary-green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
    }

    .join-btn:hover {
        transform: scale(1.1);
    }

    .explore-btn-wrapper {
        text-align: center;
        margin-top: 40px;
    }

    /* Button Style */
    .explore-btn {
        padding: 14px 32px;
        font-size: 16px;
        font-weight: 500;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        color: white;
        background: linear-gradient(to right, #199e82, #206785);
        transition: all 0.3s ease;
    }

    /* Hover Effect */
    .explore-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    /* ================= RESPONSIVE ================= */

    /* Tablet */
    @media (max-width: 992px) {
        .doctors-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Mobile */
    @media (max-width: 576px) {
        .doctors-container {
            grid-template-columns: 1fr;
        }

        .doctor-card img {
            height: 255px;
        }
    }



    /* --------------------responsive code---------------- */
    @media (max-width: 992px) {

        .search-bar {
            flex-wrap: wrap;
        }

        .field-box {
            flex: 1 1 48%;
        }

        .search-bar button {
            flex: 1 1 100%;
            height: 50px;
        }
    }

    @media (max-width: 768px) {

        .search-bar {
            flex-direction: column;
            gap: 10px;
        }

        .field-box {
            width: 100%;
            height: 76px;
            border-radius: 17px;
            margin: 5px;
        }

        .options {
            width: 280px;
        }

        .search-bar button {
            width: 100%;
            height: 50px;
            border-radius: 12px;
        }

        /* .bottom-actions{
    margin-top: 30px;
  } */
    }


    @media (max-width: 768px) {
        .search-bar {
            flex-direction: column;
            align-items: stretch;
            gap: 12px;
            display: block;
            height: 259px;
        }
    }

    @media (max-width: 768px) {
        .search-bar button {
            width: 100%;
            height: 50px;
            border-radius: 12px;
            margin-top: 10px;
        }

        .search-box input {
            margin-top: 0;
        }
    }

    @media only screen and (min-width: 1300px) {
        .bottom-actions {
            margin-left: 52px;
        }
    }

    @media (max-width: 992px) {
        .bottom-actions {
            margin-left: 0px;
        }
    }

    .gradient-text {
        background: linear-gradient(to right, #199e82, #206785);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #searchInput::placeholder {
        color: #4b5563;
        /* dark gray */
        opacity: 1;
        /* important */
    }

    /* -------------------doctor card------------------ */
    .docMain {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .doctor-card {
        background: #ffffff;
        padding: 13px;
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        transition: 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .doctor-card:hover {
        transform: translateY(-6px);
    }

    .doctor-header {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .doctor-header img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
    }

    .specialty {
        color: #6b7280;
        font-size: 14px;
    }

    .rating {
        font-size: 13px;
        color: #f59e0b;
    }

    .availability {
        margin: 15px 0;
        background: #e6f7f3;
        color: #206785;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
        width: fit-content;
    }

    .price {
        font-size: 22px;
        font-weight: 700;
    }

    .price-sub {
        font-size: 13px;
        color: #6b7280;
    }

    .book-btn {
        margin-top: 15px;
        padding: 12px;
        border: none;
        border-radius: 12px;
        background: linear-gradient(to right, #199e82, #206785);
        color: white;
        font-weight: 600;
        cursor: pointer;
    }

    @media (max-width: 1024px) {
        .docMain {
            grid-template-columns: repeat(2, 1fr);
        }
    }


    /* ----------------mycarddesign------------------------ */

    .icon-circle1 {
        color: #ff4405;
        width: 75px;
        height: 75px;
        margin: auto;
        border-radius: 50%;
        background: var(--light-green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        /* color: var(--primary-green); */

        transition: all 0.3s ease;
    }

    .icon-circle2 {
        color: #0ba5ec;
        width: 75px;
        height: 75px;
        margin: auto;
        border-radius: 50%;
        background: var(--light-green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        /* color: var(--primary-green); */

        transition: all 0.3s ease;
    }

    .icon-circle3 {
        color: #15b79e;
        width: 75px;
        height: 75px;
        margin: auto;
        border-radius: 50%;
        background: var(--light-green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        /* color: var(--primary-green); */

        transition: all 0.3s ease;
    }

    .icon-circle4 {
        color: #6172f3;
        width: 75px;
        height: 75px;
        margin: auto;
        border-radius: 50%;
        background: var(--light-green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        /* color: var(--primary-green); */

        transition: all 0.3s ease;
    }

    .icon-circle5 {
        color: #0ba5ec;
        width: 75px;
        height: 75px;
        margin: auto;
        border-radius: 50%;
        background: var(--light-green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        /* color: var(--primary-green); */

        transition: all 0.3s ease;
    }

    .icon-circle6 {
        color: #d444f1;
        width: 75px;
        height: 75px;
        margin: auto;
        border-radius: 50%;
        background: var(--light-green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        /* color: var(--primary-green); */

        transition: all 0.3s ease;
    }

    .icon-circle7 {
        color: #44f181;
        width: 75px;
        height: 75px;
        margin: auto;
        border-radius: 50%;
        background: var(--light-green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        /* color: var(--primary-green); */

        transition: all 0.3s ease;
    }

    .icon-circle8 {
        color: #f1b444;
        width: 75px;
        height: 75px;
        margin: auto;
        border-radius: 50%;
        background: var(--light-green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        /* color: var(--primary-green); */

        transition: all 0.3s ease;
    }

    .specialty-card:hover {}

    /* ---------------------chatbox popup------------------ */
    /* Floating Button */
    .chat-btn {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 65px;
        height: 65px;
        background: linear-gradient(to right, #199e82, #206785);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        cursor: pointer;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        z-index: 9999;
    }

    /* Popup */
    .chat-btn {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 65px;
        height: 65px;
        background: linear-gradient(to right, #199e82, #206785);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        cursor: pointer;
        z-index: 9999;
    }

    /* Popup Container */
    .chat-popup {
        position: fixed;
        bottom: 110px;
        right: 25px;
        width: 380px;
        background: #f4f4f4;
        border-radius: 20px;
        display: none;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        z-index: 9999;
    }

    /* Green Top */
    .popup-top {
        height: 100px;
        background: linear-gradient(to right, #199e82, #206785);
    }

    /* Logo Circle */
    .popup-logo {
        width: 110px;
        height: 110px;
        background: #e5e7eb;
        border-radius: 50%;
        margin: -55px auto 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 6px solid #f4f4f4;
    }

    .popup-logo img {
        width: 60px;
    }

    /* White Content */
    .popup-content {
        padding: 25px;
        text-align: center;
    }

    .popup-content h3 {
        margin-top: 15px;
        font-size: 20px;
    }

    .popup-content p {
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
    }

    /* Ask Box */
    .ask-box {
        background: #fff;
        border-radius: 15px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .ask-box textarea {
        width: 100%;
        height: 100px;
        /* BIG TEXT AREA */
        border: none;
        outline: none;
        resize: none;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .ask-btn {
        width: 100%;
        padding: 12px;
        border: none;
        border-radius: 30px;
        background: linear-gradient(to right, #199e82, #206785);
        color: #fff;
        font-weight: 500;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .ask-btn:hover {
        transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 480px) {
        .chat-popup {
            width: 95%;
            right: 2.5%;
        }
    }

    /* ---------------popupbutton------------ */
    /* Floating Button */
    .chat-btn {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 65px;
        height: 65px;
        background: linear-gradient(to right, #199e82, #206785);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        cursor: pointer;
        z-index: 9999;
    }

    /* Popup Container */
    .chat-popup {
        position: fixed;
        bottom: 110px;
        right: 25px;
        width: 380px;
        background: #f4f4f4;
        border-radius: 20px;
        display: none;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        z-index: 9999;
    }

    /* Green Top */
    .popup-top {
        height: 100px;
        background: linear-gradient(to right, #199e82, #206785);
    }

    /* Logo Circle */
    .popup-logo {
        width: 110px;
        height: 110px;
        background: #e5e7eb;
        border-radius: 50%;
        margin: -55px auto 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 6px solid #f4f4f4;
    }

    .popup-logo img {
        width: 60px;
    }

    /* White Content */
    .popup-content {
        padding: 25px;
        text-align: center;
    }

    .popup-content h3 {
        margin-top: 15px;
        font-size: 20px;
    }

    .popup-content p {
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
    }

    /* Ask Box */
    .ask-box {
        background: #fff;
        border-radius: 15px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .ask-box textarea {
        width: 100%;
        height: 100px;
        /* BIG TEXT AREA */
        border: none;
        outline: none;
        resize: none;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .ask-btn {
        width: 100%;
        padding: 12px;
        border: none;
        border-radius: 30px;
        background: linear-gradient(to right, #199e82, #206785);
        color: #fff;
        font-weight: 500;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .ask-btn:hover {
        transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 480px) {
        .chat-popup {
            width: 95%;
            right: 2.5%;
        }
    }

    /* ------------location------------- */
    .doctor-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 12px 0;
    }

    /* Location */
    .location {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: #000000;
    }

    .location i {
        color: #206785;
        /* your brand color */
        font-size: 14px;
    }

    /* Availability */
    .availability {
        font-size: 12px;
        font-weight: 500;
        color: #206785;
    }

    /* --------------------video css------------------- */
    .section-title {
        font-size: 32px;
        font-weight: 600;
        color: #1f2937;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        margin: 20px 0 40px;
    }

    .specialties-layout {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .specialties-left {
        flex: 1.2;
    }

    .specialties-right {
        flex: 1;
    }

    /* Make video responsive */
    .video-wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        /* 16:9 ratio */
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.2);
        margin-top: 20px;
    }

    .video-wrapper iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .specialties-layout {
            flex-direction: column;
        }

        .specialties-right {
            margin-top: 30px;
        }
    }

    /* ----------------chatboxcss--------------- */


    .chat-popup {
        position: fixed;
        bottom: 90px;
        right: 30px;
        width: 340px;
        transition: all 0.35s ease;
    }

    /* Expanded state */
    .chat-popup.expanded {
        width: 650px;
        /* horizontal expansion */
        max-width: 90vw;
    }

    /* Expand button style */
    .expand-btn {
        position: absolute;
        top: 12px;
        right: 12px;
        background: transparent;
        border: none;
        font-size: 18px;
        cursor: pointer;
    }


    /* stylenewFinalcss */

    /* ----------------firstsectioncss----------------- */
    .tc-hero-section {
        width: 100%;
        padding: 55px 20px;
        background: linear-gradient(135deg, #eef4f6 0%, #d7e4ea 100%);
    }

    .tc-hero-wrapper {
        max-width: 1200px;
        margin: auto;
        text-align: left;
    }

    .tc-hero-title {
        font-size: 42px;
        font-weight: 700;
        color: #1f2937;
        line-height: 1.3;
        font-family: lato;
    }

    .tc-hero-title span {
        color: #1f8a7a;
        font-family: lato;
    }

    .tc-hero-subtitle {
        margin-top: 15px;
        font-size: 18px;
        color: #4b5563;
    }

    /* ================= SEARCH BOX ================= */

    .tc-search-container {
        margin-top: 40px;
        display: flex;
        flex-wrap: wrap;
        background: #ffffff;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        /* overflow: hidden; */
    }

    .tc-search-field {
        flex: 1;
        min-width: 230px;
        padding: 18px 25px;
        border-right: 1px solid #eeeeee;
    }

    .tc-search-field:last-child {
        border-right: none;
    }

    .tc-search-field label {
        font-size: 12px;
        color: #000000;
        display: block;
        /* margin-bottom: 6px; */
    }

    .tc-input,
    .tc-select {
        width: 100%;
        border: none;
        outline: none;
        font-size: 16px;
        background: transparent;
        cursor: pointer;
        color: #666666;
    }

    /* Blinking focus effect */
    .tc-select:focus,
    .tc-input:focus {
        border-bottom: 2px solid #1f8a7a;
        animation: tc-blink 1s infinite;
    }

    @keyframes tc-blink {
        0% {
            border-color: #1f8a7a;
        }

        50% {
            border-color: transparent;
        }

        100% {
            border-color: #1f8a7a;
        }
    }

    /* Search Button */
    .tc-search-btn {
        background: linear-gradient(to right, #199e82, #206785);
        color: #ffffff;
        border: none;
        padding: 0 40px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s ease;
        border-bottom-right-radius: 18px;
        border-top-right-radius: 18px;
    }

    .tc-search-btn:hover {
        opacity: 0.9;
    }

    /* Quick Links */
    .tc-quick-links {
        margin-top: 30px;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .tc-quick-links button {
        background: linear-gradient(to right, #199e82, #206785);
        color: #ffffff;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s ease;
        font-size: 0.85rem;
        text-decoration: none;
        font-weight: 500;
    }

    .tc-quick-links button:hover {
        background: #166e63;
    }

    /* ================= RESPONSIVE ================= */

    @media (max-width: 992px) {
        .tc-hero-title {
            font-size: 38px;
        }
    }

    @media (max-width: 768px) {
        .tc-hero-section {
            padding: 70px 15px;
        }

        .tc-hero-title {
            font-size: 30px;
        }

        .tc-search-container {
            flex-direction: column;
        }

        .tc-search-field {
            border-right: none;
            border-bottom: 1px solid #eeeeee;
        }

        .tc-search-btn {
            width: 100%;
            padding: 18px;
        }

        .tc-quick-links {
            justify-content: flex-start;
        }
    }

    .tc-hero-section {
        background-image: url('/frontend/assets/img/images/backgroundfinal.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding-bottom: 1px;
    }


    /* ----------------------endfirstsectioncss-------------- */

    /* ---------------------navbar---------------------- */
    /* ===== NAVBAR MAIN ===== */

    .tc-nav {
        width: 100%;
        background: #f9f9f9;
        padding: 10px 20px;
        font-family: 'Montserrat', sans-serif;
    }

    .tc-nav-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .tc-nav-logo img {
        width: 120px;
        height: auto;
    }

    /* ===== MENU ===== */

    .tc-nav-menu {
        list-style: none;
        display: flex;
        gap: 30px;
        margin-left: auto;
        /* pushes menu to right */
        margin-right: 40px;
        /* space before Sign In button */
    }


    .tc-nav-menu li a {
        text-decoration: none;
        color: #1f2937;
        font-weight: 500;
        transition: 0.3s;
    }

    .tc-nav-menu li a:hover {
        color: #206885;
    }

    /* ===== RIGHT SIDE ===== */

    .tc-nav-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .tc-login-btn {
        background: linear-gradient(to right, #199e82, #206785);
        color: #fff;
        padding: 8px 18px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
        transition: 0.3s;
    }

    .tc-login-btn:hover {
        opacity: 0.9;
    }

    /* ===== HAMBURGER ===== */

    .tc-hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .tc-hamburger span {
        width: 25px;
        height: 3px;
        background: #1f2937;
        border-radius: 3px;
        transition: 0.3s;
    }

    /* ===== MOBILE MENU ===== */

    @media (max-width: 992px) {

        .tc-nav-menu {
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, #eef4f6 0%, #d7e4ea 100%);
            flex-direction: column;
            gap: 20px;
            padding: 30px 20px;
            display: none;
        }

        .tc-nav-menu.active {
            display: flex;
        }

        .tc-login-btn {
            display: none;
        }

        .tc-hamburger {
            display: flex;
        }
    }

    /* ------------------------endnavbar------------------- */

    /* ================= SECTION ================= */

    .tc-provider-section {
        padding: 80px 20px;
        background: #f9fbfc;
    }

    .tc-provider-title {
        text-align: center;
        font-size: 36px;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 50px;
        font-family: 'Montserrat', sans-serif;
    }

    /* ================= GRID ================= */

    .tc-provider-grid {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    /* ================= CARD ================= */

    .tc-provider-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: 0.3s ease;
    }

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

    /* ================= TOP ================= */

    .tc-provider-top {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .tc-provider-top img {
        width: 70px;
        height: 70px;
        border-radius: 12px;
        object-fit: cover;
    }

    .tc-provider-info h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .tc-specialty {
        font-size: 14px;
        color: #1f8a7a;
    }

    .tc-rating {
        font-size: 13px;
        color: #555;
    }

    /* ================= META ================= */

    .tc-provider-meta {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        margin: 15px 0;
        color: #555;
    }

    .tc-available {
        color: #1f8a7a;
        font-weight: 500;
    }

    /* ================= DESCRIPTION ================= */

    .tc-provider-desc {
        font-size: 13px;
        color: #444;
        margin-bottom: 15px;
    }

    /* ================= BUTTON ================= */

    .tc-appointment-btn {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 8px;
        background: linear-gradient(135deg, #1f8a7a, #146c63);
        color: white;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .tc-appointment-btn:hover {
        opacity: 0.9;
    }

    /* ================= RESPONSIVE ================= */

    /* Tablet */
    @media (max-width: 992px) {
        .tc-provider-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Mobile */
    @media (max-width: 600px) {
        .tc-provider-grid {
            grid-template-columns: 1fr;
        }

        .tc-provider-title {
            font-size: 26px;
        }

        .tc-provider-top {
            flex-direction: row;
        }
    }

    .tc-provider-card:hover {
        transform: translateY(-6px);
        border: 2px solid #206885;
        box-shadow: 0 10px 30px rgba(31, 143, 95, 0.2);

    }

    /* -------------------------inshurance popup--------------- */
    /* ================= TRIGGER ================= */

    .tc-insurance-trigger {
        cursor: pointer;
    }

    .tc-insurance-display {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 15px;
    }

    /* ================= OVERLAY ================= */

    .tc-modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    /* ================= MODAL BOX ================= */

    .tc-modal-box {
        background: #fff;
        width: 500px;
        max-height: 80vh;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        animation: fadeIn 0.3s ease;
    }

    /* Header */
    .tc-modal-header {
        padding: 18px 20px;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .tc-modal-header h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .tc-modal-header button {
        border: none;
        background: none;
        font-size: 18px;
        cursor: pointer;
    }

    /* Body */
    .tc-modal-body {
        padding: 15px;
        overflow-y: auto;
    }

    .tc-insurance-item {
        padding: 12px;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.2s;
        margin: 5px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .tc-insurance-item:hover {
        background: #f2f6f7;
    }

    /* ================= MOBILE STYLE ================= */

    @media (max-width: 768px) {

        .tc-modal-overlay {
            align-items: flex-end;
        }

        .tc-modal-box {
            width: 100%;
            height: 100%;
            max-height: 100%;
            border-radius: 0;
        }

    }

    .tc-insurance-trigger {
        flex: 1;
        min-width: 230px;
        padding: 18px 25px;
        border-right: 1px solid #eeeeee;
    }

    /* ------------inshuranceplanadditional------------- */
    .tc-insurance-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px;
        border-radius: 10px;
        transition: 0.3s ease;
        cursor: pointer;
    }

    .tc-insurance-item:hover {
        background: #f0fdf4;
    }

    /* Left side */
    .tc-insurance-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .tc-insurance-img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    /* Right Button */
    .tc-personalize-btn {
        background: #e6f7f4;
        color: #138f82;
        border: none;
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 20px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .tc-personalize-btn:hover {
        background: linear-gradient(180deg, #2dc97c 0%, #138f82 100%);
        color: white;
    }

    .tc-modal-footer {
        padding: 18px;
        font-size: 13px;
        color: #535353;
    }

    /* ----------secondpopupofinshurance----------------- */
    /* Overlay */
    .tc-plans-modal {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        justify-content: center;
        align-items: center;
        z-index: 2000;
    }

    /* Box */
    .tc-plans-content {
        background: #fff;
        width: 520px;
        max-height: 85vh;
        border-radius: 18px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    }

    /* Header */
    .tc-plans-header {
        background: #fff;
        color: #000;
        padding: 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .tc-plans-close {
        font-size: 22px;
        cursor: pointer;
    }

    /* Search */
    .tc-plans-search {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .tc-plans-search input {
        width: 100%;
        padding: 10px 14px;
        border-radius: 8px;
        border: 1px solid #ddd;
        outline: none;
    }

    /* Plan List */
    .tc-plans-list {
        padding: 10px 15px;
        overflow-y: auto;
        flex: 1;
    }

    .tc-plan-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
        border-radius: 10px;
        transition: 0.3s ease;
        margin: 5px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .tc-plan-row:hover {
        background: #f0fdf4;
    }

    .tc-mini-btn {
        background: #e6f7f4;
        color: #138f82;
        border: none;
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 20px;
        cursor: pointer;
        transition: 0.3s;
    }

    .tc-mini-btn:hover {
        background: #138f82;
        color: white;
    }

    /* Footer */
    .tc-plans-footer {
        padding: 12px 18px;
        font-size: 13px;
        color: #6b7280;
        border-top: 1px solid #eee;
    }

    /* Responsive */
    @media (max-width: 600px) {
        .tc-plans-content {
            width: 95%;
            height: 90vh;
        }
    }

    /* ------------------------------------------------------------- */

    .tc-plans-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 18px;
        background: #fff;
        border-bottom: 1px solid #eee;
    }

    .tc-back-btn {
        background: none;
        border: none;
        font-size: 14px;
        color: #138f82;
        font-weight: 500;
        cursor: pointer;
    }

    .tc-plans-close {
        font-size: 20px;
        cursor: pointer;
    }

    .tc-plans-title {
        padding: 15px 18px 10px;
        font-size: 18px;
        font-weight: 600;
    }

    .tc-plans-content {
        width: 480px;
        max-height: 90vh;
        border-radius: 20px;
    }

    @media (max-width: 600px) {
        .tc-plans-content {
            width: 100%;
            height: 100vh;
            border-radius: 0;
        }
    }

    .tc-open-plans {
        text-decoration: none;
        color: #292929;
        font-size: 13px;
        margin: 5px;

    }

    /* ------------------dragsectioncss-------------- */
    .upload-section {
        margin-top: 10px;
        padding: 20px 20px;
        background: #fff;
        font-family: 'Montserrat', sans-serif;
    }

    .upload-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }

    /* LEFT SIDE */
    .upload-left {
        flex: 1;
    }

    .upload-left h1 {
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 42px;
        line-height: 1.4;
        font-family: lato;
    }

    .upload-left p {
        font-size: 16px;
        color: #4b5563;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    /* RIGHT SIDE */
    .upload-right {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .upload-card {
        width: 100%;
        max-width: 420px;
        background: #ffffff;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    /* DROP ZONE */
    .drop-zone {
        border: 2px dashed #d1d5db;
        padding: 40px 20px;
        text-align: center;
        border-radius: 12px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .drop-zone:hover {
        border-color: #206785;
        background: #c9dfe9;
    }

    .drop-zone span {
        color: #206785;
        font-weight: 600;
        cursor: pointer;
    }

    .file-types {
        font-size: 13px;
        color: #6b7280;
        margin-top: 8px;
    }

    /* BUTTON */
    .upload-btn {
        width: 55%;
        margin-top: 20px;
        padding: 14px;
        border: none;
        border-radius: 10px;
        background: linear-gradient(to right, #199e82, #206785);
        color: white;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .upload-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

    @media (max-width: 992px) {
        .upload-container {
            flex-direction: column;
            text-align: left;
        }

        .upload-left h1 {
            font-size: 28px;
        }

        .upload-card {
            max-width: 100%;
        }
    }

    @media (max-width: 576px) {
        .upload-section {
            padding: 40px 15px;
        }

        .upload-left h1 {
            font-size: 22px;
        }

        .drop-zone {
            padding: 30px 15px;
        }
    }

    /* -----------------------whysection----------------- */
    .why-section {
        padding: 18px 20px;
        background: #f9fafb;
        font-family: 'Montserrat', sans-serif;
    }

    .section-title {
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 40px;
        line-height: 1.4;
        font-family: lato;
    }

    .container {
        max-width: 1200px;
        margin: auto;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .why-card {
        background: white;
        padding: 50px;
        border-radius: 18px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
        transition: 0.3s ease;
    }

    .why-card:hover {
        transform: translateY(-8px);
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(to right, #199e82, #206785);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 20px;
        color: white;
    }

    .why-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: rgb(31, 41, 55);
        margin-top: 10px;
    }

    .why-card p {
        font-size: 15px;
        color: #6b7280;
        line-height: 1.6;
    }

    .why-card:hover {
        transform: translateY(-6px);
        border: 2px solid #206885;
        box-shadow: 0 10px 30px rgba(31, 143, 95, 0.2);
    }

    /* ------------------howitworks-------------------- */
    .how-section {
        padding: 80px 20px;
        background: white;
    }

    .steps-wrapper {
        display: grid;
        gap: 25px;
    }

    .step-card {
        display: flex;
        align-items: center;
        gap: 25px;
        background: #f3f4f6;
        padding: 30px;
        border-radius: 16px;
        border-left: 6px solid #2dc97c;
        transition: 0.3s ease;
    }

    .step-card:hover {
        background: #e6f9f2;
        transform: translateX(5px);
    }

    .step-number {
        font-size: 32px;
        font-weight: 700;
        color: #138f82;
        min-width: 60px;
    }

    .step-card h3 {
        margin-bottom: 6px;
        font-size: 18px;
        color: #1f2937;
    }

    .step-card p {
        font-size: 15px;
        color: #6b7280;
    }

    @media (max-width: 992px) {

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

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

        .step-card {
            flex-direction: column;
            align-items: flex-start;
        }

        .step-number {
            font-size: 26px;
        }
    }

    @media (max-width: 576px) {

        .why-section,
        .how-section {
            padding: 50px 15px;
        }

        .why-card,
        .step-card {
            padding: 25px;
        }

    }

    .how-section {
        padding: 0px 20px;
        background: #fff;
        font-family: 'Montserrat', sans-serif;
    }

    .section-title {
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 40px;
        line-height: 1.4;
        font-family: lato;
    }

    /* Timeline wrapper */
    .timeline {
        position: relative;
        max-width: 900px;
        margin: auto;
    }

    /* Vertical Line */
    .timeline::before {
        content: "";
        position: absolute;
        left: 32px;
        top: 0;
        width: 3px;
        height: 87%;
        background: linear-gradient(to right, #199e82, #206785);
        border-radius: 10px;

    }

    /* Each Item */
    .timeline-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 22px;
        position: relative;
    }

    /* Step Number Circle */
    .timeline-number {
        min-width: 65px;
        height: 65px;
        background: white;
        border: 2px solid #206785;
        color: #206785;
        font-size: 22px;
        font-weight: 700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: 0.3s ease;

    }

    /* Card */
    .timeline-content {
        background: white;
        padding: 15px;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
        transition: 0.3s ease;
        width: 100%;
    }

    .timeline-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #1f2937;
    }

    .timeline-content p {
        font-size: 15px;
        color: #6b7280;
        line-height: 1.6;
    }

    /* Hover Effects */
    .timeline-item:hover .timeline-number {
        background: linear-gradient(to right, #199e82, #206785);
        color: white;
        transform: scale(1.05);
    }

    .timeline-item:hover .timeline-content {
        transform: translateY(-6px);
    }


    @media (max-width: 768px) {

        .timeline::before {
            left: 30px;
        }

        .timeline-item {
            flex-direction: row;
            align-items: flex-start;
        }

        .timeline-number {
            margin-bottom: 15px;
        }

        .timeline-content {
            padding: 25px;
        }

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

    @media (max-width: 480px) {

        .how-section {
            padding: 60px 15px;
        }

        .timeline-number {
            width: 65px;
            height: 65px;
            font-size: 20px;
        }

    }

    /* ---------------newcardstyle------------ */
    .how-section {
        padding: 30px 20px;
        background: #fff;
        font-family: 'Montserrat', sans-serif;
        text-align: center;
    }

    .container {
        max-width: 1200px;
        margin: auto;
    }

    .section-title {
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 40px;
        line-height: 1.4;
        font-family: lato;
    }

    .section-subtitle {
        color: #6b7280;
        margin-top: 10px;
        margin-bottom: 60px;
        font-size: 16px;
    }

    /* Grid */
    .how-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    /* Card */
    .how-card {
        position: relative;
        background: white;
        padding: 50px 25px 40px;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        transition: 0.4s ease;
    }

    /* Watermark Step Number */
    .step-bg {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 70px;
        font-weight: 800;
        color: rgba(45, 201, 124, 0.08);
        pointer-events: none;
    }

    /* Icon */


    /* Text */
    .how-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #1f2937;
    }

    .how-card p {
        font-size: 15px;
        color: #6b7280;
        line-height: 1.6;
    }

    /* Hover */
    .how-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    }

    .how-card:hover .icon-circle {
        transform: scale(1.1);
    }

    @media (max-width: 1024px) {
        .how-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 640px) {
        .how-grid {
            grid-template-columns: 1fr;
        }

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

        .how-card {
            padding: 40px 20px;
        }
    }


    /* -----------------finalcss------------------ */

    .how-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    /* Left side */
    .how-left {
        flex: 1;
    }

    /* Right side */
    .how-right {
        flex: 1;
        display: flex;
        justify-content: center;

    }

    .how-right img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        transition: 0.4s ease;
    }

    .how-right img:hover {
        transform: translateY(-10px);
    }

    @media (max-width: 992px) {
        .how-flex {
            flex-direction: column;
            gap: 0;
        }

        .how-right {
            margin-top: 40px;
        }

        .section-title {
            text-align: center;
        }
    }

    /* -----------testinomialcss-------------------- */
    .testimonial-section {
        padding: 10px 20px;
        background: linear-gradient(135deg, #f9fafb, #206b8524);
        text-align: center;
        overflow: hidden;
    }

    .section-title {
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 40px;
        font-family: 'Inter', sans-serif;
    }

    .testimonial-wrapper {
        position: relative;
        max-width: 900px;
        margin: auto;
        overflow: hidden;
    }

    .testimonial-track {
        display: flex;
        transition: transform 0.6s ease-in-out;
    }

    .testimonial-slide {
        min-width: 100%;
        padding: 20px;
        display: flex;
        justify-content: center;
    }

    .testimonial-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        max-width: 500px;
        transition: 0.4s ease;
    }

    .testimonial-card img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
    }

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.6;
        color: #444;
        margin-bottom: 20px;
    }

    .testimonial-card h4 {
        margin: 0;
        font-weight: 600;
    }

    .testimonial-card span {
        font-size: 14px;
        color: #777;
    }

    /* Arrows */
    .prev,
    .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #e2e2e2;
        color: #000;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        transition: 0.3s;
    }

    .prev:hover,
    .next:hover {
        background: #206784;
    }

    .prev {
        left: -60px;
    }

    .next {
        right: -60px;
    }

    /* Dots */
    .dots {
        margin-top: 25px;
    }

    .dots span {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 5px;
        background: #ccc;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }

    .dots span.active {
        background: #206784;
        transform: scale(1.3);
    }

    /* Responsive */
    @media(max-width:768px) {

        .prev,
        .next {
            display: none;
        }

        .testimonial-card {
            padding: 30px 20px;
        }

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

    /* Navigation Buttons */
    .prev,
    .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);

        border: none;
        color: rgb(0, 0, 0);
        font-size: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
    }

    .prev {
        left: 3px;
    }

    .next {
        right: 3px;
    }

    .prev:hover,
    .next:hover {
        /* background: #24a965; */
    }

    /* Mobile */
    @media (max-width: 768px) {
        .section-title {
            font-size: 26px;
        }

        .testimonial-slide {
            padding: 35px 20px;
        }

        .testimonial-slide p {
            font-size: 15px;
        }

        .prev,
        .next {
            width: 35px;
            height: 35px;
            font-size: 16px;
        }
    }

    /* ----------------------iconcss------- */
    .feature-strip {
        background: #f9fbfc;
        padding: 20px 25px;
        border-radius: 14px;
        max-width: 1200px;
        margin: 30px auto;
        /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); */
        box-shadow: rgba(0, 0, 0, 0.12) 0px 25px 60px;
    }

    /* .feature-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin: auto;
    padding: 30px 116px;
} */
    .feature-container {

        padding: 50px 25px;
        border-radius: 14px;
        max-width: 1200px;
        margin: auto;
        /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); */

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;

        padding: 17px 39px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 2px;
        flex: 1;
        min-width: 220px;
    }

    .feature-item p {
        font-size: 15px;
        font-weight: 500;
        color: #1f2937;
        margin: 0;
    }

    /* Icons */
    .feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
    }

    /* Soft medical color theme */
    /* .privacy { background: #e6f4f1; color: #138f82; } */
    .neutral {
        background: #eef2ff;
        color: #4f46e5;
    }

    .clinical {
        background: #f0fdf4;
        color: #16a34a;
    }

    .price {
        background: #fff7ed;
        color: #ea580c;
    }

    /* Divider for desktop */
    .divider {
        width: 1px;
        height: 40px;
        background: #e5e7eb;
    }

    /* Tablet */
    @media (max-width: 992px) {
        .divider {
            display: none;
        }

        .feature-item {
            flex: 0 0 48%;
            margin-bottom: 5px;
        }
    }

    /* Mobile */
    @media (max-width: 600px) {
        .feature-container {
            flex-direction: column;
            align-items: flex-start;
        }

        .feature-item {
            width: 100% !important;
        }
    }

    /* ----------------bullet--------- */
    .custom-list {
        padding-left: 20px;
        font-size: 15px;
        color: #4e4e4e;
        line-height: 1.6;
    }

    .custom-list li {
        margin-bottom: 5px;
        line-height: 1.6;
    }

    .custom-list {
        list-style: none;
        padding: 0;
    }

    .custom-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
        line-height: 1;
    }

    .bullet-icon {
        flex-shrink: 0;
        margin-top: 4px;
    }

    .feature-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 40px;
    }

    /* Individual Card */
    .feature-item {
        width: 220px;
        padding: 7px 20px;
        text-align: center;
        border-radius: 14px;
        background: #fff;
        /* Only card has background */

        /* Separate clean shadow */
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

        transition: 0.3s ease;
    }

    /* Hover effect */
    .feature-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

    /* Icon styling */
    .feature-icon {
        width: 44px;
        height: 44px;
        margin: 5px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: white;
    }

    .privacy {
        background: #beffd6f7;
        color: #16a34a;
    }

    .feature-container {

        padding: 50px 25px;
        border-radius: 14px;
        max-width: 1200px;
        margin: auto;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    /* Icon Colors */
    /* .privacy { background: #16a34a; } */
    .neutral {
        background: #dae5ff;
        color: #2563eb;
    }

    .clinical {
        background: #ecd7ff;
        color: #9333ea;
    }

    .price {
        background: #ffedce;
        color: #f59e0b;
    }



    .feature-item p {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        color: #1f2937;
    }
.search-select {
    width: 250px !important;
}

.search-select {
    width: 250px !important;
}

/* ----------------searchbox----------- */
.select2-container--default .select2-selection--single {
     background-color: transparent !important;
    border: none !important;
    height: 100% !important;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.select2-container--default .select2-selection__arrow {
    height: 52px;
}

.select2-dropdown {
  border-radius: 12px;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    padding: 8px;
}

.select2-results__option--highlighted {
    background-color: #1f7a6c !important; /* your green */
}
/* Fix dropdown search input alignment */
.select2-container--default .select2-search--dropdown .select2-search__field {
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Optional: remove weird spacing */
.select2-search--dropdown {
    padding: 8px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    margin: 0;
}

/* Dropdown container */
.select2-dropdown {
    border-radius: 12px;
    border:none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    padding: 8px;
}

/* Search box wrapper */
.select2-search--dropdown {
    padding: 8px 8px 12px 8px;
}

/* Actual search input */
.select2-container--default .select2-search--dropdown .select2-search__field {
    height: 40px;
    line-height: normal;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    outline: none;
    font-size: 14px;
    box-sizing: border-box;
}

/* Focus state */
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #1f7a6c; /* your green */
    box-shadow: 0 0 0 3px rgba(31,122,108,0.15);
}

/* Option hover */
.select2-results__option--highlighted {
    background-color: #1f7a6c !important;
}

/* Remove dropdown border */
.select2-container--default .select2-dropdown {
    border: none !important;
  
    margin-top: 18px !important; /* adjust spacing */
}

/* Optional: remove inner search border */
.select2-search--dropdown .select2-search__field {
    border: 1px solid #e5e7eb !important;
    border-radius: 6px;
}
/* ---------newsearchboxlikezocdoc------------ */

/* Wrapper */
.tcc-search-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  

     width: 100%;
    margin-top: 30px;
}

/* Main Bar */
.tcc-search-bar {
   width: 100%;
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Field */
.tcc-field {
    flex: 1;
    padding: 12px 20px;
    position: relative;
    border-right: 1px solid #f0f0f0;
}

.tcc-field:last-child {
    border-right: none;
}

.tcc-field label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    /* margin-bottom: 6px; */
}

.tcc-field input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

/* Button */
.tcc-search-btn {
    background: linear-gradient(to right, #199e82, #206785);
    color: #fff;
    border: none;
    padding: 0 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 12px 12px 0;
    transition: 0.3s ease;
}

.tcc-search-btn:hover {
    background: linear-gradient(135deg, #0d5f58, #0ea5a4);
}

/* Dropdown */
.tcc-dropdown {
    position: absolute;
    top: 88%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    border-top-right-radius: 0px;
    margin-top: 10px;
    /* box-shadow: 0 20px 50px rgba(0,0,0,0.12); */
    display: none;
    z-index: 999;
    padding: 15px 0;
}

.tcc-dd-title {
    font-size: 13px;
    font-weight: 600;
    padding: 0 20px 10px;
    color: #6b7280;
}

.tcc-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 220px;
    overflow-y: auto;
}

.tcc-dropdown li {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

.tcc-dropdown li:hover {
    background: #f0fdfa;
    color: #0f766e;
}

/* Responsive */
@media (max-width: 992px) {
    .tcc-search-bar {
        flex-direction: column;
        border-radius: 12px;
    }

    .tcc-field {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .tcc-search-btn {
        width: 100%;
        border-radius: 0 0 12px 12px;
        padding: 16px;
    }
}

