/* ==========================================
   INDEX PAGE EXCLUSIVE STYLES
   ========================================== */

/* Button Utilities for Index Page */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #0f172a;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: #cbd5e1;
    color: #0f172a;
    background-color: #ffffff;
}

.btn-outline:hover {
    border-color: #2563eb;
    color: #2563eb;
    background-color: #eff6ff;
}

.btn-outline-light {
    border: 2px solid #2563eb;
    color: #2563eb;
    background-color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
}
/* ==================== PREMIUM HERO SECTION ==================== */
.hero {
    padding: 100px 0 90px;
    background: radial-gradient(circle at center, #ffffff 30%, #e0f2fe 75%, #bae6fd 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* চারপাশে নীলের গভীরতা (Vignette Glow) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 40%, rgba(37, 99, 235, 0.12) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-text-center {
    max-width: 880px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

/* ==================== HERO COMPONENTS & BADGE ==================== */

/* ১. গ্লোয়িং ব্যাজ (Top Badge) */
.hero-text-center .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe !important;
    color: #1e3a8a !important;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid #93c5fd !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.hero-text-center .badge i {
    color: #1d4ed8 !important;
}

/* ২. মূল হেডিং (Main Heading) */
.hero-text-center h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    color: #020617 !important;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* ৩. হাইলাইটেড টেক্সট (Gradient Blue Text) */
.hero-text-center .highlight {
    background: linear-gradient(135deg, #1d4ed8 0%, #0284c7 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #1d4ed8 !important;
    display: inline-block;
}

/* ৪. সাবটাইটেল / প্যারাগ্রাফ (Subtitle) */
.hero-text-center p {
    font-size: 19px;
    color: #1e293b !important;
    margin: 0 auto 36px;
    font-weight: 600;
    line-height: 1.6;
    max-width: 720px;
}

/* ==================== SMOOTH TYPING ANIMATION ==================== */
.typing-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid #2563eb;
    vertical-align: bottom;
    color: #1d4ed8;
    max-width: 100%;
    /* ৮ সেকেন্ডে স্মুথ টাইপিং, হোল্ড এবং রিমুভ হবে */
    animation: 
        typing 8s steps(20, end) infinite,
        blink-cursor 0.75s step-end infinite;
}

/* ন্যাচারাল ও স্মুথ টাইপিং টাইমফ্রেম */
@keyframes typing {
    0% { width: 0; }
    35% { width: 16ch; }   /* ধীরে ধীরে টাইপ হবে (০ থেকে ৩৫% সময়) */
    70% { width: 16ch; }   /* লেখাটি পড়ে দেখার জন্য বেশ কিছুক্ষণ ধরে রাখবে (৩৫% থেকে ৭০%) */
    90% { width: 0; }      /* স্মুথলি মুছে যাবে (৭০% থেকে ৯০%) */
    100% { width: 0; }     /* রিসেট হয়ে নতুন লুপ শুরু করবে */
}

/* ব্লিংকিং কার্সর ইফেক্ট */
@keyframes blink-cursor {
    from, to { border-color: transparent; }
    50% { border-color: #2563eb; }
}

/* ==================== RESPONSIVE DESIGN (MOBILE & TABLET) ==================== */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 50px;
    }

    .hero-text-center h1 {
        font-size: 32px; /* মোবাইলের জন্য পারফেক্ট সাইজ */
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-text-center p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-text-center .badge {
        padding: 6px 16px;
        font-size: 13px;
        margin-bottom: 18px;
    }

    .typing-text {
        border-right-width: 2px;
    }
}

@media (max-width: 480px) {
    .hero-text-center h1 {
        font-size: 26px; /* ছোট ফোনের স্ক্রিনের জন্য */
    }
}

/* ==================== SEARCH BOX STYLING ==================== */
.hero-search-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 35px;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-input-group {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #64748b;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #f8fafc;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

.search-input option {
    background: white;
    color: blue;
}

.search-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.5);
}

