@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap');
.instructor-hero { font-family: 'Inter', sans-serif; padding: 120px 0; min-height: 85vh; display: flex; align-items: center; }

/* 2. Background Decor */
.glow-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 1; }
.orb-1 { top: -10%; right: -5%; width: 400px; height: 400px; background: rgba(255, 0, 122, 0.1); }
.orb-2 { bottom: -10%; left: -5%; width: 350px; height: 350px; background: rgba(255, 145, 0, 0.08); }

/* 3. Text Styling */
.instructor-title { font-size: 3.8rem; color: #0f172a; line-height: 1.1; letter-spacing: -2px; }
.text-gradient { background: linear-gradient(135deg, #ff007a, #ff9100); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.instructor-lead { font-size: 1.15rem; color: #64748b; max-width: 520px; line-height: 1.7; }
.small-label { font-size: 10px; font-weight: 800; color: #94a3b8; letter-spacing: 2px; }

/* 4. Designer Buttons */
.btn-instructor-primary {
    background: #0f172a; color: #fff !important; text-decoration: none;
    padding: 18px 36px; border-radius: 100px; font-weight: 700;
    transition: all 0.3s ease; display: inline-flex; align-items: center;
}
.btn-instructor-primary:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2); background: #ff007a; }

.btn-instructor-secondary {
    background: #fff; color: #0f172a !important; text-decoration: none;
    padding: 18px 36px; border-radius: 100px; font-weight: 700; border: 1px solid #e2e8f0;
    transition: all 0.3s ease; display: inline-flex; align-items: center;
}
.btn-instructor-secondary:hover { background: #f8fafc; border-color: #cbd5e1; }

/* 5. Visual Stack */
.hero-image-stack { z-index: 5; }
.glass-circle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 450px; height: 450px; background: #f1f5f9; border-radius: 50%; z-index: -1;
}
.main-instructor-img { z-index: 10; position: relative; max-width: 90%; }

/* Floating Cards Styling */
.floating-card-glass {
    position: absolute; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
    padding: 12px 20px; border-radius: 18px; border: 1px solid rgba(255,255,255,0.4);
    display: flex; align-items: center; gap: 12px; z-index: 20;
}
.f-1 { bottom: 10%; left: -5%; }
.f-2 { top: 15%; right: -5%; }
.icon-box-sm { width: 35px; height: 35px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; }
.bg-pink { background: #ff007a; }
.bg-orange { background: #ff9100; }

/* 6. Designer Pill */
.designer-pill {
    background: rgba(255, 0, 122, 0.08); color: #ff007a;
    padding: 8px 20px; border-radius: 50px; font-size: 12px; font-weight: 700;
}

/* Animations */
.floating-y { animation: floatY 5s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Mobile Adjustments */
@media (max-width: 991px) {
    .instructor-title { font-size: 2.6rem; }
    .instructor-hero { text-align: center; padding: 80px 0; }
    .instructor-lead { margin: 0 auto 30px; }
    .floating-card-glass { position: relative; margin: 15px auto; left: auto; right: auto; width: fit-content; }
}



/* Stats Section Styles */
.stats-section-designer {
    background: #ffffff;
}

.stat-card-premium {
    position: relative;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    height: 100%; /* কার্ডগুলোর হাইট সমান রাখার জন্য */
}

.stat-card-premium:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 122, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Icon Styling */
.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: 0.3s;
}

.color-1 { background: rgba(255, 0, 122, 0.1); color: #ff007a; }
.color-2 { background: rgba(255, 145, 0, 0.1); color: #ff9100; }
.color-3 { background: rgba(79, 70, 229, 0.1); color: #4f46e5; }
.color-4 { background: rgba(16, 185, 129, 0.1); color: #10b981; }

/* Text Styling */
.stat-number {
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.stat-label {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Hover Glow Effect */
.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 122, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

.stat-card-premium:hover .card-glow {
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .stat-card-premium { padding: 20px 10px; border-radius: 18px; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 11px; }
    .stat-icon-wrapper { width: 50px; height: 50px; font-size: 1.2rem; margin-bottom: 12px; }
}


/* 1. Global Utility */
.fw-black { font-weight: 800; }

/* 2. Mini Card Design */
.mini-benefit-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%; /* কার্ডগুলোর হাইট সমান রাখার জন্য */
}

.mini-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: rgba(255, 0, 122, 0.2);
}

/* 3. Mini Icons with Gradients */
.mini-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.pink-gradient { background: linear-gradient(135deg, #ff007a, #ff60ad); }
.blue-gradient { background: linear-gradient(135deg, #4f46e5, #818cf8); }
.purple-gradient { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.orange-gradient { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.green-gradient { background: linear-gradient(135deg, #10b981, #34d399); }
.cyan-gradient { background: linear-gradient(135deg, #06b6d4, #67e8f9); }

/* 4. Content Styling */
.mini-content h6 { color: #1e293b; margin: 0; }
.mini-content p { line-height: 1.4; color: #64748b; }

/* Mobile optimization */
@media (max-width: 768px) {
    .mini-benefit-card { padding: 15px; }
    .mini-icon { width: 40px; height: 40px; font-size: 1rem; }
}

/* Grid Border Logic */
.border-end-designer { border-right: 1px solid #f1f5f9; }
.border-bottom-designer { border-bottom: 1px solid #f1f5f9; }

.step-card-v5 {
    padding: 40px;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%; /* কার্ডগুলোর হাইট সমান রাখার জন্য */
}

.step-card-v5:hover {
    background: #fcfcfd;
}

/* step index circle */
.step-index {
    width: 36px;
    height: 36px;
    border: 2px solid #ff007a;
    color: #ff007a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.step-index.bg-pink {
    background: #ff007a;
    color: #fff;
}

/* Connecting Line */
.step-line {
    height: 2px;
    background: #f1f5f9;
    width: 100%;
    margin-left: 15px;
}

.step-card-v5:hover .step-line {
    background: #ff007a;
    transition: 0.5s;
}

.highlight-step {
    background: rgba(255, 0, 122, 0.02);
}

.tracking-widest { letter-spacing: 3px; font-size: 10px; }

/* Mobile Adjustments */
@media (max-width: 991px) {
    .border-end-designer { border-right: none; }
    .step-card-v5 { padding: 30px; border-bottom: 1px solid #f1f5f9; }
    .step-line { display: none; }
}

.fw-black { font-weight: 800; }

.luxury-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    overflow: hidden;
    transition: all 0.5s ease;
    height: 100%;
}

.img-full-height {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.rank-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    letter-spacing: 1px;
    z-index: 2;
}

.quote-minimal {
    font-size: 16px;
    font-weight: 500;
    color: #475569;
    border-left: 3px solid #ff007a;
    padding-left: 15px;
    line-height: 1.5;
}

.stat-group .stat-val { font-size: 18px; font-weight: 800; color: #0f172a; }
.stat-group .stat-lab { font-size: 11px; color: #94a3b8; text-transform: uppercase; }

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
    background: #cbd5e1 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #ff007a !important;
    width: 30px !important;
    border-radius: 10px !important;
}

@media (max-width: 768px) {
    .img-full-height { min-height: 250px; }
    .luxury-card { margin: 0 5px; }
}