/* Background Pattern Styles */
.wbts-blog-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white"/><circle cx="75" cy="75" r="1" fill="white"/><circle cx="50" cy="10" r="0.5" fill="white"/><circle cx="10" cy="60" r="0.5" fill="white"/><circle cx="90" cy="40" r="0.5" fill="white"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.wbts-about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23667eea"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.wbts-cta-section {
    background-image: var(--cta-bg-image);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Hover effects for interactive elements */
.wbts-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.wbts-catalog-item:hover {
    background: #e9ecef !important;
    border-color: #007bff !important;
    transform: translateY(-2px);
}

.wbts-event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.wbts-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Degree Type Card Hover Effects */
.wbts-degree-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #007bff !important;
}

.wbts-degree-type-card:hover .wbts-degree-hover-overlay {
    opacity: 1;
}

.wbts-degree-type-card:hover .wbts-degree-action i {
    transform: translateX(5px);
}

/* ========================================
   MODERN DEGREE TYPE CARDS
======================================== */
.wbts-modern-degree-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    justify-items: center;
}

.wbts-modern-degree-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.08);
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.wbts-modern-degree-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(30, 58, 138, 0.3);
}

/* Card Header */
.wbts-card-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    padding: 12px 16px 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
}

.wbts-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.wbts-card-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.wbts-card-icon i {
    font-size: 1.2rem;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.wbts-card-status {
    position: relative;
    z-index: 2;
}

.wbts-status-badge {
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.wbts-status-badge.active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

/* Card Content */
.wbts-card-content {
    padding: 14px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wbts-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 6px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbts-card-description {
    color: #6c757d;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Modern Stats */
.wbts-card-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.wbts-stat-item {
    text-align: center;
    flex: 1;
}

.wbts-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 2px;
}

.wbts-stat-label {
    font-size: 0.7rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wbts-stat-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent 0%, #dee2e6 50%, transparent 100%);
    margin: 0 12px;
}

/* Card Footer */
.wbts-card-footer {
    padding: 0 14px 14px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.wbts-card-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #1e40af;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: 10px;
    border: 1px solid rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.wbts-card-action i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.wbts-modern-degree-card:hover .wbts-card-action {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.wbts-modern-degree-card:hover .wbts-card-action i {
    transform: translateX(4px);
}

.wbts-modern-degree-card:hover .wbts-stat-number {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Overlay */
.wbts-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    pointer-events: none;
}

.wbts-modern-degree-card:hover .wbts-card-overlay {
    opacity: 1;
}

/* Degree Type Popup Styles */
.wbts-degree-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.wbts-degree-popup-content {
    background: white;
    border-radius: 12px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wbts-close-degree-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wbts-close-degree-popup:hover {
    background: #f8f9fa;
    color: #333;
}

.wbts-degree-popup-header {
    padding: 40px 40px 20px 40px;
    border-bottom: 1px solid #e9ecef;
}

.wbts-programs-popup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px 40px 40px 40px;
}

/* Base Events Grid Styles */
.wbts-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

/* Base Programs Grid Styles */
.wbts-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.wbts-program-popup-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.wbts-program-popup-card .btn:hover {
    background: #0056b3 !important;
    transform: translateY(-1px);
}

/* Ensure Font Awesome icons are properly displayed */
.wbts-degree-icon i,
.wbts-degree-popup-icon i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}

/* Icon fallback styles */
.fa-graduation-cap:before { content: "\f19d"; }
.fa-university:before { content: "\f19c"; }
.fa-book-open:before { content: "\f518"; }
.fa-certificate:before { content: "\f0a3"; }

/* ===== WBTS MODERN TESTIMONIALS SECTION STYLES ===== */
.wbts-modern-testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.wbts-testimonial-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1);
}

.wbts-testimonial-dot.active {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.2);
}

.wbts-testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.1);
}

.wbts-avatar-ring:hover {
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

.wbts-quote-icon:hover {
    transform: scale(1.2) rotate(10deg);
}

/* Unique Testimonials Animations */
@keyframes floatQuote {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.05;
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
        opacity: 0.1;
    }
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.3; 
        transform: scale(1.2);
    }
}

@keyframes testimonialSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.wbts-modern-testimonial-card {
    animation: testimonialFadeIn 0.8s ease-out both;
}

.wbts-modern-testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.wbts-modern-testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.wbts-modern-testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* Base Testimonial Grid Styles */
.wbts-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

/* Responsive Testimonials Styles */
@media (max-width: 1024px) {
    .wbts-testimonial-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .wbts-modern-testimonial-card {
        padding: 20px !important;
    }
}