/* ==================== QUICK ACTION BUTTONS ==================== */
.hero-action-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #94a3b8;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    border-color: #3b82f6;
    color: #60a5fa;
    transform: translateY(-2px);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0 60px;
    }

    .hero-text-center h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-text-center p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .search-form {
        flex-direction: column;
        gap: 10px;
    }

    .search-input-group, 
    .search-btn {
        width: 100%;
    }

    .search-btn {
        justify-content: center;
    }

    .hero-action-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn-secondary, 
    .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
}

/* SEARCH BOX STYLES */
.hero-search-box {
    background: #ffffff;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.12);
    border: 1px solid #e2e8f0;
    margin-bottom: 32px;
}

.search-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-input-group {
    position: relative;
    flex: 1;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    font-size: 18px;
}

.search-input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    background-color: #f8fafc;
    color: #0f172a;
    transition: all 0.2s ease;
}

.search-input:focus {
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.search-btn {
    padding: 14px 30px;
    border-radius: 10px;
    white-space: nowrap;
}

/* ==================== ACTION BUTTONS GROUP ==================== */
.hero-action-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Base Style for Hero Action Buttons */
.hero-action-btns .btn {
    position: relative;
    padding: 15px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- BUTTON 1: টিউটর রিকোয়েস্ট দিন (আকর্ষণীয় অরেঞ্জ গ্রেডিয়েন্ট) --- */
.hero-action-btns .btn-secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.4);
}

.hero-action-btns .btn-secondary:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.6);
    color: #ffffff !important;
}

/* --- BUTTON 2: Become a Tutor (ভাইব্রেন্ট গ্রিন গ্রেডিয়েন্ট) --- */
.hero-action-btns .btn-outline-light {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.hero-action-btns .btn-outline-light:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff !important;
    border-color: #34d399;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
}

/* --- BUTTON SHINE ANIMATION EFFECT --- */
.hero-action-btns .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.35), 
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.75s ease;
    z-index: 2;
}

.hero-action-btns .btn:hover::before {
    left: 140%;
}

/* --- ICON ANIMATION --- */
.hero-action-btns .btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-action-btns .btn-secondary:hover i {
    transform: translateX(4px) rotate(-10deg);
}

.hero-action-btns .btn-outline-light:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* ==================== MOBILE ANIMATION & RESPONSIVE ==================== */
/* মোবাইলের নড়াচড়া (Floating/Pulse) অ্যানিমেশন */
@keyframes mobilePulse {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.015);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 576px) {
    .hero-action-btns {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .hero-action-btns .btn {
        width: 100%;
        padding: 15px 20px;
    }

    /* প্রথম বাটনটি ২.৫ সেকেন্ড পর পর হালকা নড়বে */
    .hero-action-btns .btn-secondary {
        animation: mobilePulse 2.5s infinite ease-in-out;
    }

    /* দ্বিতীয় বাটনটি একটু সময় পর (ডিলে নিয়ে) নড়বে যাতে সুন্দর একটা ইফেক্ট আসে */
    .hero-action-btns .btn-outline-light {
        animation: mobilePulse 2.5s infinite ease-in-out;
        animation-delay: 1.25s;
    }
}

/* ==================== PREMIUM STATS SECTION ==================== */
.stats {
    /* প্রিমিয়াম মডার্ন রয়্যাল ব্লু ব্যাকগ্রাউন্ড গ্র্যাডিয়েন্ট */
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%);
    padding: 32px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ব্যাকগ্রাউন্ড লাইট গ্লো ইফেক্ট */
.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.stats-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* প্রিমিয়াম লাইট-গ্লাসমর্ফিজম কার্ড */
.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.12); /* ব্লু ব্যাকগ্রাউন্ডে ফুটানোর জন্য ক্লিয়ার গ্লাস */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.25);
}

/* পপ-আউট আইকন বক্স */
.stat-icon {
    width: 52px;
    height: 52px;
    background: #ffffff; /* সাদা ব্যাকগ্রাউন্ড আইকনকে দারুণ হাইলাইট করবে */
    color: #1d4ed8;     /* আইকন কালার পারফেক্ট ব্লু */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.08) rotate(-3deg);
    background: #f8fafc;
}

.stat-info {
    min-width: 0;
}

