





/* ============================================================
   LOUWMAN PREMIUM JOB PORTAL - ULTIMATE FIXED CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --p-green: #5F9440;
    --p-purple: #410049;
    --s-coral: #F07B6E;
    --bg-gray: #F7F9FB;
}

/* ১. মেইন লেআউট কন্টেইনার */
.job-portal-container {
    display: flex !important;
    gap: 40px !important;
    max-width: 1400px !important;
    margin: 40px auto !important;
    padding: 0 20px !important;
    font-family: 'Poppins', sans-serif !important;
    align-items: flex-start !important;
}

/* ২. সাইডবার ডিজাইন (Sidebar) - আপনার আগের ডিজাইন ঠিক রাখা হয়েছে */
.job-sidebar {
    flex: 0 0 300px !important; /* চওড়া ৩০০ পিক্সেল ফিক্সড */
    width: 300px !important;
}

.guide-input {
    width: 100% !important;
    padding: 14px !important;
    border-radius: 12px !important;
    border: 1px solid #ddd !important;
    margin-bottom: 25px !important;
    box-sizing: border-box !important;
}

.filter-accordion details {
    background: #fff !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
    border: 1px solid #eee !important;
    overflow: hidden !important;
}

.filter-accordion summary {
    padding: 15px 20px !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    color: var(--p-purple) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    list-style: none !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
}

/* ৩. রেজাল্ট এরিয়া (এটিই কার্ড চিকন হওয়া আটকাবে) */


/* ৪. জবের গ্রিড লেআউট - ৩টি কলামে একদম নিখুঁত পোর্ট্রেট */
.job-grid-layout {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* ডেক্সটপে ৩টি সমান কলাম */
    gap: 25px !important;
    width: 100% !important;
    margin-top: 20px !important;
}

/* ৫. প্রিমিয়াম পোর্ট্রেট জব কার্ড */
.job-card-link {
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
}

.premium-portrait-card {
    height: 480px !important; /* প্রফেশনাল পোর্ট্রেট হাইট */
    width: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 24px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.premium-portrait-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15) !important;
}

/* কার্ড ওভারলে */
.card-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, transparent 80%) !important;
    padding: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
}

/* উপরের লোগো এবং টাইটেল */
.brand-logo-badge {
    background: #fff !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%) !important;
}

.brand-logo-badge img {
    max-width: 25px !important;
    height: auto !important;
}

.card-job-title {
    color: #fff !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
}