@media (max-width: 768px) {
    .wbts-modern-testimonials-section {
        padding: 50px 0 !important;
    }
    
    .wbts-testimonials-header {
        margin-bottom: 30px !important;
    }
    
    .wbts-testimonials-header h2 {
        font-size: 2.2rem !important;
    }
    
    .wbts-testimonials-header p {
        font-size: 0.9rem !important;
    }
    
    .wbts-testimonial-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .wbts-modern-testimonial-card {
        padding: 20px !important;
    }
    
    .wbts-testimonials-navigation {
        gap: 12px !important;
        margin-top: 25px !important;
    }
    
    .wbts-testimonial-nav-btn {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .wbts-modern-testimonials-section {
        padding: 40px 0 !important;
    }
    
    .wbts-testimonials-header h2 {
        font-size: 1.8rem !important;
    }
    
    .wbts-modern-testimonial-card {
        padding: 15px !important;
    }
    
    .wbts-avatar-ring {
        width: 70px !important;
        height: 70px !important;
    }
    
    .wbts-avatar-ring img {
        width: 64px !important;
        height: 64px !important;
    }
    
    .wbts-quote-icon {
        width: 20px !important;
        height: 20px !important;
    }
    
    .wbts-testimonial-nav-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }
}

/* ===== WBTS MODERN ABOUT SECTION STYLES ===== */
.wbts-about-image-wrapper:hover img {
    transform: scale(1.05);
}

.wbts-about-image-wrapper:hover .wbts-about-image-overlay {
    opacity: 1;
}

.wbts-about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4) !important;
}

.wbts-about-btn:hover i {
    transform: translateX(5px);
}

.wbts-floating-stats {
    animation: float 3s ease-in-out infinite;
}

.wbts-floating-stats:nth-child(2) {
    animation-delay: 1.5s;
}

.wbts-stat-card:hover .wbts-stat-icon {
    transform: translateY(-5px) scale(1.1);
}

.wbts-feature-item:hover .wbts-feature-icon {
    transform: translateY(-3px) scale(1.1);
}

/* About Section Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

.wbts-about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    animation: aboutFadeIn 0.8s ease-out both;
}

.wbts-about-stats-section {
    animation: aboutFadeIn 0.8s ease-out 0.3s both;
}

/* Base Stats Grid Styles */
.wbts-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Responsive About Styles */
@media (max-width: 768px) {
    .wbts-modern-about-section {
        padding: 60px 0 !important;
    }
    
    .wbts-about-header h2 {
        font-size: 2.2rem !important;
    }
    
    .wbts-about-header p {
        font-size: 1rem !important;
    }
    
    .wbts-about-content-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .wbts-about-image-wrapper img {
        height: 300px !important;
    }
    
    .wbts-floating-stats {
        position: static !important;
        margin: 20px auto !important;
        max-width: 200px !important;
    }
    
    .wbts-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .wbts-about-stats-section {
        padding: 30px !important;
    }
}

@media (max-width: 480px) {
    .wbts-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .wbts-feature-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
    }
}

/* ===== WBTS MODERN BLOG SECTION STYLES ===== */
.wbts-modern-blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.wbts-blog-read-more:hover i {
    transform: translateX(5px);
}

.wbts-blog-view-all:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
}

.wbts-blog-view-all:hover i {
    transform: translateX(5px);
}

/* Blog Card Animations */
@keyframes blogCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wbts-modern-blog-card {
    animation: blogCardFadeIn 0.6s ease-out both;
}

.wbts-modern-blog-card:nth-child(1) { animation-delay: 0.1s; }
.wbts-modern-blog-card:nth-child(2) { animation-delay: 0.2s; }
.wbts-modern-blog-card:nth-child(3) { animation-delay: 0.3s; }

/* Base Blog Grid Styles */
.wbts-modern-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

/* Responsive Blog Styles */
@media (max-width: 1200px) {
    .wbts-modern-blog-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }
    
    .wbts-blog-card-header {
        height: 160px !important;
    }
    
    .wbts-blog-card-content {
        padding: 12px !important;
    }
    
    .wbts-blog-meta {
        gap: 8px !important;
        font-size: 0.7rem !important;
    }
    
    .wbts-blog-card-content h3 {
        font-size: 1rem !important;
    }
    
    .wbts-blog-card-content p {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 768px) {
    .wbts-modern-blog-section {
        padding: 60px 0 !important;
    }
    
    .wbts-blog-header h2 {
        font-size: 2.2rem !important;
    }
    
    .wbts-blog-header p {
        font-size: 1rem !important;
    }
    
    .wbts-modern-blog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .wbts-blog-card-header {
        height: 200px !important;
    }
    
    .wbts-blog-card-content {
        padding: 20px !important;
    }
    
    .wbts-blog-meta {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    
    .wbts-blog-actions {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    
    .wbts-blog-stats {
        align-self: flex-end !important;
    }
}

/* ===== MODERN CAROUSEL STYLES ===== */
.slider-wbtsok-home {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-bottom: 10px;
}

.slider-wbtsok-home-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wbtsok-home-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-wbtsok-home-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
    visibility: hidden;
}

.slider-wbtsok-home-slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
}

