* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Inter', Arial, sans-serif;
}

body {
    background-color: #fef4e9;
    padding-top: 80px; /* Adjust based on your header height */
    scroll-padding-top: 160px; /* Account for both sticky elements */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 20px;
}

/* Navigation */
header {
    position: fixed;
    min-height: 69px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

header.scrolled {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #201e5a;
    font-weight: 600;
    font-family: 'Roboto', Arial, sans-serif;
    font-size : 18px;
    padding-bottom : 10.8px;
padding-left : 15.3px;
padding-right : 15.3px;
padding-top : 10.8px;
text-align : left;
}

.nav-links a.active {
    color: #ed8181;
}

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

.cta-button {
    background-color: #ED8181;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0ecaee;
}

/* Hero Section common Styles */
.hero {
    position: relative;
    background-color: #fef4e9;
    padding: 40px 0;
    margin-bottom: 50px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    color: #1d2451;
    z-index: 2;
    position: relative;
}
   /* Logo styling update */
.logo img {
    max-height: 50px;
    width: auto;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

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

.logo {
    height: 40px;
}

.cta-button {
    background-color: #ED8181;
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0ecaee;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    margin-bottom: 40px;
}

.hero-content {
    max-width: 50%;
}

.hero-title {
    font-size: 48px;
    color: #1d2451;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Consultants Section */
.search-box {
    padding: 20px;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(14, 11, 16, 1.05);
}

.card {
    border: none;
    box-shadow: 0 2px 4px rgba(14, 11, 16, 1.05);
    transition: transform 0.3s;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

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

.btn {
    border-radius: 50px;
    padding: 12px 24px;
}

.btn-primary {
    background-color: #ED8181 ;
    border-color: #ED8181 ;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-primary:hover, .btn-outline-primary:hover {
    background-color: #0ecaee;
    border-color: #0ecaee;
}

/* Logo styling update */
.logo img {
    max-height: 50px;
    width: auto;
}
.main-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.content-left {
    flex: 1;
    padding-right: 20px;
}

.content-right {
    flex: 1;
}

.email-section {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.email-icon {
    background-color: #ED8181;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.time-slot-btn {
    margin: 5px;
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.time-slot-btn.selected {
    background: #ED8181;
    color: white;
    border-color: #ED8181;
}

.time-slot-btn {
    padding: 8px 16px;
    margin: 4px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.time-slot-btn:hover {
    background: #0ecaee;
    border-color: #0ecaee;
}

.time-slot-btn.selected {
    background: #ED8181;
    color: white;
    border-color: #ED8181;
}

/* Make the booking form sticky on desktop */
@media (min-width: 992px) {
    .booking-form {
        position: sticky;
        top: 20px;
    }
}

/* Booking Page */
.booking-container {
    background: #fef4e9;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.consultant-profile {
    text-align: center;
    padding: 20px;
}

.consultant-profile img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid white;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.consultant-info {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #666;
    text-decoration: none;
}

.back-link:hover {
    color: #333;
}

.time-slot-btn {
    margin: 5px;
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.time-slot-btn:hover {
    background: #fef4e9;
    border-color: #007bff;
    color: #007bff;
}

.time-slot-btn.selected {
    background: #ED8181;
    color: white;
    border-color: #ED8181;
}

.main-content {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-left {
    flex: 0 0 60%;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.content-right {
    flex: 0 0 40%;
}

.consultant-preview {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.consultant-preview img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
    border: 4px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.consultant-preview h4 {
    text-align: center;
    margin-bottom: 10px;
}

.consultant-preview .text-muted {
    text-align: center;
    margin-bottom: 15px;
}

.form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    font-size: 16px;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    border-color: #007bff;
}

/* .form-label removed: labels will be placeholders */
/* Popover tooltip for validation errors */
.popover-error {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #ed8181;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(237,129,129,0.15);
    z-index: 10;
    margin-left: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.form-control.invalid:focus + .popover-error,
.form-control.invalid:hover + .popover-error,
.form-control.invalid + .popover-error.show {
    opacity: 1;
    pointer-events: auto;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237,129,129,0.2);
}

.section-title {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.career-snapshot {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.career-snapshot h2 {
    color: #1d2451;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f08080;
    padding-bottom: 10px;
}

.career-snapshot h3 {
    color: #2c3e50;
    font-size: 18px;
    margin: 15px 0 10px;
}

.career-snapshot ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.career-snapshot ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

.career-snapshot ul li:before {
    content: "•";
    color: #f08080;
    position: absolute;
    left: 0;
}

.career-snapshot blockquote {
    border-left: 3px solid #f08080;
    padding: 10px 20px;
    margin: 20px 0;
    font-style: italic;
    background: #fef4e9;
}

.highlight-text {
    color: #03977d;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.explore-btn {
    background: #ED8181;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 20px auto;
}

.explore-btn:hover {
    background: #0ecaee;
    transform: translateY(-2px);
}

.hero-banner {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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


@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }
}


/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .content-left {
        padding-right: 0;
    }

    .consultant-card {
        margin-bottom: 15px;
    }

    :root {
        --primary-color: #8b5cf6;
        --secondary-color: #7c3aed;
        --success-color: #10b981;
        --warning-color: #f59e0b;
        --danger-color: #ef4444;
        --light-bg: #f8f9fa;
        --dark-text: #1f2937;
        --light-text: #6b7280;
    }
    
    body {
        background-color: var(--light-bg);
        color: var(--dark-text);
        font-family: 'Roboto', Arial, sans-serif;
    }
    
    .header {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 2rem 1rem;
        text-align: center;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    
    .back-btn {
        position: absolute;
        top: 1rem;
        left: 1rem;
        color: white;
        background: rgba(255, 255, 255, 0.2);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    .consultant-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: bold;
    }
    
    .consultant-avatar img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .date-carousel {
        display: flex;
        overflow-x: auto;
        padding: 1rem;
        gap: 0.75rem;
        -ms-overflow-style: none; 
        scrollbar-width: none;  
    }
    
    .date-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .date-option {
        padding: 0.75rem 1rem;
        text-align: center;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        background: white;
        cursor: pointer;
        transition: all 0.2s;
        flex-shrink: 0;
    }
    
    .date-option.selected {
        border-color: var(--primary-color);
        background: var(--primary-color);
        color: white;
    }
    
    .date-option.today {
        border-color: var(--success-color);
    }
    
    .time-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .time-slot {
        padding: 0.75rem;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        text-align: center;
        cursor: pointer;
        transition: all 0.2s;
        background: white;
    }
    
    .time-slot.selected {
        border-color: var(--primary-color);
        background: var(--primary-color);
        color: white;
    }
    
    .time-slot.unavailable {
        opacity: 0.5;
        cursor: not-allowed;
        background: #f9fafb;
    }
    
    .section-title {
        padding: 0 1rem;
        font-weight: bold;
        font-size: 1.25rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    
    #bookingForm {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 1rem;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    }
    
    .form-label {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        width: 100%;
        padding: 0.75rem;
        font-size: 1.1rem;
        font-weight: bold;
    }
    
    .btn-primary:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }
    
    .loader {
        text-align: center;
        padding: 2rem;
    }
    
    .spinner-border {
        width: 3rem;
        height: 3rem;
        color: var(--primary-color);
    }

    .time-slot-btn {
        width: calc(50% - 10px);
        margin: 5px;
        padding: 12px;
        font-size: 14px;
    }
    
    .search-box form {
        flex-direction: column;
        gap: 10px;
    }
}

/* Error Pages - Consolidated Styles */
.error-container {
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.error-code {
    color: #f08080;
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
}
.error-message {
    color: #1d2451;
    font-size: 24px;
    margin-bottom: 30px;
}
.error-description {
    color: #666;
    margin-bottom: 30px;
}
.btn-return {
    background-color: #f08080;
    border-color: #f08080;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-return:hover {
    background-color: #e57373;
    border-color: #e57373;
    color: white;
    transform: translateY(-2px);
}

/* 500 page */
.error-container {
    max-width: 600px;
    margin: 100px auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.error-code {
    color: #ED8181;
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
}
.error-message {
    color: #1d2451;
    font-size: 24px;
    margin-bottom: 30px;
}
.error-description {
    color: #666;
    margin-bottom: 30px;
}
.btn-return {
    background-color: #ED8181;
    border-color: #ED8181;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-return:hover {
    background-color: #e57373;
    border-color: #e57373;
    color: white;
    transform: translateY(-2px);
}

/* Footer Styles */
.site-footer {
    color: #333;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

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

.social-icon {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #007bff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

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

.menu-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    margin-bottom: 12px;
}

.menu-items a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.menu-items a:hover {
    color: #007bff;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
}

.contact-info i {
    margin-right: 10px;
    color: #007bff;
    width: 20px;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #007bff;
}

.footer-bottom {
    background: #e57373;
    color: #fff;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-menu-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
}

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

.social-icons a {
    color: #333;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #007bff;
}

.consultant-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 0 auto 20px;
}

/* Global image styles */
.rounded-image {
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Update existing image styles */
.consultant-img {
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

.expert-image {
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

.story-image {
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

.consultant-preview img {
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-header img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 0 auto 1rem;
}

/* ===== MOBILE DRAWER STYLES ===== */

/* Mobile Menu Toggle Button */
.menu-toggle-open {
    display: none; /* Hidden by default */
    background: #201e5a;
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.menu-toggle-open:hover {
    background: #2a2470;
    transform: scale(1.05);
}

.toggle-bar {
    width: 25px;
    height: 3px;
    background-color: #fef4e9;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Drawer Container */
.popup-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    display: none; /* Hide by default */
}

.popup-drawer.show-drawer {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.popup-drawer.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}

/* Drawer Overlay */
.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 1;
}

/* Drawer Inner Container */
.drawer-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #201e5a;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.popup-drawer.show-drawer .drawer-inner,
.popup-drawer.active .drawer-inner {
    transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(254, 244, 233, 0.2);
    background-color: #201e5a;
}

/* Close Button */
.menu-toggle-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.toggle-close-bar {
    width: 25px;
    height: 3px;
    background-color: #fef4e9;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.toggle-close-bar:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.toggle-close-bar:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Drawer Content */
.drawer-content {
    padding: 0;
    height: calc(100% - 80px);
    overflow-y: auto;
}

.mobile-drawer-content {
    padding: 0;
}

/* Mobile Navigation */
.mobile-navigation {
    width: 100%;
}

.mobile-menu-container {
    padding: 0;
}

/* Mobile Menu */
#mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item a {
    display: block;
    padding: 20px 25px;
    color: #fef4e9;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.menu-item a:hover {
    background-color: rgba(254, 244, 233, 0.1);
    color: #fef4e9;
    border-left-color: #fef4e9;
    transform: translateX(5px);
}

.menu-item.current-menu-item a,
.menu-item.current_page_item a {
    background-color: #ed8181;
    color: #ffffff;
    border-left-color: #ed8181;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(237, 129, 129, 0.3);
}

/* Body state when drawer is open */
body.showing-popup-drawer-from-right {
    overflow: hidden;
}

/* Animation classes */
.popup-drawer-animation-fade {
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.popup-drawer-side-right {
    right: -100%;
}

.popup-drawer-side-right.show-drawer,
.popup-drawer-side-right.active {
    right: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Show mobile menu toggle on mobile */
    .menu-toggle-open {
        display: flex;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-links {
        display: none;
    }
    
    /* Adjust drawer width for smaller screens */
    .drawer-inner {
        width: 300px;
        max-width: 85vw;
        background-color: #201e5a;
    }
    
    /* Ensure mobile navigation is hidden by default on mobile */
    .popup-drawer {
        display: none;
    }
    
    /* Show mobile navigation when toggled */
    .popup-drawer.show-drawer,
    .popup-drawer.active {
        display: block;
    }
    
    /* Improve mobile drawer overlay */
    .drawer-overlay {
        background-color: rgba(0, 0, 0, 0.6);
    }
}

@media (max-width: 480px) {
    /* Full width drawer on very small screens */
    .drawer-inner {
        width: 100%;
    }
    
    .drawer-overlay {
        display: none;
    }
}

/* Accessibility improvements */
.menu-toggle-open:focus,
.menu-toggle-close:focus {
    outline: 2px solid #fef4e9;
    outline-offset: 2px;
}

.menu-item a:focus {
    outline: 2px solid #fef4e9;
    outline-offset: -2px;
    background-color: rgba(254, 244, 233, 0.1);
}

/* Animation for hamburger menu */
.menu-toggle-open.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle-open.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle-open.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Smooth transitions */
* {
    -webkit-tap-highlight-color: transparent;
}

.popup-drawer,
.drawer-inner,
.drawer-overlay {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Additional mobile menu styling */
.site-header-item-mobile-navigation {
    width: 100%;
}

.drawer-navigation {
    width: 100%;
}

/* Menu item icons (if needed) */
.menu-item a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #fef4e9;
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item a:hover::before,
.menu-item.current-menu-item a::before,
.menu-item.current_page_item a::before {
    opacity: 1;
}

.menu-item.current-menu-item a::before,
.menu-item.current_page_item a::before {
    background-color: #ffffff;
}

.search-box.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .search-box {
        top: 70px;  /* Slightly less space on mobile */
    }
}

/* Search Results Styling */
.search-container {
    position: relative;
    width: 100%;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.consultant-info strong {
    display: block;
    color: #1d2451;
    margin-bottom: 4px;
}

.consultant-info .speciality {
    color: #666;
    font-size: 14px;
}

/* Meet Our Career Experts Heading Style */
.meet-experts-heading {
    box-sizing: border-box;
    color: rgb(32, 30, 90);
    display: block;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 53px;
    font-style: normal;
    font-weight: 700;
    margin-block-end: 0px;
    margin-block-start: 0px;
    margin-bottom: 0px;
    margin-inline-end: 0px;
    margin-inline-start: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    text-size-adjust: 100%;
    text-transform: capitalize;
    unicode-bidi: isolate;
    word-break: break-word;
}

.meet-experts-subline {
    box-sizing: border-box;
    color: rgb(32, 30, 90);
    display: block;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-block-end: 0px;
    margin-block-start: 0px;
    margin-bottom: 0px;
    margin-inline-end: 0px;
    margin-inline-start: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 20px;
    text-align: left;
    text-size-adjust: 100%;
    unicode-bidi: isolate;
    word-break: break-word;
}

.card-body {
    padding: 0% !important;
}

.know-your-expert-btn {
    background-color: #0578b7 !important;
    border-color: #0578b7 !important;
}

.book-a-call {
    background-color: #03977d !important;
    border-color: #03977d !important;
    text-transform: uppercase;
}

/* Meet Our Career Experts Heading Style */
.divider-heading {
    box-sizing: border-box;
    color: rgb(32, 30, 90);
    display: block;
    font-family: 'Roboto', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    margin-block-end: 0px;
    margin-block-start: 0px;
    margin-bottom: 0px;
    margin-inline-end: 0px;
    margin-inline-start: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    text-size-adjust: 100%;
    text-transform: capitalize;
    unicode-bidi: isolate;
    word-break: break-word;
}

/* Booking Summary specific adjustments */
/* Improves spacing, typography and button/badge styles on booking_summary.php */
.hero { padding: 30px 0; }
.hero .hero-title { font-size: 34px; color: var(--primary-color, #1d2451); margin: 0; }
@media (min-width: 768px) {
    .hero .hero-title { font-size: 48px; }
}

.card.mb-4.shadow-sm { border-radius: 12px; overflow: hidden; }
.card-header.bg-success.text-white {
    background: var(--primary-color, #28a745) !important;
    color: #fff !important;
    padding: 16px 20px;
}
.card-body { padding: 20px; }
.card-body .row > div { padding: 8px 12px; }
.card-title { margin-bottom: 12px; font-weight: 700; color: #1d2451; }

.badge { display: inline-block; padding: .35em .6em; border-radius: .35rem; font-size: .85rem; }
.badge.bg-success { background: var(--primary-color, #28a745) !important; color: #fff !important; }
.badge.bg-warning { background: #ffc107 !important; color: #212529 !important; }
.badge.bg-danger { background: #dc3545 !important; color: #fff !important; }

.btn-sm { padding: .35rem .6rem; font-size: .85rem; border-radius: .35rem; }

a.btn.btn-sm.btn-primary { background: var(--primary-color, #007bff) !important; border-color: var(--primary-color, #007bff) !important; color: #fff !important; }

.meeting-actions { margin-top: 12px; }
.meeting-actions a { margin-right: 10px; }

/* Contact info column styling */
.contact-info p { margin-bottom: 8px; color: #333; }
.contact-info strong { color: #111; }

/* Alert spacing */
.alert { margin-top: 18px; }

/* Responsive tweaks for small screens */
@media (max-width: 767px) {
    .hero { padding: 20px 0; }
    .container { padding: 0 12px; }
    .hero .hero-title { font-size: 28px; }
    .card-body { padding: 14px; }
    .main-content { flex-direction: column; }
}

/* Booking Summary — polished theme ("sexy" UX) */
.booking-summary-wrapper { max-width: 980px; margin: 20px auto 80px; }
.booking-summary-hero {
    background: linear-gradient(135deg, rgba(237,129,129,0.12), rgba(14,206,238,0.06));
    border-radius: 14px;
    padding: 28px 20px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.booking-summary-hero .hero-left { flex: 1; }
.booking-summary-hero .hero-title { font-size: 28px; margin: 0; color: #1d2451; font-weight: 800; }
.booking-summary-hero .hero-sub { color: #57606f; margin-top: 6px; }

.summary-grid { display: grid; grid-template-columns: 1fr 360px; gap: 22px; align-items: start; }
@media (max-width: 991px) { .summary-grid { grid-template-columns: 1fr; } }

.summary-card { background: #fff; border-radius: 14px; padding: 20px; box-shadow: 0 12px 30px rgba(13,20,40,0.06); }
.summary-card .section-title { font-size: 16px; font-weight: 700; color: #111827; margin-bottom: 12px; }

.appointment-meta p, .contact-info p { color: #374151; margin-bottom: 8px; }
.appointment-meta strong, .contact-info strong { color: #0f172a; }

.meeting-link-btn { display: inline-flex; gap: 8px; align-items: center; padding: 10px 14px; border-radius: 10px; text-decoration: none; }
.meeting-link-btn.primary { background: linear-gradient(90deg,var(--primary-color,#ED8181),#0ecaee); color: #fff; box-shadow: 0 6px 18px rgba(14,206,238,0.12); }
.meeting-link-btn.secondary { background: #e9f6ff; color: #0b6b9a; }

/* Consultant card */
.consultant-card { text-align: center; padding: 18px; border-radius: 14px; }
.consultant-avatar { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto 12px; box-shadow: 0 8px 30px rgba(17,24,39,0.08); border: 6px solid #fff; }
.consultant-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.consultant-name { font-weight: 800; color: #0f172a; margin-bottom: 6px; }
.consultant-speciality { color: #6b7280; font-size: 14px; margin-bottom: 10px; }
.consultant-rate { font-weight: 700; color: var(--primary-color,#ED8181); margin-bottom: 12px; }

/* Rating stars */
.rating-stars { display:flex; gap:6px; justify-content:center; margin-bottom:10px; }
.rating-stars i { color: #FFC149; font-size: 18px; text-shadow: 0 1px 0 rgba(0,0,0,0.05); }

/* Feedback box */
.feedback-box { background: #f8fafc; border-radius: 10px; padding: 12px 14px; color: #111827; font-size: 14px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.6); }
.feedback-meta { font-size: 13px; color: #6b7280; margin-bottom: 8px; }

/* Utility tweaks */
.small-muted { font-size: 13px; color: #6b7280; }
.actions-row { display:flex; gap:10px; margin-top:12px; }
.btn-ghost { background: transparent; border: 1px solid rgba(17,24,39,0.06); padding: 10px 12px; border-radius: 8px; color: #111827; }

/* Make buttons and links more tactile */
a, button { transition: transform .12s ease, box-shadow .12s ease; }
a:hover, button:hover { transform: translateY(-2px); }

/* Ensure hero and container don't clash with fixed header */
@media (min-width: 992px) {
    .booking-summary-wrapper { margin-top: 26px; }
}