/* সংখ্যা হেডিং */
.stat-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff; /* ধবধবে স্পষ্ট সাদা টেক্সট */
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* লেবেল বিবরণ */
.stat-info p {
    font-size: 13.5px;
    color: #bae6fd; /* সফট আইসি ব্লু কালার যা ব্লুর সাথে পারফেক্ট ম্যাচ করে */
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}


/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .stats {
        padding: 16px 0;
    }

    .stats-container {
        padding: 0 8px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
    }

    .stat-card {
        flex-direction: row;
        align-items: center;
        padding: 10px 8px !important;
        gap: 8px !important;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
    }

    .stat-icon {
        width: 34px !important;
        height: 34px !important;
        font-size: 14px !important;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    }

    .stat-info h3 {
        font-size: 13px !important;
        line-height: 1;
        margin-bottom: 2px;
    }

    .stat-info p {
        font-size: 9px !important;
        color: #cbd5e1;
        line-height: 1.1;
        white-space: nowrap;
    }
}

/* JOBS SECTION */
.jobs-section {
    padding: 80px 0;
    position: relative;
    background: #ffffff; /* লাইট/সাদা ব্যাকগ্রাউন্ড */
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a; /* স্পষ্ট ডার্ক টেক্সট */
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 16px;
    color: #64748b;
}

.job-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* 🟦 ক্লিন হোয়াইট কার্ড উইথ ব্লু আউটলাইন লাইটিং */
.job-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    
    /* সফট ব্লু আউটলাইন বর্ডার ও লাইটিং গ্লো */
    border: 1.5px solid #bfdbfe; 
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.08), 
                0 0 12px rgba(59, 130, 246, 0.1); 
    
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* মাউস হোভার করলে আউটলাইন ব্লু গ্লো উজ্জ্বল হবে */
.job-card:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    /* উজ্জ্বল ব্লু আউটলাইন নিয়ন গ্লো */
    box-shadow: 0 18px 30px -8px rgba(37, 99, 235, 0.2), 
                0 0 20px rgba(37, 99, 235, 0.25);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.job-id {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.job-tag {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 0.3px;
}

.tag-urgent { background-color: #fef2f2; color: #ef4444; border: 1px solid #fecaca; }
.tag-featured { background-color: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.tag-normal { background-color: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }

.job-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.4;
}

.job-subject {
    color: #2563eb;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-details p {
    font-size: 14.5px;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-details p i {
    width: 18px;
    color: #2563eb;
    font-size: 14px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed #cbd5e1;
}

/* 💰 টাকার পরিমাণ - উজ্জ্বল প্রিমিয়াম গ্রীন কালার */
.salary {
    font-size: 22px;
    font-weight: 800;
    color: #059669; /* ব্রাইট ভাইব্রেন্ট গ্রীন */
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.salary span {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

/* 🔘 বিস্তারিত / অ্যাপ্লাই বাটন স্টাইলিং */
.btn-apply, 
.job-footer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff !important;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-apply:hover, 
.job-footer a:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.text-center { text-align: center; }
.mt-5 { margin-top: 40px; }

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .search-form {
        flex-direction: column;
    }
    .search-input-group, .search-btn {
        width: 100%;
    }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .job-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .hero-text-center h1 { font-size: 32px; }
    .hero-action-btns { flex-direction: column; }
    .hero-action-btns .btn { width: 100%; }
    .stats-grid, .job-cards-grid { grid-template-columns: 1fr; }
}

/* ==================== PREMIUM HORIZONTAL REVIEWS STYLES ==================== */
/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
    padding: 90px 0;
    /* চারপাশে সফট নীলের শেড এবং মাঝখানে একদম পরিষ্কার সাদা আলো */
    background: radial-gradient(circle at center, #ffffff 30%, #e0f2fe 75%, #bae6fd 100%);
    border-top: 1px solid #bfdbfe;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* ব্যাকগ্রাউন্ড অরা ( চারপাশে নীলের প্রিমিয়াম ভিন্যেট টাচ ) */
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 40%, rgba(37, 99, 235, 0.12) 100%);
    pointer-events: none;
    z-index: 0;
}

/* সেকশনের টাইটেল ও হেডার টেক্সট স্টাইল (উজ্জ্বল ব্যাকগ্রাউন্ডে স্পষ্ট পড়ার উপযোগী) */
.reviews-section .section-title,
.reviews-section h2,
.reviews-section h3 {
    color: #020617 !important; /* ডিপ ইনক ব্ল্যাক/ডিপ নেভি */
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.reviews-section .section-subtitle,
.reviews-section .subtitle,
.reviews-section p.section-desc {
    color: #334155 !important; /* স্পষ্ট স্লেট গ্রে */
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.reviews-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 15px 5px 35px;
    position: relative;
}

/* পাশাপাশি ১ লাইনে রাখার Flexbox */
.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* প্রিমিয়াম হোয়াইট-গ্লাস কার্ড উইথ ব্লু বর্ডার */
.review-card {
    min-width: 360px;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.9); /* সফট হোয়াইট কার্ড ব্যাকগ্রাউন্ড */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    /* নীল বর্ডার ও কার্ভ */
    border: 2px solid #3b82f6; /* চারপাশে নীল বর্ডার */
    border-radius: 20px;
    padding: 26px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08); /* সফট ব্লুইশ শ্যাডো */
}

/* মাউস হভার করলে হাই-এন্ড লাইটিং ও লিফটিং ইফেক্ট */
.review-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: #2563eb; /* হভারে প্রিমিয়াম রয়্যাল ব্লু বর্ডার */
    box-shadow: 0 20px 35px rgba(37, 99, 235, 0.18), 
                0 0 15px rgba(59, 130, 246, 0.25); /* সফট নীড় গ্লো */
}

/* ইউজার হেডার */
.card-header-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.review-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2563eb;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
}

