/* ========================================
   BUSINESSX STYLES - ORANGE/YELLOW THEME
   ======================================== */

.businessx-header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo i {
    color: #f39c12;
}

.logo-highlight {
    color: #f39c12;
}

.businessx-nav {
    display: flex;
    gap: 2rem;
}

.businessx-nav .nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.businessx-nav .nav-link:hover,
.businessx-nav .nav-link.active {
    color: #f39c12;
}

.btn-signup {
    background: #f39c12;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-signup:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* Hero Section */
.businessx-hero {
    background: linear-gradient(135deg, #d35400 0%, #f39c12 50%, #f1c40f 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fff8e1, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #f39c12;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.bus-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.bus-card-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Trusted Section */
.trusted-section {
    padding: 3rem 0;
    background: var(--bg-primary);
    text-align: center;
}

.trusted-label {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.company-logos i {
    font-size: 2.5rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.company-logos i:hover {
    color: #f39c12;
}

/* Courses Section */
.courses-section {
    padding: 5rem 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}




.course-image {
    position: relative;
    height: 180px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-level {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: white;
}

.course-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.7);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    color: #FFD700;
    font-size: 0.8rem;
}

.course-info {
    padding: 1.2rem;
}

.course-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.topics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.topic-tag {
    background: #f0f0f0;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
}

.btn-course {
    width: 100%;
    background: var(--bg-primary);
    border: none;
    padding: 0.6rem;
    border-radius: var(--radius-md);
    color: #f39c12;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-course:hover {
    background: #f39c12;
    color: white;
}

/* Why Choose Section */
.why-businessx-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.flip-card {
    background: transparent;
    height: 280px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.flip-card-front {
    background: linear-gradient(135deg, #d35400, #f39c12);
    color: white;
}

.flip-card-front i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.flip-card-back {
    background: white;
    color: var(--text-primary);
    transform: rotateY(180deg);
    box-shadow: var(--shadow-lg);
}

.flip-card-back i {
    font-size: 2rem;
    color: #f39c12;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Testimonials */
.testimonials-businessx {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.testimonial-card-businessx {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.quote-icon {
    font-size: 2rem;
    color: #f39c12;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.testimonial-rating {
    color: #FFD700;
    margin-top: 1rem;
}

/* CTA Section */
.cta-businessx {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d35400, #f39c12);
    text-align: center;
    color: white;
}

.cta-businessx h2 {
    margin-bottom: 1rem;
}

.cta-businessx p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer-businessx {
    background: #1a1a2e;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #f39c12;
}

.footer-col h4 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Menu */
.mobile-menu-businessx {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: white;
    z-index: 2000;
    transition: right 0.3s;
    box-shadow: var(--shadow-lg);
}

.mobile-menu-businessx.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
}

.close-menu {
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
}

.mobile-menu-links a {
    text-decoration: none;
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .businessx-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
/* ========================================
   BUSINESS CUSTOM HEADER - ADD THIS
   ======================================== */

.business-custom-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.business-header-container {
    max-width: 1280px;
    margin: auto;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.business-logo a {
    display: block;
    text-decoration: none;
}

.business-logo img {
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s;
}

.business-logo a:hover img {
    transform: scale(1.05);
}

/* Search Wrapper */
.business-search-wrapper {
    flex: 1;
    max-width: 450px;
    position: relative;
}

/* Search Bar */
.business-search-bar {
    display: flex;
    align-items: center;
    background: #f5f7f9;
    border: 1px solid #e0e6ed;
    border-radius: 50px;
    padding: 0.5rem;
    transition: all 0.3s;
}

.business-search-bar:focus-within {
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.business-search-bar i {
    margin-left: 1rem;
    color: #6c6c8a;
}

.business-search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.7rem;
    font-size: 0.95rem;
    outline: none;
}

.business-search-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.business-search-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: scale(1.02);
}

/* Search Results Dropdown */
.business-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin-top: 0.5rem;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    border: 1px solid #e0e6ed;
}

.business-search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: background 0.3s;
    border-bottom: 1px solid #f0f0f0;
}

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

.search-result-item i {
    color: #f39c12;
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.search-no-results {
    text-align: center;
    padding: 1.5rem;
}

.search-no-results i {
    font-size: 2rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.search-suggestions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e6ed;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-suggestion-item:hover {
    background: #f5f7f9;
}

.search-suggestion-item i {
    color: #f39c12;
}

/* Right Links */
.business-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.business-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s;
}

.business-links a:hover {
    color: #f39c12;
}

.business-links a:last-child {
    background: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.business-links a:last-child:hover {
    background: #e67e22;
    color: white;
}

/* ========================================
   PAGINATION STYLES
   ======================================== */

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.page-btn {
    padding: 0.6rem 1.2rem;
    background: white;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: inherit;
}

.page-btn:hover:not(.disabled) {
    background: #f39c12;
    color: white;
    border-color: #f39c12;
    transform: translateY(-2px);
}

.page-btn.active {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border-color: transparent;
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f7f9;
}

.page-dots {
    padding: 0.5rem;
    color: #6c6c8a;
    font-weight: 600;
}

/* ========================================
   PARTNER CAROUSEL STYLES
   ======================================== */

.partner-carousel-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 100%);
    position: relative;
    overflow: hidden;
}

.partner-carousel {
    position: relative;
    padding: 1rem 0 3rem 0;
    margin: 0 40px;
}

.partner-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(243, 156, 18, 0.2);
}

.partner-card i {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 0.8rem;
    display: block;
}

.partner-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
}

/* Swiper Navigation */
.partner-prev,
.partner-next {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.partner-prev:hover,
.partner-next:hover {
    background: #f39c12;
}

.partner-prev:hover:after,
.partner-next:hover:after {
    color: white;
}

.partner-prev:after,
.partner-next:after {
    font-size: 1.2rem;
    color: #f39c12;
    font-weight: bold;
}

.partner-pagination {
    bottom: -10px !important;
    position: absolute;
    text-align: center;
    width: 100%;
}

.partner-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #f5d0a9;
    opacity: 0.5;
    margin: 0 5px;
}

.partner-pagination .swiper-pagination-bullet-active {
    background: #f39c12;
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}

/* ========================================
   SEARCH OVERLAY ANIMATION
   ======================================== */

.search-overlay-business {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay-business.active {
    opacity: 1;
    visibility: visible;
}

.search-animation-business {
    text-align: center;
}

.search-icon-animate {
    font-size: 5rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: searchPulse 0.5s ease infinite;
}

.search-animation-business h2 {
    color: white;
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease;
}

.search-animation-business .dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.search-animation-business .dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    animation: bounce 0.5s ease infinite;
}

.search-animation-business .dot:nth-child(2) { animation-delay: 0.1s; }
.search-animation-business .dot:nth-child(3) { animation-delay: 0.2s; }

@keyframes searchPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Temporary Message */
.temp-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #f39c12;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10001;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    opacity: 0;
}

.temp-message.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* No Results */
.no-results-business {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    grid-column: span 4;
}

.no-results-business i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

/* Course Grid Responsive */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .no-results-business {
        grid-column: span 3;
    }
}

@media (max-width: 900px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .no-results-business {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .business-header-container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem 1rem;
    }
    
    .business-search-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .business-search-bar {
        width: 100%;
    }
    
    .business-search-results {
        position: fixed;
        top: auto;
        left: 1rem;
        right: 1rem;
        margin-top: 0.5rem;
        max-height: 60vh;
    }
    
    .business-links {
        gap: 1rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .no-results-business {
        grid-column: span 1;
    }
    
    .partner-carousel {
        margin: 0 15px;
    }
    
    .partner-prev,
    .partner-next {
        width: 35px;
        height: 35px;
    }
    
    .page-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .business-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .partner-card {
        padding: 1rem;
    }
    
    .partner-card i {
        font-size: 2rem;
    }
}



/* Ensure grid items stretch evenly */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

/* Make all cards in the same row equal height */
.courses-grid > * {
    height: auto;
}

/* Responsive fixes */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .business-course-card {
        min-height: 370px;
    }
}

@media (max-width: 900px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .business-course-card {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
    .business-course-card {
        min-height: auto;
    }
    .business-course-card .course-info h3 {
        min-height: auto;
    }
}
.login-btn{
    background: transparent;
    color: var(--text-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}
.login-btn:hover{
        background: var(--bg-primary);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}