/* =========================================================
   SECTION 01 START : ROOT VARIABLES
========================================================= */

:root {

    --guide-primary: #0B4F9C;
    --guide-primary-dark: #083b75;

    --guide-secondary: #2E9E44;
    --guide-secondary-dark: #227535;

    --guide-text: #243447;
    --guide-text-light: #5F6B7A;

    --guide-bg: #F7F9FC;
    --guide-card: #FFFFFF;

    --guide-border: #E3E8EF;

    --guide-radius: 14px;

    --guide-shadow:
        0 8px 24px rgba(0,0,0,.06);

    --guide-transition:
        all .30s ease;

}

/* =========================================================
   SECTION 01 END
========================================================= */





/* =========================================================
   SECTION 02 START : GLOBAL
========================================================= */

.guide-hero,
.decision-section,
.guide-summary,
.qualification-section,
.skills-section,
.salary-section,
.why-disha-section {

    padding: 60px 0;

}

.section-heading{

    text-align:center;
    max-width:760px;
    margin:0 auto 42px;

}

.section-heading h2{

    font-family:'Poppins',sans-serif;
    font-size:2rem;
    font-weight:700;
    color:var(--guide-primary);

    margin-bottom:14px;

}

.section-heading p{

    font-size:1.05rem;
    line-height:1.7;
    color:var(--guide-text-light);

}

/* =========================================================
   SECTION 02 END
========================================================= */





/* =========================================================
   SECTION 03 START : HERO
========================================================= */

.guide-hero{

    background:
    linear-gradient(135deg,#F8FBFF 0%,#EEF5FC 100%);

}

.guide-hero-content{

    max-width:900px;
    margin:auto;
    text-align:center;

}

.guide-label{

    display:inline-block;

    padding:8px 18px;

    background:#EAF4FF;

    border-radius:50px;

    color:var(--guide-primary);

    font-size:.88rem;

    font-weight:600;

    margin-bottom:18px;

}

.guide-hero h1{

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

    font-size:2.8rem;

    line-height:1.2;

    color:var(--guide-primary);

    margin-bottom:12px;

}

.hero-subtitle{

    font-size:1.35rem;

    font-weight:600;

    color:var(--guide-secondary);

    margin-bottom:22px;

}

.hero-description{

    max-width:760px;

    margin:auto;

    line-height:1.8;

    font-size:1.06rem;

    color:var(--guide-text-light);

}

/* =========================================================
   SECTION 03 END
========================================================= */





/* =========================================================
   SECTION 04 START : CTA BUTTONS
========================================================= */

.hero-cta{

    display:flex;

    justify-content:center;

    gap:18px;

    margin:34px 0;

    flex-wrap:wrap;

}

.btn-primary{

    display:inline-block;

    background:var(--guide-secondary);

    color:#fff;

    padding:14px 30px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:var(--guide-transition);

}

.btn-primary:hover{

    background:var(--guide-secondary-dark);

}

.btn-secondary{

    display:inline-block;

    padding:14px 30px;

    border:2px solid var(--guide-primary);

    border-radius:8px;

    color:var(--guide-primary);

    text-decoration:none;

    font-weight:600;

    transition:var(--guide-transition);

}

.btn-secondary:hover{

    background:var(--guide-primary);

    color:#fff;

}

/* =========================================================
   SECTION 04 END
========================================================= */





/* =========================================================
   SECTION 05 START : TRUST STRIP
========================================================= */

.hero-trust{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:14px;

}

.trust-item{

    background:#fff;

    border:1px solid var(--guide-border);

    border-radius:50px;

    padding:10px 18px;

    font-size:.92rem;

    color:var(--guide-text);

}

/* =========================================================
   SECTION 05 END
========================================================= */





/* =========================================================
   SECTION 06 START : DECISION CARDS
========================================================= */

.decision-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

.decision-card{

    background:#fff;

    border:1px solid var(--guide-border);

    border-radius:var(--guide-radius);

    padding:28px;

    transition:var(--guide-transition);

    box-shadow:var(--guide-shadow);

}

.decision-card:hover{

    transform:translateY(-6px);

}

.decision-icon{

    font-size:2rem;

    margin-bottom:16px;

}

.decision-card h3{

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

    color:var(--guide-primary);

    margin-bottom:14px;

}

.decision-card p{

    color:var(--guide-text-light);

    line-height:1.7;

    margin-bottom:20px;

}

.decision-card a{

    color:var(--guide-secondary);

    text-decoration:none;

    font-weight:600;

}

/* =========================================================
   SECTION 06 END
========================================================= */





/* =========================================================
   SECTION 07 START : IN BRIEF
========================================================= */

.summary-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.summary-item{

    background:#fff;

    border-radius:var(--guide-radius);

    padding:28px;

    border:1px solid var(--guide-border);

    box-shadow:var(--guide-shadow);

}

.summary-item h3{

    color:var(--guide-primary);

    margin-bottom:14px;

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

}

.summary-item p{

    line-height:1.8;

    color:var(--guide-text-light);

}

/* =========================================================
   SECTION 07 END
========================================================= */

/* =========================================================
   SECTION 08 START : QUALIFICATION SECTION
========================================================= */

.qualification-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

.qualification-card{

    background:#fff;

    border:1px solid var(--guide-border);

    border-radius:var(--guide-radius);

    padding:28px;

    box-shadow:var(--guide-shadow);

}

.qualification-card h3{

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

    color:var(--guide-primary);

    margin-bottom:18px;

}

.qualification-card ul{

    padding-left:20px;

}

.qualification-card li{

    margin-bottom:10px;

    line-height:1.7;

    color:var(--guide-text-light);

}

.qualification-card p{

    line-height:1.8;

    color:var(--guide-text-light);

}

/* =========================================================
   SECTION 08 END
========================================================= */





/* =========================================================
   SECTION 09 START : SKILLS
========================================================= */

.skills-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

.skill-card{

    background:#fff;

    border:1px solid var(--guide-border);

    border-radius:var(--guide-radius);

    padding:28px;

    box-shadow:var(--guide-shadow);

}

.skill-card h3{
    font-size:1.18rem;
    font-weight:700;
    margin-bottom:16px;
}

.skill-card ul{

    padding-left:20px;

}

.skill-card li{

    margin-bottom:6px;

    line-height:1.7;

    color:var(--guide-text-light);

}

.highlight-card{

    background:#F8FCF9;

    border-left:5px solid var(--guide-secondary);

}

.highlight-card p{

    line-height:1.8;

    color:var(--guide-text-light);

}

/* =========================================================
   SECTION 09 END
========================================================= */



/* =========================================================
   SALARY SECTION HEADER
========================================================= */

.salary-header{

    text-align:center;

    max-width:850px;

    margin:0 auto 36px;

}

.salary-header .section-tag{

    display:inline-block;

    padding:7px 14px;

    margin-bottom:14px;

    background:#EAF4FF;

    color:var(--guide-primary);

    border-radius:30px;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:.4px;

    text-transform:uppercase;

}

.salary-header h2{

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

    font-size:2.35rem;

    font-weight:700;

    line-height:1.2;

    color:var(--guide-primary);

    margin-bottom:18px;

}

.salary-header p{

    font-size:1.08rem;

    line-height:1.75;

    color:var(--guide-text-light);

    margin:0;

}

/* =========================================================
   SECTION 10 START : SALARY
========================================================= */

.salary-table-wrapper{

    overflow-x:auto;

    margin-bottom:30px;

}

.salary-table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

    border-radius:var(--guide-radius);

    overflow:hidden;

    box-shadow:var(--guide-shadow);

}

