/* BST (Basic Security Training) Course Page Styles - RupIELTS Theme */

/* Main Layout */
.bst-main {
    min-height: 100vh;
    background: inherit;
    position: relative;
}

/* Animated Security Pattern Background */
.bst-main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 40%, rgba(182, 215, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(230, 182, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(182, 255, 182, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Hero Section - Security-Inspired Design */
.bst-hero {
    background: 
        linear-gradient(135deg, rgba(182, 215, 255, 0.4) 0%, rgba(65, 105, 225, 0.3) 50%, rgba(230, 182, 255, 0.3) 100%),
        radial-gradient(ellipse at top left, rgba(65, 105, 225, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(147, 112, 219, 0.1) 0%, transparent 50%);
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Shield Pattern Animation */
.bst-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(65, 105, 225, 0.03) 40px, rgba(65, 105, 225, 0.03) 80px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(147, 112, 219, 0.03) 40px, rgba(147, 112, 219, 0.03) 80px);
    animation: shieldPattern 20s linear infinite;
}

@keyframes shieldPattern {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(80px, 80px) rotate(360deg); }
}

.bst-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.bst-hero-left {
    flex: 1;
    text-align: left;
}

/* Hero Image Placeholder - Shield Shape */
.bst-hero-image {
    flex: 0 0 350px;
    height: 400px;
    background: 
        linear-gradient(135deg, rgba(65, 105, 225, 0.3) 0%, rgba(147, 112, 219, 0.2) 50%, rgba(182, 215, 255, 0.2) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(65, 105, 225, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.6);
    animation: float 6s ease-in-out infinite;
}

.bst-hero-image::before {
    content: '🛡️';
    font-size: 120px;
    opacity: 0.3;
    position: absolute;
    animation: shieldRotate 15s linear infinite;
}

@keyframes shieldRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.bst-hero-image span {
    position: relative;
    z-index: 1;
    color: #4169E1;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Security Badge with Pulse Effect */
.bst-badge-container {
    display: inline-block;
    margin-bottom: 40px;
    position: relative;
}

.bst-badge {
    width: 140px;
    height: 140px;
    background: 
        linear-gradient(135deg, #4169E1 0%, #1E3A8A 50%, #4169E1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 40px rgba(65, 105, 225, 0.4),
        inset 0 -5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 15px 40px rgba(65, 105, 225, 0.4),
            0 0 0 0 rgba(65, 105, 225, 0.7),
            inset 0 -5px 15px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 15px 40px rgba(65, 105, 225, 0.4),
            0 0 0 20px rgba(65, 105, 225, 0),
            inset 0 -5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Badge Stars */
.bst-badge::after {
    content: '⭐';
    position: absolute;
    top: -5px;
    right: 10px;
    font-size: 24px;
    animation: starShine 2s ease-in-out infinite;
}

@keyframes starShine {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

.bst-icon {
    font-size: 70px;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.3));
    animation: shieldFloat 3s ease-in-out infinite;
}

@keyframes shieldFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

/* Enhanced Title with Security Gradient */
.bst-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #4169E1, #1E3A8A, #4169E1);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    line-height: 1.2;
    animation: securityGradient 5s ease infinite;
    position: relative;
}

@keyframes securityGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bst-subtitle {
    font-size: 1.25rem;
    color: var(--dark-text);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
    position: relative;
}

/* Hero Stats Cards */
.bst-hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.bst-stat {
    text-align: center;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    min-width: 160px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bst-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(65, 105, 225, 0.1), transparent);
    transition: left 0.6s ease;
}

.bst-stat:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #4169E1;
    box-shadow: 
        0 15px 40px rgba(65, 105, 225, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bst-stat:hover::before {
    left: 100%;
}

.bst-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #4169E1, #1E3A8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.bst-stat-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Security Shield Decorative Elements */
.bst-shield-element {
    position: absolute;
    width: 120px;
    height: 140px;
    background: 
        linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(147, 112, 219, 0.05) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.4;
}

.bst-shield-1 {
    top: 10%;
    left: 2%;
    transform: rotate(-15deg);
    animation: float 8s ease-in-out infinite;
}

.bst-shield-2 {
    bottom: 10%;
    right: 2%;
    transform: rotate(15deg);
    animation: float 8s ease-in-out infinite reverse;
}

/* Container and Layout */
.bst-container {
    max-width: 1200px;
    margin: -50px auto 0;
    padding: 0 20px 60px;
    position: relative;
    z-index: 2;
}

.bst-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

/* Main Content Area */
.bst-content {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

/* Content Security Pattern */
.bst-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(circle, rgba(65, 105, 225, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.bst-section {
    margin-bottom: 70px;
    position: relative;
}

.bst-section-title {
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: var(--dark-text);
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.bst-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4169E1, #1E3A8A);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(65, 105, 225, 0.3);
}

/* Quick Info Cards */
.bst-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.bst-info-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%),
        linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(147, 112, 219, 0.1) 100%);
    padding: 35px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.bst-info-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.3) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
}

.bst-info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(65, 105, 225, 0.25),
        inset 0 0 0 2px #4169E1;
    border-color: #4169E1;
}

.bst-info-card:hover::before {
    top: -50%;
    left: -50%;
    opacity: 1;
}

.bst-info-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    animation: securityBounce 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    filter: drop-shadow(0 5px 10px rgba(65, 105, 225, 0.3));
}

.bst-info-card:nth-child(1) .bst-info-icon { --delay: 0s; }
.bst-info-card:nth-child(2) .bst-info-icon { --delay: 0.2s; }
.bst-info-card:nth-child(3) .bst-info-icon { --delay: 0.4s; }

@keyframes securityBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.bst-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #4169E1, #1E3A8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Fee Structure Section */
.bst-fee-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.bst-fee-item {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.bst-fee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(65, 105, 225, 0.1), transparent);
    transition: left 0.5s ease;
}

