@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;650;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bs-gray-200) !important;
}

:root {
    --ul-primary: #1171EF;
    --ul-blue: #0D6EFD;
}

a{
    text-decoration:none;
}

.h1-25 {
    height: 25px !important;
}
.w-40 {
    width: 40% !important;
}

.w-90 {
    width: 90% !important;
}

@media (min-width: 992px) {
    .me-lg-6 {
        margin-right: 4rem !important;
    }
}

.w-fill-available {
    width: -webkit-fill-available;
    width: -moz-available; 
    width: fill-available;
}

.text-decoration-none {
    text-decoration: none !important;
}

.ul-section-spacing {
    padding-top: clamp(40px, 50px, 80px);
    padding-bottom: clamp(40px, 50px, 80px);
}

.ul-section-spacing-top {
    padding-top: clamp(40px, 50px, 80px);
}

.ul-section-spacing-bottom {
    padding-bottom: clamp(40px, 50px, 80px);
}

.ul-btn {
    display: flex;
    align-items: center;
    gap: clamp(7px, 0.53vw, 10px);
    background-color: var(--ul-c3);
    color: #1171EF;
    padding: clamp(8px, 10px, 16px) clamp(12px, 15px, 32px);
    border-radius: 4px;
    font-weight: 600;
    font-size: clamp(13px, 0.84vw, 16px);
    letter-spacing: 0.5px;
}

.cursor-pointer {
    cursor: pointer;
}

.input-group {
    width: auto !important
}

.list-square {
    list-style-type: square;
}

.des-line-between {
    width: 100%;
    height: 2px;
    border-bottom: 2px dashed #B4DBFF;
    margin: clamp(6px, 10px, 16px) 0;
}

.arrow-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.no-color-hover {
    color: inherit;
}
    .no-color-hover:hover {
        color: inherit !important; 
    }

/*.section-title {
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}*/

.consultation-card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    border: none;
    overflow: hidden;
    background-color: white;
}

    .consultation-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .consultation-card .card-body {
        padding: 20px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .consultation-card h5 {
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
        font-size: 16px;
    }

    .consultation-card p {
        color: #666;
        margin-bottom: 20px;
        display: none;
        /* Hide description text to match screenshot */
    }

/* Updated CONSULT NOW to link style */
.consult-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 5px 0;
}

    .consult-link:hover {
        color: #1a5fb4;
        text-decoration: none;
        /* Remove underline on hover */
    }





/* FIXED: Specialty card styles with consistent height */
/*.specialty-card {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 0 10px;
    width: 260px;*/
    /* Similar size as screenshot */
    /*flex: 0 0 auto;
    background: #fff;
    overflow: hidden;
}

    .specialty-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

    .specialty-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-bottom: 1px solid #eee;
    }

    .specialty-card h4 {
        font-weight: 600;
        font-size: 18px;
        margin: 15px 15px 5px;
        color: #333;
        text-align: left;
    }

    .specialty-card p {
        font-size: 14px;
        color: #666;
        margin: 0 15px 20px;
        text-align: left;
    }


.specialty-icon {
    width: 100%;
    height: 180px;*/
    /* Adjust height to match your card design */
    /*overflow: hidden;
}

    .specialty-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;*/
        /* Ensures image fills without distortion */
        /*border-radius: 0;*/
        /* Remove rounded edges inside card */
    /*}


.appointment-section {
    background-color: var(--secondary-color);
    padding: 48px;
}

    .appointment-section .section-title:after {
        background-color: white;
    }*/




/* New styles for 6 cards in a row with circular images */


/*.circular-image-frame {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #f0f0f0;
    transition: all 0.3s ease;
}



.circular-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}




.button-container {
    margin-top: 10px;
}*/



/*.specialty-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;*/
    /* Firefox */
    /*-ms-overflow-style: none;*/
    /* IE and Edge */
/*}*/

    /*.specialty-scroll-wrapper::-webkit-scrollbar {
        display: none;*/
        /* Chrome, Safari and Opera */
    /*}*/