/* All slides hidden by default, JavaScript will show active one */

.slider-wbtsok-home-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-wbtsok-home-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.slider-wbtsok-home-slide:hover .slider-wbtsok-home-slide-image {
    transform: scale(1.05);
}

.slider-wbtsok-home-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.slider-wbtsok-home-slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.slider-wbtsok-home-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.slider-wbtsok-home-text-content {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.slider-wbtsok-home-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.slider-wbtsok-home-slide-badge i {
    color: #ffd700;
    font-size: 1.1rem;
}

.slider-wbtsok-home-slide-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.slider-wbtsok-home-slide-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.slider-wbtsok-home-slide-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.slider-wbtsok-home-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.slider-wbtsok-home-primary-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.slider-wbtsok-home-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

.slider-wbtsok-home-secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.slider-wbtsok-home-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

.slider-wbtsok-home-cta-btn i {
    transition: transform 0.3s ease;
}

.slider-wbtsok-home-cta-btn:hover i {
    transform: translateX(5px);
}

.slider-wbtsok-home-slide-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideInRight 1s ease-out 0.5s both;
}

.slider-wbtsok-home-stat-item {
    text-align: center;
    padding: 15px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.slider-wbtsok-home-stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.slider-wbtsok-home-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-wbtsok-home-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Buttons */
.slider-wbtsok-home-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 4;
    pointer-events: none;
}

.slider-wbtsok-home-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-wbtsok-home-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.slider-wbtsok-home-nav-btn:active {
    transform: scale(0.95);
}

/* Indicators */
.slider-wbtsok-home-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.slider-wbtsok-home-indicator {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slider-wbtsok-home-indicator.active {
    background: rgba(255, 255, 255, 0.6);
}

.slider-wbtsok-home-indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    width: 0%;
    transition: width 0.1s linear;
}

.slider-wbtsok-home-indicator.active .slider-wbtsok-home-indicator-progress {
    width: 100%;
    animation: progressBar 5s linear infinite;
}

/* Slide Counter */
.slider-wbtsok-home-slide-counter {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 4;
}