.card-tags-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.meta-pill {
    background: var(--s-coral) !important;
    color: #fff !important;
    padding: 5px 12px !important;
    border-radius: 50px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

/* ৬. রেসপন্সিভ ডিজাইন (Bulletproof) */

@media (max-width: 1200px) {
    .job-grid-layout {
        grid-template-columns: repeat(2, 1fr) !important; /* ছোট ল্যাপটপে ২টি কলাম */
    }
}

@media (max-width: 850px) {
    .job-portal-container {
        flex-direction: column !important;
    }

    .job-sidebar {
        position: fixed !important;
        right: -110% !important; /* ড্রয়ার মুড */
        top: 0 !important;
        height: 100vh !important;
        background: #fff !important;
        z-index: 10000 !important;
        width: 320px !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        padding: 80px 20px 20px !important;
        overflow-y: auto !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1) !important;
    }

    .job-sidebar.active {
        right: 0 !important;
    }

    .job-grid-layout {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .mobile-floating-trigger {
        display: block !important;
    }

    .floating-purple-btn {
        background: var(--p-purple) !important;
        color: #fff !important;
        position: fixed !important;
        bottom: 30px !important;
        right: 20px !important;
        padding: 15px 30px !important;
        border-radius: 50px !important;
        z-index: 999 !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
    }
}

@media (max-width: 550px) {
    .job-grid-layout {
        grid-template-columns: 1fr !important; /* মোবাইলে ১টি কলাম */
    }
    .premium-portrait-card {
        height: 420px !important;
    }
}

/* চেকবক্স ডিজাইন */
.guide-checkmark {
    height: 18px;
    width: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.guide-check-container input:checked + .guide-checkmark {
    background-color: var(--p-green);
    border-color: var(--p-green);
}















[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover{
    color: #000 !important;
}

/* Sync Single Page Tags with Job Card Design */
.card-tags-row {
display: flex !important;
    flex-wrap: wrap !important;
    gap: 22px !important;
    margin-bottom: 25px !important;
    margin-top: 25px;
}

.meta-pill {
    background: #5f9440 !important; /* আপনার ব্র্যান্ডের গ্রিন কালার */
    color: #ffffff !important;
    padding: 14px 18px !important; /* একটু আরামদায়ক প্যাডিং */
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    line-height: 1 !important;
    /*text-transform: capitalize;*/
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* SVG আইকনগুলোকে সাদা করা এবং অ্যালাইন করা */
.meta-pill svg {
    stroke: #ffffff !important;
    flex-shrink: 0;
    width: 30px;
    height: 23px;
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 600px) {
    .card-tags-row {
        justify-content: center; /* মোবাইলে সেন্টার হবে */
    }
}


/* মেইন কার্ড কন্টেইনার */
.modern-contact-card {
    background: #FFFFFF;
    border-radius: 25px;
    padding: 50px 60px;
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(0, 44, 95, 0.05); /* হালকা প্রফেশনাল শ্যাডো */
    border-top: 6px solid #5F9440; /* ইমেজের মতো গ্রিন টপ বর্ডার */
    font-family: 'Poppins', sans-serif;
}

/* হেডার টেক্সট */
.contact-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.guide-h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.guide-intro {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ডিভাইডার লাইন */
.card-divider {
    border: 0;
    border-top: 1px solid #F0F0F0;
    margin: 30px 0 40px 0;
}

/* ফুটার রো লেআউট */
.contact-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* ১. রিক্রুটার প্রোফাইল */
.recruiter-meta-box {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.avatar-wrap {
    position: relative;
    width: 80px;
    height: 80px;
}

.avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #5F9440;
}

.online-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    background: #2ecc71;
    border-radius: 50%;
    border: 2px solid #fff;
}

.name-phone-wrap h4 {
    margin: 0 0 3px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
}

.phone-link-card {
    color: #5F9440;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* ২. অ্যাভেইল্যাবিলিটি (মাঝের বক্স) */
.availability-meta-box {
    background: #F9FBF8; /* হালকা গ্রিন ব্যাকগ্রাউন্ড */
    padding: 15px 25px;
    border-radius: 15px;
    flex: 1.2;
}

.avail-label-card {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #8EBB5F;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.avail-days-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.avail-days-list li {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
}

.green-dot {
    width: 7px;
    height: 7px;
    background: #5F9440;
    border-radius: 50%;
}

/* ৩. পার্পল বাটন */
.guide-purple-btn {
    background-color: #410049;
    color: #FFFFFF !important;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
    white-space: nowrap;
}

.guide-purple-btn:hover {
    background-color: #5F9440; /* হোভার করলে গ্রিন হবে */
    transform: translateY(-2px);
}

.phone-link-card{
    text-decoration: none !important;
}

/* ৪. মোবাইল রেসপন্সিভ */
@media (max-width: 850px) {
    .contact-card-footer {
        flex-direction: column;
        text-align: center;
    }
    .recruiter-meta-box {
        flex-direction: column;
    }
    .avail-days-list {
        justify-content: center;
    }
    .modern-contact-card {
        padding: 40px 20px;
    }
}




[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover{
    background: transparent !important;
}


/* মেইন সেকশন স্টাইলিং */
.job-video-gallery-section {
    max-width: 1100px;
    margin: 140px auto;
    padding: 0 20px;
}

/* টাইটেল স্টাইল */
.gallery-main-title {
    color: #5F9440; /* আপনার থিমের গ্রিন কালার */
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 35px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* গ্রিড লেআউট - ৩টি কলাম */
.job-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ভিডিও কার্ড পোর্ট্রেট স্টাইল (9:16) */
.video-portrait-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; /* লম্বাটে মোবাইল ভিউ */
    background: #000;
    border-radius: 20px; /* গোল কোণা */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-portrait-wrapper:hover {
    transform: translateY(-8px); /* হোভার করলে উপরে উঠবে */
}

/* আইফ্রেম ফুল উইডথ ফিক্স */
.video-portrait-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ভিডিওর ওপর টেক্সট ওভারলে */
.video-card-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 5;
}

/* মোবাইল ও ট্যাবলেটের জন্য রেসপন্সিভ */
@media (max-width: 991px) {
    .job-video-grid {
        grid-template-columns: repeat(2, 1fr); /* ট্যাবলেটে ২ কলাম */
    }
    
    .mobileViews{
        display: block !important;
    }
    
    .mobileViews .entry-title{
        margin-bottom: 50px;
    }
    
    .pcView{
        display: none !important;
    }
}

@media (max-width: 600px) {
    .gallery-main-title { font-size: 26px; }
    .job-video-grid {
        grid-template-columns: 1fr; /* মোবাইলে ১ কলাম */
        max-width: 300px;
        margin: 0 auto;
    }
}

/* মেইন ভিডিও কন্টেইনার (Smartphone Look) */
.portrait-video-container {
    width: 100%;
    max-width: 320px; /* ডেক্সটপে ভিডিওর চওড়া */
    aspect-ratio: 9 / 16; /* ৯:১৬ রেশিও মেইনটেইন করবে */
    background: #000;
    border-radius: 35px; /* গোল কোণা */
    overflow: hidden;
    position: relative;
    margin-left: auto; /* ডেক্সটপে ডানপাশে রাখার জন্য */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 8px solid #ffffff; /* সাদা বর্ডার (মোবাইল লুক) */
    outline: 1px solid #e5e5e5; /* হালকা আউটার বর্ডার */
}

/* ভিডিওর র‍্যাপার - যাতে ভিডিওটি পুরো জায়গা কভার করে */
.job-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.job-hero-video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ভিডিও কন্টেইনারের বাইরে যাবে না এবং পুরোটা কভার করবে */
    border: none;
    transform: scale(1.02); /* অনেক সময় সাইডের কালো লাইন ঢাকার জন্য হালকা স্কেল */
}

/* Fallback ইমেজের জন্য স্টাইল */
.fallback-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 8px solid white;
    border-radius: 15px;
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 991px) {
    .portrait-video-container {
        margin: 0 auto; /* মোবাইলে ভিডিওটি মাঝখানে থাকবে */
        max-width: 280px; /* মোবাইলে একটু ছোট করা হয়েছে */
    }
}


.job-hero-video {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9 / 16;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.job-hero-video iframe {
    width: 100%;
    height: 100%;
}



.page-header{
    display: none !important;
}

/* কন্টেন্ট ডিফল্টভাবে হাইড থাকবে */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out; /* খোলার অ্যানিমেশন */
}

/* যখন আইটেম একটিভ হবে তখন কন্টেন্ট দেখাবে */
.accordion-item.active .accordion-content {
    max-height: 1500px; /* কন্টেন্ট অনুযায়ী এটি বাড়বে */
    padding: 10px;
}

/* আইকন ঘুরানোর জন্য */
.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

    
    /* ============================================================
   LOUWMAN PREMIUM SINGLE JOB PAGE - FULL DESIGN
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --p-green: #5F9440;
    --s-green: #8EBB5F;
    --p-purple: #410049;
    --s-coral: #F07B6E;
    --white: #ffffff;
    --text-dark: #1A1A1A;
}

body{
    background: #EFFAFC !important;
}

.louwman-job-wrapper {
    font-family: 'Poppins', sans-serif !important;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* 1. HERO SECTION */
.job-hero {
    background: #EFFAFC !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

.hero-left { flex: 1.3; }
.hero-right { flex: 1; position: relative; }

.back-link {
    text-decoration: none;
    color: var(--p-purple);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px;
    transition: 0.3s;
}
.back-link:hover { color: var(--p-green); transform: translateX(-5px); }

.entry-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--p-purple);
    line-height: 1.1;
    margin-bottom: 130px;
}

/* Metadata Tags Grid */
.job-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.job-tag {
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Tag Specific Colors */
.tag-loc { background: #5f9440  !important; }
.tag-hours { background: #5f9440  !important; }
.tag-salary { background: #5f9440  !important; }
.tag-edu { background: #5f9440  !important; }
.tag-type { background: #5f9440  !important; }

.job-tag svg { stroke: var(--white); }

/* Hero Buttons */
.hero-btns { display: flex; align-items: center; gap: 20px; margin-top: 160px; }

.btn-apply-main {
    background: var(--p-green);
    color: var(--white) !important;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(95, 148, 64, 0.25);
    display: inline-block;
}

.btn-apply-main:hover {
    background: var(--p-purple);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(65, 0, 73, 0.2);
}

.wish-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: #888;
}
.wish-btn:hover { border-color: var(--s-coral); color: var(--s-coral); transform: scale(1.1); }

/* 2. PORTRAIT VIDEO (9:16 Ratio) */
.portrait-video-container {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    margin-left: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
    border: 8px solid var(--white); /* Smartphone look */
}

.job-hero-video-wrapper { width: 100%; height: 100%; }
.job-hero-video-wrapper iframe { width: 100%; height: 100%; border: none; }

/* 3. MAIN CONTENT AREA */
.job-main-content {
    /*max-width: 850px;*/
    /*margin: 80px auto;*/
    background: #EFFAFC !important;
    padding: 40px 25px;
}

.description-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    /*margin-bottom: 60px;*/
}





/* 4. ACCORDION DESIGN */

:root {

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-info-accordion {
    margin-top: 110px;
    margin-bottom: 110px;
    max-width: 100%;
}

.accordion-header:hover { color: var(--p-green); }


.accordion-item {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* Active State Design */
.accordion-item.active {
    border-color: var(--p-purple);
    box-shadow: 0 10px 20px rgba(74, 20, 140, 0.08);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--p-purple);
}

.accordion-item.active .accordion-header {
    color: var(--p-purple);
}

/* Icon Animation */
.icon-wrapper {
    background: #f3f4f6;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.accordion-item.active .icon-wrapper {
    background: var(--p-purple);
    color: #fff;
    transform: rotate(180deg);
}

/* Content Area */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.4s;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 2000px; /* পর্যাপ্ত হাইট */
    opacity: 1;
}

.content-inner {
    padding: 0 25px 25px 25px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* --- Content Formatting (Bullets, Headings, etc.) --- */
.content-inner h1, .content-inner h2, .content-inner h3 {
    color: #333;
    margin: 20px 0 10px;
    font-weight: 600;
}

.content-inner h3 { font-size: 20px; }

.content-inner p {
    margin-bottom: 15px;
}

.content-inner ul, .content-inner ol {
    margin: 15px 0;
    padding-left: 20px;
}

.content-inner li {
    margin-bottom: 8px;
    position: relative;
}

.content-inner ul li::marker {
    color: var(--p-green);
    font-size: 1.2em;
}

/* Responsive */
@media (max-width: 768px) {
    .accordion-header {
        padding: 15px 20px;
        font-size: 16px;
    }
    .content-inner {
        padding: 0 20px 20px 20px;
    }
}

/* 6. MOBILE RESPONSIVE (Bulletproof) */
@media (max-width: 991px) {
    .hero-container { flex-direction: column; text-align: center; gap: 40px; }
    .hero-left { order: 2; width: 100%; }
    .hero-right { order: 1; width: 100%; }
    .portrait-video-container { margin: 0 auto; max-width: 300px; }
    .entry-title { font-size: 36px; }
    .job-tags-grid { justify-content: center; }
    .hero-btns { justify-content: center; }
    
    .contact-card-content { flex-direction: column; gap: 35px; }
    .profile-column { flex-direction: column; text-align: center; }
    .rec-meta { text-align: center; }
    .phone-link { justify-content: center; }
}

@media (max-width: 600px) {
    .entry-title { font-size: 30px; }
    .btn-apply-main { width: 100%; text-align: center; padding: 15px 20px; }
}







/* ============================================================
   PREMIUM APPLY FORM & POPUP DESIGN
   ============================================================ */

/* ১. পপআপ মেইন কন্টেইনার */
.pum-container {
    border-radius: 20px !important;
    padding: 40px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
    border-top: 8px solid #5F9440 !important; /* ব্র্যান্ড গ্রিন টপ বর্ডার */
    overflow: hidden;
}

/* ২. ফর্ম টাইটেল ও লেবেল স্টাইল */
.wpforms-field-label {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    color: #1A1A1A !important;
    margin-bottom: 8px !important;
    font-size: 15px !important;
}

/* ৩. ইনপুট ফিল্ড ডিজাইন (Name, Email, Phone) */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea {
    background-color: #F7F9FB !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 10px !important;
    padding: 12px 15px !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease !important;
}

/* ফিল্ড ফোকাস করলে গ্রিন বর্ডার হবে */
.wpforms-form input:focus,
.wpforms-form textarea:focus {
    border-color: #5F9440 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 3px rgba(95, 148, 64, 0.1) !important;
    outline: none !important;
}

/* ৪. ফাইল আপলোডার (CV Upload) ডিজাইন */
.wpforms-uploader {
    border: 2px dashed #5F9440 !important;
    background: #F9FBF8 !important;
    border-radius: 15px !important;
    padding: 30px !important;
    text-align: center !important;
    transition: 0.3s !important;
}

.wpforms-uploader:hover {
    background: #f0f7ed !important;
}

.wpforms-uploader .dz-message svg {
    fill: #5F9440 !important;
    margin-bottom: 10px;
}

.wpforms-uploader .modern-title {
    color: #444 !important;
    font-weight: 500 !important;
}

/* ৫. সাবমিট বাটন (Purple Style) */
.wpforms-submit-container {
    margin-top: 25px !important;
    text-align: center !important;
}

button.wpforms-submit {
    background-color: #410049 !important; /* ব্র্যান্ড পার্পল */
    color: #ffffff !important;
    padding: 15px 50px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    transition: 0.3s all ease !important;
    width: 100% !important; /* মোবাইলে সুন্দর দেখাবে */
    box-shadow: 0 10px 20px rgba(65, 0, 73, 0.2) !important;
}

button.wpforms-submit:hover {
    background-color: #5F9440 !important; /* হোভার করলে গ্রিন হবে */
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 25px rgba(95, 148, 64, 0.2) !important;
}

/* ৬. পপআপ ক্লোজ বাটন (Close Button) */
.pum-close {
    background: #f1f1f1 !important;
    color: #333 !important;
    border-radius: 50% !important;
    width: 35px !important;
    height: 35px !important;
    top: 15px !important;
    right: 15px !important;
    font-size: 0 !important; /* টেক্সট হাইড করে আইকন দেখানো */
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    text-shadow: none !important;
}

.pum-close::after {
    content: '✕'; /* ক্রস আইকন */
    font-size: 16px !important;
    font-weight: bold;
}

.pum-close:hover {
    background: #e5e5e5 !important;
}

/* ৭. মোবাইল রেসপন্সিভনেস */
@media (max-width: 600px) {
    .pum-container {
        padding: 25px 20px !important;
        width: 90% !important;
    }
    
    .guide-h3 {
        font-size: 24px !important;
    }
}

