/* ==========================================================
            GOVT EXAM PREP
            BASIC INFO PAGE
            PART 1
========================================================== */

*{

margin:0;

padding:0;

box-sizing:border-box;

}

body{

font-family:'Poppins',sans-serif;

background:#f6f8fc;

color:#333;

line-height:1.7;

}

/* ===================================
            HERO
=================================== */

.basic-hero{

position:relative;

padding:110px 20px 90px;

background:

linear-gradient(rgba(83,17,24,.92),

rgba(33,8,10,.95));

overflow:hidden;

}

.basic-hero::before{

content:"";

position:absolute;

width:450px;

height:450px;

border-radius:50%;

background:rgba(255,213,79,.08);

top:-180px;

right:-140px;

}

.basic-hero::after{

content:"";

position:absolute;

width:350px;

height:350px;

border-radius:50%;

background:rgba(255,255,255,.05);

bottom:-160px;

left:-120px;

}

.hero-content{

position:relative;

z-index:2;

max-width:1200px;

margin:auto;

}

/* ===================================
        BREADCRUMB
=================================== */

.breadcrumb{

display:flex;

align-items:center;

gap:10px;

flex-wrap:wrap;

margin-bottom:25px;

font-size:15px;

}

.breadcrumb a{

text-decoration:none;

color:#FFD54F;

font-weight:500;

}

.breadcrumb span{

color:white;

}

.breadcrumb i{

color:#ddd;

font-size:12px;

}

/* ===================================
        BACK BUTTON
=================================== */

.back-btn{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 24px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.15);

backdrop-filter:blur(12px);

border-radius:40px;

text-decoration:none;

color:white;

margin-bottom:35px;

transition:.35s;

}

.back-btn:hover{

background:#FFD54F;

color:#531118;

}

/* ===================================
        HERO TEXT
=================================== */

.hero-tag{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,.12);

border-radius:40px;

color:#FFD54F;

font-size:14px;

margin-bottom:20px;

}

.hero-content h1{

font-size:62px;

font-weight:800;

color:white;

margin-bottom:20px;

}

.hero-content h1 span{

display:block;

color:#FFD54F;

}

.hero-content p{

font-size:20px;

line-height:1.8;

color:#eee;

max-width:850px;

margin-bottom:40px;

}

/* ===================================
        HERO BUTTONS
=================================== */

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.primary-btn,

.secondary-btn{

display:inline-flex;

align-items:center;

gap:12px;

padding:16px 30px;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.35s;

}

.primary-btn{

background:#FFD54F;

color:#531118;

}

.primary-btn:hover{

transform:translateY(-5px);

box-shadow:0 18px 35px rgba(255,213,79,.35);

}

.secondary-btn{

background:white;

color:#531118;

}

.secondary-btn:hover{

transform:translateY(-5px);

background:#f3f3f3;

}

/* ===================================
        COMMON SECTION
=================================== */

section{

padding:80px 20px;

}

.section-title{

text-align:center;

margin-bottom:55px;

}

.section-title h2{

font-size:42px;

color:#531118;

margin-bottom:15px;

font-weight:700;

}

.section-title p{

font-size:18px;

color:#666;

max-width:700px;

margin:auto;

}

/* ===================================
        OVERVIEW GRID
=================================== */

.overview-grid{

max-width:1250px;

margin:auto;

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(240px,1fr));

gap:28px;

}

/* ===================================
        OVERVIEW CARD
=================================== */

.overview-card{

background:white;

padding:35px 25px;

border-radius:22px;

text-align:center;

box-shadow:

0 12px 30px rgba(0,0,0,.08);

transition:.35s;

position:relative;

overflow:hidden;

}

.overview-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:#FFD54F;

transform:scaleX(0);

transition:.35s;

}

.overview-card:hover::before{

transform:scaleX(1);

}

.overview-card:hover{

transform:translateY(-10px);

box-shadow:

0 20px 40px rgba(83,17,24,.15);

}

.overview-card i{

width:80px;

height:80px;

border-radius:50%;

background:#531118;

color:#FFD54F;

display:flex;

justify-content:center;

align-items:center;

margin:auto;

font-size:30px;

margin-bottom:22px;

transition:.35s;

}

.overview-card:hover i{

background:#FFD54F;

color:#531118;

transform:rotateY(180deg);

}

.overview-card h3{

font-size:22px;

margin-bottom:12px;

color:#531118;

}

.overview-card p{

font-size:16px;

color:#666;

line-height:1.7;

}
/* ==========================================================
            BASIC INFO PAGE
            PART 2
========================================================== */


/* ===================================
        TABLE
=================================== */