.slider-wbtsok-home-current-slide {
    color: #ffd700;
    font-size: 1.1rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes progressBar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .slider-wbtsok-home {
        height: 70vh;
        min-height: 500px;
    }
    
    .slider-wbtsok-home-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 20px;
    }
    
    .slider-wbtsok-home-slide-title {
        font-size: 2.2rem;
    }
    
    .slider-wbtsok-home-slide-subtitle {
        font-size: 1rem;
    }
    
    .slider-wbtsok-home-slide-actions {
        justify-content: center;
    }
    
    .slider-wbtsok-home-cta-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .slider-wbtsok-home-slide-stats {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .slider-wbtsok-home-stat-item {
        padding: 12px 10px;
        flex: 1;
        max-width: 100px;
    }
    
    .slider-wbtsok-home-stat-number {
        font-size: 1.5rem;
    }
    
    .slider-wbtsok-home-stat-label {
        font-size: 0.7rem;
    }
    
    .slider-wbtsok-home-navigation {
        padding: 0 15px;
    }
    
    .slider-wbtsok-home-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .slider-wbtsok-home-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .slider-wbtsok-home-indicator {
        width: 30px;
        height: 3px;
    }
    
    .slider-wbtsok-home-slide-counter {
        bottom: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .wbts-hero-carousel {
        height: 300px !important;
    }
    
    .wbts-hero-slide-content h2 {
        font-size: 2rem !important;
    }
    
    .wbts-about-section .container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .wbts-founder-layout {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .wbts-founder-image-container img {
        width: 200px !important;
        height: 200px !important;
    }
    
    .wbts-programs-grid {
        grid-template-columns: 1fr !important;
    }
    
    .wbts-degree-types-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Modern Degree Cards Responsive */
    .wbts-modern-degree-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 0 15px !important;
    }
    
    .wbts-modern-degree-card {
        border-radius: 12px !important;
    }
    
    .wbts-card-header {
        padding: 14px 16px 12px !important;
    }
    
    .wbts-card-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 10px !important;
    }
    
    .wbts-card-icon i {
        font-size: 1.2rem !important;
    }
    
    .wbts-card-content {
        padding: 16px !important;
    }
    
    .wbts-card-title {
        font-size: 1.2rem !important;
        margin-bottom: 6px !important;
    }
    
    .wbts-card-description {
        font-size: 0.8rem !important;
        margin-bottom: 12px !important;
    }
    
    .wbts-card-stats {
        padding: 10px 14px !important;
        margin-bottom: 12px !important;
    }
    
    .wbts-stat-number {
        font-size: 1.4rem !important;
    }
    
    .wbts-stat-label {
        font-size: 0.65rem !important;
    }
    
    .wbts-stat-divider {
        height: 28px !important;
        margin: 0 10px !important;
    }
    
    .wbts-card-footer {
        padding: 0 16px 16px !important;
    }
    
    .wbts-card-action {
        padding: 6px 14px !important;
        font-size: 0.8rem !important;
    }
    
    .wbts-degree-popup-content {
        margin: 10px !important;
        max-height: 95vh !important;
    }
    
    .wbts-degree-popup-header {
        padding: 30px 20px 15px 20px !important;
    }
    
    .wbts-programs-popup-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 20px !important;
    }
    
    .wbts-program-popup-details {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .wbts-program-popup-details > div {
        text-align: left !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid #e9ecef !important;
    }
    
    .wbts-program-popup-details > div:last-child {
        border-bottom: none !important;
    }
    
    .wbts-catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    }
    
    .wbts-events-grid {
        grid-template-columns: 1fr !important;
    }
    
    .wbts-blog-grid {
        grid-template-columns: 1fr !important;
    }
    
    .wbts-testimonial-grid {
        grid-template-columns: 1fr !important;
    }
    
    .wbts-cta-btns {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .wbts-cta-content h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px !important;
    }
    
    .wbts-hero-carousel {
        height: 250px !important;
    }
    
    .wbts-hero-slide-content h2 {
        font-size: 1.5rem !important;
    }
    
    .section-title h2 {
        font-size: 1.5rem !important;
    }
    
    .wbts-cta-content h2 {
        font-size: 1.5rem !important;
    }
    
    .wbts-cta-content p {
        font-size: 1rem !important;
    }
}

/* Smooth transitions for all interactive elements */
.wbts-program-card,
.wbts-catalog-item,
.wbts-event-card,
.wbts-blog-card,
.wbts-testimonial-card {
    transition: all 0.3s ease;
}

/* Button hover effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Focus states for accessibility */
.wbts-catalog-item:focus,
.btn:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Tab functionality styles */
.wbts-tab-btn:hover,
.wbts-tab-btn.active {
    background: #007bff !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.wbts-tab-pane {
    animation: fadeIn 0.3s ease;
}

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

/* Responsive degree grid adjustments */
/* Tablets and small desktops */
@media (max-width: 1024px) {
    .wbts-modern-degree-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 16px !important;
        max-width: 800px !important;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .wbts-modern-degree-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
}

/* Very small mobile - single column */
@media (max-width: 480px) {
    .wbts-modern-degree-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        max-width: 400px !important;
        padding: 0 15px !important;
    }
}

/* Responsive tab adjustments */
@media (max-width: 768px) {
    .wbts-program-tabs {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .wbts-tab-btn {
        min-width: 200px !important;
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .wbts-tab-btn {
        min-width: 100% !important;
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }
    
    .wbts-tab-btn span {
        display: none;
    }
    
    .wbts-tab-btn i {
        font-size: 1.2rem !important;
    }
}
/* Floating AI Assistant Button */
    .floating-ai-assistant {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        display: flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 10px 16px;
        border-radius: 50px;
        box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 0.8rem;
        animation: floatAnimation 3s ease-in-out infinite;
    }

    .floating-ai-assistant:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        color: white;
        text-decoration: none;
    }

    .floating-ai-icon {
        width: 28px;
        height: 28px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        animation: pulseAnimation 2s ease-in-out infinite;
    }

    .floating-ai-text {
        white-space: nowrap;
        font-size: 0.8rem;
    }

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

    @keyframes pulseAnimation {
        0%, 100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.1);
            opacity: 0.8;
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .floating-ai-assistant {
            bottom: 20px;
            right: 20px;
            padding: 8px 12px;
            font-size: 0.75rem;
        }

        .floating-ai-icon {
            width: 24px;
            height: 24px;
            font-size: 0.8rem;
        }

        .floating-ai-text {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .floating-ai-assistant {
            bottom: 15px;
            right: 15px;
            padding: 10px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            justify-content: center;
        }

        .floating-ai-icon {
            width: 24px;
            height: 24px;
            font-size: 0.8rem;
        }
    }