/*.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .scroll-button:hover {
        background-color: var(--primary-color);
        color: white;
    }

    .scroll-button.prev {
        left: -25px;
    }

    .scroll-button.next {
        right: -25px;
    }

    .scroll-button i {
        font-size: 20px;
    }

@media (max-width: 768px) {


    .consultation-card .card-body {
        padding: 20px;
    }

    

    .circular-image-frame {
        width: 100px;
        height: 100px;
    }


    .specialty-card {
        width: calc(50% - 15px);
        height: 260px;*/
        /* Adjusted height for mobile */
    /*}

        .specialty-card h4 {
            min-height: 48px;
            font-size: 16px;
        }

        .specialty-card p {
            min-height: 56px;
            font-size: 13px;
        }

    .scroll-button {
        width: 40px;
        height: 40px;
    }

        .scroll-button.prev {
            left: -15px;
        }

        .scroll-button.next {
            right: -15px;
        }
}

@media (max-width: 576px) {
    .circular-image-frame {
        width: 80px;
        height: 80px;
    }


    .specialty-card {
        width: calc(100% - 10px);
        height: 240px;*/
        /* Adjusted height for small screens */
    /*}

        .specialty-card h4 {
            min-height: 42px;
            font-size: 15px;
        }

        .specialty-card p {
            min-height: 52px;
            font-size: 12px;
        }
}*/

.ul-2-container {
  --container-space-x: 30px;
  max-width: calc(clamp(1100px, 69.36vw, 1320px) + var(--container-space-x));
  padding-left: calc(var(--container-space-x) / 2);
  padding-right: calc(var(--container-space-x) / 2);
  margin: auto;
}

    .ul-quicklinks {
        background-color: #EAF2FF;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .ul-quicklinks h2 {
        letter-spacing: 0px;
        line-height: 45px;
        font-size: clamp(24px, 3.5vw, 45px);
        font-weight: 600;
    }

    .ul-quicklinks p {
        font-size: clamp(14px, 1.5vw, 16px);
        font-weight: 400;
        line-height: 24px;
        color: #71717A;
    }

.ul-quicklinks-btns {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(14px, 1.26vw, 24px);
}
    .ul-quicklinks-btns .ul-dd-btn {
        background-color: #1171EF;
        color: white;
    }

.ul-quicklinks-btns .ul-ad-btn {
    background-color: black;
    color: white;
}

.avatar {
    position: absolute;
}
.avatar-1 {
    height:77px;
    top: 5%;
    left: 0%;
}

.avatar-2 {
    height:102px;
    bottom: 45%;
    right: 0%;
}

.ul-quicklinks .phone-img {
    max-width: clamp(180px, 40vw, 300px);
    height: auto;
    display: block;
}


.ul-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .ul-heading p {
        margin-bottom: 0px;
        letter-spacing: 0.2px;
        font-size: 18px;
        line-height: 28px;
        font-weight: 650;
    }

    .ul-heading a {
        letter-spacing: 0.2px;
        font-size: 14px;
        line-height: 24px;
        font-weight: 650;
        position: relative;
        padding-right: clamp(10px, 15px, 24px);
        display: inline-block;
    }
/*.ul-heading > a::after {
    content: "›";
    position: absolute;
    right: 0;
    font-weight: normal;
    top: -20%;
    font-size: 35px;
}*/

.article-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: clamp(10px, 15px, 24px);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.article-content {
    position: relative;
    z-index: 2;
}

.article-author {
    font-weight: bold;
    letter-spacing: 0.2px;
    line-height: 28px;
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-bottom: clamp(3px, 5px, 8px);
}

    .article-author img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        margin-right: clamp(4px, 8px, 12px);
        border: 2px solid #fff;
    }

.article-title {
    vertical-align: middle;
    letter-spacing: 0.2px;
    font-size: 10px;
    line-height: 100%;
    margin: 0;
}

.book-doctor-card {
    border: 1px solid #D2D6DB;
    border-radius: 12px;
    padding: clamp(6px, 10px, 16px);
}

.doctor-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: clamp(10px, 15px, 24px);
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

    .doctor-card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

.doctor-header {
    display: flex;
    align-items: start;
}

    .doctor-header .doctor-avatar {
        width: auto !important;
    }
    .doctor-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

    .doctor-info img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

.doctor-name {
    letter-spacing: 0.2px;
    font-size: 16px;
    font-weight: bold;
}

.doctor-specialty {
    font-size: 0.9rem;
    color: #71717A;
}

.doctor-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: #555;
}

    .doctor-rating i {
        color: orange;
    }

.doctor-details {
    font-size: 12px;
    color: #444;
    margin: clamp(6px, 10px, 16px) 0;
    line-height: 1.4;
}

    .doctor-details span {
        color: #007bff;
        font-weight: 600;
    }

.btn-outline-primary {
    border-radius: 6px;
}

.btn-primary {
    border-radius: 6px;
}

