:root {
    --primary-blue: #03DAD9;
    --primary-blue-dark: #02b8b7;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light-gray: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #eee;
    --star-color: #ffd700;
    --verified-green: #4caf50;
    --available-green: #4caf50;
    --success-green: #4caf50;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(3, 218, 217, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.mainBg-img {
    background-image: url(../img/mainBg-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    }
    
    .navbar-brand img {
    max-height: 50px;
    /* Ensures the logo is responsive */
    }
    
    .navbar-nav {
    flex-wrap: wrap;
    /* Makes nav items wrap on smaller screens */
    }
    
    .navbar-nav.nav-links {
    margin-left: 70px;
    }
    
    a.nav-link {
    padding: 0px 27px !important;
    }
    
    .nav-link {
    text-transform: uppercase;
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
    line-height: 16px;
    font-weight: 500;
    position: relative;
    padding: 5px 15px;
    transition: all 0.3s ease;
    }
    
    .nav-link:before,
    .nav-link:after {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    border: 3px solid #03DAD9;
    transition: 0.3s;
    opacity: 0;
    }
    
    .nav-link:before {
    border-width: 3px 3px 0 0;
    top: 0;
    right: 0;
    }
    
    .nav-link:after {
    border-width: 0 0 3px 3px;
    bottom: 0;
    left: 0;
    }
    
    .nav-link:hover:before {
    top: -7px;
    right: -7px;
    opacity: 1;
    }
    
    .nav-link:hover:after {
    bottom: -7px;
    left: -7px;
    opacity: 1;
    }
    
    .nav-link:hover {
    background-color: #03DAD9;
    color: #fff;
    }
    
    .DownloadApp {
    padding: 13px 19px;
    border: none;
    border-radius: 6px;
    background-color: #03DAD9;
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    transition: all 0.3s ease;
    }
    .DownloadApp a{
    
    color: #fff;
    text-decoration: none;
    
    }
    
    .heading_smx {
    padding: 13px 19px;
    border: none;
    border-radius: 6px;
    background-color: #52fff5;
    color: #222222;
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    transition: all 0.3s ease;
    }
    
    .DownloadApp:hover {
    background-color: #03DAD9;
    /* Darker color on hover */
    transform: scale(1.05);
    /* Slightly enlarge on hover */
    box-shadow: 0 0 10px rgb(1, 255, 247);
    /* Add shadow on hover */
    }
    
    @media (max-width: 991px) {
    .navbar-nav {
        justify-content: center;
        flex-direction: column;
        /* Stack items vertically */
        align-items: center;
    }
    
    .navbar-nav.nav-links {
        position: static;
        /* Ensures alignment consistency */
        top: auto;
        left: auto;
        transform: none;
    }
    
    .nav-link {
        padding: 10px;
        /* Increases padding for touch devices */
    }
    
    a.nav-link {
        margin-top: 40px;
        /* margin-bottom: 20px; */
        align-items: start;
        display: flex;
        justify-content: center;
    }
    
    /*.DownloadApp {*/
    /*	margin-top: 15px;*/
        /* Adds spacing for better layout */
    /*}*/
    }
    
    .navbar-expand-lg .navbar-nav .nav-link {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    }
    
    @media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    }
    
    .navbar-toggler {
    border: none;
    padding: 4px 8px;
    }
    
    .navbar-toggler:focus {
    box-shadow: none;
    }
    
    .navbar-toggler-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .navbar-toggler-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
    }
    
    /* header-section-end */    

#counselorGrid {
    margin-top: 1rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.counselor-card,
.counselor-card-1,
.counselor-card-2,
.counselor-card-3 {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.counselor-card:hover,
.counselor-card-1:hover,
.counselor-card-2:hover,
.counselor-card-3:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.counselor-image-section {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.counselor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue-dark);
}

.image-thumbnails {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.counselor-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
    height: 100%;
}

.counselor-name-rating {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
    gap: 10px;
    position: relative;
}

.counselor-name-rating .counselor-image-section {
    order: -1;
    width: 100%;
    height: 280px;
}

/* Container for name and rating on same line */
.counselor-name-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
}

.counselor-name-rating-row .counselor-name {
    margin: 0;
    flex: 1;
}

.counselor-name-rating-row .counselor-rating {
    display: inline-flex;
    align-items: center;
    margin: 0;
    flex-shrink: 0;
}

.counselor-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.counselor-name-clickable {
    cursor: pointer;
    transition: color 0.3s ease;
}

.counselor-name-clickable:hover {
    color: var(--primary-blue);
}

