* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #3D1D4F 0%, #5D2F6F 100%);
    min-height: 100vh;
    padding: 0 !important;
    display: block !important;
}

a, a:active {
	text-decoration: none !important;
	color: #6a2c70;
}

.top-banner-container {
	margin-top: 50px;
}

.top-banner {
	width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
nav.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

footer.container {
	
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3D1D4F;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
  
.logo:hover::before {
    animation-play-state: paused;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(61, 29, 79, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 15px;
    border-radius: 8px;
}

.nav-links a:hover, .nav-links a.active {
    color: #733373;
    background: rgba(115, 51, 115, 0.1);
    transform: translateY(-2px);
}

.user_avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #3D1D4F;
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, #3D1D4F 0%, #733373 50%, #FFD700 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%,
        transparent 70%);
    animation: rotate 15s linear infinite;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.banner-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #3D1D4F;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.banner-cta:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.banner-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Main Content */
main {
    background: white;
    margin: 0 20px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    /*width: calc(100% - 40px);*/
}
/*
.article-header {
	width: 100%;
}*/

/* Footer */
footer {
    background: linear-gradient(135deg, #733373 0%, #8b4393 100%);
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

footer .container {
    position: relative;
    background-color: inherit !important;
    box-shadow: none !important;
    z-index: 1;
    border-left: 0 !important;
    max-width: 1200px !important;
    border-radius: 0 !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
}

footer h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

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

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.contact-item span:first-child {
    font-size: 1.5rem;
}

.contact-item span:last-child {
    font-size: 0.95rem;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.search-btn {
    background: linear-gradient(45deg, #3D1D4F, #FFD700);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 29, 79, 0.3);
}
.btn-primary, .btn-secondary {
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    flex: 1;
    white-space: nowrap;
}

.btn-primary {
    background: white;
    color: #3D1D4F;
    border: 1px solid #ddd;
}

.btn-secondary {
    background: linear-gradient(45deg, #3D1D4F, #FFD700);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #f9f9f9;
    border-color: #3D1D4F;
    transform: translateY(-2px);
}
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 29, 79, 0.3);
}

button.btn-single {
    display: block;
    flex: none;
    margin: auto;
    padding-left: 40px;
    padding-right: 40px;
}

a.modal-btn-primary {
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Paginate */
.text-center {
	text-align: center;
}
.text-center nav {
	display: block;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination>li {
    display: inline;
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}
.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #662170;
    border-color: #662170;
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.author-compact-bio {
	text-align: justify;
}

.sublink span {
	font-style: italic;
	padding-top: 5px;
}
.w50 {
	display: inline-block;
	width: 50%;
	float: left;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.text-justify {
	text-align: justify;
}
.pointer {
	cursor: pointer;
}
.fbicon {
    color: #fff;
    background: #0866ff;
    width: 40px;
    border-radius: 50%;
    height: 40px;
    font-weight: 600;
}
.contact-item a {
    color: #fff; 
}

.banner-cta-group {
    display: inline-flex;
    gap: 30px;
}

.banner-cta { 
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.banner-cta.secondary {
    background: transparent;
    color: white;
}


.banner-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1); 
}

.banner-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Profile Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    display: flex;
    padding-top: 100px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-header {
    padding: 32px 32px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    word-wrap: break-word;
}

.modal-close {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #666;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #374151;
}

.modal-advisor-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.modal-avatar {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    background: linear-gradient(135deg, #3D1D4F, #733373);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.modal-advisor-info {
    flex: 1;
    min-width: 0;
}

.modal-advisor-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 700;
    word-wrap: break-word;
}

.modal-advisor-title {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 12px;
    font-weight: 500;
    word-wrap: break-word;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
    flex-wrap: wrap;
}

.modal-stars {
    color: #FFD700;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.modal-rating-text {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.modal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 10px 0;
}

.modal-stat-item {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-width: 0;
}

.modal-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3D1D4F;
    display: block;
    line-height: 1.2;
    word-wrap: break-word;
}

.modal-stat-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    margin-top: 4px;
    word-wrap: break-word;
}

.modal-body {
    padding: 32px;
    word-wrap: break-word;
}

.modal-section {
    margin-bottom: 32px;
}

.modal-section h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    word-wrap: break-word;
}

.modal-section-icon {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.modal-specialties {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.modal-specialty-tag {
    background: rgba(115, 51, 115, 0.1);
    color: #733373;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(115, 51, 115, 0.2);
    word-wrap: break-word;
}

.modal-description {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-experience-item {
    background: linear-gradient(135deg, #f8f4ff 0%, #fff8e1 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #3D1D4F;
    word-wrap: break-word;
}

.modal-experience-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-experience-period {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 8px;
    word-wrap: break-word;
}

.modal-experience-desc {
    color: #555;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-achievements {
    list-style: none;
    padding: 0;
}

.modal-achievements li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-achievements li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.modal-contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.modal-contact-item {
    background: linear-gradient(135deg, #f8f4ff 0%, #fff8e1 100%);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    word-wrap: break-word;
}

.modal-contact-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.modal-contact-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 4px;
    word-wrap: break-word;
}

.modal-contact-value {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-actions {
    padding: 24px 32px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modal-btn-primary {
    background: linear-gradient(45deg, #3D1D4F, #FFD700);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.modal-btn-secondary {
    background: white;
    color: #3D1D4F;
    padding: 14px 32px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}
.modal-avatar img, .author-compact-avatar img {
		width: 100%;
    height: 100%;
    border-radius: 10px;
}
.modal-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.modal-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 29, 79, 0.3);
}


/*Modal*/
.modal-overlay.active {
    display: flex;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(8px);
}
.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.modal-header {
    padding: 32px 32px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    word-wrap: break-word;
} 
/*
.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #666;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #374151;
}
*/

.modal-close {
	top: 1px !important;
	right: 1px !important;
}

.modal-contact-methods.spec_img { 
    grid-template-columns: repeat(auto-fit, minmax(calc(50% - 5px), 1fr)); 
    gap: 10px;
}

.modal-contact-methods img {
	width: 100%;
	float: left;
}

.modal_review_detail {
	background: linear-gradient(135deg, #f8f4ff 0%, #fff8e1 100%);
	padding: 10px;
}

.rating-overview {
     display: grid;
     grid-template-columns: 1fr 2fr;
     gap: 15px;
     margin-bottom: 30px;
     align-items: center;
 }

 .rating-summary {
     text-align: center;
 }

 .rating-score {
     font-size: 1.5rem;
     font-weight: 700;
     color: #3D1D4F;
     margin-bottom: 4px;
 }

 .rating-stars-large {
     color: #FFD700;
     font-size: 1rem;
     letter-spacing: 1px;
     margin-bottom: 4px;
 }

 .rating-count {
     color: #666;
     font-size: 0.8rem;
 }

 .rating-breakdown {
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .rating-bar {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .rating-label {
     font-size: 0.8rem;
     color: #666;
     min-width: 10px;
 }

 .rating-progress {
     flex: 1;
     height: 4px;
     background: #f0f0f0;
     border-radius: 2px;
     overflow: hidden;
 }

 .rating-fill {
     height: 100%;
     background: linear-gradient(45deg, #3D1D4F, #FFD700);
     border-radius: 2px;
     transition: width 0.5s ease;
 }

 .rating-percent {
     font-size: 0.8rem;
     color: #666;
     min-width: 15px;
 }

 .rating-form {
     background: #f8f9fa;
     padding: 25px;
     border-radius: 15px;
     margin-top: 30px;
 }

 .rating-form-title {
     font-size: 1.2rem;
     color: #3D1D4F;
     margin-bottom: 20px;
     font-weight: 600;
 }
 
 /* Feedback List */
 .feedback-list {
     margin-top: 30px;
 }

 .feedback-item {
     background: white;
     padding: 5px 15px;
     border-radius: 8px;
     margin-bottom: 15px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     border-left: 2px solid #3D1D4F;
 }

 .feedback-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 0px;
     flex-wrap: wrap;
     gap: 10px;
 }

 .feedback-user {
     font-weight: 600;
     color: #3D1D4F;
 }

 .feedback-stars {
     color: #FFD700;
     font-size: 0.9rem;
 }

 .feedback-date {
     color: #666;
     font-size: 0.8rem;
     margin-left: auto;
 }

 .feedback-text {
     color: #555;
     line-height: 1.6;
 }
 
 .feedback-item.response1 {
    margin-left: 40px; 
	}
 
 .feedback-item.response2 {
    margin-left: 80px; 
	}
 
 .feedback-item.response3 {
    margin-left: 120px; 
	}
 
 .feature_coment .feedback-lists {
 		margin-top: 15px;
 }
 
 .hide {
 		display: none;
 }
 
 
/*Star rating*/
.mystar {
	color: #ccc !important;
	position: relative; 
	font-size: 1.1rem !important;
	letter-spacing: 2px !important;
	display: inline-block;
}

.mystar:before {
    content:'\2605';
    color: #ccc;
}

.mystar.full:before {
    content:'\2605';
    color: #FFD700;
}

.mystar.full {
	/*color: #FFD700 !important;*/
}

.mystar.half:after {
    content:'\2605';
    color: gold;
    position: absolute;
    top: 0px;
    left: 0; 
    overflow: hidden;
}

.mystar.half.w4:after {
	width: 4px;
}
.mystar.half.w5:after {
	width: 5px;
}
.mystar.half.w6:after {
	width: 6px;
}
.mystar.half.w7:after {
	width: 7px;
}
.mystar.half.w8:after {
	width: 8px;
}
.mystar.half.w9:after {
	width: 9px;
}
.mystar.half.w10:after {
	width: 10px;
}
.mystar.half.w11:after {
	width: 11px;
}  
 
 .slideInUp {
 	 animation: 0.6s ease 0s 1 normal forwards running slideInUp;
 }
  
 .imarket {
     background: linear-gradient(45deg, #e6c472, #dcae3f) !important; 
 }

 .istock {
     background: linear-gradient(45deg, #421541, #b81bb4) !important;
 }

 .itrader {
     background: linear-gradient(45deg, #3E85BB, #3E85BB) !important;
 }
 
 .imarket a, .istock a, .itrader a {
 	 color: #fff !important;
 }

/* Animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes meditation {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 5px;
    }

    .hubs-showcase {
        padding: 40px 20px;
    }

    .three-column-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-item {
        font-size: 0.9rem;
    }
    .banner-section {
        padding: 80px 20px 60px;
    }
    .banner-title {
        font-size: 2rem;
    }
    .banner-subtitle {
        font-size: 1.1rem;
    }
    .banner-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .article-header {
        padding: 80px 30px 30px !important;
    }
}

@media (max-width: 480px) {
	.container {
		padding: 0 !important;
	}
	.hub-card {
	  padding: 20px 10px !important;
	}
	
	.filter-tabs { 
        display: block  !important;
        text-align: center;
    }
	.filter-tabs a { 
    display: block;
	}
	.rating-section {
    padding: 10px 0px !important;
	}
	.author-compact-header, .advisor-header {
    display: block !important;
    text-align: center;
    margin-bottom: 0px !important;
	}
	.author-compact-avatar, .advisor-avatar {
    margin: auto;
    margin-bottom: 10px;
	}
	.advisor-rating {
    display: block !important; 
	}
	.advisor-stats {
    margin: 5px 0 !important; 
    padding: 0 !important; 
	}
	.advisor-specialties {
    padding: 0 !important; 
    margin: 5px 0 !important; 
	}
	.modal-overlay.active, .filter-modal.active {
    display: block !important;
    padding-top: 50px !important;
	}
  .modal-content {
       margin: 10px 0 !important;
       padding: 0 !important;
       max-height: 80% !important; 
   }
  .filter-content { 
       max-height: 80% !important; 
   }
	.modal-header {
		padding-bottom: 0 !important;
	}
	.modal-advisor-header {
		margin-top: 10px !important;
		margin-bottom: 0 !important;
	}
	
	.banner-cta-group {
	    display: grid;
	    gap: 15px;
	}
	
	.modal-contact-methods.spec_img { 
    grid-template-columns: repeat(auto-fit, minmax(100%, 100%)); 
    gap: 10px;
	}
	
}
	
/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}