.ul-card {
    margin-top: calc(var(--bs-gutter-x) * .5) !important;
    padding-bottom: calc(var(--bs-gutter-x) * .5);
}


.ul-dr-visit-btn {
    color: #0d6efd;
    background-color: #EAF2FF;
    display: flex;
    align-items: center;
    gap: clamp(7px, 0.53vw, 10px);
    padding: clamp(5px, 6px, 16px) clamp(10px, 12px, 32px);
    border-radius: 8px;
    font-weight: 400;
    font-size: clamp(16px, 14px, 20px);
    border: 1px solid #0d6efd;
}
    .ul-dr-visit-btn:hover {
        color: #0d6efd !important;
    }


.ul-dr-video-btn {
    color: white;
    display: flex;
    align-items: center;
    gap: clamp(7px, 0.53vw, 10px);
    padding: clamp(5px, 6px, 16px) clamp(10px, 12px, 32px);
    border-radius: 8px;
    font-weight: 400;
    font-size: clamp(16px, 14px, 20px);
    background-color: #0d6efd;
}
    .ul-dr-video-btn:hover {
        color: white !important;
    }

.appointment-card {
    position: relative;
    border: 1px solid #B4DBFF;
    border-radius: 12px;
    background: linear-gradient(45deg, #EAF2FF, #FFFFFF);
    gap: 10px;
    padding: clamp(6px, 10px, 16px);
}

.appointment-card h6{
    font-size: 16px;
    line-height:28px;
    letter-spacing:0.2px;
}
    .appointment-card p {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: 0.2px;
        color: #71717A;
    }
.appointment-card-dr-img img {
    height: 42px;
}

.recent-prescription-card {
    border-radius: 12px;
    border: 1px solid #B4DBFF;
    background: linear-gradient(45deg, #EAF2FF, #FFFFFF);
}

.recent-prescription-card-heading {
    background: linear-gradient(128deg, #B4DBFF, #FFFFFF);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: clamp(6px, 10px, 16px);
    position: relative;
}


.prescription-video {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #2AB941;
    border-radius: 8px;
    background: #2AB94126;
    padding: clamp(3px, 5px, 8px)
}

    .prescription-video img {
        width: 16px;
        height: 16px;  
        margin:auto;
    }

    .prescription-video span {
        font-size: 12px;
        font-weight: 500;
        line-height: 20px;
        color: #2AB941;
    }

    .recent-prescription-card-img img{
    width: 55px;
    height: 55px;
}

.recent-prescription-card h6 {
    font-size: 16px;
    letter-spacing: 0.2px;
}

.recent-prescription-card p {
    font-size: 12px;
    letter-spacing: 0.2px;
}
.recent-prescription-card-bottom {
    padding: clamp(6px, 10px, 16px);
}

.recent-prescription-card-bottom h6 {
    font-size: 14px;
    color: #1171EF;
}


.prescription-list {
    display: flex;
    font-size: 12px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
}
    .prescription-list li {
        position: relative;
        padding-left: clamp(6px, 10px, 16px);
        margin-right: clamp(10px, 15px, 24px);
    }
    .prescription-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 3.5px;
        height: 3.5px;
        transform: translateY(-50%);
        background: #333;
    }

.feature-card {
    position: relative;
    border-radius: 12px;
    padding: clamp(10px, 16px, 24px);
    z-index: 1;
}

    .feature-card h6 {
        font-size: 16px;
        letter-spacing: 0.2px;
    }

    .feature-card p {
        font-size: 12px;
        letter-spacing: 0.2px;
    }
.featur_img img{
    height: 42px;
    width: 42px;
}
    .feature-card .arrow-icon {
        color: black;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        filter: brightness(0);
    }

.ul-banner {
    border-radius: 12px;
    background: #EAF2FF;
    height:212px;
}

.ul-search-section {
    border-radius: 5px;
    border: 1px solid #CAD0D9;
    flex-wrap: wrap;
    flex-wrap: nowrap; 
    white-space: nowrap;
}

    .ul-search-section p {
        font-size: 14px;
        color: #4E5562;
        margin-bottom: 0px;
        font-weight: 400;
        flex-wrap: wrap;
    }

.ul-search-section1:first-child {
    border-right: 1px solid #ccc;
    padding-right: clamp(10px, 15px, 24px);
    margin-right: clamp(10px, 15px, 24px);
}
    .ul-search-btn:hover {
        color: white !important;
    }

.search1 {
    padding: clamp(3px, 5px, 8px) clamp(10px, 15px, 24px);
}

.list-doctor-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #555;
    margin-left: clamp(6px, 10px, 16px);
}



.list-doctor-details {
    font-size: 14px;
    color: #444;
    margin: clamp(6px, 10px, 16px) 0;
    line-height: 1.4;
    font-weight: 600;
}

    .list-doctor-details span {
        color: #71717A;
    }

.list-booking-fair {
    font-size: 12px;
    color: #71717A;
    font-weight: 500;
}
.list-booking-fair span {
    color: var(--ul-primary);
    font-weight: 600;
}

.list-booking-time {
    font-size: 12px;
    color: #71717A;
    font-weight: 500;
}
.list-booking-time span {
    color: var(--ul-primary);
    font-weight: 600;
}

}
.doctor-list-card .ul-dr-visit-btn {
/*    justify-content: center;
    width: -webkit-fill-available;*/
}
.doctor-list-card .ul-dr-video-btn {
/*    justify-content: center;
    width: -webkit-fill-available;*/
}