.table-container{

max-width:1200px;

margin:auto;

overflow-x:auto;

background:white;

border-radius:20px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

}

table{

width:100%;

border-collapse:collapse;

}

table th{

background:#531118;

color:white;

padding:18px;

font-size:17px;

text-align:left;

}

table td{

padding:18px;

border-bottom:1px solid #eee;

font-size:16px;

color:#555;

}

table tr:hover{

background:#fffaf0;

}

table tr:last-child td{

border-bottom:none;

}



/* ===================================
        POSTS GRID
=================================== */

.posts-grid{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

}

.post-card{

background:white;

padding:35px 28px;

border-radius:22px;

text-align:center;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.post-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(83,17,24,.15);

}

.post-card i{

font-size:40px;

color:#531118;

margin-bottom:20px;

}

.post-card h3{

font-size:22px;

margin-bottom:15px;

color:#531118;

}

.post-card p{

font-size:16px;

color:#666;

line-height:1.8;

}



/* ===================================
        JOB PROFILE
=================================== */

.job-grid{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

gap:30px;

}

.job-card{

background:white;

padding:35px;

border-radius:22px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.job-card:hover{

transform:translateY(-8px);

}

.job-card h3{

color:#531118;

margin-bottom:20px;

font-size:26px;

}

.job-card ul{

padding-left:22px;

}

.job-card li{

margin-bottom:14px;

font-size:16px;

color:#555;

}



/* ===================================
        ELIGIBILITY
=================================== */

.eligibility-grid{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.info-card{

background:white;

padding:35px 25px;

border-radius:22px;

text-align:center;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.info-card:hover{

transform:translateY(-8px);

}

.info-card i{

width:75px;

height:75px;

border-radius:50%;

background:#531118;

color:#FFD54F;

display:flex;

justify-content:center;

align-items:center;

margin:auto;

font-size:28px;

margin-bottom:20px;

}

.info-card h3{

font-size:22px;

margin-bottom:12px;

color:#531118;

}

.info-card p{

font-size:16px;

color:#666;

}



/* ===================================
        POLICY CARD
=================================== */

.policy-card{

max-width:1200px;

margin:auto;

background:white;

padding:40px;

border-radius:22px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.policy-card p{

font-size:17px;

color:#555;

line-height:1.9;

margin-bottom:18px;

}

.policy-card ul{

padding-left:22px;

}

.policy-card li{

margin-bottom:14px;

font-size:16px;

color:#555;

line-height:1.8;

}



/* ===================================
        HIGHLIGHT BOX
=================================== */

.highlight-box{

max-width:1000px;

margin:auto;

background:linear-gradient(135deg,#531118,#7b1d2b);

padding:45px;

border-radius:22px;

text-align:center;

color:white;

box-shadow:0 20px 45px rgba(83,17,24,.30);

}

.highlight-box h1{

font-size:55px;

margin-bottom:18px;

color:#FFD54F;

}

.highlight-box p{

font-size:18px;

line-height:1.9;

color:#eee;

}

.highlight-box.warning{

background:linear-gradient(135deg,#b91c1c,#7f1d1d);

}

.highlight-box.warning h3{

font-size:30px;

margin-bottom:18px;

}



/* ===================================
        SECTION SPACING
=================================== */

.posts-section,

.salary-section,

.job-section,

.eligibility-section,

.qualification-section,

.nationality-section,

.age-section,

.relaxation-section{

padding-top:80px;

padding-bottom:80px;

}
/* ==========================================================
            BASIC INFO PAGE
            PART 3
========================================================== */


/* ===================================
        FEE SECTION
=================================== */

.fee-grid{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.fee-card{

background:white;

padding:35px;

border-radius:22px;

text-align:center;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.fee-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(83,17,24,.15);

}

.fee-card i{

font-size:42px;

color:#531118;

margin-bottom:20px;

}

.fee-card h3{

font-size:22px;

margin-bottom:15px;

color:#531118;

}

.fee-card h1{

font-size:42px;

color:#FFD54F;

background:#531118;

display:inline-block;

padding:10px 25px;

border-radius:12px;

margin-top:10px;

}

.fee-card p{

color:#666;

line-height:1.8;

}



/* ===================================
        CHIPS
=================================== */

.chips{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:15px;

margin-top:25px;

}

.chips span{

padding:12px 22px;

background:#531118;

color:#FFD54F;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.chips span:hover{

background:#FFD54F;

color:#531118;

transform:translateY(-4px);

}



/* ===================================
        TIMELINE
=================================== */

.timeline{

max-width:1200px;

margin:auto;

display:flex;

justify-content:center;

align-items:center;

flex-wrap:wrap;

gap:18px;

}

.timeline-item{

display:flex;

flex-direction:column;

align-items:center;

text-align:center;

}

.circle{

width:75px;

height:75px;

border-radius:50%;

background:#531118;

color:#FFD54F;

display:flex;

justify-content:center;

align-items:center;

font-size:28px;

font-weight:700;

margin-bottom:15px;

transition:.35s;

}

.timeline-item:hover .circle{

background:#FFD54F;

color:#531118;

transform:scale(1.1);

}

.timeline-item h3{

font-size:18px;

color:#531118;

max-width:150px;

}

.arrow{

font-size:42px;

color:#531118;

font-weight:bold;

}



/* ===================================
        PATTERN GRID
=================================== */

.pattern-grid{

max-width:1100px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

.pattern-card{

background:white;

padding:35px;

border-radius:22px;

text-align:center;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.pattern-card:hover{

transform:translateY(-8px);

}

.pattern-card h3{

font-size:28px;

color:#531118;

margin-bottom:15px;

}

.pattern-card p{

font-size:17px;

color:#666;

line-height:1.8;

}



/* ===================================
        FAQ
=================================== */

.faq-container{

max-width:1200px;

margin:auto;

display:grid;

gap:25px;

}

.faq-item{

background:white;

padding:30px;

border-radius:18px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.35s;

}

.faq-item:hover{

transform:translateX(8px);

box-shadow:0 18px 35px rgba(83,17,24,.15);

}

.faq-item h3{

font-size:22px;

margin-bottom:12px;

color:#531118;

}

.faq-item p{

font-size:16px;

color:#666;

line-height:1.8;

}



/* ===================================
        OFFICIAL LINKS
=================================== */

.official-links{

text-align:center;

}

.official-links h2{

font-size:40px;

color:#531118;

margin-bottom:35px;

}



/* ===================================
        SECTION GAP
=================================== */

.fee-section,

.selection-section,

.pattern-section,

.tier1-section,

.tier2-section,

.typing-section,

.skill-section,

.language-section,

.syllabus-section,

.faq-section{

padding-top:80px;

padding-bottom:80px;

}
/* ==========================================================
            BASIC INFO PAGE
            PART 4 (FINAL)
========================================================== */


/* ===================================
        DOCUMENTS
=================================== */

.documents-section ul{

list-style:none;

padding:0;

}

.documents-section li{

padding:18px 20px;

margin-bottom:15px;

background:#fff;

border-left:5px solid #FFD54F;

border-radius:12px;

font-size:17px;

box-shadow:0 8px 20px rgba(0,0,0,.05);

transition:.3s;

}

.documents-section li::before{

content:"✓ ";

font-weight:bold;

color:#16a34a;

font-size:18px;

}

.documents-section li:hover{

transform:translateX(8px);

border-left-color:#531118;

}



/* ===================================
        PwBD
=================================== */

.pwbd-section .policy-card{

border-top:6px solid #531118;

}

.pwbd-section p{

font-size:17px;

line-height:1.9;

}



/* ===================================
    IMPORTANT INSTRUCTIONS
=================================== */

.instruction-section ul{

list-style:none;

padding:0;

}

.instruction-section li{

padding:18px 20px;

margin-bottom:18px;

background:#fff8e6;

border-left:5px solid #FFD54F;

border-radius:12px;

font-size:17px;

transition:.3s;

}

.instruction-section li::before{

content:"⚠ ";

font-size:18px;

}

.instruction-section li:hover{

background:#fff3cd;

transform:translateX(8px);

}



/* ===================================
        DISCLAIMER
=================================== */

.disclaimer{

padding-bottom:100px;

}

.disclaimer .policy-card{

border-top:8px solid #531118;

background:#fffdf8;

}

.disclaimer h2{

color:#531118;

margin-bottom:20px;

font-size:30px;

}

.disclaimer p{

font-size:17px;

line-height:2;

color:#555;

}



/* ===================================
        LINKS
=================================== */

a{

transition:.3s;

}

a:hover{

text-decoration:none;

}



/* ===================================
        SMOOTH SCROLL
=================================== */

html{

scroll-behavior:smooth;

}



/* ===================================
        CUSTOM SCROLLBAR
=================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#f4f4f4;

}

::-webkit-scrollbar-thumb{

background:#531118;

border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

background:#7b1d2b;

}



/* ===================================
        FADE ANIMATION
=================================== */

.overview-card,

.post-card,

.job-card,

.info-card,

.fee-card,

.pattern-card,

.policy-card,

.faq-item,

.highlight-box,

.table-container{

animation:fadeUp .7s ease both;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}



/* ===================================
        RESPONSIVE
=================================== */

@media(max-width:992px){

.hero-content h1{

font-size:48px;

}

.section-title h2{

font-size:34px;

}

.timeline{

flex-direction:column;

}

.arrow{

transform:rotate(90deg);

}

.pattern-grid,

.posts-grid,

.overview-grid,

.job-grid,

.eligibility-grid,

.fee-grid{

grid-template-columns:1fr;

}

}



@media(max-width:768px){

.basic-hero{

padding:80px 20px;

}

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

}

.primary-btn,

.secondary-btn{

justify-content:center;

width:100%;

}

.section-title h2{

font-size:30px;

}

.highlight-box h1{

font-size:42px;

}

.highlight-box{

padding:30px;

}

.policy-card{

padding:28px;

}

table th,

table td{

padding:14px;

font-size:15px;

}

.circle{

width:65px;

height:65px;

font-size:24px;

}

}



@media(max-width:480px){

.hero-content h1{

font-size:30px;

}

.hero-tag{

font-size:13px;

}

.back-btn{

width:100%;

justify-content:center;

}

.section-title h2{

font-size:26px;

}

.overview-card,

.post-card,

.job-card,

.info-card,

.pattern-card,

.fee-card{

padding:25px;

}

.highlight-box h1{

font-size:34px;

}

.highlight-box p{

font-size:16px;

}

.policy-card{

padding:22px;

}

}

/*====================================
        REQUIRED DOCUMENTS
=====================================*/

.documents-section{

    background:#faf7f2;

    padding:90px 8%;

}

.documents-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin-top:50px;

}

.document-card{

    background:#ffffff;

    border-radius:18px;

    padding:35px 30px;

    text-align:center;

    border-top:5px solid #800000;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.document-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:linear-gradient(135deg,
    rgba(128,0,0,.03),
    rgba(212,175,55,.04));

    opacity:0;

    transition:.35s;

}

.document-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.document-card:hover::before{

    opacity:1;

}

.document-card i{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#800000,#5d0000);

    color:#D4AF37;

    font-size:2rem;

    box-shadow:0 10px 25px rgba(128,0,0,.25);

    position:relative;

    z-index:2;

}

.document-card h3{

    color:#222;

    font-size:1.35rem;

    font-weight:700;

    margin-bottom:15px;

    position:relative;

    z-index:2;

}

.document-card p{

    color:#555;

    line-height:1.8;

    font-size:.98rem;

    position:relative;

    z-index:2;

}



/* Heading */

.documents-section .section-title h2{

    color:#800000;

    font-size:2.7rem;

    font-weight:800;

}

.documents-section .section-title h2::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    background:#D4AF37;

    margin:15px auto;

    border-radius:50px;

}

.documents-section .section-title p{

    max-width:800px;

    margin:auto;

    color:#555;

    font-size:1.1rem;

}



/* Mobile */

@media(max-width:768px){

    .documents-grid{

        grid-template-columns:1fr;

    }

}
/*====================================
            FAQ SECTION
====================================*/

.faq-section{

    background:#faf7f2;

    padding:90px 8%;

}

.faq-container{

    max-width:900px;

    margin:50px auto 0;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.faq-container details{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    border-left:5px solid #800000;

    box-shadow:0 8px 22px rgba(0,0,0,.08);

    transition:.35s ease;

}

.faq-container details:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.faq-container summary{

    list-style:none;

    cursor:pointer;

    padding:22px 70px 22px 28px;

    font-size:1.1rem;

    font-weight:600;

    color:#2d2d2d;

    position:relative;

    transition:.3s;

}

.faq-container summary::-webkit-details-marker{

    display:none;

}

/* Plus icon */

.faq-container summary::after{

    content:"+";

    position:absolute;

    right:25px;

    top:50%;

    transform:translateY(-50%);

    width:38px;

    height:38px;

    border-radius:50%;

    background:#800000;

    color:#D4AF37;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.5rem;

    font-weight:bold;

    transition:.3s;

}

/* Minus icon */

.faq-container details[open] summary::after{

    content:"−";

    background:#D4AF37;

    color:#800000;

}

.faq-container details[open]{

    border-left-color:#D4AF37;

}

.faq-container details p{

    padding:0 28px 24px;

    color:#555;

    font-size:1rem;

    line-height:1.8;

    border-top:1px solid #eee;

    animation:faqFade .3s ease;

}

@keyframes faqFade{

    from{

        opacity:0;

        transform:translateY(-8px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* Heading */

.faq-section .section-title h2{

    color:#800000;

    font-size:2.8rem;

    font-weight:800;

}

.faq-section .section-title h2::after{

    content:"";

    width:90px;

    height:4px;

    background:#D4AF37;

    display:block;

    margin:15px auto;

    border-radius:50px;

}

.faq-section .section-title p{

    color:#666;

    max-width:700px;

    margin:auto;

}

/* Mobile */

@media(max-width:768px){

    .faq-container{

        width:100%;

    }

    .faq-container summary{

        font-size:1rem;

        padding:18px 60px 18px 20px;

    }

}

/*====================================
        TIER HEADER
====================================*/

.tier-section{

    padding:80px 8% 40px;

    background:#faf7f2;

}

.tier-header{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#800000,#5d0000);

    color:#fff;

    padding:55px;

    border-radius:22px;

    box-shadow:0 18px 45px rgba(128,0,0,.25);

}

/* Golden Decorative Circle */

.tier-header::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    right:-80px;

    top:-80px;

    border-radius:50%;

    background:rgba(212,175,55,.15);

}

.tier-header::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    left:-60px;

    bottom:-60px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

/* Stage Badge */

.tier-badge{

    display:inline-block;

    padding:10px 24px;

    background:#D4AF37;

    color:#800000;

    font-size:.9rem;

    font-weight:700;

    border-radius:50px;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:22px;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

/* Heading */

.tier-header h2{

    font-size:2.7rem;

    font-weight:800;

    margin-bottom:18px;

    color:#fff;

}

/* Paragraph */

.tier-header p{

    max-width:800px;

    color:rgba(255,255,255,.92);

    font-size:1.08rem;

    line-height:1.8;

}

/* Mobile */

@media(max-width:768px){

    .tier-header{

        padding:35px 25px;

    }

    .tier-header h2{

        font-size:2rem;

    }

}
/*====================================
        POLICY CARD
====================================*/

.policy-card{

    background:#ffffff;

    border-radius:22px;

    padding:45px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    border-top:6px solid #800000;

    position:relative;

    overflow:hidden;

}

/* Decorative Gold Circle */

.policy-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-70px;

    top:-70px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

}

/* Heading */

.policy-card h3{

    font-size:1.55rem;

    color:#800000;

    font-weight:700;

    margin-bottom:15px;

    display:flex;

    align-items:center;

    gap:12px;

}

/* Gold Bullet */

.policy-card h3::before{

    content:"";

    width:12px;

    height:12px;

    border-radius:50%;

    background:#D4AF37;

    display:inline-block;

}

/* Paragraph */

.policy-card p{

    color:#555;

    line-height:1.9;

    font-size:1.05rem;

    margin-bottom:18px;

}

/* Highlight */

.policy-card strong{

    color:#800000;

    font-weight:700;

}

/* Divider */

.policy-card hr{

    border:none;

    height:2px;

    background:linear-gradient(to right,#800000,#D4AF37,#ffffff);

    margin:30px 0;

    border-radius:20px;

}



/* Mobile */

@media(max-width:768px){

    .policy-card{

        padding:30px 25px;

    }

    .policy-card h3{

        font-size:1.25rem;

    }

}
/*====================================
        JOB PROFILE CARDS
====================================*/

.job-section{

    background:#faf7f2;

    padding:90px 8%;

}

.job-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

    gap:35px;

    margin-top:50px;

}

.job-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    border-top:6px solid #800000;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

/* Decorative Golden Circle */

.job-card::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    right:-50px;

    top:-50px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

}

/* Hover */

.job-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(128,0,0,.15);

    border-top-color:#D4AF37;

}

/* Heading */

.job-card h3{

    color:#800000;

    font-size:1.55rem;

    font-weight:700;

    margin-bottom:28px;

    position:relative;

    padding-bottom:15px;

}

.job-card h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:70px;

    height:4px;

    background:#D4AF37;

    border-radius:50px;

}

/* List */

.job-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

/* Items */

.job-card li{

    position:relative;

    padding:14px 0 14px 48px;

    color:#555;

    font-size:1rem;

    border-bottom:1px solid #f1f1f1;

    transition:.3s;

}

.job-card li:last-child{

    border-bottom:none;

}

/* Golden Tick */

.job-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:10px;

    width:30px;

    height:30px;

    border-radius:50%;

    background:#800000;

    color:#D4AF37;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:bold;

    font-size:.9rem;

}

/* Hover Effect */

.job-card li:hover{

    padding-left:55px;

    color:#800000;

}

/* Mobile */

@media(max-width:768px){

    .job-grid{

        grid-template-columns:1fr;

    }

    .job-card{

        padding:28px;

    }

    .job-card h3{

        font-size:1.3rem;

    }

}