.bst-fee-item:hover {
    transform: translateY(-5px);
    border-color: #4169E1;
    box-shadow: 0 15px 30px rgba(65, 105, 225, 0.2);
}

.bst-fee-item:hover::before {
    left: 100%;
}

.bst-fee-icon {
    font-size: 48px;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 5px rgba(65, 105, 225, 0.3));
}

.bst-fee-details h4 {
    margin-bottom: 10px;
    color: #4169E1;
    font-size: 1.2rem;
    font-weight: 600;
}

.bst-fee-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #4169E1, #1E3A8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.bst-fee-note {
    text-align: center;
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 20px;
}

/* BST Modules Grid */
.bst-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.bst-module-item {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #4169E1, #1E3A8A);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bst-module-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(65, 105, 225, 0.1), transparent);
    transition: left 0.5s ease;
}

.bst-module-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.2);
}

.bst-module-item:hover::before {
    left: 100%;
}

.bst-module-item:hover .bst-module-outcomes {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bst-module-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
    animation: modulePulse 2s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes modulePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bst-module-item:nth-child(1) .bst-module-icon { --delay: 0s; }
.bst-module-item:nth-child(2) .bst-module-icon { --delay: 0.1s; }
.bst-module-item:nth-child(3) .bst-module-icon { --delay: 0.2s; }
.bst-module-item:nth-child(4) .bst-module-icon { --delay: 0.3s; }
.bst-module-item:nth-child(5) .bst-module-icon { --delay: 0.4s; }
.bst-module-item:nth-child(6) .bst-module-icon { --delay: 0.5s; }
.bst-module-item:nth-child(7) .bst-module-icon { --delay: 0.6s; }

.bst-module-item h4 {
    background: linear-gradient(45deg, #4169E1, #1E3A8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Module Learning Outcomes - Hover Display */
.bst-module-outcomes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 10;
    overflow-y: auto;
}

.bst-module-outcomes h5 {
    color: #4169E1;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.bst-module-outcomes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bst-module-outcomes li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.bst-module-outcomes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4169E1;
    font-weight: bold;
}

/* Policies Section */
.bst-policies {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 35px;
}

.bst-policy-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 35px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 2px solid #4169E1;
    border-radius: 25px;
    text-decoration: none;
    color: #4169E1;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bst-policy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(65, 105, 225, 0.2), transparent);
    transition: left 0.5s ease;
}

.bst-policy-btn:hover {
    background: linear-gradient(135deg, #4169E1, #1E3A8A);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.3);
}

.bst-policy-btn:hover::before {
    left: 100%;
}

.bst-policy-icon {
    font-size: 24px;
}

/* Benefits Section */
.bst-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bst-benefit {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%),
        linear-gradient(135deg, rgba(65, 105, 225, 0.05) 0%, rgba(147, 112, 219, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.bst-benefit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.3) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translateY(-50%);
}

.bst-benefit:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 
        15px 0 30px rgba(65, 105, 225, 0.2),
        inset 0 0 0 2px rgba(65, 105, 225, 0.3);
}

.bst-benefit:hover::before {
    left: -20px;
    width: 150px;
    height: 150px;
}

.bst-benefit-icon {
    font-size: 42px;
    flex-shrink: 0;
    background: linear-gradient(45deg, #4169E1, #1E3A8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 3px 5px rgba(65, 105, 225, 0.3));
    animation: checkmark 0.6s ease-in-out;
    animation-delay: var(--delay, 0s);
}

@keyframes checkmark {
    0% { transform: scale(0) rotate(-180deg); }
    50% { transform: scale(1.2) rotate(15deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.bst-benefit:nth-child(1) .bst-benefit-icon { --delay: 0.1s; }
.bst-benefit:nth-child(2) .bst-benefit-icon { --delay: 0.2s; }
.bst-benefit:nth-child(3) .bst-benefit-icon { --delay: 0.3s; }
.bst-benefit:nth-child(4) .bst-benefit-icon { --delay: 0.4s; }

.bst-benefit-content h4 {
    margin-bottom: 10px;
    color: #4169E1;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Enhanced Image Placeholders - Security Shapes */
.bst-image-placeholder {
    background: 
        linear-gradient(135deg, rgba(65, 105, 225, 0.2) 0%, rgba(147, 112, 219, 0.15) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4169E1;
    font-weight: 600;
    margin: 35px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(65, 105, 225, 0.2),
        inset 0 2px 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.bst-image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 40px rgba(65, 105, 225, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.5);
}

.bst-image-placeholder::before {
    content: '🖼️';
    position: absolute;
    font-size: 50px;
    opacity: 0.15;
    animation: float 4s ease-in-out infinite;
}

/* Different shaped placeholders */
.bst-shield-shape {
    width: 250px;
    height: 280px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.bst-hexagon {
    width: 220px;
    height: 220px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.bst-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.bst-pentagon {
    width: 200px;
    height: 200px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.bst-star {
    width: 200px;
    height: 200px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Who Should Take Grid */
.bst-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-top: 35px;
}

.bst-who-item {
    text-align: center;
    padding: 30px 25px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bst-who-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.2) 0%, rgba(147, 112, 219, 0.2) 100%);
    transition: height 0.4s ease;
}

.bst-who-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(65, 105, 225, 0.25),
        inset 0 0 0 2px #4169E1;
}

.bst-who-item:hover::before {
    height: 100%;
}

.bst-who-item:hover .bst-image-placeholder {
    transform: scale(1.1) rotate(-5deg);
}

.bst-who-item h4 {
    margin: 20px 0 12px;
    color: #4169E1;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.bst-who-item p {
    position: relative;
    z-index: 1;
}

/* Schedule Section */
.bst-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 35px;
}

.bst-schedule-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.bst-schedule-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #4169E1, #1E3A8A, #4169E1);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.bst-schedule-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(65, 105, 225, 0.3);
}

.bst-schedule-card:hover::before {
    opacity: 1;
}

.bst-schedule-header {
    background: linear-gradient(135deg, #4169E1, #1E3A8A);
    color: white;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bst-schedule-header::after {
    content: '🛡️';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    opacity: 0.1;
}

.bst-schedule-day {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.bst-schedule-type {
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.bst-schedule-times {
    padding: 30px;
    background: rgba(255, 255, 255, 0.5);
}

.bst-schedule-times p {
    margin-bottom: 12px;
    font-size: 1.1rem;
    padding: 10px 15px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.bst-schedule-times p:hover {
    background: rgba(65, 105, 225, 0.15);
    transform: translateX(5px);
}

/* Testimonials */
.bst-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 35px;
}

.bst-testimonial {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%),
        linear-gradient(135deg, rgba(65, 105, 225, 0.05) 0%, rgba(147, 112, 219, 0.05) 100%);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bst-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.15);
    border-color: rgba(65, 105, 225, 0.3);
}

.bst-testimonial::before {
    content: '"';
    font-size: 100px;
    color: rgba(65, 105, 225, 0.15);
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.bst-stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.3rem;
    letter-spacing: 3px;
    filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.3));
}

.bst-testimonial p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
    font-size: 1.05rem;
}

.bst-testimonial cite {
    display: block;
    text-align: right;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-right: 30px;
}

.bst-testimonial cite::after {
    content: '✓';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #4CAF50;
    font-weight: bold;
}

/* CTA Section */
.bst-cta-section {
    margin-top: 80px;
}

.bst-cta-card {
    background: 
        linear-gradient(135deg, #4169E1 0%, #1E3A8A 50%, #4169E1 100%);
    color: white;
    padding: 60px 50px;
    border-radius: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(65, 105, 225, 0.4),
        inset 0 -5px 20px rgba(0, 0, 0, 0.1);
}

/* Animated Security Pattern */
.bst-cta-card::before,
.bst-cta-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.bst-cta-card::before {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.bst-cta-card::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.bst-cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); }
    to { text-shadow: 0 3px 20px rgba(255, 255, 255, 0.5); }
}

.bst-cta-card p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.bst-cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.bst-cta-btn {
    padding: 18px 45px;
    border-radius: 35px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.bst-cta-primary {
    background: white;
    color: #4169E1;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 0 0 2px transparent;
}

.bst-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.bst-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px #4169E1;
}

.bst-cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.bst-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 3px solid white;
    backdrop-filter: blur(10px);
}

.bst-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.bst-phone-icon {
    font-size: 1.3rem;
    animation: ring 1s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

/* FAQ Section */
.bst-faqs {
    display: grid;
    gap: 25px;
    margin-top: 35px;
}

.bst-faq {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #4169E1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bst-faq::before {
    content: 'Q';
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(65, 105, 225, 0.1);
    font-family: Georgia, serif;
}

.bst-faq:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.15);
    border-left-color: #1E3A8A;
}

.bst-faq h4 {
    color: #4169E1;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.bst-faq p {
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Sidebar Styles */
.bst-sidebar {
    position: sticky;
    top: 100px;
}

.bst-contact-card,
.bst-location-card,
.bst-next-batch-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.bst-contact-card:hover,
.bst-location-card:hover,
.bst-next-batch-card:hover {
    border-color: #4169E1;
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(65, 105, 225, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bst-contact-card::before,
.bst-location-card::before,
.bst-next-batch-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.bst-contact-card:hover::before,
.bst-location-card:hover::before,
.bst-next-batch-card:hover::before {
    top: -25%;
    right: -25%;
}

.bst-contact-card h3,
.bst-location-card h3,
.bst-next-batch-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #4169E1, #1E3A8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.bst-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.bst-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-text);
    text-decoration: none;
    padding: 15px 20px;
    background: 
        linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(147, 112, 219, 0.1) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.bst-contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.2) 0%, rgba(147, 112, 219, 0.2) 100%);
    transition: width 0.3s ease;
}

.bst-contact-item:hover {
    transform: translateX(8px);
    color: #4169E1;
}

.bst-contact-item:hover::before {
    width: 100%;
}

.bst-contact-icon {
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.bst-sidebar-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(45deg, #4169E1, #1E3A8A);
    color: white;
    padding: 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

.bst-sidebar-btn::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;
}

.bst-sidebar-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.4);
}