.salary-table thead{

    background:var(--guide-primary);

    color:#fff;

}

.salary-table th{

    padding:16px;

    text-align:left;

    font-family:'Poppins',sans-serif;
font-size:.98rem;

font-weight:600;
}

.salary-table td{

    padding:16px;

    border-bottom:1px solid #ececec;

    color:var(--guide-text);
line-height:1.6;
}

.salary-table tbody tr:hover{

    background:#F8FAFD;

}







/* =========================================================
   SECTION 11 START : WHY DISHA
========================================================= */

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.why-card{

    background:#fff;

    border:1px solid var(--guide-border);

    border-radius:var(--guide-radius);

    padding:30px;

    text-align:center;

    box-shadow:var(--guide-shadow);

    transition:var(--guide-transition);

}

.why-card:hover{

    transform:translateY(-6px);

}

.why-number{

    width:64px;

    height:64px;

    margin:0 auto 18px;

    border-radius:50%;

    background:var(--guide-primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    font-size:1rem;

}

.why-card h3{

    color:var(--guide-primary);

    margin-bottom:14px;

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

}

.why-card p{

    line-height:1.8;

    color:var(--guide-text-light);

}

/* =========================================================
   SECTION 11 END
========================================================= */





/* =========================================================
   SECTION 12 START : RESPONSIVE
========================================================= */

@media (max-width:991px){

.decision-grid,
.qualification-grid,
.skills-grid,
.summary-grid,
.why-grid,
.salary-grid{

grid-template-columns:1fr 1fr;

}

.guide-hero h1{

font-size:2.3rem;

}

.section-heading h2{

font-size:1.8rem;

}

}





@media (max-width:767px){

.guide-hero,
.decision-section,
.guide-summary,
.qualification-section,
.skills-section,
.salary-section,
.why-disha-section{

padding:45px 0;

}

.hero-cta{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

width:100%;

text-align:center;

}

.decision-grid,
.qualification-grid,
.skills-grid,
.summary-grid,
.salary-grid,
.why-grid{

grid-template-columns:1fr;

}

.guide-hero h1{

font-size:2rem;

}

.hero-subtitle{

font-size:1.15rem;

}

.section-heading{

margin-bottom:30px;

}

.decision-card,
.summary-item,
.qualification-card,
.skill-card,
.salary-card,
.why-card{

padding:22px;

}

.salary-table{

min-width:650px;

}

}

/* =========================================================
   SECTION 12 END
========================================================= */

/*=========================================================================
SECTION 04
EMPLOYER GUIDE NAVIGATION
=========================================================================*/

.guide-navigation{
    padding:50px 0;
    background:#ffffff;
}

/*=========================================================================
SECTION HEADING
=========================================================================*/

.guide-section-header{
    max-width:760px;
    margin:0 auto 38px;
    text-align:center;
}

.guide-section-header .section-tag{

    display:inline-block;

    padding:7px 18px;

    margin:0 0 10px;

    background:var(--guide-secondary);

    color:#fff;

    border-radius:30px;

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

    font-size:.85rem;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    line-height:1;

}

.guide-section-header h2{

    margin:0 0 12px;

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

    font-size:2.15rem;

    font-weight:700;

    line-height:1.2;

    color:var(--guide-primary);

}

.guide-section-header p{
    margin:0;
    color:#666;
    line-height:1.8;
}

/*=========================================================================
NAVIGATION GRID
=========================================================================*/

.guide-nav-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;
    align-items:stretch;

}