.counselor-rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.counselor-rating .fi,
.counselor-rating i {
    font-size: 12px;
    color: #ffd700 !important;
}

.counselor-rating .filled-star,
.counselor-rating .fi.filled-star,
.counselor-rating i.filled-star {
    color: #ffd700 !important;
}

.filled-star {
    color: #ffd700 !important;
    font-size: 1.1rem;
}

.counselor-experience {
    font-size: 12px;
    color: var(--text-light-gray);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.counselor-specialization {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.counselor-description {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0 0 0px 0;
    line-height: 1.5;
}

.counselor-description strong {
    font-weight: 700;
}

.read-more-link,
.read-less-link {
    color: #000000;
    text-decoration: none;
    font-weight: 300;
    text-decoration: underline;
    cursor: pointer;
}

.read-more-link:hover,
.read-less-link:hover {
    color: var(--primary-blue) !important;
    text-decoration: underline;
}

.counselor-description-wrapper {
    margin-bottom: 0;
    min-height: 0;
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Smooth collapse animation - contained within card */
.counselor-description-wrapper .collapse {
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: height;
}

.counselor-description-wrapper .collapsing {
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease-in-out;
    opacity: 0;
    will-change: height;
}

.counselor-description-wrapper .collapse.show {
    opacity: 1;
    transition: opacity 0.35s ease-in-out 0.1s;
}

.counselor-description-expanded {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    padding-bottom: 8px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out 0.15s;
}

.counselor-description-wrapper .collapse.show .counselor-description-expanded {
    opacity: 1;
}

.btn-book-session {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: auto;
    text-align: center;
    flex-shrink: 0;
}

.btn-book-session:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 218, 217, 0.3);
}

.counselor-tag {
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.counselor-info {
    flex-grow: 1;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.info-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.info-item .available {
    color: var(--available-green);
    font-weight: 600;
}

.btn-view-profile {
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-view-profile:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 218, 217, 0.3);
}

.btn-view-profile:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    
    .counselor-details {
        padding: 18px;
    }
    
    .counselor-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .page-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .page-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    
    .counselor-name {
        font-size: 1.3rem;
    }
    
    .counselor-specialization {
        font-size: 0.95rem;
    }
    

    .counselor-details {
        padding: 18px;
    }
    
    .counselor-description {
        font-size: 0.85rem;
    }
    
    .info-item {
        font-size: 0.9rem;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }
    
    .info-item span {
        word-break: break-word;
    }
    
    .btn-view-profile {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .page-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .counselor-card,
    .counselor-card-1,
    .counselor-card-2,
    .counselor-card-3 {
        margin-bottom: 1rem;
    }
    
    
    .counselor-image-wrapper {
        max-width: 160px;
    }
    
    .counselor-details {
        padding: 15px;
    }
    
    .counselor-name-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .counselor-name-rating-row {
        width: 100%;
        margin-top: 8px;
    }
    
    .counselor-name {
        font-size: 1.2rem;
    }
    
    .counselor-specialization {
        font-size: 0.9rem;
    }
    
    .counselor-rating {
        justify-content: flex-end;
    }
    
    .counselor-description {
        font-size: 0.85rem;
    }
    
    .counselor-tag {
        text-align: center;
    }
    
    .info-item {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
    
    .info-item i {
        font-size: 1rem;
    }
    
    .btn-view-profile {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
}


/* Smooth transitions */
.counselor-card,
.counselor-card-1,
.counselor-card-2,
.counselor-card-3,
.btn-view-profile,
.thumbnail,
.indicator {
    transition: all 0.3s ease;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    margin: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #000000;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.modal-close:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: rotate(90deg);
}

.modal-close i {
    color: #ffffff;
    font-size: 10px;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 40px;
}

.modal-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modal-image-wrapper {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--bg-white);
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-name-section {
    width: 100%;
}

.modal-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.modal-name .verified-icon {
    color: var(--verified-green);
    font-size: 1.3rem;
}

.modal-specialization {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 15px;
}

.modal-rating {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 15px;
}

.modal-rating .star {
    color: var(--star-color);
    font-size: 1.2rem;
}

.modal-rating .star.empty {
    color: var(--border-color);
}

.modal-tag {
    margin-bottom: 20px;
}

.modal-tag .tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.btn-favourite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.btn-favourite:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-favourite.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.btn-favourite .heart {
    color: red;
}

.btn-favourite i {
    font-size: 1.1rem;
}

.modal-middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.modal-info-item i {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

.modal-clinic-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.clinic-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.clinic-item:last-child {
    margin-bottom: 0;
}

.clinic-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.clinic-value {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.modal-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.stat-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}


/* Modal Responsive Styles */
@media (max-width: 991.98px) {
    .modal-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px;
    }
    
    .modal-image-wrapper {
        max-width: 200px;
    }
    
    .modal-actions {
        flex-direction: row;
    }
    
    .btn-add-feedback,
    .btn-book-appointment {
        flex: 1;
    }
}

@media (max-width: 767.98px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-container {
        border-radius: 12px;
    }
    
    .modal-content {
        padding: 25px 20px;
        gap: 20px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
    
    .modal-image-wrapper {
        max-width: 180px;
    }
    
    .modal-name {
        font-size: 1.3rem;
    }
    
    .modal-specialization {
        font-size: 0.95rem;
    }
    
    .modal-info-item {
        font-size: 0.95rem;
    }
    
    .modal-clinic-box {
        padding: 15px;
    }
    
    .stat-item {
        font-size: 0.9rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .modal-overlay {
        padding: 0;
    }
    
    .modal-container {
        border-radius: 0;
        min-height: 100vh;
        margin: 0;
    }
    
    .modal-content {
        padding: 20px 15px;
        gap: 18px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
    }
    
    .modal-image-wrapper {
        max-width: 150px;
    }
    
    .modal-name {
        font-size: 1.2rem;
    }
    
    .modal-specialization {
        font-size: 0.9rem;
    }
    
    .btn-favourite {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .modal-info-item {
        font-size: 0.9rem;
    }
    
    .modal-clinic-box {
        padding: 12px;
    }
    
    .clinic-label {
        font-size: 0.85rem;
    }
    
    .clinic-value {
        font-size: 0.9rem;
    }
    
    .stat-item {
        font-size: 0.85rem;
    }
    
    .btn-add-feedback,
    .btn-book-appointment {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Booking Modal Styles */
.booking-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
    align-items: flex-start;
    justify-content: center;
}

.booking-modal-container {
    background: var(--bg-white);
    border-radius: 16px;
    width: 100%;
    position: relative;
    margin: 20px auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #000000 !important;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.booking-modal-close i {
    color: #ffffff;
    font-size: 10px;
}

.booking-modal-close:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: rotate(90deg);
}

.booking-modal-content {
    padding: 40px;
    position: relative;
}

/* Booking Section Styles */
.booking-section {
    background: var(--bg-light);
    padding: 40px 0;
    margin-top: 40px;
}

.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.step-number {
    font-size: 1rem;
}

.progress-step.active .step-circle {
    background: var(--primary-blue);
    color: white;
}

.progress-step.completed .step-circle {
    background: #08CB89;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--text-dark);
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: var(--text-dark);
}

.progress-connector {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin: 0 10px;
    margin-top: -20px;
    position: relative;
}

.progress-step.completed + .progress-connector {
    background: #4caf50;
}

.progress-step.active + .progress-connector {
    background: linear-gradient(to right, var(--primary-blue), var(--border-color));
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.booking-content {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.counselor-selection-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
}

.counselor-selection-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.booking-counselor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.counselor-selection-details {
    flex: 1;
}

.booking-counselor-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.booking-counselor-spec {
    font-size: 1rem;
    color: var(--text-dark) !important;
    font-weight: 500;
    margin-bottom: 8px;
}

.booking-counselor-location {
    display: inline;
    padding: 5px;
    align-items: center;
    border-radius: 5px;
    gap: 6px;
    background: #03dad9;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.booking-counselor-location i {
    color: var(--primary-blue);
}

.selection-indicator {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selection-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: var(--primary-blue);
    position: relative;
}

.selection-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.services-section {
    margin-top: 30px;
}

.services-title,
.section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.services-title .required,
.section-title .required,
.date-selector label .required,
.time-selector label .required {
    color: #e74c3c;
    margin-left: 4px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 20px;
}

.service-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(3, 218, 217, 0.15);
    transform: translateY(-2px);
}

.service-item:has(input[type="checkbox"]:checked) {
    border-color: var(--primary-blue);
    background: rgba(3, 218, 217, 0.02);
    box-shadow: 0 2px 12px rgba(3, 218, 217, 0.2);
}

.service-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    margin: 0;
    width: 100%;
    height: 100%;
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.service-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.service-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.3;
}

.service-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.service-ideal-for {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.service-ideal-for strong {
    font-weight: 600;
    color: var(--text-dark);
}

.service-deliverables-header {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.service-deliverables-header strong {
    font-weight: 600;
    color: var(--text-dark);
}

.service-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.deliverable-check {
    color: #4caf50 !important;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.deliverable-check:before,
.deliverable-check i:before,
i.deliverable-check:before {
    color: #4caf50 !important;
}

.fi-bs-check.deliverable-check:before {
    color: #4caf50 !important;
}

.deliverable-item span {
    flex: 1;
}

.service-price-header {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.service-price-header strong {
    font-weight: 600;
    color: var(--text-dark);
}

.service-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.service-duration {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.service-duration strong {
    color: var(--text-dark);
    font-weight: 600;
}

.service-price {
    background: var(--primary-blue);
    color: #ffffff;
    padding: 8px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.price-strikethrough {
    /*text-decoration-line: line-through;*/
    font-size: 0.75rem;
    opacity: 0.8;
}

button.btn-back i:before {
   color: #222222 !important;
}

.specialty-section {
    margin-top: 20px;
}

.specialty-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.specialty-item {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.specialty-item:hover {
    border-color: var(--primary-blue);
}

.specialty-item.selected {
    border-color: var(--primary-blue);
    background: rgba(3, 218, 217, 0.05);
}

.specialty-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 0;
}

.specialty-checkbox input[type="radio"] {
    display: none;
}

.specialty-checkbox input[type="radio"]:checked + .checkmark {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.specialty-checkbox input[type="radio"]:checked + .checkmark::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.specialty-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
}

.datetime-section {
    margin-top: 20px;
}

.date-time-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.date-selector,
.time-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.date-selector label,
.time-selector label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

a:hover {
    color: #fff !important;
}

textarea.form-control {
    min-height: calc(1.5em + .75rem + 2px);
    border-radius: 10px;
    font-size: 14px;
}

i[class^="fi-bs-"]:before, i[class*=" fi-bs-"]:before, span[class^="fi-bs-"]:before, span[class*=" fi-bs-"]:before {
    color: #fff !important;
}

.counselor-rating i[class^="fi-ss-star"]:before,
.counselor-rating i[class*="fi-ss-star"]:before,
.counselor-rating .fi-ss-star:before,
.counselor-rating .filled-star:before {
    color: #ffd700 !important;
}

.modal-content i[class^="fi-bs-"]:before, .modal-content i[class*=" fi-bs-"]:before, .modal-content span[class^="fi-bs-"]:before, .modal-content span[class*=" fi-bs-"]:before {
    color: #03DAD9 !important;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.time-slot-btn {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.time-slot-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.time-slot-btn.selected {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.form-section {
    margin-top: 20px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 33.3%;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
}


.booking-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 0;
}

.btn-back {
    padding: 13px 19px;
    border: none;
    border-radius: 6px;
    border: 1px solid #03DAD9;
    color: #222;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    transition: all 0.3s ease;
}

/* Validation Error Styles */
.validation-error {
    background: #fee !important;
    color: #c33 !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
    border: 1px solid #fcc !important;
    font-size: 0.9rem !important;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: shake 0.3s ease;
}

.validation-error::before {
    content: '⚠';
    font-size: 1.2rem;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Booking Modal Responsive */
@media (max-width: 991.98px) {
    .booking-modal-overlay {
        padding: 10px;
    }
    
    .booking-modal-container {
        max-height: calc(100vh - 20px);
        margin: 10px auto;
    }
    
    .booking-modal-content {
        padding: 30px 20px;
    }
    
    .booking-progress {
        gap: 5px;
    }
    
    .progress-connector {
        width: 40px;
        margin: 0 5px;
    }
    
    .date-time-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 767.98px) {
    .booking-modal-overlay {
        padding: 0;
    }
    
    .booking-modal-container {
        border-radius: 0;
        min-height: 100vh;
        margin: 0;
        max-height: 100vh;
    }
    
    .booking-modal-content {
        padding: 20px 15px;
    }
    
    .booking-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
    
    .booking-section {
        padding: 20px 0;
    }
    
    .booking-content {
        padding: 20px;
    }
    
    .counselor-selection-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .counselor-selection-image {
        width: 80px;
        height: 80px;
    }
    
    .progress-connector {
        width: 30px;
        margin: 0 3px;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }
    
    .time-slot-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .booking-navigation {
        flex-direction: column;
    }
    
    .btn-back,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-item {
        padding: 18px;
    }
    
    .service-name {
        font-size: 1.05rem;
    }
    
    .service-description {
        font-size: 0.88rem;
    }
    
    .service-footer {
        flex-wrap: wrap;
    }
    
    .service-price {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
}

@media (max-width: 575.98px) {
    .booking-section {
        padding: 15px 0;
    }
    
    .booking-content {
        padding: 15px;
    }
    
    .booking-progress {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .progress-step {
        min-width: 80px;
        flex-shrink: 0;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .counselor-selection-image {
        width: 70px;
        height: 70px;
    }
    
    .booking-counselor-name {
        font-size: 1.1rem;
    }
    
    .services-title,
    .section-title {
        font-size: 1.1rem;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .time-slot-btn {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .service-item,
    .specialty-item {
        padding: 12px;
    }
    
    .validation-error {
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .service-ideal-for {
        font-size: 0.85rem;
    }
    
    .deliverable-item {
        font-size: 0.85rem;
    }
    
    .service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .service-price {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    .counselor-selection-card {
        padding: 12px;
        gap: 15px;
    }
}

/* Thank You Page Styles */

.thank-you-container {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.6s ease;
    margin: 60px auto;
    position: relative;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease 0.3s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 50px;
    color: white;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-home:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 218, 217, 0.4);
}

.thank-you-details {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    text-align: left;
}

.thank-you-details h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-white);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--text-gray);
}

.detail-value {
    color: var(--text-dark);
}

@media (max-width: 767.98px) {
    .thank-you-container {
        padding: 40px 25px;
        margin: 40px 20px;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-message {
        font-size: 1rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon i {
        font-size: 40px;
    }

    .btn-home {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .thank-you-container {
        padding: 30px 20px;
        margin: 30px 15px;
    }

    .thank-you-title {
        font-size: 1.75rem;
    }

    .thank-you-message {
        font-size: 0.95rem;
    }
}

/* Thank You Page Styles End */


.footer-section {
	background-color: #582AB9;
	padding: 40px 0px;
}

.ready-btn {
	position: absolute;
	top: 4%;
	left: 26%;
	font-weight: bold;
	font-size: 14px;
	padding: 6px 30px;
	border-radius: 50px !important;
	border: none;
	transform: rotate(-15deg) !important;
	background: rgb(238, 255, 200);
	background: linear-gradient(90deg, rgba(238, 255, 200, 1) 0%, rgba(225, 230, 255, 1) 28%, rgba(208, 255, 244, 1) 52%, rgba(243, 208, 255, 1) 85%);
	transition: transform 0.3s ease-in-out;
}

.ready-btn:hover {
	transform: rotate(0deg) !important;
}

.footer-title {
	font-weight: bold;
    font-size: 48px;
    line-height: 20px;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
}

.footer-subtitle {
	font-weight: bold;
	font-size: 48px;
	line-height: 26px;
	font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
}

@media (max-width: 768px) {
	.footer-title {
		font-size: 40px;
		/* Adjust for smaller screens */
		line-height: 38px;
	}

	.footer-subtitle {
		font-size: 35px;
		/* Adjust for smaller screens */
		line-height: 24px;
	}

	.ready-btn,
	.DownloadApp {
		font-size: 14px;
		/* Adjust button font size if needed */
		padding: 10px 15px;
	}
}

@media (max-width: 576px) {
	.footer-title {
		font-size: 30px;
		/* Further decrease for extra small screens */
		line-height: 35px;
	}

	.footer-subtitle {
		font-size: 28px;
		line-height: 20px;
	}
}

.boredr-line {
	border: 1px solid #9C9C9C;
	margin-top: 10%;
}

ul.footer-list.d-flex li {
	list-style: none;
	font-size: 12px;
}

ul.footer-list.d-flex a {
	text-decoration: none !important;
	color: #fff;
}

.footer-icons {
	background: rgb(246, 242, 205);
	background: linear-gradient(90deg, rgba(246, 242, 205, 1) 0%, rgba(230, 254, 202, 1) 17%, rgba(215, 254, 208, 1) 69%, rgba(191, 249, 223, 1) 100%);
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 20px;
}

/* Footer */
section.Org-footer-section {
	background-color: #00D295;
	padding: 90px;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.newsletter-form input[type="email"] {
    padding: 10px 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    flex: 1;
}

.newsletter-form button {
    background: #011219;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* bottom row */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    gap: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col.newsletter {
        grid-column: 1 / -1;
    }
    .footer-description {
        max-width: none;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer-premium {
        padding: 28px 16px 20px;
        border-radius: 0;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input[type="email"], .newsletter-form button {
        width: 100%;
    }
}