.doctor-list-filter-card {
    border: 1px solid #D2D6DB;
    border-radius: 12px;
    padding: clamp(12px, 20px, 32px);
}

.ml-1 {
    margin-left: .25rem !important;
}


/* ===== Overlay ===== */
.side-window-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}

/* ===== Modal ===== */
.side-window-modal {
    /*position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    padding: 30px 25px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    z-index: 1001;*/
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    z-index: 1001;
}

.side-window-modal.active {
    transform: translateX(0);
}

@media (max-width: 576px) {
    .side-window-modal {
        width: 100%;
    }
}
/* ===== Close Button ===== */
.side-window-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
    color: #777;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.flex-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


/*static page*/
.faq-header {
    background: linear-gradient(90deg, #213c84 0%, #041c33 100%);
    position: relative;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

    .faq-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }

    .faq-header::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url(../assets/image/breadcrumb-vector.svg) no-repeat;
        background-position: center;
        z-index: 0;
        animation: scaleUpDown 8s linear infinite alternate;
    }

    @keyframes scaleUpDown{
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .select2-container--default.select2-container--disabled .select2-selection--single {
        background-color: white !important;
    }

.las {
    font-size: 1.25rem !important;
}

.f-3-25 {
    font-size: 3.25rem !important;
}


.mr-1 {
    margin-right: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mr-3 {
    margin-right: 1rem !important;
}

.mr-4 {
    margin-right: 1.5rem !important;
}

.mr-5 {
    margin-right: 3rem !important;
}


.ml-1 {
    margin-left: 0.25rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.ml-3 {
    margin-left: 1rem !important;
}

.ml-4 {
    margin-left: 1.5rem !important;
}

.ml-5 {
    margin-left: 3rem !important;
}


.consultation-section {
    padding-bottom: 25px;
    color: black;
}


@media (max-width: 768px) {
    .consultation-section {
        padding: 30px 15px;
    }
}

.header-text {
    flex: 1;
    min-width: 300px;
}

/*.hero::before {
    content: "";*/ /* required for pseudo-element */
    /*position: absolute;
    inset: 0;*/ /* top:0; right:0; bottom:0; left:0; */
    /*z-index: 0;
    opacity: 0.15;*/ /* 4% opacity */
    /*background: url(/assets/image/dd-banner.jpg) no-repeat center center;
    background-size: cover;
}*/

.hero {
    /*    background: linear-gradient(90deg, #041C33 0%, #213C84 100%);*/
    /*    background: #041c33;*/
    color: white;
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
    height: 90vh !important;
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-text .subtitle {
    font-size: 24px;
    color: #4db8ff;
    margin-bottom: 10px;
}

@media (max-width: 480px) {

    .hero-image1 {
        width: 300px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text .subtitle {
        font-size: 18px;
    }
}

/*roadmap*/
.section-product-title {
    font-weight: 650;
}

@media screen and (max-width: 996px) {
    .d-mobile-product-section {
        display: block !important;
    }
}

@media screen and (max-width: 996px) {
    .d-product-section {
        display: none !important;
    }
}

.dd-logo-position {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 200px;
    top: -20px;
}

.dd-title {
    font-size: 15px;
}

.right-arrow-2 {
    position: absolute;
    right: 150px;
    top: 6.9px;
}

.right-arrow-3 {
    position: absolute;
    right: 200px;
    top: 6.9px;
}

.image-circle-blue-bg {
    z-index: 1;
    position: relative;
    margin-bottom: -20px;
    width: 15%;
}

.right-arrow-4 {
    position: absolute;
    top: 170px;
    right: -14px;
}

.col-product-1 {
    border-radius: 0;
    border-top: 2px dotted rgba(17, 17, 43, 1);
}

.col-product {
    height: 300px;
}

.col-product-2 {
    border-top: 2px dotted rgba(17, 17, 43, 1);
    border-right: 2px dotted rgba(17, 17, 43, 1);
    border-bottom: 2px dotted rgba(17, 17, 43, 1);
    border-radius: 0 90px 90px 0;
    position: relative;
}

.col-product-3 {
    border: 2px dotted rgba(17, 17, 43, 1);
    border-right: none;
    border-radius: 90px 0 0 90px;
    position: relative;
    top: -1.7px;
}

.col-product-4 {
    border-bottom: 2px dotted rgba(17, 17, 43, 1);
    border-radius: 0;
    position: relative;
    top: -1.7px;
}

.dd-position {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: -145px;
    top: 30px;
    /* justify-content: center; */
}

.blue-color {
    color: rgba(48, 63, 159, 1);
    font-weight: 600;
    text-align: center;
}

.dd-position-content {
    position: absolute;
    bottom: -170px;
    left: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dd-position-content-2 {
    position: absolute;
    top: 35px;
        left: 73px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dd-position-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: -140px;
    top: 30px;
    /* justify-content: center; */
}

.dd-position-last {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: -130px;
    top: 30px;
    /* justify-content: center; */
}

.dd-content {
    font-size: 14px;
    width: 60%;
    text-align: center;
}

.right-arrow-5 {
    position: absolute;
    bottom: -14px;
    left: 0;
}

.right-arrow-1 {
    position: absolute;
    left: 100px;
    top: 6.9px;
}

.right-arrow-6 {
    position: absolute;
    left: -15.5px;
    top: 130px;
}

.right-arrow-7 {
    position: absolute;
    left: 60%;
    top: -16px;
}

.btn-position {
    position: absolute;
    top: -30px;
    left: 200px;
}

.btn-atura {
    background: #1b79cc !important;
    padding: 15px 20px !important;
}

.atura-logo {
    position: absolute;
    right: -150px;
    top: -45px;
}

.d-mobile-product-section {
    display: none;
}

.card-mobile-product {
    border: 1px dotted black;
    border-radius: 12px;
    background: white;
    border-bottom: 2px solid black;
}

.dd-4 {
    position: absolute;
    top: -110px;
    left: 180px;
}

.dd-3 {
    position: absolute;
    bottom: 35px;
    left: 180px;
}

.row-1 {
    padding: 0 !important;
    width: 100% !important;
    overflow: hidden;
}

.dd-2 {
    position: absolute;
    top: -97px;
    left: -20px;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    background-color: #303F9F !important;
}

.row-content {
    width: 100%;
}

.text-purple {
    color: var(--bs-purple) !important;
}

.text-pink {
    color: var(--bs-pink) !important;
}

/* Platform dd-features */
.platform-section {
    margin-top: 0%;
    background: #f8f9fa;
    padding: 20px 0px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.dd-section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1e3c72;
}

.dd-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dd-feature-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

    .dd-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

.dd-feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #2a5298;
}

    .dd-feature-icon img {
        height: 70px;
    }

.dd-feature-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1e3c72;
}

.dd-feature-card p {
    color: #666;
    line-height: 1.3;
    margin-bottom: 10px !important;
}
#ui-datepicker-div {
    z-index: 999999 !important;
    position: absolute !important;
}

.box-1 {
    width: 0.25rem !important;
    height: 0.25rem !important;
}

.box-2 {
    width: 0.5rem !important;
    height: 0.5rem !important;
}

.box-3 {
    width: 1rem !important;
    height: 1rem !important;
}

.box-4 {
    width: 1.5rem !important;
    height: 1.5rem !important;
}

.box-4-5 {
    width: 2.5rem !important;
    height: 2.5rem !important;
}

.box-5 {
    width: 3rem !important;
    height: 3rem !important;
}


.pagination {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 20px 0;
}

.page-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: white;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .page-btn:hover {
        background: #f3f4f6;
        border-color: #4A90E2;
    }

    .page-btn.active {
        background: var(--bs-primary);
        color: white;
        border-color: var(--bs-primary);
    }

    .page-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.bottom-gutter {
    padding-bottom: calc(var(--bs-gutter-x) * .5);
}