/*=========================================================================
NAVIGATION CARD
=========================================================================*/

.guide-nav-card{

    display:flex;

    flex-direction:column;

    text-decoration:none;

    background:#ffffff;

    padding:28px;

    border:1px solid #E7EDF5;

    border-radius:14px;

    transition:.30s ease;

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

    height:100%;

}

.guide-nav-card:hover{

    transform:translateY(-6px);

    border-color:#0B4F9C;

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.guide-nav-card-primary{

    border-top:4px solid #2E9E44;

}

/*=========================================================================
ICON
=========================================================================*/

.guide-nav-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#EAF4FF;

    color:#0B4F9C;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:18px;

    font-size:1.4rem;

}

.guide-nav-card-primary .guide-nav-icon{

    background:#EAF8EE;

    color:#2E9E44;

}

/*=========================================================================
CARD CONTENT
=========================================================================*/

.guide-nav-card h3{

    margin:0 0 12px;

    color:#1E293B;

    font-size:1.15rem;

}

.guide-nav-card p{

    flex:1;

    margin:0 0 20px;

    color:#666;

    line-height:1.7;

}

.guide-nav-link{

    margin-top:auto;

    color:#0B4F9C;

    font-weight:700;

    font-size:.95rem;

}

/*=========================================================================
HOVER
=========================================================================*/

.guide-nav-card:hover .guide-nav-link{

    color:#2E9E44;

}

/*=========================================================================
TABLET
=========================================================================*/

@media (max-width:768px){

.guide-nav-grid{

    grid-template-columns:1fr;

    gap:18px;

}

}

/*=========================================================================
MOBILE
=========================================================================*/

@media (max-width:768px){

.guide-navigation{

    padding:40px 0;

}

.guide-navigation h2{

    font-size:1.7rem;

}

.guide-nav-grid{

    grid-template-columns:1fr;

    gap:18px;

}

.guide-nav-card{

    padding:24px;

}

}

/*=========================================================================
SKILLS GRID
=========================================================================*/

.skills-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    margin-top:28px;

}

/*=========================================================================
SKILL CARD
=========================================================================*/

.skill-card{

    background:#fff;

    border:1px solid var(--guide-border);

    border-radius:var(--guide-radius);

    padding:24px;

    box-shadow:var(--guide-shadow);

}

.skill-card h3{

    margin:0 0 18px;

    color:#1E293B;

    font-size:1.15rem;

}

.skill-card ul{

    margin:0;

    padding-left:20px;

}

.skill-card li{

    margin-bottom:6px;

    color:#555;

    line-height:1.55;
    }
.skill-card li:last-child{
    margin-bottom:0;

}

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

@media (max-width:768px){

.skills-grid{

    grid-template-columns:1fr;

}

}

/* =========================================================
SECTION 13 START : STANDARD FINAL CTA
========================================================= */

.final-cta{

    background:linear-gradient(135deg,#0B4F9C,#0A3E7B);

    padding:70px 0;

    text-align:center;

    color:#fff;

}

.final-cta .section-tag{

    display:inline-block;

    padding:8px 18px;

    margin-bottom:18px;

    background:#2E9E44;

    color:#fff;

    border-radius:30px;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.final-cta h2{

    color:#fff;

    font-size:2.2rem;

    margin-bottom:18px;

}

.final-cta p{

    max-width:760px;

    margin:0 auto 30px;

    color:#fff;

    line-height:1.8;

}

.final-cta .cta-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.final-cta .btn-primary{

    min-width:240px;

}

.final-cta .btn-secondary{

    min-width:220px;

    background:#fff;

    color:#0B4F9C;

    border:2px solid #fff;

}

.final-cta .btn-secondary:hover{

    background:transparent;

    color:#fff;

}

@media (max-width:767px){

.final-cta{

    padding:55px 0;

}

.final-cta h2{

    font-size:1.9rem;

}

.final-cta .cta-buttons{

    flex-direction:column;

    align-items:center;

}

.final-cta .btn-primary,
.final-cta .btn-secondary{

    width:100%;
    max-width:340px;

}

}

/* =========================================================
SECTION 13 END
========================================================= */