/* নাম ও লোকেশন টেক্সট */
.user-meta h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a !important; /* ডিপ নেভি কালার */
    margin: 0;
}

.user-meta .location {
    font-size: 13px;
    color: #64748b !important; /* ক্লিয়ার স্লেট কালার */
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 3px;
    font-weight: 500;
}

.user-meta .location i {
    color: #2563eb;
    font-size: 12px;
}

/* রেটিং স্টার */
.review-card .stars {
    color: #f59e0b; /* উজ্জ্বল ওয়ার্ম গোল্ডেন স্টার */
    font-size: 15px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

/* রিভিউ মেসেজ */
.review-card p {
    font-size: 14.5px;
    color: #334155 !important; /* স্পষ্ট অন্ধকার গ্রে টেক্সট */
    line-height: 1.65;
    font-style: normal;
    margin: 0;
    font-weight: 500;
}
/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .review-card {
        min-width: 84vw;
        max-width: 84vw;
        padding: 22px;
    }
    
    .reviews-section .section-title,
    .reviews-section h2 {
        font-size: 24px;
    }
}
/* ==================== GUIDELINE / HOW IT WORKS ==================== */
.how-it-works {
    background: #f8fafc;
    padding: 60px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.guideline-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styling */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 45px auto;
}

.guide-badge {
    background: #eff6ff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    border: 1px solid #bfdbfe;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 10px;
}

.highlight-text {
    color: #2563eb;
    position: relative;
}

.section-header p {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

/* Step Card & Animations */
.step-card {
    background: #ffffff;
    padding: 28px 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.12);
    border-color: #93c5fd;
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
    font-weight: 800;
    background: #f1f5f9;
    color: #475569;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    background: #2563eb;
    color: #ffffff;
}

/* Icon Box */
.step-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: #2563eb;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* CTA Buttons Styling */
.guideline-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

.btn-cta-call {
    background: #16a34a;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-call:hover {
    background: #15803d;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(22, 163, 74, 0.4);
    color: #ffffff;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr); /* ট্যাবলেটে ২ কলাম */
    }
}

@media (max-width: 576px) {
    .how-it-works {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    /* মোবাইলে কার্ডগুলো লম্বালম্বি ২x২ অথবা ১ কলামে সুন্দর স্পেসিং সহ আসবে */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-card {
        padding: 20px 16px;
    }

    .guideline-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary, .btn-cta-call {
        width: 100%;
        justify-content: center;
    }
}