.bst-sidebar-btn:hover::before {
    width: 300px;
    height: 300px;
}

.bst-location-card address {
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.bst-map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4169E1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 15px;
}

.bst-map-link:hover {
    color: #1E3A8A;
    background: rgba(65, 105, 225, 0.2);
    transform: translateX(5px);
}

/* Next Batch Card Specific */
.bst-batch-date {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(147, 112, 219, 0.1) 100%);
    border-radius: 15px;
    margin-bottom: 15px;
}

.bst-date-icon {
    font-size: 2rem;
}

.bst-next-batch-card p {
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bst-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .bst-hero-left {
        text-align: center;
    }
    
    .bst-hero-stats {
        justify-content: center;
    }
    
    .bst-hero-image {
        flex: 0 0 300px;
        height: 350px;
        max-width: 100%;
    }
}

@media (max-width: 968px) {
    .bst-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .bst-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .bst-content {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .bst-title {
        font-size: 2.2rem;
    }
    
    .bst-subtitle {
        font-size: 1.1rem;
    }
    
    .bst-hero {
        padding: 50px 20px 70px;
    }
    
    .bst-hero-image {
        flex: 0 0 250px;
        height: 300px;
        margin: 0 auto;
    }
    
    .bst-hero-image::before {
        font-size: 80px;
    }
    
    .bst-hero-image span {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .bst-content {
        padding: 30px 20px;
    }
    
    .bst-section-title {
        font-size: 1.8rem;
    }
    
    .bst-hero-stats {
        gap: 20px;
    }
    
    .bst-stat {
        padding: 20px 25px;
        min-width: 140px;
    }
    
    .bst-stat-number {
        font-size: 1.8rem;
    }
    
    .bst-badge {
        width: 120px;
        height: 120px;
    }
    
    .bst-icon {
        font-size: 60px;
    }
    
    .bst-cta-card {
        padding: 40px 25px;
    }
    
    .bst-cta-card h2 {
        font-size: 2rem;
    }
    
    .bst-modules-grid,
    .bst-who-grid {
        grid-template-columns: 1fr;
    }
    
    .bst-shield-element {
        display: none;
    }
    
    .bst-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .bst-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .bst-fee-structure {
        grid-template-columns: 1fr;
    }
    
    .bst-policies {
        flex-direction: column;
        width: 100%;
    }
    
    .bst-policy-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .bst-sidebar,
    .bst-cta-section,
    .bst-shield-element {
        display: none;
    }
    
    .bst-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .bst-hero {
        background: none;
        padding: 20px 0;
    }
    
    .bst-content {
        box-shadow: none;
        background: white;
    }
    
    .bst-badge,
    .bst-info-icon,
    .bst-module-icon {
        animation: none;
    }
    
    .bst-module-outcomes {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: 1px solid #ddd;
        margin-top: 10px;
    }
}