:root {
    --primary:#0ba39e;
    /* --primary-dark:#087a76; */
    --primary-dark:#087f7b;
    /* --primary-light:#e8f8f7; */
    /* --primary-light:#dff7f5; */
    --primary-extra-light:#eefafa;
    --primary-light:#cdefec;
    --heading:#08254c;
    /* --text: #0f172a; */
    --text:#475569;
    --text-light:#64748b;
    --text-muted:#94a3b8;
    --border:#e5e7eb;
    --soft-bg:#f8fafc;
    /* --soft-bg:#f6fafb; */
    --warning:#f59e0b;
    --warning-light:#fff3dc;
    --blue:#2563eb;
    --green:#16a34a;
    /* --green:#65a30d; */
    --red:#ef4444;
    --teal:#0ea5a4;
    --purple:#6d28d9;
    --orange:#ea580c;
    --pink:#db2777;
    --orange:#f97316;
    --purple:#7c3aed;
    --white:#ffffff;


    --footer-bg:        #0d1b3e;
    --footer-bg-deep:   #091428;
    --footer-border:    rgba(255, 255, 255, 0.08);
    --footer-text:      #b8c6e0;
    --footer-heading:   #ffffff;
    --footer-link:      #b8c6e0;
    --footer-link-hover:#e8c84a;       /* gold accent */
    --footer-accent:    #e8223a;       /* eargs red */
    --footer-gold:      #e8c84a;
    --footer-radius:    6px;
    --transition:       0.22s ease;

    --font-primary:'Poppins', sans-serif;
} 

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

*,
*::before,
*::after { box-sizing: border-box; }

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--font-primary);
    /* font-size:16px;
    line-height:1.7;
    color:var(--text-medium);
    background:var(--white); */
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    height:auto;
}

h1,h2,h3,h4,h5,h6{
    color:var(--heading);
}

p,
li{
    color:var(--text);
}

small,
.meta,
.date{
    color:var(--text-light);
}

.badge{
    display:inline-block;
    background:var(--primary-light);
    color:var(--primary-dark);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.icon-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
     background:var(--primary-light);
    color:var(--primary-dark);
    padding:8px 14px;
    border-radius:30px;
    font-weight:600;
    font-size:13px;
    margin-bottom:20px;
}

/* ===================================
   NAVBAR START
=================================== */

.navbar{
    padding:15px 0;
    background:var(--white);
}

.navbar-brand img{
    max-height:55px;
    width:auto;
}

/* ===================================
   NAV LINKS
=================================== */

.nav-link{
    font-size:15px;
    font-weight:600;
    color:var(--heading);
    margin:0 8px;
    position:relative;
    transition:.3s;
}

.nav-link:hover{
    color:var(--primary) !important;
}

.nav-link.active{
    color:var(--primary) !important;
}

.nav-link.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background:var(--primary);
}

/* ===================================
   BUTTON
=================================== */

.navbar-btn{
    border-radius:10px;
    padding:10px 22px;
    font-weight:600;
}

.ics-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.ics-btn-primary {
    border: 1px solid #079b98;
    background: linear-gradient(135deg, #079b98, #0ba39e);
    color: var(--white) !important;
    box-shadow: 0 10px 22px rgba(9, 155, 152, .24);
}

.ics-btn-primary:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(9, 155, 152, .28);
}

.ics-btn-primary-outline {
    border: 1px solid #0ba39e;
    background: #ffffff;
    color: #078b88;
}

.ics-btn-primary-outline:hover {
    background: #ecfffd;
    color: #078b88;
    transform: translateY(-2px);
}

/* ===================================
   DROPDOWN
=================================== */

.dropdown-menu{
    border:none;
    border-radius:14px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    padding:10px;
}

.dropdown-item{
    border-radius:10px;
    padding:10px 14px;
}

.dropdown-item:hover{
    background:#f3f6ff;
}

/* ===================================
   HAMBURGER
=================================== */

.navbar-toggler{
    padding:0;
}

.animated-icon{
    width:30px;
    height:24px;
    position:relative;
}

.animated-icon span{
    display:block;
    position:absolute;
    width:100%;
    height:3px;
    background:#111827;
    border-radius:10px;
    left:0;
    transition:.3s ease-in-out;
}

.animated-icon span:nth-child(1){
    top:0;
}

.animated-icon span:nth-child(2){
    top:10px;
}

.animated-icon span:nth-child(3){
    top:20px;
}

/* OPEN */

.navbar-toggler.active .animated-icon span:nth-child(1){
    top:10px;
    transform:rotate(45deg);
}

.navbar-toggler.active .animated-icon span:nth-child(2){
    opacity:0;
}

.navbar-toggler.active .animated-icon span:nth-child(3){
    top:10px;
    transform:rotate(-45deg);
}


.header-social{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.header-social a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f5f7fa;
    color:var(--heading);
    text-decoration:none;
    transition:.3s;
}

.header-social a:hover{

    background:var(--primary);
    color:var(--white);

    transform:translateY(-2px);

}

.header-social i{
    font-size:18px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

    .navbar-collapse{

        margin-top:15px;
        background:var(--white);
        padding:20px;
        border-radius:16px;
        box-shadow:
        0 10px 25px rgba(0,0,0,.08);

    }

    .nav-link{
        padding:12px 0;
        margin:0;
    }

    /* .nav-link.active::after{
        display:none;
    } */

    .navbar-btn{
        width:100%;
        margin-top:15px;
    }

    .nav-link.active{
        color:var(--primary) !important;
        background:#f3f6ff;
        border-left:3px solid var(--primary);
        border-radius:8px;
        padding-left:15px;
    }

    .nav-link.active::after{
        display:none;
    }

}


/* ===================================
   NAVBAR END
=================================== */


/* ===================================
   HERO START
=================================== */

.hero-section{
    padding:80px 0;
    background:var(--white);
}

.hero-title{
    font-size:60px;
    font-weight:800;
    line-height:1.1;
    color:var(--heading);
    margin-bottom:20px;
}

.hero-title span{
    color:var(--primary);
}

.hero-description{
    font-size:20px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.hero-buttons .btn{
    padding:14px 30px;
    border-radius:12px;
    font-weight:600;
}

.btn-primary {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
    color: var(--white);
    /* background-color: #066a67; */
    /* border-color: #0cc1bb; */

    background-color: var(--primary-dark);
    border-color: var(--primary-light);
}

.btn-primary:focus, .btn-primary.focus {
  color: var(--white);
  background-color: var(--primary-dark);
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(11, 163, 158, 0.5);
}

.btn-primary:active, .btn-primary.active {
  color: var(--white);
  background-color: var(--primary-dark);
  border-color: var(--primary-light);
}

.btn-primary:active:focus {
  box-shadow: 0 0 0 0.25rem var(--primary-dark);
}

.btn-primary:disabled, .btn-primary.disabled {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
  opacity: 0.65;
}

.btn-primary-outline {
  color: var(--primary) !important;
  border-color: var(--primary);
}

/* Hover State */
.btn-primary-outline:hover {
  color:  var(--white) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

/* Focus State */
.btn-primary-outline:focus, .btn-check:focus + .btn-outline-primary {
  box-shadow: 0 0 0 0.25rem rgba(11, 163, 158, 0.5);
  outline: 0;
}

/* Active / Pressed State */
.btn-primary-outline:active, 
.btn-primary-outline.active, 
.btn-attr[disabled]:active,
.show > .btn-primary-outline.dropdown-toggle {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary-outline:active:focus, 
.btn-primary-outline.active:focus, 
.show > .btn-primary-outline.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(11, 163, 158, 0.5);
}

/* Disabled State */
.btn-primary-outline:disabled, 
.btn-primary-outline.disabled {
  color: var(--primary);
  background-color: var(--white);
  border-color: var(--white);
  opacity: 0.65;
  pointer-events: none; /* Prevents clicks and hover effects */
}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.stat-box{
    background:var(--white);
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:15px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,.08);
}


.stat-box i{
    font-size:30px;
    color:var(--primary);
}

.stat-box strong{
    display:block;
    font-size:14px;
}

.stat-box span{
    display:block;
    font-size:13px;
}

/* .hero-image-wrapper{
    position:relative;
    text-align:center;
}

.hero-circle{
    width:500px;
    height:500px;
    background:#eef8f8;
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:1;
}

.hero-image{
    position:relative;
    z-index:2;
    max-width:450px;
    width:100%;
} */

/* .mentor-card{
    position:absolute;
    bottom:30px;
    right:0;
    top:auto;
    transform:none; */
    /* position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:280px;
    background:var(--white);
    padding:25px;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    z-index:3;
    text-align:left;
    animation: float 2s ease-in-out infinite;
} */

.hero-image-wrapper{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.hero-circle{
    width:500px;
    height:500px;
    background:#eef8f8;
    border-radius:50%;
    position:absolute;
    /* top:220px; */
    top:70px;
    left:50%;
    transform:translateX(-50%);
    z-index:1;
}

.hero-image{
    position:relative;
    z-index:2;
    width:100%;
    /* max-width:450px; */
    max-width:450px;
    display:block;
    margin:0 auto;
}

.mentor-card{
    /* position:relative; */
    position: absolute;
    top:70%;

    z-index:3;
    width:100%;
    max-width:500px;
    margin-top:30px;

    background:var(--white);
    padding:25px;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);

    text-align:left;
    animation: float 2s ease-in-out infinite;
}

.mentor-card h5{
    color:var(--primary);
    font-weight:700;
    margin:10px 0;
}

.mentor-card ul{
    margin:0;
    padding-left:18px;
}

.mentor-card li{
    margin-bottom:10px;
    font-size:14px;
}


/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

    .hero-section{
        padding:50px 0;
    }

    .hero-title{
        font-size:42px;
        text-align:center;
    }

    .hero-description{
        text-align:center;
        font-size:18px;
    }

    .company-info,
    .powered-by{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        grid-template-columns:1fr;
    }

    .hero-image-wrapper{
        margin-top:50px;
    }

    /* .hero-circle{
        width:320px;
        height:320px;
    }

    .hero-image{
        max-width:300px;
    }

    .mentor-card{
        position:relative;
        top:auto;
        right:auto;
        transform:none;
        width:100%;
        margin-top:30px;
    } */

    .hero-circle{
        width:320px;
        height:320px;
        top:150px;
    }

    .hero-image{
        max-width:300px;
    }

    .mentor-card{
        max-width:100%;
        margin-top:25px;
    }
}

/* ===================================
   HERO END
=================================== */


/* ===================================
   REAL STUDENT ACTIVITY PROOF START
=================================== */

.career-impact-section{
    padding-top:30px;
    padding-bottom:30px;
    background:var(--soft-bg);
}

.section-header h2{

    font-size:46px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;
}

.section-header p{

    max-width:800px;

    margin:auto;

    color:#64748b;

    font-size:18px;
}

.section-header h2 span{
    color:var(--primary);
}

.impact-wrapper{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.impact-image{
    height:100%;
}

.impact-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.impact-content{

    background:#0f9d9d;

    color:var(--white);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:30px;
}

.impact-content h3{

    font-size:24px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:10px;

}

.impact-stat{

    background:#0f9d9d;

    color:var(--white);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:25px;
}

.impact-icon{

    font-size:45px;
    margin-bottom:15px;
}

.impact-stat h2{

    font-size:56px;
    font-weight:800;
    margin-bottom:10px;
}

.impact-stat p{

    font-size:20px;
    font-weight:600;
    line-height:1.5;
}

/* .impact-stat .btn{

    margin-top:15px;

    border-radius:8px;

    font-weight:600;

    color:#0f9d9d;
} */

.impact-stat .btn{

    display:block;

    width:100%;

    text-align:center;

    background:#4fc3c8;

    color:var(--white);

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    padding:10px 12px;

    border-radius:8px;

    transition:.3s;

    margin-top:12px;

}

.impact-stat .btn:hover{

    background:#38b2b8;

    color:var(--white);

}

/* ==================================
COLLEGE SECTION
================================== */

.college-card{

    background:var(--white);

    border:1px solid #e5e7eb;

    border-radius:16px;

    height:130px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;
}

.college-card:hover{

    transform:translateY(-5px);

    box-shadow:
    0 12px 25px rgba(0,0,0,.08);
}

.college-card img{

    max-width:80%;

    max-height:70px;

    object-fit:contain;
}



.college-partners {
    padding: 80px 16px;
    background:
        radial-gradient(circle at top left, rgba(11, 163, 158, 0.08), transparent 30%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.cp-container {
    max-width: 1440px;
    margin: 0 auto;
}

.cp-eyebrow {
    display: table;
    margin: 0 auto 14px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(11, 163, 158, 0.1);
    color: #087f7b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.college-partners h2 {
    max-width: 900px;
    margin: 0 auto;
    color: #08254c;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.08;
    text-align: center;
    font-weight: 800;
}

.cp-subtitle {
    max-width: 760px;
    margin: 18px auto 34px;
    color: #475569;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
}

.cp-stats {
    max-width: 980px;
    margin: 0 auto 36px;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.cp-stats div {
    text-align: center;
}

.cp-stats strong {
    display: block;
    color: #08254c;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.cp-stats span {
    display: block;
    margin-top: 8px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

.cp-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.cp-card {
    position: relative;
    min-height: 218px;
    padding: 28px 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cp-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: #0ba39e;
}

.cp-card img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    margin-bottom: 22px;
    transition: transform 0.25s ease;
}

.cp-card h3 {
    margin: 0 0 8px;
    color: #08254c;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
}

.cp-card p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.cp-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #087f7b;
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.cp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 163, 158, 0.35);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
}

.cp-card:hover img {
    transform: scale(1.06);
}

.cp-card:hover .cp-arrow {
    transform: translate(3px, -3px);
    background: #0ba39e;
    color: #ffffff;
}

.cp-card:focus-visible,
.cp-btn-primary:focus-visible,
.cp-btn-secondary:focus-visible {
    outline: 3px solid rgba(11, 163, 158, 0.45);
    outline-offset: 4px;
}

.cp-cta {
    margin-top: 34px;
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background:
        linear-gradient(135deg, rgba(11, 163, 158, 0.11), rgba(255, 255, 255, 0.96));
    border: 1px solid #cbd5e1;
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.cp-cta-badge {
    display: inline-block;
    margin-bottom: 10px;
    color: #087f7b;
    font-size: 14px;
    font-weight: 700;
}

.cp-cta h3 {
    margin: 0;
    color: #08254c;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
}

.cp-cta p {
    max-width: 620px;
    margin: 10px 0 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
}

.cp-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.cp-btn-primary,
.cp-btn-secondary {
    min-height: 48px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.cp-btn-primary {
    color: #ffffff;
    background: #0ba39e;
    box-shadow: 0 12px 25px rgba(11, 163, 158, 0.28);
}

.cp-btn-secondary {
    color: #08254c;
    background: #ffffff;
    border: 1px solid #cbd5e1;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 1399px) {
    .cp-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:991px){

    .impact-content{
        padding:40px 20px;
    }

    .impact-content h3{
        font-size:28px;
    }

    .impact-stat h2{
        font-size:42px;
    }

    .impact-stat p{
        font-size:18px;
    }

    .college-partners {
        padding: 64px 16px;
    }

    .cp-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cp-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cp-cta {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media(max-width:576px){

    .impact-content h3{
        font-size:24px;
    }

    .impact-stat{
        padding:30px 20px;
    }

}

@media(max-width:991px){

    .section-header h2{

        font-size:34px;
    }
}

@media(max-width:767px){

    .section-header h2{

        font-size:28px;
    }

    .section-header p{

        font-size:15px;
    }

    .college-card{

        height:100px;
    }

    .cp-subtitle {
        font-size: 16px;
    }

    .cp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cp-card {
        min-height: 190px;
        padding: 22px 14px 20px;
    }

    .cp-card img {
        width: 72px;
        height: 72px;
        margin-bottom: 18px;
    }

    .cp-card h3 {
        font-size: 15px;
    }

    .cp-card p {
        font-size: 13px;
    }

    .cp-arrow {
        width: 28px;
        height: 28px;
        right: 12px;
        bottom: 12px;
    }

    .cp-cta {
        padding: 26px 20px;
    }

    .cp-cta h3 {
        font-size: 23px;
    }

    .cp-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .cp-btn-primary,
    .cp-btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cp-stats {
        padding: 18px;
        gap: 16px;
    }

    .cp-stats strong {
        font-size: 24px;
    }

    .cp-stats span {
        font-size: 13px;
    }

    .cp-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   REAL STUDENT ACTIVITY PROOF END
=================================== */

/* ====================================
    PROBLEM START
==================================== */

.career-problem-section{
    padding:100px 0;
    background:var(--soft-bg);
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:#0f172a;
}

.section-title span{
    color:var(--primary);
}

.section-desc{
    max-width:800px;
    margin:auto;
    color:#64748b;
}

.career-journey{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.journey-step{
    width:250px;
    background:var(--white);
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.journey-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#14b8a6;
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:auto auto 20px;
}

.journey-icon.danger{
    background:#ef4444;
}

.journey-icon.info{
    background:#3b82f6;
}

.journey-icon.success{
    background:#10b981;
}

.journey-arrow{
    font-size:40px;
    color:#94a3b8;
}

.student-questions-section{
    padding:100px 0;
}

.question-card{
    display:block;
    background:var(--white);
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px;
    text-decoration:none;
    color:#0f172a;
    height:100%;
    transition:.3s;
}

.question-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.question-card i{
    font-size:34px;
    color:#14b8a6;
    margin-bottom:15px;
    display:block;
}

.question-card h3{
    font-size:20px;
    font-weight:700;
    line-height:1.4;
}

/* ====================================
    RESPONSIVE
==================================== */

@media(max-width:991px){

    .section-title{
        font-size:36px;
    }

    .journey-arrow{
        display:none;
    }

}

@media(max-width:767x){

    .section-title{
        font-size:28px;
    }

    .journey-step{
        width:100%;
    }

}

/* ====================================
    PROBLEM END
==================================== */


/* ====================================
    CAREER PATHS START
==================================== */

.career-paths-section{

    background:var(--soft-bg);

    padding:100px 0;
}

.career-card{

    background:var(--white);

    border-radius:20px;

    padding:30px;

    height:100%;

    border:1px solid #e5e7eb;

    transition:.3s;

    display:flex;

    flex-direction:column;
}

.career-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

.career-header h3{

    font-size:28px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:20px;
}

.salary-box{

    background:#ecfeff;

    color:#0f766e;

    padding:15px;

    border-radius:12px;

    font-size:24px;

    font-weight:700;

    text-align:center;

    margin-bottom:25px;
}

.career-info{

    margin-bottom:25px;
}

.info-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

    border-bottom:1px solid #e5e7eb;
}

.info-row span:first-child{

    color:#475569;

    font-weight:600;
}

.level{

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;
}

.high{

    background:#dcfce7;

    color:#166534;
}

.medium{

    background:#fef3c7;

    color:#92400e;
}

.low{

    background:#dbeafe;

    color:#1d4ed8;
}

.career-btn{

    margin-top:auto;

    display:block;

    text-align:center;

    background:#14b8a6;

    color:var(--white);

    padding:14px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.career-btn:hover{

    background:#0f9f90;

    color:var(--white);
}

/* ====================================
    RESPONSIVE
==================================== */

@media(max-width:991px){

    .career-header h3{

        font-size:24px;
    }

    .salary-box{

        font-size:20px;
    }

}

@media(max-width:767px){

    .career-paths-section{

        padding:70px 0;
    }

    .career-header h3{

        font-size:22px;
    }

}

/* ====================================
    PROBLEM END
==================================== */

/* ===================================
   CAREER PATHS START
=================================== */

.career-paths-section{
    padding:70px 0;
    background:var(--soft-bg);
}

.container{
    max-width:1400px;
    margin:auto;
    padding:0 15px;
}

.section-title{
    text-align:center;
    /* font-size:34px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:35px; */

    font-size: 46px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.career-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.career-card{
    background:var(--white);
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:28px 20px;
    text-align:center;
    transition:.3s;
}

.career-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.icon{
    width:70px;
    height:70px;
    border-radius:50%;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--white);
    font-size:28px;
}

.teal{background:var(--teal);}
.blue{background:var(--blue);}
.purple{background:var(--purple);}
.orange{background:var(--purple);}
.green{background:var(--green);}

.career-card h3{
    font-size:20px;
    font-weight:600;
    margin-bottom:12px;
    color:#111827;
}

.career-card p{
    font-size:15px;
    line-height:1.8;
    color:#64748b;
    min-height:85px;
    margin-bottom:20px;
}

.salary{
    font-size:26px;
    font-weight:700;
    margin-bottom:20px;
}

.blue-text{color:var(--blue);}
.purple-text{color:var(--purple);}
.orange-text{color:var(--orange);}
.green-text{color:var(--green);}
.salary:not(.blue-text):not(.purple-text):not(.orange-text):not(.green-text){
    color:#0ea5a4;
}

.tags{
    display:flex;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:22px;
}

.tags span{
    background:var(--soft-bg);
    border:1px solid #e5e7eb;
    padding:7px 12px;
    border-radius:6px;
    font-size:13px;
}

/* .tags{
    display:flex;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:22px;
}

.tags span{
    background:var(--white);
    border:1px solid #e5e7eb;
    border-radius:4px;
    padding:6px 10px;
    font-size:10px;
    font-weight:500;
} */

.success{color:#16a34a;}
.warning{color:var(--warning);}
.danger{color:#dc2626;}

.btn{
    display:inline-block;
    min-width:120px;
    padding:10px 25px;
    color:var(--white);
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
}

.teal-btn{background:var(--teal);}
.blue-btn{background:var(--blue);}
.purple-btn{background:var(--purple);}
.orange-btn{background:var(--purple);}
.green-btn{background:var(--green);}

.teal-btn:hover {
  color: var(--white);
  background-color: #066a67;
  border-color: #0ea5a4;
}

.blue-btn:hover {
  color: var(--white);
  background-color: #143479;
  border-color: var(--blue);
}

.purple-btn:hover {
  color: var(--white);
  background-color: #35146b;
  border-color: #6d28d9;
}

.orange-btn:hover {
  color: var(--white);
  background-color: #6b2a06;
  border-color: #ea580c;
}

.green-btn:hover {
  color: var(--white);
  background-color: #345507;
  border-color: var(--green);
}

.view-all{
    text-align:center;
    margin-top:25px;
}

.view-btn{
    display:inline-block;
    padding:14px 40px;
    border:2px solid #cbd5e1;
    border-radius:10px;
    text-decoration:none;
    color:#1e293b;
    font-weight:600;
    background:var(--white);
}

.view-btn:hover{
    background:var(--soft-bg);
}

/* ===================================
    RESPONSIVE
=================================== */

/* Tablet */
@media(max-width:1200px){

    .career-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .section-title{
        font-size:26px;
    }

    .career-grid{
         grid-template-columns:repeat(2,1fr);
        /* grid-template-columns:1fr; */
    }

    .career-card{
        padding:25px 18px;
    }

    .salary{
        font-size:22px;
    }
}

@media (max-width: 576px) {
     .career-grid{
        grid-template-columns:1fr;
    }
 }

/* ===================================
   CAREER PATHS END
=================================== */

/* ===================================
   TRUST START
=================================== */

.trust-section{
    padding:60px 0;
    background:var(--white);
}

.container{
    max-width:1400px;
    margin:auto;
    padding:0 15px;
}

/* GRID */

/* .trust-wrapper{
    display:grid;
    grid-template-columns:2fr 2fr 1fr;
    gap:20px;
} */

.trust-wrapper{
    display:grid;
    grid-template-columns:1.7fr 1.7fr 1fr;
    gap:20px;
}

/* CARD */

.trust-card{
    background:#f5f7fa;
    border-radius:16px;
    overflow:hidden;
}

/* FIRST TWO */

/* .large-card{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    min-height:260px;
    padding:24px;
} */

.large-card{
    display:flex;
    justify-content:space-between;
    align-items:stretch; /* important */
    height:280px; /* fixed card height */
    padding:0;
    overflow:hidden;
}

/* .large-card .content{
    width:50%;
} */

.large-card .content{
    width:52%;
    padding:24px;
}

/* .large-card .image{
    width:45%;
    align-self:flex-end;
} */

.large-card .image{
    width:48%;
    height:100%;
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
}

/* .large-card .image img{
    width:100%;
    display:block;
} */

/* .large-card .image img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:bottom right;
    display:block;
} */

.large-card .image img{
    width:115%;
    height:100%;
    object-fit:contain;
    object-position:bottom right;
}

/* THIRD CARD */

.small-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:260px;
}

.small-card .content{
    padding:24px 24px 0;
}

.partner-image{
    width:100%;
}

.partner-image img{
    width:100%;
    display:block;
}

/* ICONS */

.icon-trust{
    margin-bottom:12px;
    font-size:288px;
}

.icon-green{
    color:#89c58e;
    background: none;
}

.icon-blue{
    color:#93a8ff;
    background: none;
}

.icon-grey{
    color:#b6c4d3;
    background: none;
}

/* TEXT */

.trust-card h3{
    font-size:18px;
    font-weight:700;
    color:var(--heading);
    margin-bottom:12px;
}

.trust-card p{
    font-size:14px;
    line-height:1.7;
    color:#475569;
    margin-bottom:15px;
}

.trust-card ul{
    list-style:none;
    margin:0;
    padding:0;
}

.trust-card ul li{
    position:relative;
    padding-left:22px;
    margin-bottom:8px;
    font-size:14px;
}

.trust-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#67c587;
    font-weight:700;
}

/* .card-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.card-header .icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:22px;
}

.card-header h3{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:var(--heading);
} */

.card-header{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
}

.icon-trust{
    flex-shrink:0;
    font-size:40px;
    line-height:1;
}

.small-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:260px;
    padding-top:24px;
}

.small-card .content{
    padding:0 24px;
}

.partner-image{
    margin-top:auto;
    width:100%;
}

.partner-image img{
    width:100%;
    display:block;
    object-fit:cover;
}

/* ===================================
   RESPONSIVE
=================================== */

/* Tablet */
@media(max-width:1200px){

    .trust-wrapper{
        grid-template-columns:repeat(2,1fr);
        /* grid-template-columns:1fr; */
    }

    .large-card{
        min-height:auto;
    }

    .small-card{
        min-height:auto;
    }
}

@media(max-width:768px){

    .trust-wrapper{
         grid-template-columns:repeat(2,1fr);
        /* grid-template-columns:1fr; */
    }

    /* .large-card{
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
    }

    .large-card .content{
        width:100%;
    }

    .large-card .image{
        width:100%;
        margin-top:20px;
    }

    .large-card .image img{
        max-width:300px;
        margin-left:auto;
        display:block;
    } */

    .large-card{
        flex-direction:column;
        height:auto;
    }

    .large-card .content{
        width:100%;
    }

    .large-card .image{
        width:100%;
        height:250px;
    }

    .large-card .image img{
        width:100%;
        height:100%;
    }

    .partner-image img{
        width:100%;
    }
}

@media(max-width:576px){

    .trust-wrapper{
        grid-template-columns:1fr;
    }
}

/* ===================================
   TRUST END
=================================== */



/* ===================================
   CAREER RECOMMENDATION START
=================================== */

.career-recommendations-section{
    padding:40px 0;
    background:var(--white);
}

.career-recommendations-container{
    max-width:1400px;
    margin:auto;
    border:1px solid #eef2f7;
    border-radius:8px;
    padding:40px 0;
}

.career-recommendations-title{
    text-align:center;
    font-size:24px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:25px;
}

.career-recommendations-wrapper{
    /* display:flex;
    align-items:center;
    justify-content:center;
    gap:0; */

    display:grid;
    grid-template-columns:repeat(7,1fr);
    align-items:center;
}

.career-recommendations-step{
    display:flex;
    flex-direction:column;
    align-items:center;
    min-width:110px;
    text-align:center;
    position:relative;
    text-align:center;
}

.career-recommendations-step:not(:last-child)::after{
    content:"";
    position:absolute;
    top:24px;
    left:65%;
    width:70%;
    border-top:3px dotted #7ea3ff;
}

.step-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--soft-bg);
    border:1px solid #edf2f7;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:10px;
}

.step-icon i{
    color:#8ea2d8;
    font-size:20px;
}

.career-recommendations-step span{
    font-size:12px;
    font-weight:600;
    color:#334155;
    line-height:1.4;
}

.connector{
    width:70px;
    border-top:3px dotted #7da2ff;
    margin-top:-25px;
}



/* ===================================
   RESPONSIVE
=================================== */
@media(max-width:991px){

    .career-recommendations-container{
        overflow-x:auto;
    }

    .career-recommendations-wrapper{
        width:max-content;
        /* min-width:900px; */
        justify-content:flex-start;

        grid-template-columns:repeat(6,1fr);
        row-gap:30px;
    }

      .connector{
        display:none;
    }

     .career-recommendations::after{
        display:none;
    }
}

@media (max-width:768px){

    .career-recommendations-wrapper{
        grid-template-columns:repeat(5,1fr);
        gap:25px;
    }

    .career-recommendations-step{
        width:100%;
    }
}

@media (max-width:576px){

    .career-recommendations-wrapper{
        grid-template-columns:repeat(3,1fr);
        gap:25px;
    }

    .career-recommendations-step{
        width:100%;
    }
}

@media (max-width:425px){

    .career-recommendations-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .career-recommendations-step{
        width:100%;
    }
}


/* ===================================
   CAREER RECOMMENDATIONS END
=================================== */



/* ===================================
   ASSESSMENT PRODUCTS START
=================================== */

.assessment-products-section{
    padding:40px 0;
    background:var(--soft-bg);
}

/* .container{
    max-width:1400px;
    margin:auto;
    padding:0 15px;
} */

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading h2{
    font-size:36px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
}

/* GRID */

.assessment-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.assessment-card{
    background:var(--white);
    border:1px solid #edf2f7;
    border-radius:14px;
    padding:35px;
    display:flex;
    flex-direction:column;
    min-height:360px;
    transition:.3s;
}

.assessment-card h3{
    font-size:26px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:15px;
}

.assessment-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* PRICE */

.price{
    font-size:42px;
    font-weight:800;
    margin-bottom:25px;
}

.free-price{
    color:#14b8a6;
}

.report-price{
    color:var(--blue);
}

.advanced-price{
    color:#f97316;
}

/* FEATURES */

.feature-list{
    list-style:none;
    padding:0;
    margin:0 0 30px;
    flex:1;
}

.feature-list li{
    position:relative;
    padding-left:30px;
    margin-bottom:14px;
    color:#334155;
    line-height:1.6;
}

.feature-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    font-weight:700;
}

.free-card .feature-list li::before{
    color:#14b8a6;
}

.report-card .feature-list li::before{
    color:var(--blue);
}

.advanced-card .feature-list li::before{
    color:#f97316;
}

/* BUTTON */

/* .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    color:var(--white);
    width:max-content;
} */

.btn-free{
    background:#14b8a6;
}

.btn-free:hover {
  color: var(--white);
  background-color: #0c6d62;
  border-color: #14b8a6;
}

.btn-report{
    background:var(--blue);
}

.btn-report:hover {
  color: var(--white);
  background-color: #133275;
  border-color: var(--blue);
}

.btn-advanced{
    background:#f97316;
}

.btn-advanced:hover {
  color: var(--white);
  background-color: #8b420e;
  border-color: #f97316;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width:992px){

    .assessment-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media (max-width:768px){

    .assessment-grid{
        /* grid-template-columns:1fr; */
        grid-template-columns:repeat(2,1fr);
    }

    .assessment-card{
        min-height:auto;
    }

    .section-heading h2{
        font-size:28px;
    }

    .assessment-card h3{
        font-size:22px;
    }

    .price{
        font-size:36px;
    }

}

@media (max-width:576px){

    .assessment-grid{
        grid-template-columns:1fr;
    }
}

/* ===================================
   ASSESSMENT PRODUCTS END
=================================== */


/* ===================================
   STUDENT SUCCESS STORIES START
=================================== */

.success-stories-section{
    padding:40px 0;
    background:var(--white);
}

.container{
    max-width:1400px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading h2{
    font-size:38px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:12px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
}

/* GRID */

.stories-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* CARD */

.story-card{
    border:1px solid #edf2f7;
    border-radius:14px;
    background: var(--soft-bg);
    padding:20px;
    display:flex;
    gap:15px;
    transition:.3s;
}

.story-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.student-photo{
    flex-shrink:0;
}

.student-photo img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.story-content{
    flex:1;
}

.story-content h3{
    font-size:18px;
    font-weight:700;
    margin-bottom:4px;
    color:#1e293b;
}

.education{
    font-size:13px;
    font-weight:600;
    color:#64748b;
    margin-bottom:12px;
}

.story-details p{
    font-size:13px;
    line-height:1.7;
    margin-bottom:8px;
    color:#334155;
}

.story-details blockquote{
    margin:12px 0;
    padding-left:12px;
    border-left:3px solid #14b8a6;
    color:#475569;
    font-style:italic;
    font-size:13px;
}

.rating{
    color:#fbbf24;
    font-size:16px;
    letter-spacing:2px;
    margin-top:10px;
}

/* BUTTON */

.stories-btn{
    text-align:center;
    margin-top:35px;
}

.read-more-btn{
    display:inline-block;
    background:#14b8a6;
    color:var(--white);
    text-decoration:none;
    padding:14px 40px;
    border-radius:8px;
    font-weight:600;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1200px){

    .stories-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media (max-width:992px){

    .stories-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* @media(max-width:768px){

    .stories-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .story-card{
        flex-direction:column;
        text-align:center;
    }

    .student-photo{
        margin:auto;
    }

    .section-heading h2{
        font-size:28px;
    }

} */

@media(max-width:576px){

    .stories-grid{
        grid-template-columns:1fr;
    }
}

/* ===================================
   STUDENT SUCCESS STORIES END
=================================== */


/* ===================================
   RESOURCE HUB START
=================================== */

.resource-hub-section {
    background: #f8fafc;
    padding: 40px 0;
    color: var(--soft-bg);
    overflow: hidden;
}

/* .resource-panel {
    background: #ffffff;
    border: 1px solid #e2edf3;
    border-radius: 22px;
    padding: 28px 18px;
    box-shadow: 0 18px 55px rgba(8, 37, 76, 0.08);
} */

/* Hero */
.resource-hero-row {
    margin-bottom: 34px;
}

.resource-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(11, 163, 158, 0.12);
    color: #087f7b;
    font-size: 0.95rem;
    font-weight: 800;
}

.resource-hub-section h1 {
    margin: 0 0 18px;
    color: #08254c;
    font-size: clamp(3rem, 12vw, 5.4rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.resource-description {
    max-width: 620px;
    margin: 0 0 24px;
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
}

/* Search */
.resource-search-form {
    display: flex;
    width: 100%;
    max-width: 620px;
    height: 56px;
    margin-bottom: 18px;
    border: 1px solid #dbe7ef;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(8, 37, 76, 0.08);
    overflow: hidden;
}

.resource-search-form input {
    flex: 1;
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: #08254c;
    font-size: 0.95rem;
    background: transparent;
}

.resource-search-form input::placeholder {
    color: #64748b;
}

.resource-search-form button {
    flex: 0 0 62px;
    width: 62px;
    border: 0;
    background: #0ba39e;
    color: #ffffff;
    font-size: 1.35rem;
    cursor: pointer;
}

.resource-search-form button:hover {
    background: #087f7b;
}

/* Actions */
.resource-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.resource-primary-btn,
.resource-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 13px 24px;
    border-radius: 10px;
    background: #0ba39e;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(11, 163, 158, 0.24);
}

.resource-primary-btn:hover,
.resource-cta-btn:hover {
    background: #087f7b;
    color: #ffffff;
}

.resource-help-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    color: #08254c;
    font-weight: 800;
    text-decoration: none;
    line-height: 1.25;
}

.resource-help-link span {
    color: #475569;
    font-size: 0.82rem;
    font-weight: 500;
}

.resource-help-link i {
    display: none;
}

.resource-help-link:hover {
    color: #087f7b;
}

/* Focus */
.resource-search-form input:focus-visible,
.resource-search-form button:focus-visible,
.resource-primary-btn:focus-visible,
.resource-help-link:focus-visible,
.resource-card:focus-visible,
.resource-cta-btn:focus-visible {
    outline: 3px solid rgba(11, 163, 158, 0.35);
    outline-offset: 4px;
}

.resource-visual-wrap {
    max-width: 520px;
    margin: 28px auto 0;
}

.resource-since-card {
    max-width: 520px;
    margin: 18px 0;
}


/* Visual */
.resource-visual-wrap {
    position: relative;
    padding-top: 6px;
}

.resource-visual-wrap img {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    margin-left: auto;
}

.resource-since-card {
    display: flex;
    /* align-items: center; */
    gap: 18px;
    margin-top: 18px;
    /* margin-left: auto; */
    max-width: 560px;
    padding: 18px 22px;
    border: 1px solid #dbe7ef;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(8, 37, 76, 0.07);
}

.resource-since-card > span {
    flex: 0 0 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    color: #087f7b;
    background: rgba(11, 163, 158, 0.12);
    font-size: 2rem;
}

.resource-since-card strong {
    display: block;
    margin-bottom: 4px;
    color: #087f7b;
    font-size: 1rem;
    font-weight: 900;
}

.resource-since-card p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.45;
}

/* Cards */
.resource-category-nav {
    margin-top: 6px;
}

.resource-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 158px;
    height: 100%;
    padding: 24px 52px 24px 18px;
    border: 1px solid #dbe7ef;
    border-radius: 16px;
    background: #ffffff;
    color: #475569;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(8, 37, 76, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 163, 158, 0.45);
    box-shadow: 0 18px 38px rgba(8, 37, 76, 0.11);
}

.resource-badge {
    position: absolute;
    top: -11px;
    left: 24px;
    padding: 6px 12px;
    border-radius: 6px;
    background: #0ba39e;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.resource-icon {
    flex: 0 0 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    font-size: 2rem;
}

.resource-icon-teal {
    background: rgba(11, 163, 158, 0.12);
    color: #0ba39e;
}

.resource-icon-blue {
    background: rgba(37, 99, 235, 0.10);
    color: #2563eb;
}

.resource-icon-purple {
    background: rgba(147, 51, 234, 0.10);
    color: #9333ea;
}

.resource-icon-green {
    background: rgba(22, 163, 74, 0.10);
    color: #16a34a;
}

.resource-icon-red {
    background: rgba(239, 68, 68, 0.10);
    color: #ef4444;
}

.resource-icon-orange {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}

.resource-icon-sky {
    background: rgba(37, 99, 235, 0.10);
    color: #2563eb;
}

.resource-card-content {
    min-width: 0;
}

.resource-card h2 {
    margin: 0 0 8px;
    color: #08254c;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.25;
}

.resource-card p {
    margin: 0 0 16px;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.55;
}

.resource-count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #087f7b;
    font-size: 0.88rem;
    font-weight: 800;
}

.resource-arrow {
    position: absolute;
    right: 18px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #dbe7ef;
    border-radius: 50%;
    color: #08254c;
    background: #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
}

.resource-card:hover .resource-arrow {
    background: #0ba39e;
    color: #ffffff;
}

/* Bottom */
.resource-bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 26px;
}

.resource-stats-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 24px 18px;
    border: 1px solid rgba(11, 163, 158, 0.25);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(8, 37, 76, 0.05);
}

.resource-stat-item {
    text-align: center;
}

.resource-stat-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: rgba(11, 163, 158, 0.12);
    color: #087f7b;
    font-size: 1.35rem;
}

.resource-stat-item strong {
    display: block;
    color: #08254c;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1.1;
}

.resource-stat-item p {
    margin: 6px 0 0;
    color: #475569;
    font-size: 0.9rem;
}


.resource-final-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 164px;
    padding: 28px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #0ba39e 0%, #087f7b 100%);
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(11, 163, 158, 0.18);
}

.resource-final-cta h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 900;
    line-height: 1.25;
}

.resource-final-cta p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
}

.resource-cta-btn {
    background: #ffffff;
    color: #08254c;
    box-shadow: none;
}

.resource-cta-btn:hover {
    background: #f8fafc;
    color: #08254c;
}

.resource-target {
    display: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 6rem;
}

/* Notes */
.resource-note-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    margin: 24px 0 0;
    padding: 0;
    color: #475569;
    font-size: 0.95rem;
    list-style: none;
}

.resource-note-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.resource-note-list li:not(:last-child)::after {
    content: "•";
    margin-left: 24px;
    color: #0ba39e;
}

/* ===================================
   RESPONSIVE
=================================== */

/* 576px */
@media (min-width: 576px) {
    .resource-panel {
        padding: 38px 30px;
    }

    .resource-actions {
        flex-direction: row;
        align-items: center;
    }

    .resource-help-link {
        padding-left: 8px;
    }

    .resource-stats-card {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 768px */
@media (min-width: 768px) {
    .resource-hub-section {
        padding: 44px 0;
    }

    .resource-panel {
        padding: 46px 42px 32px;
    }

    .resource-final-cta {
        padding: 30px 34px;
    }

    .resource-target {
        display: block;
    }
}

/* 992px */
@media (min-width: 992px) {
    .resource-hub-section {
        padding: 40px 0;
    }

    .resource-panel {
        padding: 42px 48px 30px;
    }

    .resource-hero-row {
        margin-bottom: 34px;
    }

     .resource-visual-wrap {
        max-width: none;
        margin: 0;
    }

    .resource-since-card {
        /* margin-left: auto; */
        margin-right: 0;
    }

    .resource-bottom-grid {
        grid-template-columns: 1.18fr 0.92fr;
        align-items: stretch;
    }
}

/* 1200px */
@media (min-width: 1200px) {
    .resource-panel {
        padding: 40px 52px 30px;
    }

    .resource-card {
        padding: 25px 54px 25px 18px;
    }
}

/* 1400px */
@media (min-width: 1400px) {
    .resource-hub-section .container {
        max-width: 1480px;
    }

    .resource-panel {
        padding: 42px 56px 30px;
    }

    .resource-hub-section h1 {
        font-size: 5.6rem;
    }
}

/* ===================================
   RESOURCE HUBS END
=================================== */

/* ===================================
   RESOURCE CAREER GUIDES START
=================================== */

/* Career Guides Page CSS */

.career-guides-page {
    background: #f8fafc;
    color: #475569;
    overflow-x: hidden;
}

.career-guides-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.career-guides-page section {
    padding: 64px 0;
}

.career-guides-page h1,
.career-guides-page h2,
.career-guides-page h3 {
    color: #08254c;
    font-weight: 800;
    line-height: 1.15;
}

.career-guides-page h1 {
    font-size: clamp(2.25rem, 7vw, 4rem);
    margin-bottom: 20px;
}

.career-guides-page h1 span,
.cg-approach h3,
.cg-approach h3 span {
    display: block;
    color: #0ba39e;
}

.career-guides-page h2 {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.career-guides-page h3 {
    font-size: 1.05rem;
}

.career-guides-page p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.career-guides-page a {
    color: #0ba39e;
    text-decoration: none;
}

.career-guides-page a:hover {
    color: #087f7b;
}

.cg-eyebrow {
    display: inline-block;
    color: #087f7b;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.cg-section-header {
    max-width: 820px;
    margin: 0 auto 32px;
}

.cg-section-note,
.cg-highlight {
    background: rgba(11, 163, 158, 0.08);
    border: 1px solid rgba(11, 163, 158, 0.22);
    border-radius: 14px;
    color: #087f7b;
    font-weight: 700;
    padding: 14px 18px;
}

.cg-highlight p,
.cg-section-note {
    margin-bottom: 0;
}

/* Buttons */

.career-guides-page .btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
}

.career-guides-page .btn-primary {
    background: #0ba39e;
    border-color: #0ba39e;
    color: #fff;
}

.career-guides-page .btn-primary:hover,
.career-guides-page .btn-primary:focus {
    background: #087f7b;
    border-color: #087f7b;
    color: #fff;
}

.career-guides-page .btn-outline-primary {
    color: #087f7b;
    border-color: rgba(11, 163, 158, 0.45);
    background: #fff;
}

.career-guides-page .btn-outline-primary:hover,
.career-guides-page .btn-outline-primary:focus {
    background: #0ba39e;
    border-color: #0ba39e;
    color: #fff;
}

/* Hero */

.cg-hero {
    background:
        radial-gradient(circle at 85% 20%, rgba(11, 163, 158, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding-top: 80px;
}

.cg-hero-actions {
    display: grid;
    gap: 14px;
    margin: 28px 0 30px;
}

.cg-trust-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.cg-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(8, 37, 76, 0.08);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 10px 28px rgba(8, 37, 76, 0.05);
}

.cg-stat i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(11, 163, 158, 0.1);
    color: #087f7b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.cg-stat strong,
.cg-stat span {
    display: block;
}

.cg-stat strong {
    color: #08254c;
    font-size: 0.96rem;
}

.cg-stat span {
    color: #64748b;
    font-size: 0.82rem;
}

.cg-hero-media {
    margin: 36px 0 0;
}

.cg-hero-media img,
.cg-why figure img,
.cg-self figure img,
.cg-approach figure img,
.cg-start figure img {
    border-radius: 24px;
}

/* Why */

.cg-why {
    background: #fff;
    border-top: 1px solid rgba(8, 37, 76, 0.08);
    border-bottom: 1px solid rgba(8, 37, 76, 0.08);
}

.cg-why figure {
    margin: 24px 0 32px;
}

.cg-process {
    display: grid;
    gap: 18px;
}

.cg-process article {
    position: relative;
    background: #fff;
    border: 1px solid rgba(8, 37, 76, 0.1);
    border-radius: 20px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: 0 14px 36px rgba(8, 37, 76, 0.06);
}

.cg-process article i {
    font-size: 2.3rem;
    color: #0ba39e;
    margin-bottom: 14px;
}

.cg-process article h3,
.cg-process article p {
    margin-bottom: 0;
}

.cg-process article p {
    color: #08254c;
    font-size: 0.9rem;
    font-weight: 700;
}

.cg-process + .cg-highlight {
    margin-top: 22px;
    text-align: center;
}

/* Find */

.cg-find {
    background: #f8fafc;
}

.cg-find .row {
    row-gap: 18px;
}

.cg-find .col {
    flex: 0 0 100%;
}

.cg-find article,
.cg-self article,
.cg-categories article,
.cg-resources article {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(8, 37, 76, 0.1);
    border-radius: 20px;
    padding: 22px 16px;
    box-shadow: 0 12px 30px rgba(8, 37, 76, 0.05);
}

.cg-find article {
    text-align: center;
}

.cg-find article i,
.cg-self article i,
.cg-categories article > i,
.cg-resources article i {
    font-size: 2rem;
    color: #0ba39e;
    margin-bottom: 14px;
}

.cg-find article h3,
.cg-self article h3 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Self */

.cg-self {
    background: #fff;
}

.cg-question-grid {
    display: grid;
    gap: 14px;
    margin: 24px 0 18px;
}

.cg-self article {
    text-align: center;
}

.cg-self figure {
    margin: 32px 0 0;
}

/* Categories */

.cg-categories {
    background: #f8fafc;
}

.cg-categories .row {
    row-gap: 22px;
}

.cg-categories article {
    padding: 26px 20px;
}

.cg-categories article > i {
    display: block;
}

.cg-categories ul {
    padding-left: 20px;
    margin-bottom: 18px;
}

.cg-categories li {
    margin-bottom: 6px;
    line-height: 1.45;
}

.cg-categories article .btn {
    width: 100%;
    margin-top: auto;
}

/* Accordions */

.cg-student-questions,
.cg-parent-questions {
    background: #fff;
}

.accordion {
    display: grid;
    gap: 12px;
}

.career-guides-page .accordion-item {
    border: 1px solid rgba(8, 37, 76, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(8, 37, 76, 0.04);
}

.career-guides-page .accordion-button {
    color: #08254c;
    font-weight: 800;
    gap: 10px;
    min-height: 58px;
}

.career-guides-page .accordion-button:not(.collapsed) {
    color: #087f7b;
    background: rgba(11, 163, 158, 0.08);
    box-shadow: none;
}

.career-guides-page .accordion-button:focus {
    border-color: #0ba39e;
    box-shadow: 0 0 0 0.2rem rgba(11, 163, 158, 0.18);
}

.career-guides-page .accordion-body {
    color: #475569;
}

/* Mistakes */

.cg-mistakes {
    background: #f8fafc;
}

.cg-mistake-list {
    display: grid;
    gap: 12px;
}

.cg-mistake-list article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(239, 68, 68, 0.22);
    border-radius: 16px;
    padding: 16px;
}

.cg-mistake-list span {
    color: #ef4444;
    font-weight: 800;
}

.cg-mistake-list p {
    margin-bottom: 0;
}

.cg-mistake-list i {
    grid-row: 1 / span 2;
    grid-column: 2;
    color: #ef4444;
}

/* Approach */

.cg-approach {
    background: #fff;
}

.cg-approach h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 20px 0;
}

.cg-approach ul {
    display: grid;
    gap: 10px;
    padding-left: 0;
    list-style: none;
}

.cg-approach li {
    position: relative;
    padding-left: 30px;
    font-weight: 700;
}

.cg-approach li::before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0;
    color: #0ba39e;
}

.cg-approach figure {
    margin: 32px 0 0;
}

/* Guides */

.cg-guides {
    background: #f8fafc;
}

.cg-guides ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 10px;
}

.cg-guides li a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    color: #08254c;
}

.cg-guides li a::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    color: #0ba39e;
}

/* Resources */

.cg-resources {
    background: #fff;
}

.cg-resources .row {
    row-gap: 18px;
}

.cg-resources article {
    text-align: center;
}

.cg-resources article h3 {
    font-size: 1rem;
}

.cg-resources article p {
    margin-bottom: 8px;
}

/* Start */

.cg-start {
    background: #f8fafc;
}

.cg-start blockquote {
    color: #08254c;
    font-size: clamp(1.3rem, 4vw, 2rem);
    font-weight: 800;
    line-height: 1.3;
    border-left: 5px solid #0ba39e;
    padding-left: 18px;
    margin: 22px 0;
}

/* Reviewed */

.cg-reviewed {
    background: #fff;
}

.cg-reviewed article {
    background: #fff;
    border: 1px solid rgba(8, 37, 76, 0.1);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(8, 37, 76, 0.08);
}

.cg-reviewed figure {
    margin-bottom: 20px;
}

.cg-reviewed figure img {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
}

/* Final CTA */

.cg-final-cta {
    background: linear-gradient(135deg, #087f7b 0%, #0ba39e 100%);
    color: #fff;
}

.cg-final-cta h2,
.cg-final-cta .cg-stat strong,
.cg-final-cta .cg-stat span {
    color: #fff;
}

.cg-final-cta .cg-stat {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.cg-final-cta .cg-stat i {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.cg-final-actions {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.cg-final-cta .btn-light {
    color: #087f7b;
    background: #fff;
    border-color: #fff;
}

.cg-final-cta .btn-outline-light:hover {
    color: #087f7b;
}

/* Focus */

.career-guides-page a:focus-visible,
.career-guides-page button:focus-visible {
    outline: 3px solid rgba(11, 163, 158, 0.35);
    outline-offset: 3px;
}

/* 576px */

@media (min-width: 576px) {
    .cg-hero-actions,
    .cg-final-actions {
        grid-template-columns: repeat(2, max-content);
    }

    .cg-trust-stats,
    .cg-question-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cg-find .col {
        flex: 0 0 50%;
    }
}

/* 768px */

@media (min-width: 768px) {
    .career-guides-page section {
        padding: 80px 0;
    }

    .cg-trust-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .cg-process {
        grid-template-columns: repeat(4, 1fr);
    }

    .cg-process article:not(:last-child)::after {
        content: "\F285";
        font-family: "bootstrap-icons";
        position: absolute;
        right: -21px;
        top: 50%;
        transform: translateY(-50%);
        color: #0ba39e;
        font-size: 1.6rem;
        z-index: 2;
    }

    .cg-question-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cg-find .col {
        flex: 0 0 33.333%;
    }

    .cg-reviewed article {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .cg-reviewed figure {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

/* 992px */

@media (min-width: 992px) {
    .career-guides-page section {
        padding: 96px 0;
    }

    .cg-hero {
        padding-top: 110px;
    }

    .cg-hero-media {
        margin-top: 0;
    }

    .cg-why figure,
    .cg-self figure,
    .cg-approach figure {
        margin: 0;
    }

    .cg-student-questions .container,
    .cg-parent-questions .container,
    .cg-mistakes .container {
        max-width: 980px;
    }

    .cg-categories article {
        display: flex;
        flex-direction: column;
    }

    .cg-final-actions {
        justify-content: end;
    }
}

/* 1200px */

@media (min-width: 1200px) {
    .career-guides-page h1 {
        font-size: 4.4rem;
    }

    .cg-find .col {
        flex: 0 0 20%;
    }

    .cg-categories .row {
        flex-wrap: nowrap;
    }

    .cg-categories article {
        min-height: 520px;
    }
}

/* 1400px */

@media (min-width: 1400px) {
    .career-guides-page section {
        padding: 110px 0;
    }

    .cg-hero {
        padding-top: 120px;
    }

    .career-guides-page .container {
        max-width: 1320px;
    }
}

/* ===================================
   RESOURCE CAREER GUIDES END
=================================== */


/* ===================================
   RESOURCE INDUSTRY INSIGHTS START
=================================== */

/* =========================================================
   Industry Insights Page
   Full CSS With Bootstrap Icons Support
   Mobile First | Bootstrap 5 Compatible
   ========================================================= */

.industry-insights-page {
    color: #475569;
    background: #f8fafc;
    overflow-x: hidden;
}

.industry-insights-page *,
.industry-insights-page *::before,
.industry-insights-page *::after {
    box-sizing: border-box;
}

.industry-insights-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.industry-insights-page section {
    padding: 54px 0;
}

.industry-insights-page h1,
.industry-insights-page h2,
.industry-insights-page h3 {
    color: #08254c;
    letter-spacing: -0.03em;
}

.industry-insights-page h1 {
    margin-bottom: 16px;
    font-size: clamp(2.15rem, 7vw, 3.9rem);
    font-weight: 800;
    line-height: 1.08;
}

.industry-insights-page h2 {
    margin-bottom: 14px;
    font-size: clamp(1.35rem, 3.8vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
}

.industry-insights-page h3 {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.28;
}

.industry-insights-page p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.65;
}

.industry-insights-page a {
    text-decoration: none;
}

.industry-insights-page ul,
.industry-insights-page ol {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.industry-insights-page .btn {
    min-height: 46px;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.industry-insights-page .btn-primary {
    border-color: #0ba39e;
    background: #0ba39e;
    color: #ffffff;
    box-shadow: 0 12px 22px rgba(11, 163, 158, 0.22);
}

.industry-insights-page .btn-primary:hover,
.industry-insights-page .btn-primary:focus {
    border-color: #087f7b;
    background: #087f7b;
    color: #ffffff;
}

.industry-insights-page .btn-outline-primary {
    border-color: #0ba39e;
    background: #ffffff;
    color: #087f7b;
}

.industry-insights-page .btn-outline-primary:hover,
.industry-insights-page .btn-outline-primary:focus {
    border-color: #087f7b;
    background: #087f7b;
    color: #ffffff;
}

.industry-insights-page .btn-light {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.industry-insights-page .btn-light:hover,
.industry-insights-page .btn-light:focus {
    background: #ffffff;
    color: #087f7b;
}

.industry-insights-page a:focus-visible,
.industry-insights-page button:focus-visible {
    outline: 3px solid rgba(11, 163, 158, 0.38);
    outline-offset: 4px;
}

/* Reusable */

.ii-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 11px;
    border: 1px solid rgba(11, 163, 158, 0.24);
    border-radius: 999px;
    background: #e6fffd;
    color: #087f7b;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ii-kicker i {
    font-size: 0.85rem;
    line-height: 1;
}

.ii-section-header {
    max-width: 760px;
    margin: 0 auto 28px;
}

.ii-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

.ii-actions .btn {
    width: 100%;
}

.ii-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 14px 0 16px;
}

.ii-pill-list li {
    padding: 6px 10px;
    border: 1px solid rgba(8, 37, 76, 0.16);
    border-radius: 999px;
    background: #ffffff;
    color: #08254c;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.04);
}

.ii-card {
    height: 100%;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.055);
}

.ii-card figure {
    margin: 0;
}

.ii-note {
    margin-top: 16px;
    padding: 13px 14px;
    border-left: 4px solid #0ba39e;
    border-radius: 12px;
    background: #e6fffd;
    color: #087f7b;
    font-weight: 700;
}

.ii-highlight-note {
    margin-top: 16px;
    padding: 14px;
    border-radius: 12px;
    background: #0ba39e;
    color: #ffffff;
    font-weight: 800;
    text-align: center;
}

/* Lists With Real Icons */

.ii-check-list,
.ii-bullet-list {
    display: grid;
    gap: 9px;
    margin: 14px 0 16px;
}

.ii-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
}

.ii-check-list li i {
    margin-top: 2px;
    color: #0ba39e;
    font-size: 1rem;
    line-height: 1;
    flex: 0 0 auto;
}

.ii-check-list li span {
    display: block;
}

.ii-bullet-list li {
    position: relative;
    padding-left: 20px;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
}

.ii-bullet-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0ba39e;
}

/* Hero */

.ii-hero {
    padding-top: 46px;
    background:
        radial-gradient(circle at 78% 18%, rgba(11, 163, 158, 0.10), transparent 31%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ii-hero-visual {
    margin: 0;
}

.ii-hero-visual img {
    width: 100%;
}

.ii-hero-stats {
    margin-top: 34px;
}

.ii-stat-box {
    height: 100%;
    padding: 16px 14px;
    border-radius: 16px;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ii-stat-box i {
    width: 38px;
    height: 38px;
    border: 2px solid #0ba39e;
    border-radius: 11px;
    color: #0ba39e;
    font-size: 1.18rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.ii-stat-box strong,
.ii-stat-box span {
    display: block;
}

.ii-stat-box strong {
    color: #087f7b;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.15;
}

.ii-stat-box span {
    margin-top: 2px;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 700;
}

/* Top Grid */

.ii-top-grid {
    background: #f8fafc;
    padding-top: 36px;
}

.ii-why-card figure {
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 14px;
}

.ii-why-card figure img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.ii-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 18px 0;
}

.ii-mini-card {
    min-height: 104px;
    padding: 14px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    color: #08254c;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.ii-mini-card i {
    width: 36px;
    height: 36px;
    border: 2px solid #0ba39e;
    border-radius: 12px;
    color: #0ba39e;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ii-mini-card span {
    display: block;
}

.ii-learn-card .ii-check-list {
    gap: 8px;
}

.ii-learn-card .ii-check-list li {
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    background: #ffffff;
}

.ii-chat-list {
    display: grid;
    gap: 13px;
    margin-bottom: 20px;
}

.ii-chat-list p {
    margin-bottom: 0;
    padding: 13px 15px;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: #f8fbff;
    color: #334155;
    font-size: 0.9rem;
}

/* Example + Workflow */

.ii-example-workflow {
    padding-top: 0;
    background: #f8fafc;
}

.ii-example-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.ii-example-card figure {
    overflow: hidden;
    border-radius: 16px;
}

.ii-example-card figure img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.ii-process-flow {
    display: grid;
    gap: 14px;
    margin: 22px 0;
}

.ii-process-flow li {
    padding: 16px;
    border: 1px solid #d9f3f1;
    border-radius: 16px;
    background: #ffffff;
    text-align: center;
}

.ii-process-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 10px;
    border: 2px solid #0ba39e;
    border-radius: 50%;
    color: #0ba39e;
    background: #e6fffd;
    font-size: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ii-process-flow strong,
.ii-process-flow span {
    display: block;
}

.ii-process-flow strong {
    color: #08254c;
    font-size: 0.92rem;
    font-weight: 900;
}

.ii-process-flow span {
    margin-top: 3px;
    color: #475569;
    font-size: 0.88rem;
}

/* Teams */

.ii-teams {
    background: #f8fafc;
    padding-top: 36px;
}

.ii-teams .container {
    padding-top: 28px;
    padding-bottom: 28px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.055);
}

.ii-team-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.ii-team-card {
    min-height: 100%;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045);
}

.ii-team-card img {
    width: 100%;
    margin-bottom: 14px;
    border-radius: 13px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #f8fafc;
}

.ii-team-card p {
    margin-bottom: 8px;
    font-size: 0.86rem;
}

.ii-team-card ul {
    display: grid;
    gap: 5px;
    margin: 8px 0 12px;
    padding-left: 16px;
    list-style: disc;
}

.ii-team-card li {
    color: #334155;
    font-size: 0.82rem;
    line-height: 1.35;
}

/* Reality Grid */

.ii-reality-grid {
    background: #f8fafc;
}

.ii-freshers-card figure,
.ii-myth-card figure {
    margin-top: 14px;
    overflow: hidden;
    border-radius: 16px;
}

.ii-freshers-card figure img,
.ii-myth-card figure img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.ii-myth-list {
    display: grid;
    gap: 12px;
}

.ii-myth-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ii-myth-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0ba39e;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.ii-myth-list strong {
    display: block;
    color: #08254c;
    font-size: 0.9rem;
    font-weight: 900;
}

.ii-myth-list p {
    margin-bottom: 0;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.4;
}

.ii-parent-card .accordion {
    display: grid;
    gap: 12px;
}

.ii-parent-card .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

.ii-parent-card .accordion-button {
    min-height: 52px;
    padding: 14px 16px;
    color: #08254c;
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: none;
}

.ii-parent-card .accordion-button i {
    color: #0ba39e;
}

.ii-parent-card .accordion-button:not(.collapsed) {
    background: #e6fffd;
    color: #087f7b;
}

.ii-parent-card .accordion-body {
    padding: 14px 16px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.ii-parent-card .accordion-body ul {
    display: grid;
    gap: 7px;
    padding-left: 18px;
    list-style: disc;
}

/* Topics */

.ii-topics {
    padding-top: 36px;
    background: #f8fafc;
}

.ii-topics .container {
    padding-top: 28px;
    padding-bottom: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
}

.ii-topic-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.ii-topic-card {
    min-height: 142px;
    padding: 18px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.ii-topic-card > i {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    border: 2px solid #0ba39e;
    border-radius: 13px;
    color: #0ba39e;
    background: #e6fffd;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ii-topic-card h3 {
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.ii-topic-card a {
    color: #087f7b;
    font-size: 0.82rem;
    font-weight: 900;
}

.ii-topic-note {
    max-width: 780px;
    margin: 22px auto 0;
    text-align: center;
}

.ii-section-cta {
    margin-top: 22px;
}

/* Bottom Grid */

.ii-bottom-grid {
    background: #f8fafc;
}

.ii-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ii-gallery-grid figure {
    margin: 0;
}

.ii-gallery-grid img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ii-gallery-grid figcaption {
    margin-top: 8px;
    color: #08254c;
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.25;
}

.ii-method-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 18px 0;
}

.ii-method-list li {
    padding: 16px;
    border: 1px solid rgba(11, 163, 158, 0.22);
    border-radius: 16px;
    background: #e6fffd;
    color: #08254c;
    font-weight: 900;
    text-align: center;
    display: grid;
    gap: 8px;
    justify-items: center;
}

.ii-method-list li i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0ba39e;
    color: #ffffff;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ii-location-list {
    display: grid;
    gap: 10px;
    margin: 14px 0 16px;
}

.ii-location-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-weight: 700;
}

.ii-location-list i {
    color: #0ba39e;
}

.ii-reviewed-card figure {
    width: 108px;
    height: 108px;
    margin: 8px 0 16px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #e6fffd;
}

.ii-reviewed-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ii-final-cta-card {
    background:
        radial-gradient(circle at right bottom, rgba(255, 255, 255, 0.16), transparent 36%),
        linear-gradient(135deg, #08254c 0%, #087f7b 100%);
    color: #ffffff;
}

.ii-final-cta-card h2,
.ii-final-cta-card p {
    color: #ffffff;
}

.ii-final-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
}

/* Footer Stats */

.ii-footer-stats {
    padding: 30px 0 40px;
    background: #f8fafc;
}

.ii-footer-stat-row {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #087f7b 0%, #0a6f79 100%);
}

.ii-footer-stat {
    padding: 18px;
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ii-footer-stat i {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.45rem;
}

.ii-footer-stat strong,
.ii-footer-stat span {
    display: block;
}

.ii-footer-stat strong {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.1;
}

.ii-footer-stat span {
    margin-top: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
}

/* 576px */

@media (min-width: 576px) {
    .ii-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ii-actions .btn {
        width: auto;
    }

    .ii-topic-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .ii-final-actions {
        grid-template-columns: repeat(2, 1fr);
    }

    .ii-footer-stat-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px */

@media (min-width: 768px) {
    .industry-insights-page section {
        padding: 62px 0;
    }

    .ii-card {
        padding: 24px;
        border-radius: 20px;
    }

    .ii-topic-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .ii-team-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .ii-method-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .ii-footer-stat-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 992px */

@media (min-width: 992px) {
    .industry-insights-page section {
        padding: 70px 0;
    }

    .ii-hero {
        padding-top: 62px;
    }

    .ii-top-grid,
    .ii-example-workflow,
    .ii-teams,
    .ii-topics {
        padding-top: 32px;
    }

    .ii-example-card {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: center;
    }

    .ii-process-flow {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }

    .ii-process-flow li {
        min-height: 138px;
        padding: 18px 12px;
    }

    .ii-team-row {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 16px;
    }

    .ii-team-card {
        padding: 16px;
    }

    .ii-team-card h3 {
        min-height: 48px;
        font-size: 0.9rem;
    }

    .ii-team-card p {
        font-size: 0.78rem;
    }

    .ii-team-card li {
        font-size: 0.74rem;
    }

    .ii-topic-row {
        grid-template-columns: repeat(5, 1fr);
    }

    .ii-footer-stat-row {
        grid-template-columns: repeat(6, 1fr);
    }

    .ii-footer-stat {
        border-bottom: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.16);
    }

    .ii-footer-stat:last-child {
        border-right: 0;
    }
}

/* 1200px */

@media (min-width: 1200px) {
    .industry-insights-page section {
        padding: 76px 0;
    }

    .ii-hero {
        padding-top: 70px;
    }

    .ii-section-header {
        margin-bottom: 34px;
    }

    .ii-card {
        padding: 26px;
    }

    .ii-team-card {
        padding: 18px;
    }
}

/* 1400px */

@media (min-width: 1400px) {
    .industry-insights-page .container {
        max-width: 1320px;
    }

    .industry-insights-page h1 {
        font-size: 4.1rem;
    }

    .industry-insights-page section {
        padding: 82px 0;
    }
}

/* Small Mobile */

@media (max-width: 575.98px) {
    .industry-insights-page .btn {
        width: 100%;
    }

    .ii-mini-grid {
        grid-template-columns: 1fr;
    }

    .ii-gallery-grid {
        grid-template-columns: 1fr;
    }

    .ii-stat-box {
        justify-content: center;
        text-align: left;
    }
}

/* Very Small Screens */

@media (max-width: 390px) {
    .industry-insights-page h1 {
        font-size: 2rem;
    }

    .ii-pill-list li {
        font-size: 0.68rem;
    }

    .ii-card {
        padding: 18px;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    .industry-insights-page *,
    .industry-insights-page *::before,
    .industry-insights-page *::after {
        transition: none !important;
        scroll-behavior: auto !important;
    }
}


/* ===================================
   RESOURCE INDUSTRY INSIGHTS END
=================================== */


/* ===================================
   RESOURCE HR AWARENESS START
=================================== */

.hr-awareness-page {
  --primary: #0ba39e;
  --primary-dark: #087f7b;
  --heading: #08254c;
  --text: #475569;
  --background: #f8fafc;
  --white: #ffffff;
  --border: #dbe7ea;
  --soft-teal: #e8fffd;
  --soft-blue: #eef8fb;
  --danger: #ef4444;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 8px 24px rgba(8, 37, 76, 0.06);
  --shadow-md: 0 18px 48px rgba(8, 37, 76, 0.1);

  --section-space: 48px;
  --card-space: 20px;

  background: var(--background);
  color: var(--text);
  font-family: "Inter", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.hr-awareness-page * {
  box-sizing: border-box;
}

.hr-awareness-page img {
  max-width: 100%;
  height: auto;
}

.hr-awareness-page a {
  color: var(--primary-dark);
  text-decoration: none;
}

.hr-awareness-page a:hover {
  color: var(--primary);
}

.hr-awareness-page section {
  padding: var(--section-space) 0;
}

.hr-awareness-page h1,
.hr-awareness-page h2,
.hr-awareness-page h3 {
  color: var(--heading);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px;
}

.hr-awareness-page h1 {
  font-size: clamp(42px, 10vw, 72px);
  letter-spacing: -0.05em;
}

.hr-awareness-page h2 {
  font-size: clamp(24px, 5vw, 34px);
  letter-spacing: -0.03em;
}

.hr-awareness-page h3 {
  font-size: 17px;
}

.hr-awareness-page p {
  margin: 0 0 10px;
}

.hr-awareness-page i {
  line-height: 1;
}

.hr-awareness-page :focus-visible {
  outline: 3px solid rgba(11, 163, 158, 0.35);
  outline-offset: 3px;
}

/* Buttons */

.hr-awareness-page .btn {
  min-height: 44px;
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hr-awareness-page .btn-primary {
    color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.hr-awareness-page .btn-primary:hover,
.hr-awareness-page .btn-primary:focus {
    color: var(--white);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.hr-awareness-page .btn-outline-primary {
  color: var(--primary-dark);
  border-color: var(--primary);
}

.hr-awareness-page .btn-outline-primary:hover,
.hr-awareness-page .btn-outline-primary:focus {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Reusable Cards */

.hr-awareness-page .content-card,
.hr-awareness-page .feature-card,
.hr-awareness-page .mistake-card,
.hr-awareness-page .topic-card,
.hr-awareness-page .review-card,
.hr-awareness-page .bottom-cta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hr-awareness-page .content-card {
  height: 100%;
  padding: var(--card-space);
}

.hr-awareness-page .content-card h2 span,
.hr-awareness-page .content-card h3 span,
.hr-awareness-page .review-card h2 span {
  color: var(--primary-dark);
}

.hr-awareness-page blockquote {
  margin: 12px 0;
  padding: 12px 14px;
  background: var(--soft-teal);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  color: var(--heading);
  font-weight: 700;
}

/* Lists */

.hr-awareness-page .icon-list,
.hr-awareness-page .recruiter-list,
.hr-awareness-page .mistake-list,
.hr-awareness-page .pillar-list,
.hr-awareness-page .location-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 18px;
}

.hr-awareness-page .icon-list li,
.hr-awareness-page .location-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.hr-awareness-page .icon-list i,
.hr-awareness-page .location-list i {
  color: var(--primary-dark);
  margin-top: 5px;
}

/* Hero */

.hr-awareness-page .hr-hero-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(11, 163, 158, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--background) 100%);
  padding-top: 56px;
}

.hr-awareness-page .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--soft-teal);
  border: 1px solid rgba(11, 163, 158, 0.25);
  color: var(--primary-dark);
  font-weight: 800;
}

.hr-awareness-page .hr-hero-section h2 {
  color: var(--primary-dark);
  max-width: 680px;
}

.hr-awareness-page .hero-feature-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.hr-awareness-page .hero-feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--heading);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.hr-awareness-page .hero-feature-list i {
  color: var(--primary-dark);
}

.hr-awareness-page .hero-actions,
.hr-awareness-page .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.hr-awareness-page .hero-visual {
  margin: 0;
}

/* Intro */

.hr-awareness-page .hr-introduction-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.hr-awareness-page .conversation-box p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px;
  background: var(--soft-blue);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.hr-awareness-page .conversation-box i {
  color: var(--primary-dark);
  margin-top: 4px;
}

/* Feature / Mistake Cards */

.hr-awareness-page .feature-card,
.hr-awareness-page .mistake-card {
  height: 100%;
  padding: 18px;
  text-align: center;
}

.hr-awareness-page .feature-card > i,
.hr-awareness-page .mistake-card > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: var(--soft-teal);
  color: var(--primary-dark);
  font-size: 28px;
}

.hr-awareness-page .feature-card h3,
.hr-awareness-page .mistake-card h3 {
  font-size: 17px;
}

/* Freshers */

.hr-awareness-page .comparison-block {
  display: grid;
  gap: 14px;
}

.hr-awareness-page .comparison-block > div {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--soft-blue);
}

.hr-awareness-page .comparison-block h3 {
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
}

/* Interview */

.hr-awareness-page .recruiter-list li,
.hr-awareness-page .mistake-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.hr-awareness-page .recruiter-list i {
  color: var(--primary-dark);
  font-size: 22px;
  margin-top: 3px;
}

.hr-awareness-page .mistake-list i {
  color: var(--danger);
  font-size: 20px;
  margin-top: 4px;
}

.hr-awareness-page .recruiter-list h3,
.hr-awareness-page .mistake-list h3 {
  margin-bottom: 4px;
}

/* FAQ */

.hr-awareness-page .accordion-item {
  border-color: var(--border);
}

.hr-awareness-page .accordion-button {
  color: var(--heading);
  font-weight: 800;
}

.hr-awareness-page .accordion-button:not(.collapsed) {
  background: var(--soft-teal);
  color: var(--primary-dark);
}

/* Topics */

.hr-awareness-page .topic-card {
  min-height: 72px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hr-awareness-page .topic-card i {
  color: var(--primary-dark);
  font-size: 20px;
}

.hr-awareness-page .topic-card:hover,
.hr-awareness-page .topic-card:focus {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Pillars */

.hr-awareness-page .pillar-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hr-awareness-page .pillar-list li {
  padding: 12px;
  background: var(--soft-teal);
  border-radius: var(--radius-sm);
  color: var(--heading);
  font-weight: 700;
}

.hr-awareness-page .pillar-list i {
  color: var(--primary-dark);
  margin-right: 6px;
}

/* Gallery */

.hr-awareness-page figure {
  margin: 0;
}

.hr-awareness-page figure img {
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hr-awareness-page figcaption {
  margin-top: 8px;
  text-align: center;
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
}

/* Locations */

.hr-awareness-page .location-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hr-awareness-page .location-list li {
  padding: 12px;
  background: var(--soft-blue);
  border-radius: var(--radius-sm);
  color: var(--heading);
  font-weight: 700;
}

/* Reviewed By */

.hr-awareness-page .reviewed-by-section {
  padding-bottom: 24px;
}

.hr-awareness-page .review-card {
  padding: 24px;
  background: linear-gradient(135deg, #063f4c, var(--primary-dark));
  color: var(--white);
}

.hr-awareness-page .review-card h2,
.hr-awareness-page .review-card h3,
.hr-awareness-page .review-card p,
.hr-awareness-page .review-card strong,
.hr-awareness-page .review-card span {
  color: var(--white);
}

.hr-awareness-page .reviewer-photo img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}

.hr-awareness-page .review-stats {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.hr-awareness-page .stat-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
}

.hr-awareness-page .stat-box i {
  font-size: 24px;
  color: var(--white);
}

/* Bottom CTA */

.hr-awareness-page .bottom-cta-section {
  padding-top: 0;
}

.hr-awareness-page .bottom-cta-card {
  padding: 22px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.hr-awareness-page .bottom-cta-card h2,
.hr-awareness-page .bottom-cta-card p {
  color: var(--white);
}

.hr-awareness-page .bottom-cta-card .btn {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

/* 576px */

@media (min-width: 576px) {
  .hr-awareness-page {
    --card-space: 22px;
  }

  .hr-awareness-page .hero-actions,
  .hr-awareness-page .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hr-awareness-page .comparison-block {
    grid-template-columns: 1fr 1fr;
  }

  .hr-awareness-page .location-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* 768px */

@media (min-width: 768px) {
  .hr-awareness-page {
    --section-space: 60px;
    --card-space: 24px;
  }

  .hr-awareness-page .pillar-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hr-awareness-page .bottom-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

/* 992px */

@media (min-width: 992px) {
  .hr-awareness-page {
    --section-space: 72px;
  }

  .hr-awareness-page .hr-hero-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hr-awareness-page .hr-hero-section .row {
    min-height: 620px;
  }

  .hr-awareness-page .review-card {
    display: grid;
    grid-template-columns: 140px minmax(260px, 1fr) minmax(360px, 1.4fr);
    align-items: center;
    gap: 28px;
  }

  .hr-awareness-page .reviewer-photo img {
    margin-bottom: 0;
  }

  .hr-awareness-page .review-stats {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
  }
}

/* 1200px */

@media (min-width: 1200px) {
  .hr-awareness-page {
    --section-space: 80px;
    --card-space: 28px;
  }

  .hr-awareness-page h1 {
    font-size: 76px;
  }

  .hr-awareness-page .hr-hero-section h2 {
    font-size: 36px;
  }

  .hr-awareness-page .content-card {
    border-radius: var(--radius-lg);
  }
}

/* 1400px */

@media (min-width: 1400px) {
  .hr-awareness-page {
    --section-space: 88px;
  }

  .hr-awareness-page h1 {
    font-size: 82px;
  }

  .hr-awareness-page .hr-hero-section .row {
    min-height: 680px;
  }
}

/* ===================================
   RESOURCE HR AWARENESS END
=================================== */

/* ===================================
   RESOURCE SKILL GUIDES START
=================================== */

:root {
    --sg-primary: #0ba39e;
    --sg-primary-dark: #087f7b;
    --sg-heading: #08254c;
    --sg-text: #475569;
    --sg-muted: #64748b;
    --sg-bg: #f8fafc;
    --sg-white: #ffffff;
    --sg-border: #dbe7ee;
    --sg-soft: #eefafa;
    --sg-danger: #ef4444;

    --sg-radius-sm: 10px;
    --sg-radius-md: 16px;
    --sg-radius-lg: 24px;

    --sg-shadow-sm: 0 8px 24px rgba(8, 37, 76, 0.06);
    --sg-shadow-md: 0 16px 40px rgba(8, 37, 76, 0.08);

    --sg-section-y: 48px;
    --sg-card-padding: 20px;
}

/* Base */
body {
    background: var(--sg-bg);
    color: var(--sg-text);
}

#main-content {
    overflow: hidden;
}

#main-content section {
    padding: var(--sg-section-y) 0;
}

#main-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

#main-content figure {
    margin: 0;
}

#main-content h1,
#main-content h2,
#main-content h3,
#main-content h4 {
    color: var(--sg-heading);
    font-weight: 800;
    line-height: 1.2;
}

#main-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.75rem);
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

#main-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

#main-content h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

#main-content h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

#main-content p,
#main-content li {
    font-size: 0.95rem;
    line-height: 1.7;
}

#main-content p {
    margin-bottom: 10px;
}

#main-content ul,
#main-content ol {
    padding-left: 1.15rem;
    margin-bottom: 14px;
}

#main-content a {
    color: var(--sg-primary-dark);
    font-weight: 700;
    text-decoration: none;
}

#main-content a:hover {
    color: var(--sg-primary);
}

#main-content a:focus-visible,
#main-content button:focus-visible {
    outline: 3px solid rgba(11, 163, 158, 0.35);
    outline-offset: 3px;
}

#main-content blockquote {
    display: inline-block;
    background: var(--sg-soft);
    color: var(--sg-primary-dark);
    font-weight: 800;
    border-radius: 999px;
    padding: 8px 16px;
    margin: 4px 0 14px;
}

/* Reusable */
.sg-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 28px;
}

.sg-section-header p {
    margin-bottom: 0;
}

.sg-info-card,
.sg-feature-card,
.sg-skill-card,
.sg-profession-card,
.sg-mistake-card,
.sg-category-card,
.sg-stat-card,
.accordion-item,
.sg-reviewer-card {
    background: var(--sg-white);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius-md);
    box-shadow: var(--sg-shadow-sm);
}

.sg-info-card,
.sg-feature-card,
.sg-mistake-card,
.sg-category-card,
.sg-stat-card {
    padding: var(--sg-card-padding);
    height: 100%;
}

.sg-info-card i,
.sg-feature-card i,
.sg-category-card i,
.sg-stat-card i {
    color: var(--sg-primary);
    font-size: 2rem;
    display: inline-flex;
    margin-bottom: 14px;
}

/* Hero */
.sg-hero {
    background:
        radial-gradient(circle at 78% 18%, rgba(11, 163, 158, 0.1), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f4fbfc 100%);
    padding-top: 36px;
}

.sg-hero h2 {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    max-width: 720px;
}

.sg-hero h2 strong,
.sg-hero h2 span {
    color: var(--sg-primary-dark);
}

.sg-skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 16px 0 22px;
    list-style: none;
}

.sg-skill-badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sg-white);
    border: 1px solid var(--sg-border);
    border-radius: 999px;
    padding: 8px 13px;
    color: var(--sg-heading);
    font-weight: 700;
    box-shadow: var(--sg-shadow-sm);
}

.sg-skill-badges i {
    color: var(--sg-primary);
}

.sg-question-row {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.sg-trust-row {
    display: grid;
    gap: 14px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--sg-border);
}

.sg-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sg-trust-item i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sg-soft);
    color: var(--sg-primary-dark);
    border-radius: 50%;
    font-size: 1.35rem;
}

.sg-trust-item strong,
.sg-trust-item span {
    display: block;
}

.sg-trust-item strong {
    color: var(--sg-primary-dark);
    font-size: 1.25rem;
    line-height: 1.1;
}

.sg-trust-item span {
    color: var(--sg-muted);
    font-size: 0.9rem;
}

.sg-hero-image {
    margin-top: 32px;
}

/* Understanding */
.sg-understanding {
    background: var(--sg-white);
}

.sg-understanding .row .row {
    row-gap: 16px;
}

.sg-info-card {
    text-align: center;
}

.sg-info-card h3 {
    font-size: 1rem;
}

/* Student Question */
.sg-student-question {
    background: linear-gradient(90deg, #f8fafc 0%, #eefafa 100%);
}

.sg-chat-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.sg-chat-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 8px;
    align-items: start;
}

.sg-chat-item strong {
    color: var(--sg-primary-dark);
    font-size: 0.9rem;
}

.sg-chat-item p {
    background: var(--sg-white);
    border: 1px solid var(--sg-border);
    border-radius: 999px;
    padding: 8px 14px;
    margin: 0;
    color: var(--sg-heading);
}

.sg-highlight-note {
    background: var(--sg-soft);
    border: 1px solid rgba(11, 163, 158, 0.18);
    border-radius: var(--sg-radius-md);
    padding: 22px;
    margin-top: 24px;
}

.sg-highlight-note i {
    color: var(--sg-primary-dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: inline-flex;
}

.sg-highlight-note p {
    color: var(--sg-heading);
    font-weight: 800;
    margin: 0;
}

/* What You Will Learn */
.sg-learn-section {
    background: var(--sg-white);
}

.sg-learn-section .row {
    row-gap: 16px;
}

.sg-feature-card {
    text-align: center;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sg-feature-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.sg-learn-section > .container > p {
    text-align: center;
}

.sg-learn-section > .container > p:first-of-type {
    background: var(--sg-soft);
    border-radius: 999px;
    padding: 10px 18px;
    margin: 24px auto 6px;
    max-width: 720px;
    font-weight: 700;
}

/* Popular Skills */
.sg-popular-skills {
    background: var(--sg-bg);
}

.sg-popular-skills .row {
    row-gap: 18px;
}

.sg-skill-card {
    padding: 20px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sg-skill-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sg-shadow-md);
}

.sg-skill-card > i {
    color: var(--sg-primary);
    font-size: 2rem;
    margin-bottom: 12px;
}

.sg-skill-card ul {
    margin-bottom: 16px;
}

.sg-skill-card li {
    font-size: 0.9rem;
}

.sg-skill-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 18px;
    background: var(--sg-primary);
    color: #ffffff;
    border-radius: 999px;
    font-size: 0.9rem;
}

.sg-skill-card a:hover {
    background: var(--sg-primary-dark);
    color: #ffffff;
}

/* Skills Are Tools */
.sg-tools-section {
    background: var(--sg-white);
}

.sg-tools-section .row .row {
    row-gap: 16px;
}

.sg-profession-card {
    padding: 16px;
    text-align: center;
    height: 100%;
}

.sg-profession-card img {
    border-radius: var(--sg-radius-md);
    margin-bottom: 12px;
}

.sg-profession-card h3 {
    margin-bottom: 0;
}

/* Mistakes */
.sg-mistakes-section {
    background: var(--sg-bg);
}

.sg-mistakes-section .row {
    row-gap: 16px;
}

.sg-mistake-card i {
    color: var(--sg-danger);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sg-mistake-card h3 {
    color: var(--sg-heading);
}

/* FAQ */
.sg-student-faq,
.sg-parent-faq {
    background: var(--sg-white);
}

.sg-student-faq h2,
.sg-parent-faq h2,
.sg-categories-section h2,
.sg-observed-section h2,
.sg-philosophy-section h2,
.sg-explore-guides h2,
.sg-action-gallery h2 {
    text-align: center;
}

.accordion {
    display: grid;
    gap: 12px;
}

.accordion-item {
    overflow: hidden;
}

.accordion-button {
    color: var(--sg-heading);
    font-weight: 800;
    background: var(--sg-white);
    box-shadow: none;
    gap: 10px;
    min-height: 58px;
}

.accordion-button i {
    color: var(--sg-primary);
}

.accordion-button:not(.collapsed) {
    color: var(--sg-primary-dark);
    background: var(--sg-soft);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    color: var(--sg-text);
}

/* Categories */
.sg-categories-section {
    background: var(--sg-bg);
}

.sg-categories-section .row {
    row-gap: 16px;
}

.sg-category-card h3 {
    font-size: 1rem;
}

/* Observed */
.sg-observed-section {
    background: var(--sg-white);
}

.sg-observed-section .container {
    max-width: 900px;
    text-align: center;
}

.sg-observed-section blockquote {
    display: block;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Philosophy */
.sg-philosophy-section {
    background: linear-gradient(180deg, #ffffff 0%, #effafa 100%);
    text-align: center;
}

.sg-philosophy-steps {
    display: grid;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 28px auto;
    max-width: 960px;
}

.sg-philosophy-steps li {
    position: relative;
    background: var(--sg-white);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius-md);
    padding: 22px;
    box-shadow: var(--sg-shadow-sm);
}

.sg-philosophy-steps i {
    color: var(--sg-primary);
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.sg-philosophy-steps span {
    color: var(--sg-heading);
    font-weight: 800;
}

/* Explore Guides */
.sg-explore-guides {
    background: var(--sg-white);
}

.sg-explore-guides p {
    text-align: center;
}

.sg-guide-links {
    display: grid;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 22px auto;
    max-width: 900px;
}

.sg-guide-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--sg-white);
    border: 1px solid var(--sg-border);
    border-radius: 999px;
    padding: 12px 16px;
    color: var(--sg-heading);
}

.sg-guide-links i {
    color: var(--sg-primary);
}

.sg-guide-links a:hover {
    background: var(--sg-soft);
    color: var(--sg-primary-dark);
}

/* Gallery */
.sg-action-gallery {
    background: var(--sg-bg);
}

.sg-action-gallery .row {
    row-gap: 16px;
}

.sg-action-gallery figure {
    background: var(--sg-white);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius-md);
    overflow: hidden;
    box-shadow: var(--sg-shadow-sm);
    height: 100%;
}

.sg-action-gallery img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.sg-action-gallery figcaption {
    padding: 12px;
    text-align: center;
    color: var(--sg-heading);
    font-weight: 800;
    font-size: 0.9rem;
}

/* About */
.sg-about-eargs {
    background: var(--sg-white);
}

.sg-about-eargs ul {
    list-style: none;
    padding-left: 0;
}

.sg-about-eargs li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sg-about-eargs li i {
    color: var(--sg-primary);
}

.sg-about-eargs .row .row {
    row-gap: 16px;
    margin-bottom: 18px;
}

.sg-stat-card {
    text-align: center;
}

.sg-stat-card strong,
.sg-stat-card span {
    display: block;
}

.sg-stat-card strong {
    color: var(--sg-heading);
    font-size: 1.25rem;
    line-height: 1.2;
}

.sg-stat-card span {
    color: var(--sg-muted);
    font-size: 0.9rem;
}

.sg-about-eargs figure img {
    width: 100%;
    border-radius: var(--sg-radius-md);
    box-shadow: var(--sg-shadow-sm);
}

/* CTA */
.sg-final-cta {
    background: var(--sg-bg);
}

.sg-final-cta .container {
    background:
        linear-gradient(135deg, var(--sg-primary-dark), var(--sg-primary));
    border-radius: var(--sg-radius-lg);
    padding: 32px 20px;
    color: #ffffff;
    box-shadow: var(--sg-shadow-md);
}

.sg-final-cta h2,
.sg-final-cta p {
    color: #ffffff;
}

.sg-cta-actions {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.sg-cta-actions .btn {
    min-height: 48px;
    border-radius: 999px;
    font-weight: 800;
}

.sg-cta-actions .btn-primary {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--sg-primary-dark);
}

.sg-cta-actions .btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.sg-cta-actions .btn-outline-primary:hover {
    background: #ffffff;
    color: var(--sg-primary-dark);
}

/* Reviewed By */
.sg-reviewed-by {
    background: var(--sg-bg);
    padding-bottom: 70px;
}

.sg-reviewer-card {
    padding: 22px;
}

.sg-reviewer-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 18px;
}

.sg-reviewer-card h2 {
    font-size: 1.5rem;
}

.sg-reviewer-card i {
    color: var(--sg-primary);
    font-size: 2rem;
}

.sg-reviewer-card time {
    color: var(--sg-primary-dark);
    font-weight: 900;
    font-size: 1.15rem;
}

/* 576px */
@media (min-width: 576px) {
    :root {
        --sg-section-y: 56px;
        --sg-card-padding: 22px;
    }

    .sg-trust-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .sg-question-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .sg-guide-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px */
@media (min-width: 768px) {
    :root {
        --sg-section-y: 70px;
    }

    #main-content p,
    #main-content li {
        font-size: 1rem;
    }

    .sg-hero {
        padding-top: 56px;
    }

    .sg-hero-image {
        margin-top: 0;
    }

    .sg-philosophy-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .sg-cta-actions {
        /* grid-template-columns: repeat(3, 1fr); */
    }

    .sg-reviewer-card img {
        margin-bottom: 0;
    }
}

/* 992px */
@media (min-width: 992px) {
    :root {
        --sg-section-y: 82px;
    }

    .sg-hero .row,
    .sg-understanding .row,
    .sg-student-question .row,
    .sg-tools-section .row,
    .sg-about-eargs .row,
    .sg-final-cta .row,
    .sg-reviewed-by .row {
        --bs-gutter-x: 3rem;
    }

    .sg-popular-skills .col-xl-3 {
        width: 25%;
    }

    .sg-student-faq .container,
    .sg-parent-faq .container {
        max-width: 960px;
    }

    .sg-philosophy-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .sg-final-cta .container {
        padding: 44px 48px;
    }

    .sg-cta-actions {
        margin-top: 0;
    }
}

/* 1200px */
@media (min-width: 1200px) {
    :root {
        --sg-section-y: 92px;
    }

    .sg-popular-skills .row {
        --bs-gutter-x: 1rem;
    }

    .sg-skill-card {
        padding: 18px;
    }

    .sg-skill-card h3 {
        font-size: 1.05rem;
    }

    .sg-skill-card li {
        font-size: 0.86rem;
    }

    .sg-guide-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 1400px */
@media (min-width: 1400px) {
    :root {
        --sg-section-y: 104px;
    }

    .container {
        max-width: 1320px;
    }

    #main-content h1 {
        font-size: 5rem;
    }

    .sg-skill-card {
        padding: 22px;
    }
}

/* ===================================
   RESOURCE SKILL GUIDES END
=================================== */

/* ===================================
   RESOURCE COMMUNICATION SKILLS START
=================================== */

/* Communication Skills Page CSS */
/* Page-specific only | No :root | No global header/footer/body CSS */

.communication-skills-page {
    overflow: hidden;
}

.communication-skills-page section {
    padding: 64px 0;
}

.communication-skills-page img {
    max-width: 100%;
    height: auto;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #0ba39e;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-heading.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.cs-hero-section h1,
.cs-hero-section h2 {
    color: #08254c;
}

.section-heading p {
    color: #475569;
}

.cs-hero-section {
    padding-top: 72px;
    background:
        radial-gradient(circle at top right, rgba(11, 163, 158, 0.14), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.breadcrumb {
    margin-bottom: 24px;
    font-size: 0.875rem;
}

.cs-hero-section h1 {
    margin-bottom: 14px;
    font-size: clamp(2.4rem, 9vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.cs-hero-section h2 {
    margin-bottom: 8px;
    font-size: clamp(1.45rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
}

.hero-subtitle {
    color: #087f7b;
    font-size: clamp(1.15rem, 4vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
}

.hero-learning-list {
    margin: 28px 0;
    padding: 22px;
    background: #ffffff;
    border: 1px solid rgba(11, 163, 158, 0.14);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(8, 37, 76, 0.06);
}

.hero-learning-list h3 {
    margin-bottom: 14px;
    color: #08254c;
    font-size: 1rem;
    font-weight: 700;
}

.hero-learning-list ul,
.skill-pill-list,
.start-steps-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-learning-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #475569;
    font-weight: 600;
}

.hero-learning-list li:last-child {
    margin-bottom: 0;
}

.hero-learning-list i {
    color: #0ba39e;
    font-size: 1.1rem;
}

.hero-question-card,
.myth-card,
.reality-card,
.real-life-card,
.philosophy-card,
.start-card,
.reviewed-card,
.observation-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    box-shadow: 0 20px 55px rgba(8, 37, 76, 0.07);
}

.hero-question-card {
    margin-bottom: 24px;
    padding: 22px;
}

.hero-question-card blockquote,
.observation-content blockquote,
.myth-card blockquote {
    margin: 14px 0;
    padding: 14px 16px;
    background: #e6fffb;
    border-left: 4px solid #0ba39e;
    border-radius: 14px;
}

.hero-question-card blockquote p,
.observation-content blockquote p,
.myth-card blockquote p {
    margin: 0;
    color: #08254c;
    font-weight: 800;
}

.hero-actions,
.start-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.hero-visual,
.observation-visual,
.real-life-card figure,
.start-card figure {
    position: relative;
}

.hero-visual img,
.observation-visual img,
.real-life-card img,
.start-card img {
    margin-inline: auto;
}

.hero-trust-strip {
    margin-top: 48px;
}

.trust-stat-card,
.company-stat-card,
.feature-card,
.benefit-card,
.scenario-card,
.challenge-card,
.habit-card,
.mistake-card,
.belief-card,
.gallery-card,
.topic-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    box-shadow: 0 16px 42px rgba(8, 37, 76, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-stat-card:hover,
.company-stat-card:hover,
.feature-card:hover,
.benefit-card:hover,
.scenario-card:hover,
.challenge-card:hover,
.habit-card:hover,
.mistake-card:hover,
.belief-card:hover,
.gallery-card:hover,
.topic-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 163, 158, 0.35);
    box-shadow: 0 24px 60px rgba(8, 37, 76, 0.09);
}

.trust-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
}

.trust-stat-card i,
.company-stat-card i,
.feature-card i,
.benefit-card i,
.challenge-card i,
.habit-card i,
.mistake-card i,
.belief-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    color: #0ba39e;
    background: #e6fffb;
    border-radius: 16px;
    font-size: 1.45rem;
}

.trust-stat-card strong {
    display: block;
    color: #08254c;
    font-size: 1.1rem;
    font-weight: 800;
}

.trust-stat-card span {
    display: block;
    color: #475569;
    font-size: 0.9rem;
}

.definition-intro,
.definition-summary {
    max-width: 760px;
    margin: 0 auto 28px;
}

.feature-card,
.benefit-card,
.habit-card,
.belief-card {
    padding: 24px 18px;
    text-align: center;
}

.feature-card i,
.benefit-card i,
.habit-card i,
.belief-card i {
    margin: 0 auto 16px;
}

.feature-card h3,
.benefit-card h3,
.habit-card h3,
.belief-card h3 {
    margin-bottom: 0;
    color: #08254c;
    font-size: 1rem;
    font-weight: 800;
}

.habit-card p {
    margin-bottom: 0;
}

.cs-importance-section,
.cs-where-help-section,
.cs-habits-section,
.cs-action-gallery-section {
    background: #ffffff;
}

.importance-intro {
    /* max-width: 720px; */
    margin-bottom: 28px;
}

.conversation-card {
    max-width: 850px;
    margin: 0 auto;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    box-shadow: 0 20px 55px rgba(8, 37, 76, 0.07);
}

.conversation-message {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.conversation-message:last-child {
    margin-bottom: 0;
}

.message-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    color: #ffffff;
    background: #0ba39e;
    border-radius: 50%;
}

.message-content {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
}

.student-message .message-content {
    background: #f8fafc;
}

.mentor-message .message-content {
    background: #e6fffb;
}

.message-content strong {
    display: block;
    margin-bottom: 4px;
    color: #08254c;
}

.message-content p {
    margin-bottom: 0;
}

.conversation-summary {
    max-width: 720px;
    margin: 24px auto 0;
}

.myth-card,
.reality-card {
    padding: 26px;
}

.myth-card > i,
.reality-card > i {
    margin-bottom: 16px;
    font-size: 2rem;
}

.myth-card > i {
    color: #dc2626;
}

.reality-card > i {
    color: #0ba39e;
}

.reality-card ul {
    margin-bottom: 18px;
}

.reality-card li {
    margin-bottom: 8px;
}

.scenario-card {
    overflow: hidden;
}

.scenario-card figure {
    aspect-ratio: 4 / 3;
    background: #e6fffb;
    overflow: hidden;
}

.scenario-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scenario-card-body {
    padding: 20px;
}

.scenario-card-body i {
    color: #0ba39e;
    font-size: 1.5rem;
}

.scenario-card h3 {
    margin-top: 10px;
    color: #08254c;
    font-size: 1.05rem;
}

.scenario-card ul {
    margin-bottom: 0;
}

.challenge-card,
.mistake-card {
    position: relative;
    padding: 24px;
}

.card-number {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: #0ba39e;
    border-radius: 50%;
    font-weight: 800;
}

.challenge-card i,
.mistake-card i {
    margin-bottom: 16px;
}

.challenge-card h3,
.mistake-card h3 {
    color: #0ba39e;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.challenge-card h4,
.mistake-card h4 {
    color: #08254c;
    font-size: 1.05rem;
    font-weight: 800;
}

.cs-observation-section {
    background:
        linear-gradient(135deg, rgba(230, 255, 251, 0.75), rgba(248, 250, 252, 1));
}

.observation-content {
    padding: 28px;
}

.accordion {
    /* max-width: 900px; */
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(8, 37, 76, 0.04);
}

.accordion-button {
    color: #08254c;
    font-weight: 800;
    background: #ffffff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #087f7b;
    background: #e6fffb;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: rgba(11, 163, 158, 0.35);
    box-shadow: 0 0 0 0.25rem rgba(11, 163, 158, 0.12);
}

.topic-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    color: #08254c;
    font-weight: 800;
}

.topic-card:hover {
    color: #087f7b;
}

.topic-card i:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    color: #0ba39e;
    background: #e6fffb;
    border-radius: 14px;
    font-size: 1.2rem;
}

.topic-card span {
    flex: 1;
}

.topic-card i:last-child {
    color: #0ba39e;
}

.section-action {
    margin-top: 32px;
}

.real-life-card,
.philosophy-card,
.start-card,
.reviewed-card {
    padding: 28px;
}

.skill-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 24px;
}

.skill-pill-list li {
    padding: 8px 14px;
    color: #087f7b;
    background: #e6fffb;
    border: 1px solid rgba(11, 163, 158, 0.25);
    border-radius: 999px;
    font-weight: 800;
}

.philosophy-summary {
    max-width: 780px;
    margin: 28px auto 0;
    text-align: center;
}

.gallery-card {
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 14px;
    color: #08254c;
    font-weight: 800;
    text-align: center;
}

.cs-about-company-section {
    background: #ffffff;
}

.training-centres {
    margin: 24px 0;
}

.training-centres h3 {
    color: #08254c;
    font-size: 1.15rem;
}

.training-centres ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.training-centres li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}

.training-centres i {
    color: #0ba39e;
}

.company-goal {
    padding: 20px;
    background: #e6fffb;
    border-radius: 20px;
}

.company-goal p:last-child {
    margin-bottom: 0;
    color: #08254c;
    font-weight: 800;
}

.company-stats-grid {
    display: grid;
    gap: 18px;
}

.company-stat-card {
    padding: 22px;
}

.company-stat-card strong,
.company-stat-card span {
    display: block;
}

.company-stat-card strong {
    margin-top: 14px;
    color: #08254c;
    font-size: 1.15rem;
    font-weight: 800;
}

.company-stat-card span {
    margin-top: 6px;
}

.start-card {
    background:
        radial-gradient(circle at top right, rgba(11, 163, 158, 0.15), transparent 34%),
        #ffffff;
}

.start-steps-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.start-steps-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #08254c;
    font-weight: 800;
}

.start-steps-list i {
    color: #0ba39e;
}

.reviewed-card {
    background: #ffffff;
}

.reviewer-photo img {
    width: 140px;
    height: 140px;
    border: 6px solid #e6fffb;
    border-radius: 50%;
    object-fit: cover;
}

/* 576px */
@media (min-width: 576px) {
    .communication-skills-page section {
        padding: 76px 0;
    }

    .hero-actions,
    .start-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-learning-list {
        padding: 26px;
    }

    .conversation-card,
    .real-life-card,
    .philosophy-card,
    .start-card,
    .reviewed-card,
    .observation-content {
        padding: 32px;
    }

    .company-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px */
@media (min-width: 768px) {
    .communication-skills-page section {
        padding: 88px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .cs-hero-section {
        padding-top: 92px;
    }

    .hero-learning-list ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-learning-list li {
        margin-bottom: 0;
    }

    .trust-stat-card {
        min-height: 130px;
    }

    .conversation-card {
        padding: 36px;
    }

    .conversation-message {
        max-width: 78%;
    }

    .mentor-message {
        margin-left: auto;
    }

    .real-life-card,
    .philosophy-card,
    .start-card,
    .reviewed-card {
        padding: 40px;
    }

    .reviewer-photo img {
        width: 160px;
        height: 160px;
    }
}

/* 992px */
@media (min-width: 992px) {
    .communication-skills-page section {
        padding: 100px 0;
    }

    .cs-hero-section {
        padding-top: 110px;
    }

    .hero-trust-strip {
        margin-top: 60px;
    }

    .trust-stat-card {
        min-height: 120px;
    }

    .scenario-card-body {
        padding: 24px;
    }

    .observation-content {
        padding: 44px;
    }

    .company-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-definition-section .feature-card {
        min-height: 150px;
        background: var(--white);
    }

    .benefit-card,
    .habit-card,
    .belief-card {
        min-height: 170px;
    }

    .challenge-card,
    .mistake-card {
        min-height: 260px;
    }
}

/* 1200px */
@media (min-width: 1200px) {
    .communication-skills-page section {
        padding: 112px 0;
    }

    .cs-hero-section h1 {
        font-size: 4.75rem;
    }

    .cs-hero-section h2 {
        font-size: 2.9rem;
    }

    .hero-subtitle {
        font-size: 2.05rem;
    }

    .section-heading {
        margin-bottom: 48px;
    }

    .hero-learning-list,
    .hero-question-card {
        max-width: 620px;
    }

    .trust-stat-card {
        padding: 28px;
    }

    .real-life-card,
    .philosophy-card,
    .start-card {
        padding: 48px;
    }
}

/* 1400px */
@media (min-width: 1400px) {
    .communication-skills-page section {
        padding: 124px 0;
    }

    .cs-hero-section {
        padding-top: 130px;
    }

    .cs-hero-section h1 {
        font-size: 5.15rem;
    }

    .cs-hero-section h2 {
        font-size: 3.15rem;
    }

    .hero-subtitle {
        font-size: 2.25rem;
    }

    .trust-stat-card,
    .company-stat-card,
    .feature-card,
    .benefit-card,
    .scenario-card,
    .challenge-card,
    .habit-card,
    .mistake-card,
    .belief-card,
    .gallery-card,
    .topic-card {
        border-radius: 24px;
    }
}

/* ===================================
   RESOURCE COMMUNICATION SKILLS END
=================================== */

/* ===================================
   RESOURCE CAREER ROADMAPS START
=================================== */

.career-roadmaps-page {
    background: #f8fafc;
    color: #475569;
    overflow: hidden;
}

.career-roadmaps-page section {
    padding: 64px 0;
}

.career-roadmaps-page h1,
.career-roadmaps-page h2,
.career-roadmaps-page h3 {
    color: #08254c;
    font-weight: 800;
    line-height: 1.15;
}

.career-roadmaps-page p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.career-roadmaps-page a {
    text-decoration: none;
}

.cr-hero-section {
    padding-top: 80px;
    background:
        radial-gradient(circle at top right, rgba(11, 163, 158, 0.12), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.cr-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(11, 163, 158, 0.1);
    color: #087f7b;
    font-size: 13px;
    font-weight: 700;
}

.cr-section-label i {
    font-size: 15px;
}

.cr-hero-section h1 {
    margin-bottom: 22px;
    font-size: clamp(34px, 8vw, 52px);
    letter-spacing: -0.04em;
}

.cr-hero-section h1 span {
    display: block;
    color: #0ba39e;
}

.cr-hero-intro {
    max-width: 620px;
    font-size: 16px;
}

.cr-hero-intro blockquote,
.cr-content-card blockquote,
.cr-step-card blockquote {
    margin: 12px 0;
    padding: 12px 16px;
    border-left: 4px solid #0ba39e;
    border-radius: 12px;
    background: #ffffff;
    color: #08254c;
    font-weight: 700;
}

.cr-hero-actions,
.cr-final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
}

.career-roadmaps-page .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 12px 22px;
    font-weight: 700;
    line-height: 1.2;
}

.career-roadmaps-page .btn-primary {
    border-color: #0ba39e;
    background: #0ba39e;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(11, 163, 158, 0.22);
}

.career-roadmaps-page .btn-primary:hover,
.career-roadmaps-page .btn-primary:focus {
    border-color: #087f7b;
    background: #087f7b;
    color: #ffffff;
}

.career-roadmaps-page .btn-outline-primary {
    border-color: rgba(11, 163, 158, 0.45);
    color: #087f7b;
    background: #ffffff;
}

.career-roadmaps-page .btn-outline-primary:hover,
.career-roadmaps-page .btn-outline-primary:focus {
    border-color: #0ba39e;
    background: rgba(11, 163, 158, 0.08);
    color: #087f7b;
}

.cr-trust-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.cr-trust-point {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    padding: 9px 13px;
    border: 1px solid rgba(8, 37, 76, 0.08);
    border-radius: 999px;
    background: #ffffff;
    color: #08254c;
    font-size: 13px;
    font-weight: 700;
}

.cr-trust-point i {
    color: #0ba39e;
}

.cr-hero-figure,
.cr-section-figure,
.cr-company-trust-card figure,
.cr-gallery-card,
.cr-reviewer-photo {
    margin: 0;
}

.cr-hero-figure img,
.cr-section-figure img {
    width: 100%;
    height: auto;
}

.cr-section-heading {
    margin-bottom: 30px;
}

.cr-section-heading.text-center .cr-section-label {
    margin-left: auto;
    margin-right: auto;
}

.cr-section-heading h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 6vw, 42px);
    letter-spacing: -0.03em;
}

.cr-section-heading p {
    max-width: 760px;
    margin-bottom: 0;
}

.cr-section-heading.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.cr-content-card,
.cr-comparison-card,
.cr-chat-card,
.cr-roadmap-category-card,
.cr-feature-card,
.cr-step-card,
.cr-mistake-card,
.cr-company-trust-card,
.cr-reviewed-card {
    border: 1px solid rgba(8, 37, 76, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(8, 37, 76, 0.06);
}

.cr-content-card,
.cr-comparison-card,
.cr-chat-card,
.cr-company-trust-card,
.cr-reviewed-card {
    padding: 24px;
}

.cr-content-card ul,
.cr-route-card ul,
.cr-roadmap-category-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.cr-content-card li,
.cr-route-card li,
.cr-roadmap-category-card li {
    margin-bottom: 8px;
}

.cr-route-card {
    height: 100%;
    padding: 22px;
    border-radius: 20px;
    background: #f8fafc;
}

.cr-card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(11, 163, 158, 0.1);
    color: #0ba39e;
    font-size: 24px;
}

.cr-route-card h3,
.cr-roadmap-category-card h3 {
    margin-bottom: 14px;
    font-size: 20px;
}

.cr-skill-timeline {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.cr-skill-step {
    padding: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(11, 163, 158, 0.16);
}

.cr-skill-step span {
    display: block;
    margin-bottom: 5px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.cr-skill-step strong {
    color: #08254c;
}

.cr-chat-message {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.cr-chat-mentor {
    flex-direction: row-reverse;
}

.cr-chat-avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(11, 163, 158, 0.12);
    color: #087f7b;
}

.cr-chat-bubble {
    max-width: 760px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f8fafc;
}

.cr-chat-bubble span {
    display: block;
    margin-bottom: 4px;
    color: #087f7b;
    font-size: 13px;
    font-weight: 800;
}

.cr-chat-bubble p,
.cr-chat-note p {
    margin-bottom: 0;
}

.cr-chat-note {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(8, 37, 76, 0.08);
}

.cr-feature-card {
    padding: 24px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cr-feature-card i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: rgba(11, 163, 158, 0.1);
    color: #0ba39e;
    font-size: 28px;
}

.cr-feature-card h3 {
    margin-bottom: 0;
    font-size: 17px;
}

.cr-feature-card:hover,
.cr-roadmap-category-card:hover,
.cr-mistake-card:hover {
    transform: translateY(-4px);
}

.cr-section-note {
    margin-top: 24px;
    color: #08254c;
    font-weight: 700;
}

.cr-roadmap-category-card {
    padding: 24px;
    transition: transform 0.25s ease;
}

.cr-roadmap-category-card a {
    color: #475569;
    font-weight: 600;
}

.cr-roadmap-category-card a:hover,
.cr-roadmap-category-card a:focus {
    color: #087f7b;
}

.cr-steps-wrapper {
    display: grid;
    gap: 18px;
}

.cr-step-card {
    padding: 24px;
    position: relative;
}

.cr-step-number {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #0ba39e;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.cr-step-card h3,
.cr-mistake-card h3,
.cr-feature-card h3 {
    font-size: 18px;
}

.cr-mistake-card {
    padding: 22px;
}

.cr-mistake-card i {
    color: #ef4444;
    font-size: 28px;
}

.cr-mistake-card span {
    display: block;
    margin: 12px 0 8px;
    color: #ef4444;
    font-size: 13px;
    font-weight: 800;
}

.cr-mistake-card h3 {
    margin-bottom: 0;
}

.cr-faq-accordion .accordion-item {
    margin-bottom: 12px;
    border: 1px solid rgba(8, 37, 76, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.cr-faq-accordion .accordion-button {
    color: #08254c;
    font-weight: 800;
    box-shadow: none;
}

.cr-faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(11, 163, 158, 0.08);
    color: #087f7b;
}

.cr-faq-accordion .accordion-body {
    color: #475569;
}

.cr-philosophy-flow {
    display: grid;
    justify-content: center;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto;
}

.cr-philosophy-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(8, 37, 76, 0.08);
    color: #08254c;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(8, 37, 76, 0.05);
}

.cr-philosophy-step i {
    color: #0ba39e;
    font-size: 22px;
}

.cr-flow-arrow {
    text-align: center;
    color: #0ba39e;
    font-size: 22px;
}

.cr-topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cr-topic-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid rgba(11, 163, 158, 0.22);
    border-radius: 999px;
    background: #ffffff;
    color: #08254c;
    font-weight: 700;
}

.cr-topic-link:hover,
.cr-topic-link:focus {
    background: #0ba39e;
    color: #ffffff;
}

.cr-gallery-card {
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(8, 37, 76, 0.08);
    box-shadow: 0 14px 34px rgba(8, 37, 76, 0.05);
}

.cr-gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.cr-gallery-card figcaption {
    padding: 14px;
    color: #08254c;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.cr-company-trust-card {
    overflow: hidden;
}

.cr-company-trust-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.cr-company-stats {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.cr-company-stat {
    display: grid;
    gap: 4px;
}

.cr-company-stat i {
    color: #0ba39e;
    font-size: 22px;
}

.cr-company-stat strong {
    color: #08254c;
}

.cr-company-stat span {
    font-size: 14px;
}

.cr-final-cta-card {
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at right, rgba(255, 255, 255, 0.2), transparent 35%),
        linear-gradient(135deg, #0ba39e, #087f7b);
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(11, 163, 158, 0.25);
}

.cr-final-cta-card h2,
.cr-final-cta-card p {
    color: #ffffff;
}

.cr-final-cta-card h2 {
    font-size: clamp(28px, 6vw, 42px);
}

.cr-final-cta-card .btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.7);
    background: transparent;
    color: #ffffff;
}

.cr-final-cta-card .btn-outline-primary:hover,
.cr-final-cta-card .btn-outline-primary:focus {
    background: #ffffff;
    color: #087f7b;
}

.cr-reviewed-card {
    padding: 24px;
}

.cr-reviewer-photo {
    width: 110px;
    height: 110px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid rgba(11, 163, 158, 0.18);
}

.cr-reviewer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cr-reviewed-card h2 {
    margin-bottom: 6px;
    font-size: 28px;
}

.cr-reviewed-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(11, 163, 158, 0.1);
    color: #087f7b;
    font-size: 14px;
    font-weight: 800;
}

.career-roadmaps-page :focus-visible {
    outline: 3px solid rgba(11, 163, 158, 0.35);
    outline-offset: 3px;
}

/* 576px */
@media (min-width: 576px) {
    .cr-hero-actions,
    .cr-final-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cr-trust-points {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cr-skill-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px */
@media (min-width: 768px) {
    .career-roadmaps-page section {
        padding: 80px 0;
    }

    .cr-content-card,
    .cr-comparison-card,
    .cr-chat-card,
    .cr-company-trust-card,
    .cr-reviewed-card {
        padding: 30px;
    }

    .cr-steps-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .cr-topic-link {
        min-height: 48px;
    }

    .cr-reviewed-card {
        padding: 32px;
    }
}

/* 992px */
@media (min-width: 992px) {
    .career-roadmaps-page section {
        padding: 96px 0;
    }

    .cr-hero-section {
        padding-top: 110px;
        padding-bottom: 100px;
    }

    .cr-section-heading {
        margin-bottom: 40px;
    }

    .cr-skill-timeline {
        grid-template-columns: repeat(4, 1fr);
    }

    .cr-steps-wrapper {
        grid-template-columns: repeat(5, 1fr);
    }

    .cr-step-card {
        min-height: 100%;
    }

    .cr-final-cta-card {
        padding: 46px;
    }
}

/* 1200px */
@media (min-width: 1200px) {
    .cr-hero-section h1 {
        font-size: 58px;
    }

    .cr-hero-intro {
        font-size: 17px;
    }

    .cr-section-heading h2 {
        font-size: 44px;
    }

    .cr-content-card,
    .cr-comparison-card,
    .cr-chat-card {
        padding: 34px;
    }
}

/* 1400px */
@media (min-width: 1400px) {
    .career-roadmaps-page section {
        padding: 110px 0;
    }

    .cr-hero-section {
        padding-top: 120px;
    }

    .cr-hero-section h1 {
        font-size: 64px;
    }

    .cr-final-cta-card {
        padding: 56px;
    }
}

/* ===================================
   RESOURCE CAREER ROADMAPS END
=================================== */


/* ===================================
   RESOURCE INTERVIEW BASICS START
=================================== */

/* Interview Basics Page CSS */

.interview-basics-page {
    background: #f8fafc;
    color: #475569;
    overflow-x: hidden;
}

.interview-basics-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ib-section,
.ib-hero-section {
    padding: 72px 0;
}

.ib-hero-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(11, 163, 158, 0.14), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 55%, rgba(11, 163, 158, 0.08) 100%);
}

.ib-section-header {
    max-width: 760px;
    margin-bottom: 32px;
}

.ib-section-header h2,
.ib-content-card h2,
.ib-highlight-card h2,
.ib-cta-card h2,
.ib-review-content h2 {
    margin-bottom: 14px;
    color: #08254c;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.18;
}

.ib-hero-section h1 {
    margin: 18px 0 10px;
    color: #08254c;
    font-size: clamp(2.5rem, 6vw, 4.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.ib-hero-section h2 {
    margin-bottom: 24px;
    color: #087f7b;
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
}

.interview-basics-page h3 {
    color: #08254c;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
}

.interview-basics-page p,
.interview-basics-page li {
    font-size: 1rem;
    line-height: 1.75;
}

.interview-basics-page ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.ib-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(11, 163, 158, 0.18);
    border-radius: 999px;
    background: rgba(11, 163, 158, 0.08);
    color: #087f7b;
    font-size: 0.88rem;
    font-weight: 700;
}

.ib-hero-actions,
.ib-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.interview-basics-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.interview-basics-page .btn-primary {
    border-color: #0ba39e;
    background: #0ba39e;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(11, 163, 158, 0.22);
}

.interview-basics-page .btn-primary:hover,
.interview-basics-page .btn-primary:focus {
    border-color: #087f7b;
    background: #087f7b;
    color: #ffffff;
}

.interview-basics-page .btn-outline-primary {
    border-color: rgba(11, 163, 158, 0.45);
    background: #ffffff;
    color: #087f7b;
}

.interview-basics-page .btn-outline-primary:hover,
.interview-basics-page .btn-outline-primary:focus {
    border-color: #087f7b;
    background: rgba(11, 163, 158, 0.08);
    color: #087f7b;
}

.interview-basics-page a:focus-visible,
.interview-basics-page button:focus-visible {
    outline: 3px solid rgba(11, 163, 158, 0.35);
    outline-offset: 3px;
}

.ib-trust-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
}

.ib-stat-item,
.ib-stat-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.ib-stat-item i,
.ib-stat-card i {
    flex: 0 0 auto;
    color: #0ba39e;
    font-size: 1.45rem;
}

.ib-stat-item strong,
.ib-stat-card strong {
    display: block;
    color: #08254c;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
}

.ib-stat-item span,
.ib-stat-card span {
    display: block;
    margin-top: 3px;
    color: #475569;
    font-size: 0.9rem;
}

.ib-hero-image,
.ib-section-image,
.ib-gallery-card,
.ib-review-photo {
    margin: 0;
}

.ib-hero-image img,
.ib-section-image img {
    width: 100%;
    border-radius: 28px;
}

.ib-content-card,
.ib-conversation-card,
.ib-highlight-card,
.ib-cta-card,
.ib-review-card,
.ib-trust-panel,
.ib-info-card,
.ib-feature-card,
.ib-step-card,
.ib-mistake-card,
.ib-topic-card {
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.ib-content-card,
.ib-conversation-card,
.ib-highlight-card,
.ib-cta-card {
    padding: 28px;
}

.ib-feature-card,
.ib-info-card,
.ib-step-card,
.ib-mistake-card {
    height: 100%;
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ib-feature-card:hover,
.ib-info-card:hover,
.ib-step-card:hover,
.ib-mistake-card:hover,
.ib-topic-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 163, 158, 0.32);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.09);
}

.ib-feature-card i,
.ib-info-card i,
.ib-step-card i,
.ib-topic-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(11, 163, 158, 0.1);
    color: #0ba39e;
    font-size: 1.55rem;
}

.ib-mistake-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    font-size: 1.45rem;
}

.ib-step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #0ba39e;
    color: #ffffff;
    font-weight: 800;
}

.ib-chat-message {
    max-width: 92%;
    margin-bottom: 16px;
    padding: 16px 18px;
    border-radius: 18px;
}

.ib-chat-message strong {
    display: block;
    margin-bottom: 4px;
    color: #08254c;
}

.ib-chat-message p {
    margin-bottom: 0;
}

.ib-chat-student {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.ib-chat-mentor {
    margin-left: auto;
    background: rgba(11, 163, 158, 0.09);
    border: 1px solid rgba(11, 163, 158, 0.22);
}

.ib-note-card {
    margin-top: 20px;
    padding: 18px 20px;
    border-left: 4px solid #0ba39e;
    border-radius: 16px;
    background: rgba(11, 163, 158, 0.08);
}

.ib-note-card p:last-child,
.ib-content-card p:last-child,
.ib-highlight-card p:last-child,
.ib-cta-card p:last-child {
    margin-bottom: 0;
}

.ib-fresher-think-section blockquote {
    margin: 0 0 18px;
    padding: 20px;
    border-left: 4px solid #0ba39e;
    border-radius: 16px;
    background: rgba(11, 163, 158, 0.08);
    color: #08254c;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
}

.ib-student-faq-section .accordion,
.ib-parent-faq-section .accordion {
    display: grid;
    gap: 14px;
}

.ib-student-faq-section .accordion-item,
.ib-parent-faq-section .accordion-item {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.ib-student-faq-section .accordion-button,
.ib-parent-faq-section .accordion-button {
    color: #08254c;
    font-weight: 700;
    box-shadow: none;
}

.ib-student-faq-section .accordion-button:not(.collapsed),
.ib-parent-faq-section .accordion-button:not(.collapsed) {
    background: rgba(11, 163, 158, 0.08);
    color: #087f7b;
}

.ib-topic-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 20px;
    color: #08254c;
    font-weight: 700;
    text-decoration: none;
}

.ib-topic-card span {
    line-height: 1.35;
}

.ib-highlight-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 94% 12%, rgba(11, 163, 158, 0.2), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, rgba(11, 163, 158, 0.08) 100%);
}

.ib-gallery-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.ib-gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ib-gallery-card figcaption {
    padding: 16px;
    color: #08254c;
    font-weight: 700;
    line-height: 1.35;
}

.ib-trust-panel {
    display: grid;
    gap: 18px;
    padding: 22px;
}

.ib-cta-card {
    background:
        radial-gradient(circle at 85% 28%, rgba(11, 163, 158, 0.16), transparent 30%),
        #ffffff;
}

.ib-review-card {
    display: grid;
    gap: 24px;
    padding: 28px;
}

.ib-review-photo img {
    width: 128px;
    height: 128px;
    border: 6px solid rgba(11, 163, 158, 0.12);
    border-radius: 50%;
    object-fit: cover;
}

.ib-review-content h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

@media (min-width: 576px) {
    .ib-hero-actions,
    .ib-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ib-trust-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .ib-content-card,
    .ib-conversation-card,
    .ib-highlight-card,
    .ib-cta-card,
    .ib-review-card {
        padding: 34px;
    }
}

@media (min-width: 768px) {
    .ib-section,
    .ib-hero-section {
        padding: 88px 0;
    }

    .interview-basics-page p,
    .interview-basics-page li {
        font-size: 1.05rem;
    }

    .ib-section-header {
        margin-bottom: 40px;
    }

    .ib-review-card {
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    .ib-chat-message {
        max-width: 74%;
    }
}

@media (min-width: 992px) {
    .ib-section,
    .ib-hero-section {
        padding: 108px 0;
    }

    .ib-section-header {
        text-align: left;
    }

    .ib-hero-section {
        min-height: 760px;
        display: flex;
        align-items: center;
    }

    .ib-content-card,
    .ib-conversation-card,
    .ib-highlight-card,
    .ib-cta-card {
        padding: 42px;
    }

    .ib-feature-card,
    .ib-info-card,
    .ib-step-card,
    .ib-mistake-card {
        padding: 28px;
    }

    .ib-student-faq-section .accordion,
    .ib-parent-faq-section .accordion {
        /* max-width: 920px; */
    }
}

@media (min-width: 1200px) {
    .ib-section,
    .ib-hero-section {
        padding: 120px 0;
    }

    .ib-section-header {
        margin-bottom: 48px;
    }

    .ib-hero-image img {
        transform: scale(1.04);
    }

    .ib-content-card,
    .ib-conversation-card,
    .ib-highlight-card,
    .ib-cta-card {
        padding: 48px;
    }
}

@media (min-width: 1400px) {
    .interview-basics-page .container {
        max-width: 1320px;
    }

    .ib-hero-section h1 {
        font-size: 4.6rem;
    }

    .ib-hero-section h2 {
        font-size: 2.35rem;
    }
}

/* ===================================
   RESOURCE INTERVIEW BASICS  END
=================================== */

/* ===================================
   RESOURCE WORKPLACE READINESS START
=================================== */

/* Workplace Readiness Page CSS */
.workplace-readiness-page {
    background: #f8fafc;
    color: #475569;
    overflow: hidden;
}

.workplace-readiness-page img {
    max-width: 100%;
    height: auto;
}

.workplace-readiness-page a {
    text-decoration: none;
}

.section-padding {
    padding: 64px 0;
}

.workplace-readiness-page h1,
.workplace-readiness-page h2,
.workplace-readiness-page h3 {
    color: #08254c;
    font-weight: 800;
    line-height: 1.2;
}

.workplace-readiness-page h1 {
    font-size: clamp(2.2rem, 7vw, 3.6rem);
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.workplace-readiness-page h2 {
    font-size: clamp(1.8rem, 5vw, 2.75rem);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.workplace-readiness-page h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.workplace-readiness-page p,
.workplace-readiness-page li {
    font-size: 1rem;
    line-height: 1.75;
}

.wr-section-header {
    max-width: 760px;
    margin: 0 auto 36px;
}

.wr-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(11, 163, 158, 0.1);
    color: #087f7b;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.wr-section-badge i {
    font-size: 1rem;
}

.workplace-readiness-page .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.workplace-readiness-page .btn-primary {
    background: #0ba39e;
    border-color: #0ba39e;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(11, 163, 158, 0.22);
}

.workplace-readiness-page .btn-primary:hover,
.workplace-readiness-page .btn-primary:focus {
    background: #087f7b;
    border-color: #087f7b;
    color: #ffffff;
    transform: translateY(-2px);
}

.workplace-readiness-page .btn-outline-primary {
    color: #0ba39e;
    border-color: rgba(11, 163, 158, 0.35);
    background: #ffffff;
}

.workplace-readiness-page .btn-outline-primary:hover,
.workplace-readiness-page .btn-outline-primary:focus {
    background: rgba(11, 163, 158, 0.08);
    color: #087f7b;
    border-color: #0ba39e;
    transform: translateY(-2px);
}

.wr-hero {
    background:
        radial-gradient(circle at top right, rgba(11, 163, 158, 0.12), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding-top: 72px;
}

.wr-hero-lead {
    max-width: 620px;
    font-size: 1.08rem;
    margin-bottom: 24px;
}

.wr-preparation-box,
.wr-goal-box,
.wr-definition-card,
.wr-check-list-card,
.wr-tip-card,
.wr-reassurance-card,
.wr-email-preview,
.wr-final-cta-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(8, 37, 76, 0.06);
}

.wr-preparation-box {
    padding: 22px;
    margin-bottom: 24px;
}

.wr-preparation-box h2 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.wr-preparation-box ul,
.wr-icon-list,
.wr-check-list-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.wr-preparation-box li,
.wr-icon-list li,
.wr-check-list-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.wr-preparation-box i,
.wr-icon-list i,
.wr-check-list-card i {
    color: #0ba39e;
    flex: 0 0 auto;
    margin-top: 4px;
}

.wr-question-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.wr-question-card,
.wr-feature-card,
.wr-step-card,
.wr-challenge-card,
.wr-mistake-card,
.wr-topic-card,
.wr-stat-card,
.wr-gallery-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(8, 37, 76, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wr-question-card:hover,
.wr-feature-card:hover,
.wr-step-card:hover,
.wr-challenge-card:hover,
.wr-mistake-card:hover,
.wr-topic-card:hover,
.wr-stat-card:hover,
.wr-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(8, 37, 76, 0.1);
    border-color: rgba(11, 163, 158, 0.25);
}

.wr-question-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    color: #08254c;
    font-weight: 700;
}

.wr-question-card i,
.wr-feature-card > i,
.wr-topic-card > i,
.wr-stat-card > i,
.wr-trust-item > i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(11, 163, 158, 0.1);
    color: #0ba39e;
    font-size: 1.35rem;
}

.wr-goal-box {
    padding: 20px;
    margin-bottom: 24px;
}

.wr-goal-box p:last-child,
.wr-preparation-box p:last-child,
.wr-reassurance-card p:last-child,
.wr-tip-card p:last-child {
    margin-bottom: 0;
}

.wr-hero-actions,
.wr-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wr-hero-visual {
    position: relative;
    margin: 32px 0 0;
    padding: 18px;
    background: linear-gradient(135deg, rgba(11, 163, 158, 0.1), rgba(255, 255, 255, 0.6));
    border-radius: 28px;
}

.wr-hero-visual img {
    border-radius: 24px;
}

.wr-trust-strip {
    display: grid;
    gap: 16px;
    margin-top: 38px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(8, 37, 76, 0.08);
}

.wr-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wr-trust-item strong,
.wr-stat-card strong {
    display: block;
    color: #08254c;
    font-size: 1.15rem;
    line-height: 1.2;
}

.wr-trust-item span,
.wr-stat-card span {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
}

.wr-definition,
.wr-employer-expectations,
.wr-meetings,
.wr-teamwork,
.wr-parent-faq,
.wr-action-gallery,
.wr-reviewed {
    background: #f8fafc;
}

.wr-importance,
.wr-student-question,
.wr-first-day,
.wr-communication,
.wr-emails,
.wr-challenges,
.wr-mistakes,
.wr-student-faq,
.wr-topics,
.wr-observed,
.wr-philosophy,
.wr-about-company,
.wr-start,
.wr-final-cta {
    background: #ffffff;
}

.wr-definition-card {
    max-width: 900px;
    margin: 0 auto 32px;
    padding: 24px;
    text-align: center;
}

.wr-feature-card {
    height: 100%;
    padding: 24px;
    text-align: center;
}

.wr-feature-card > i {
    margin-bottom: 18px;
}

.wr-comparison-card {
    height: 100%;
    padding: 26px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    box-shadow: 0 16px 42px rgba(8, 37, 76, 0.06);
}

.wr-comparison-card img {
    margin-top: 18px;
    border-radius: 18px;
}

.wr-vs-circle {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(11, 163, 158, 0.35);
    color: #087f7b;
    font-size: 1.4rem;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(8, 37, 76, 0.08);
}

.wr-check-list-card {
    margin-top: 28px;
    padding: 24px;
}

.wr-chat-card {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.wr-chat-card p {
    padding: 14px 16px;
    margin: 0;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 25px rgba(8, 37, 76, 0.05);
}

.wr-quote-card {
    padding: 26px;
    margin: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(11, 163, 158, 0.1), rgba(255, 255, 255, 0.95));
    border-left: 5px solid #0ba39e;
    box-shadow: 0 16px 38px rgba(8, 37, 76, 0.06);
}

.wr-quote-card p {
    margin: 0;
    color: #08254c;
    font-size: 1.18rem;
    font-weight: 800;
}

.wr-step-card {
    position: relative;
    height: 100%;
    padding: 26px 20px;
    text-align: center;
}

.wr-step-card span {
    position: absolute;
    top: -14px;
    left: 50%;
    width: 32px;
    height: 32px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0ba39e;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(11, 163, 158, 0.28);
}

.wr-step-card i {
    display: block;
    margin: 14px 0;
    color: #0ba39e;
    font-size: 2rem;
}

.wr-step-card h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

.wr-reassurance-card {
    max-width: 860px;
    margin: 32px auto 0;
    padding: 20px 24px;
    background: rgba(11, 163, 158, 0.08);
    border-color: rgba(11, 163, 158, 0.16);
}

.wr-tip-card {
    padding: 18px 20px;
    margin-top: 22px;
    background: rgba(11, 163, 158, 0.08);
    border-color: rgba(11, 163, 158, 0.16);
}

.wr-email-preview {
    padding: 26px;
}

.wr-email-preview-header {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.wr-email-preview-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(11, 163, 158, 0.35);
}

.wr-challenge-card,
.wr-mistake-card {
    height: 100%;
    padding: 22px;
}

.wr-challenge-card span,
.wr-mistake-card span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.wr-challenge-card span {
    background: rgba(11, 163, 158, 0.1);
    color: #087f7b;
}

.wr-mistake-card {
    border-color: rgba(245, 158, 11, 0.25);
}

.wr-mistake-card span {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}

.wr-accordion {
    max-width: 960px;
    margin: 0 auto;
}

.wr-accordion .accordion-item {
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 10px 26px rgba(8, 37, 76, 0.04);
}

.wr-accordion .accordion-button {
    color: #08254c;
    font-weight: 800;
    box-shadow: none;
    padding: 18px 20px;
}

.wr-accordion .accordion-button:not(.collapsed) {
    color: #087f7b;
    background: rgba(11, 163, 158, 0.08);
}

.wr-accordion .accordion-button:focus {
    border-color: #0ba39e;
    box-shadow: 0 0 0 0.2rem rgba(11, 163, 158, 0.18);
}

.wr-topic-card {
    height: 100%;
    padding: 24px;
}

.wr-topic-card > i {
    margin-bottom: 18px;
}

.wr-topic-card a {
    display: inline-flex;
    margin-top: 10px;
    color: #087f7b;
    font-weight: 900;
}

.wr-topic-card a:hover,
.wr-topic-card a:focus {
    color: #0ba39e;
    text-decoration: underline;
}

.wr-gallery-card {
    overflow: hidden;
    margin: 0;
}

.wr-gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.wr-gallery-card figcaption {
    padding: 14px;
    color: #08254c;
    font-weight: 800;
    text-align: center;
}

.wr-company-stats {
    display: grid;
    gap: 16px;
}

.wr-stat-card {
    padding: 22px;
}

.wr-stat-card > i {
    margin-bottom: 14px;
}

.wr-start {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 30%),
        linear-gradient(135deg, #0ba39e 0%, #087f7b 100%);
}

.wr-start h2,
.wr-start h3,
.wr-start p,
.wr-start li,
.wr-start .wr-icon-list i {
    color: #ffffff;
}

.wr-start .wr-section-badge {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.wr-start .btn-primary {
    background: #ffffff;
    border-color: #ffffff;
    color: #087f7b;
    box-shadow: 0 16px 34px rgba(8, 37, 76, 0.2);
}

.wr-start .btn-primary:hover,
.wr-start .btn-primary:focus {
    background: #f8fafc;
    border-color: #f8fafc;
    color: #08254c;
}

.wr-reviewer-card {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(8, 37, 76, 0.08);
}

.wr-reviewer-card figure {
    margin: 0;
}

.wr-reviewer-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 22px;
}

.wr-final-cta {
    background: #ffffff;
}

.wr-final-cta-card {
    padding: 42px 24px;
    background:
        radial-gradient(circle at top right, rgba(11, 163, 158, 0.16), transparent 35%),
        #08254c;
}

.wr-final-cta-card h2,
.wr-final-cta-card p {
    color: #ffffff;
}

.wr-final-cta-card .wr-section-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.wr-final-cta-card .btn-outline-primary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
}

.wr-final-cta-card .btn-outline-primary:hover,
.wr-final-cta-card .btn-outline-primary:focus {
    background: #ffffff;
    color: #087f7b;
}

@media (min-width: 576px) {
    .section-padding {
        padding: 76px 0;
    }

    .wr-question-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wr-hero-actions,
    .wr-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .wr-trust-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .wr-reviewer-card {
        grid-template-columns: 160px 1fr;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .section-padding {
        padding: 88px 0;
    }

    .wr-section-header {
        margin-bottom: 46px;
    }

    .wr-definition-card,
    .wr-check-list-card,
    .wr-email-preview,
    .wr-final-cta-card {
        padding: 34px;
    }

    .wr-company-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .wr-final-cta-card {
        padding: 64px 48px;
    }
}

@media (min-width: 992px) {
    .section-padding {
        padding: 104px 0;
    }

    .wr-hero {
        padding-top: 110px;
    }

    .wr-hero-visual {
        margin-top: 0;
    }

    .wr-trust-strip {
        max-width: 940px;
        margin: 54px auto 0;
        padding: 22px 28px;
    }

    .wr-check-list-card {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 28px;
        align-items: center;
    }

    .wr-reviewer-card {
        padding: 34px;
    }
}

@media (min-width: 1200px) {
    .workplace-readiness-page h1 {
        font-size: 4rem;
    }

    .wr-hero-lead {
        font-size: 1.15rem;
    }

    .wr-question-grid {
        max-width: 620px;
    }

    .wr-feature-card,
    .wr-topic-card,
    .wr-step-card {
        padding: 28px;
    }
}

@media (min-width: 1400px) {
    .section-padding {
        padding: 116px 0;
    }

    .wr-hero {
        padding-top: 120px;
    }

    .workplace-readiness-page .container {
        max-width: 1240px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .workplace-readiness-page *,
    .workplace-readiness-page *::before,
    .workplace-readiness-page *::after {
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* ===================================
   RESOURCE WORKPLACE READINESS END
=================================== */


/* ===================================
   FOOTER START
=================================== */

/* ---------- Base ---------- */


/* ---------- Footer Shell ---------- */
.ics-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-family: 'Nunito', sans-serif;
    font-size: 0.825rem;
    line-height: 1.65;
    /* border-top: 3px solid var(--footer-accent); */
}

/* ---------- Inner Grid ---------- */
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 32px;
    display: grid;
    grid-template-columns:
        1.6fr          /* Brand      */
        1.4fr          /* Powered By */
        1fr            /* Company    */
        1.4fr          /* Policies   */
        1.1fr          /* Offices    */
        1fr;           /* Vision     */
    gap: 28px 20px;
    align-items: start;
}

/* ---------- Column Dividers ---------- */
.footer-col + .footer-col {
    border-left: 1px solid var(--footer-border);
    padding-left: 20px;
}

/* ---------- Brand Column ---------- */
.brand-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 10px;
    line-height: 1.1;
}

.logo-ics {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
}

.logo-full {
    font-family: 'Sora', sans-serif;
    /* font-size: 0.7rem;
    font-weight: 600; */
    font-size: 1rem;
    font-weight: 800;
    color: var(--footer-gold);
    letter-spacing: 0.04em;
    /* text-transform: uppercase; */
}

.brand-tagline {
    margin: 0 0 16px;
    font-size: 0.78rem;
    color: var(--footer-text);
    max-width: 200px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* width: 34px;
    height: 34px; */
    width:38px;
    height:38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--footer-text);
    text-decoration: none;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-icon:hover,
.social-icon:focus-visible {
    background: var(--footer-gold);
    color: var(--footer-bg);
    transform: translateY(-2px);
    outline: none;
}

/* ---------- Powered By Column ---------- */
.powered-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--footer-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 4px;
}

.eargs-logo-link {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
    margin-bottom: 8px;
}

.eargs-hindi {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--footer-accent);
    font-family: serif;
    line-height: 1;
}
/* 
.eargs-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1;
    font-style: italic;
} */

.eargs-tm {
    font-size: 0.6rem;
    color: var(--footer-text);
    vertical-align: super;
}

.eargs-name {
    font-size: 0.78rem;
    color: var(--white);
    margin: 0 0 4px;
    line-height: 1.4;
}

.eargs-tagline {
    font-size: 0.72rem;
    color: var(--footer-text);
    margin: 0 0 10px;
    font-style: italic;
}

.eargs-website {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--footer-gold);
    text-decoration: none;
    transition: color var(--transition);
}

.eargs-website:hover,
.eargs-website:focus-visible {
    color: var(--white);
    text-decoration: underline;
    outline: none;
}

/* ---------- Headings ---------- */
.footer-heading {
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--footer-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--footer-border);
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 28px;
    height: 2px;
    background: var(--footer-gold);
}

/* ---------- Links ---------- */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-links a {
    color: var(--footer-link);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--footer-gold);
    padding-left: 4px;
    outline: none;
}

/* ---------- Offices ---------- */
.footer-offices {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--footer-text);
}

.office-item svg {
    color: var(--footer-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.office-item strong {
    color: var(--white);
    display: block;
    font-size: 0.82rem;
}

/* ---------- Vision ---------- */
.footer-vision p {
    font-size: 0.82rem;
    color: var(--footer-text);
    line-height: 1.6;
    max-width: 160px;
}

/* ---------- Bottom Bar ---------- */
.footer-bottom {
    background-color: var(--footer-bg-deep);
    border-top: 1px solid var(--footer-border);
    padding: 14px 24px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.73rem;
    color: rgba(184, 198, 224, 0.6);
}

/* ===================================
   RESPONSIVE
=================================== */


/* Tablet: 2-column grid */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
    }

    .footer-col + .footer-col {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--footer-border);
        padding-top: 20px;
    }

    /* Brand and Powered By sit side by side */
    .footer-brand  { grid-column: 1; border-top: none !important; padding-top: 0 !important; }
    .footer-powered { grid-column: 2; border-top: none !important; padding-top: 0 !important; border-left: 1px solid var(--footer-border) !important; padding-left: 16px !important; }
}

/* Small Tablet / Large Mobile */
@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand,
    .footer-powered {
        grid-column: span 1;
    }

    .footer-powered {
        border-left: 1px solid var(--footer-border) !important;
        padding-left: 16px !important;
        border-top: none !important;
        padding-top: 0 !important;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 28px 16px 24px;
    }

    .footer-col + .footer-col {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--footer-border);
        padding-top: 16px;
    }

    .footer-powered {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 1px solid var(--footer-border) !important;
        padding-top: 16px !important;
    }

    .logo-ics { font-size: 1.75rem; }

    .footer-bottom {
        padding: 12px 16px;
    }
}

/* ===================================
   FOOTER END
=================================== */


/* ===================================
   ABOUT US HERO START
=================================== */

.ab-hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #fafbff 60%, #eef1fa 100%);
    padding: 72px 0 60px;
    overflow: hidden;
}

.ab-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ab-hero__text h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 16px;
}

.ab-hero__subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.4;
}

.ab-hero__desc {
    color: var(--text-mid);
    margin-bottom: 28px;
    font-size: 0.93rem;
    max-width: 440px;
}

/* Hero Visual */
.ab-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.ab-hero__bg-circle {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, #d6e0ff 0%, #eef1fd 70%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.ab-hero__signpost {
    position: relative;
    z-index: 1;
    width: 340px;
    height: 320px;
}

.signpost-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
}

.signpost-pole {
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: 0;
    width: 6px;
    background: var(--navy);
    transform: translateX(-50%);
    border-radius: 3px;
    z-index: 1;
}

.signpost-arms {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.sp-arm {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1.5px solid var(--grey-border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.sp-arm--tl { top: 10px; left: 0; }
.sp-arm--tr { top: 10px; right: 0; }
.sp-arm--ml { top: 50%; left: 5px; transform: translateY(-50%); }
.sp-arm--mr { top: 50%; right: 5px; transform: translateY(-50%); }
.sp-arm--bl { bottom: 20px; left: 10px; }

.sp-icon { font-size: 1rem; }

.sp-question {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue);
    font-family: var(--font-head);
    line-height: 1;
    text-shadow: 0 4px 12px rgba(26,63,196,.20);
}

.ab-hero__students {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.student-avatar {
    font-size: 2.6rem;
    animation: float 3s ease-in-out infinite;
}
.s2 { animation-delay: 0.4s; }
.s3 { animation-delay: 0.8s; }
.s4 { animation-delay: 1.2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

/* ===================================
   RESPONSIVE
=================================== */

/* ===================================
   ABOUT US HERO END
=================================== */

/* ===================================
   LEGAL START
=================================== */

.legal-hero{
    min-height:340px;
    padding:70px 0;
    background:
        radial-gradient(circle at 78% 45%, rgba(11,163,158,.12), transparent 28%),
        linear-gradient(135deg,#f7ffff 0%,#eefafa 100%);
    display:flex;
    align-items:center;
}

.legal-hero h1{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    color:var(--heading);
    margin-bottom:25px;
}

.legal-hero p{
    max-width:680px;
    color:var(--text);
    font-size:17px;
    line-height:1.8;
    margin-bottom:25px;
}

.legal-date{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--text);
    font-size:16px;
}

.legal-date i,
.legal-date strong{
    color:var(--primary);
}

.legal-page-section{
    padding:45px 0 25px;
    background:var(--white);
}

.legal-layout{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:40px;
    align-items:start;
}

.legal-sidebar{
    position:sticky;
    top:100px;
}

.legal-sidebar-card{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:10px;
    padding:24px 10px;
    box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.legal-sidebar-card h2{
    font-size:21px;
    font-weight:700;
    color:var(--heading);
    margin:0 18px 20px;
}

.legal-sidebar-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.legal-sidebar-card li{
    margin-bottom:4px;
}

.legal-sidebar-card a{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 18px;
    color:var(--text);
    font-size:15px;
    text-decoration:none;
    border-radius:8px;
    transition:.25s ease;
}

.legal-sidebar-card a i{
    font-size:20px;
    color:#64748b;
}

.legal-sidebar-card a:hover,
.legal-sidebar-card a.active{
    background:var(--primary-extra-light);
    color:var(--primary);
    font-weight:600;
}

.legal-sidebar-card a:hover i,
.legal-sidebar-card a.active i{
    color:var(--primary);
}

.legal-main-card{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:18px;
    padding:28px 38px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.legal-policy-item{
    display:grid;
    grid-template-columns:54px 1fr;
    gap:22px;
    padding:24px 0;
    scroll-margin-top:120px;
}

.legal-policy-item:not(:last-child){
    border-bottom:1px solid #e5e7eb;
}

.legal-icon{
    width:54px;
    height:54px;
    border-radius:50%;
    background:var(--primary-light);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.legal-icon i{
    font-size:25px;
    color:var(--primary);
}

.legal-icon.warning{
    background:var(--warning-light);
}

.legal-icon.warning i{
    color:var(--warning);
}

.legal-content h2{
    font-size:24px;
    font-weight:800;
    color:var(--heading);
    margin:0 0 16px;
}

.legal-content p{
    font-size:15.5px;
    line-height:1.8;
    color:var(--text);
    margin-bottom:14px;
}

.legal-content ul{
    margin:12px 0 14px;
    padding-left:20px;
}

.legal-content li{
    color:var(--text);
    line-height:1.8;
    margin-bottom:6px;
}

.legal-info-box{
    background:var(--primary-extra-light);
    border-radius:10px;
    padding:16px 22px;
    margin-top:14px;
    display:flex;
    align-items:center;
    gap:14px;
    color:var(--text);
}

.legal-info-box i{
    font-size:22px;
    color:var(--primary);
}

.legal-info-box strong{
    color:var(--primary);
}

.legal-link{
    color:var(--primary);
    font-weight:700;
    text-decoration:none;
}

.legal-trust-box{
    margin-top:24px;
    background:var(--primary-extra-light);
    border-radius:12px;
    padding:22px 32px;
    display:grid;
    grid-template-columns:80px 1fr auto;
    align-items:center;
    gap:20px;
}

.trust-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
}

.trust-icon i{
    font-size:32px;
    color:var(--primary);
}

.legal-trust-box h3{
    font-size:23px;
    font-weight:800;
    color:var(--heading);
    margin:0 0 6px;
}

.legal-trust-box p{
    margin:0;
    color:var(--text);
    line-height:1.6;
}

.legal-contact-btn{
    background:var(--primary);
    color:var(--white);
    text-decoration:none;
    padding:13px 28px;
    border-radius:7px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
}

.legal-contact-btn:hover{
    background:var(--primary-dark);
    color:var(--white);
}

.legal-faq-list{
    display:grid;
    gap:14px;
    margin-top:22px;
}

.legal-faq-item{
    background:var(--primary-extra-light);
    border:1px solid var(--primary-light);
    border-radius:14px;
    padding:18px 20px;
    transition:.3s ease;
}

.legal-faq-item:hover{
    border-color:var(--primary);
    background:var(--primary-light);
}

.legal-faq-item h3{
    font-size:17px;
    font-weight:700;
    color:var(-text);
    margin-bottom:8px;
    line-height:1.5;
}

.legal-faq-item p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:var(--text);
}

.legal-step-list{
    display:grid;
    gap:14px;
    margin-top:20px;
}

.legal-step-item{
    background:var(--primary-extra-light);
    border:1px solid var(--primary-light);
    border-radius:14px;
    padding:18px 20px;
}

.legal-step-item span{
    display:inline-block;
    background:#dff7f5;
    color:#0ba39e;
    font-size:13px;
    font-weight:700;
    padding:6px 12px;
    border-radius:30px;
    margin-bottom:10px;
}

.legal-step-item p{
    margin:0;
}

@media(max-width:1399px){
    .ics-parent-card{
        grid-template-columns:50% 50%;
        gap:34px;
        padding:42px;
    }

    .ics-parent-content h2{
        font-size:50px;
    }

    .ics-parent-old-careers,
    .ics-parent-highlight{
        margin:0 0 28px;
    }

    .ics-parent-action-row{
        margin:0;
    }

    .ics-parent-btn{
        width:100%;
        max-width:340px;
    }
}

@media(max-width:1200px){
    .legal-layout{
        grid-template-columns:270px 1fr;
        gap:28px;
    }
}

@media(max-width:991px){
    .legal-hero h1{
        font-size:46px;
    }

    .legal-layout{
        grid-template-columns:1fr;
    }

    .legal-sidebar{
        position:relative;
        top:auto;
    }

    .legal-sidebar-card ul{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:6px;
    }

    .legal-trust-box{
        grid-template-columns:1fr;
        text-align:center;
    }

    .trust-icon,
    .legal-contact-btn{
        margin:auto;
    }
}

@media(max-width:768px){
    .legal-hero{
        padding:50px 0;
        min-height:auto;
    }

    .legal-hero h1{
        font-size:38px;
    }

    .legal-sidebar-card ul{
        grid-template-columns:1fr;
    }

    .legal-main-card{
        padding:18px;
        border-radius:14px;
    }

    .legal-policy-item{
        grid-template-columns:1fr;
        gap:14px;
    }

    .legal-content h2{
        font-size:21px;
    }
}

@media(max-width:576px){
    .legal-hero h1{
        font-size:32px;
    }

    .legal-contact-btn{
        width:100%;
        justify-content:center;
    }
}

/* ===================================
   LEGAL END
=================================== */


/* ===================================
   CAREER DISCOVERY START
=================================== */

.career-discovery-page{
    color:var(--text);
    background:var(--white);
}

.cd-hero-section{
    padding:48px 0;
    background:
        radial-gradient(circle at 78% 45%, rgba(11,163,158,.12), transparent 28%),
        linear-gradient(135deg,#f7ffff 0%,#eefafa 100%);
}

.cd-hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:40px;
    align-items:center;
}

.cd-hero-content h1{
    font-size:56px;
    line-height:1.1;
    font-weight:800;
    color:var(--heading);
    margin-bottom:18px;
}

.cd-hero-content h1 span{
    color:var(--primary);
}

.cd-hero-lead{
    font-size:18px;
    color:var(--heading);
    font-weight:700;
}

.cd-hero-content p{
    line-height:1.8;
}

.cd-check-list{
    list-style:none;
    padding:0;
    margin:15px 0 20px;
}

.cd-check-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:9px;
    color:var(--text);
}

.cd-check-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:2px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--green);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}

.cd-highlight-box{
    display:flex;
    gap:16px;
    align-items:center;
    /* background:var(--warning-light);
    border:1px solid var(--warning); */
      background:var(--primary-extra-light);
    border:1px solid var(--primary);
    border-radius:14px;
    padding:18px;
    margin:22px 0;
}

.cd-highlight-box i{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:50%;
    /* background:var(--warning); */
    background:var(--primary);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.cd-highlight-box strong{
    display:block;
    color:var(--heading);
}

.cd-highlight-box span{
    color:var(--primary);
    font-weight:800;
}

.career-hero-image{
    position:relative;
    max-width:700px;
    margin:auto;
}

.student-image{
    width:100%;
    display:block;
}

.cd-section{
    padding:48px 0;
}

.cd-light{
    background:var(--soft-bg);
}

.cd-section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 35px;
}

.cd-section-heading.text-start{
    text-align:left;
    margin-left:0;
}

.cd-section-heading h2,
.cd-heading-row h2,
.cd-parent-card h2,
.cd-assessment-card h2,
.cd-disclaimer-card h2,
.cd-final-box h2{
    color:var(--heading);
    font-size:34px;
    font-weight:800;
    margin-bottom:10px;
}

.cd-section-heading p{
    color:var(--text-light);
}

.cd-story-question-card,
.cd-background-card,
.cd-interest-card,
.cd-field-card,
.cd-parent-card,
.cd-assessment-card,
.cd-disclaimer-card,
.cd-final-box{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.cd-story-question-card{
    padding:35px;
}

.cd-two-column{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:center;
}

.cd-two-column blockquote{
    background:var(--primary-extra-light);
    border-left:5px solid var(--primary);
    border-radius:12px;
    padding:18px;
    color:var(--primary-dark);
    font-weight:800;
}

.cd-two-column img{
    width:100%;
    border-radius:14px;
}

.cd-card-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:18px;
} 

.cd-background-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.cd-background-card{
    position:relative;
    padding:32px;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:0 14px 35px rgba(15,23,42,.06);
    transition:.3s ease;
    overflow:hidden;
}

.cd-background-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(15,23,42,.09);
}

.cd-it-card{
    border-top:4px solid var(--primary);
}

.cd-non-it-card{
    border-top:4px solid #2563eb;
}

.cd-card-title-row{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

.cd-card-title-row .cd-card-icon{
    margin-bottom:0;
    flex:0 0 auto;
}

.cd-card-title-row h3{
    margin:0;
    font-size:24px;
    font-weight:800;
    line-height:1.3;
    color:var(--heading);
}

.cd-it-card .cd-card-title-row h3{
    color:var(--primary);
}

.cd-non-it-card .cd-card-title-row h3{
    color:var(--blue);
}

.cd-card-subtitle{
    font-size:14px;
    font-weight:800;
    color:var(--heading);
    margin-bottom:12px;
}

.cd-icon-list{
    list-style:none;
    padding:0;
    margin:0 0 22px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px 18px;
}

.cd-icon-list li{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:15px;
    font-weight:600;
    color:var(--text);
}

.cd-icon-list i{
    color:var(--primary);
    font-size:15px;
}

.cd-icon-list.blue-list i{
    color:#2563eb;
}

.cd-background-card p{
    line-height:1.8;
    margin-bottom:22px;
}

.cd-card-icon.teal,
.primary{background:#e8f8f7;color:var(--primary);}
.teal{background:#e8f8f7;color:var(--teal);}
.blue{background:#e8f0ff;color:var(--blue);}
.green{background:#e8f8e8;color:var(--green);}
.pink{background:#ffe8f5;color:var(--pink);}
.orange{background:#fff1dd;color:var(--orange);}
.purple{background:#f3e8ff;color:var(--purple);}
.red{background:#fee2e2;color:var(--red)}
.warning{background:#fff7e6;color:var(--warning);}

.cd-interest-card h3{
    color:var(--heading);
    font-weight:800;
}

.cd-interest-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

.cd-interest-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:26px;
    height:100%;
    box-shadow:0 12px 30px rgba(15,23,42,.05);
    transition:.3s ease;
}

.cd-interest-card::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.06;
    pointer-events:none;
}

.cd-interest-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 45px rgba(15,23,42,.09);
}

.cd-interest-card.green::before{
    background:var(--green);
}

.cd-interest-card.blue::before{
    background:var(--blue);
}

.cd-interest-card.pink::before{
    background:var(--pink);
}

.cd-interest-card.orange::before{
    background:var(--orange);
}

.cd-interest-card.purple::before{
    background:var(--purple);
}

.cd-interest-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.cd-interest-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    background:#f8fafc;
}

.cd-interest-card.green .cd-interest-icon{
    color:var(--green);
    background:#e8f8e8;
}

.cd-interest-card.blue .cd-interest-icon{
    color:var(--blue);
    background:#e8f0ff;
}

.cd-interest-card.pink .cd-interest-icon{
    color:var(--pink);
    background:#ffe8f5;
}

.cd-interest-card.orange .cd-interest-icon{
    color:var(--orange);
    background:#fff1dd;
}

.cd-interest-card.purple .cd-interest-icon{
    color:var(--purple);
    background:#f3e8ff;
}

.cd-interest-label{
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.6px;
    color:#64748b;
    background:#f8fafc;
    border:1px solid var(--border);
    padding:6px 10px;
    border-radius:30px;
}

.cd-interest-card h3{
    color:var(--heading);
    font-size:20px;
    font-weight:800;
    line-height:1.35;
    margin-bottom:18px;
}

.cd-enjoy-box{
    background:#f8fafc;
    border:1px solid #eef2f7;
    border-radius:16px;
    padding:16px;
    margin-bottom:18px;
}

.cd-enjoy-box strong{
    display:block;
    color:var(--heading);
    font-size:14px;
    margin-bottom:10px;
}

.cd-enjoy-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.cd-enjoy-box li{
    display:flex;
    align-items:flex-start;
    gap:8px;
    color:var(--text);
    font-size:14px;
    line-height:1.6;
    margin-bottom:8px;
}

.cd-enjoy-box li:last-child{
    margin-bottom:0;
}

.cd-enjoy-box i{
    color:var(--primary);
    margin-top:3px;
}

.cd-career-tags-box span{
    display:block;
    font-size:13px;
    font-weight:800;
    color:var(--heading);
    margin-bottom:10px;
}

.cd-career-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.cd-career-tags span{
    display:inline-flex;
    width:auto;
    margin:0;
    padding:6px 11px;
    border-radius:30px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    color:#475569;
    font-size:12px;
    font-weight:700;
}

.cd-background-card ul{
    margin:15px 0;
}

.popular-fields-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.popular-field-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--border);
    border-top:4px solid var(--card-color);
    border-radius:20px;
    box-shadow:0 14px 35px rgba(15,23,42,.06);
    transition:.3s ease;
}

.popular-field-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 45px rgba(15,23,42,.1);
}

.popular-field-card.teal{
    --card-color:#0ba39e;
    --card-light:#e8f8f7;
}

.popular-field-card.blue{
    --card-color:#2563eb;
    --card-light:#eff6ff;
}

.popular-field-card.purple{
    --card-color:#7c3aed;
    --card-light:#f5f3ff;
}

.popular-field-card.orange{
    --card-color:#f97316;
    --card-light:#fff7ed;
}

.popular-field-card.pink{
    --card-color:#db2777;
    --card-light:#fdf2f8;
}

.popular-field-card.green{
    --card-color:#16a34a;
    --card-light:#ecfdf5;
}

.popular-field-main{
    display:grid;
    grid-template-columns:86px 1fr;
    gap:22px;
    padding:32px;
    min-height:230px;
    align-items:flex-start;
}

.popular-field-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    background:var(--card-light);
    color:var(--card-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
}

.popular-field-card h3{
    min-height:68px;
    color:var(--card-color);
    font-size:26px;
    font-weight:800;
    margin-bottom:12px;
}

.popular-field-card p{
    color:var(--text);
    line-height:1.8;
    margin:0;
}

.popular-field-meta{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid var(--border);
    background:#fbfdff;
}

.popular-field-meta div{
    padding:16px 14px;
    border-right:1px solid var(--border);
    text-align:center;
}

.popular-field-meta div:last-child{
    border-right:0;
}

.popular-field-meta i{
    width:32px;
    height:32px;
    border-radius:50%;
    background:var(--card-light);
    color:var(--card-color);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    margin-bottom:8px;
}

.popular-field-meta span{
    display:block;
    font-size:13px;
    color:var(--text-light);
    margin-bottom:3px;
}

.popular-field-meta strong{
    display:block;
    color:var(--card-color);
    font-size:15px;
    font-weight:800;
}

.popular-field-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-top:18px;

    padding:10px 16px;

    background:var(--card-light);

    color:var(--card-color);

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:.25s ease;
}

.popular-field-btn:hover{
    transform:translateY(-2px);
}

.popular-field-btn i{
    font-size:14px;
}

.cd-heading-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:30px;
}

.ics-story-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.ics-story-card{
    --ics-story-color:#0ba39e;
    --ics-story-light:#e8f8f7;

    display:grid;
    grid-template-columns:170px minmax(0,1fr);
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 16px 40px rgba(15,23,42,.07);
    transition:.3s ease;
}

.ics-story-card:hover{
    transform:translateY(-5px);
    box-shadow:0 24px 55px rgba(15,23,42,.11);
}

.ics-story-teal{
    --ics-story-color:var(--teal);
    --ics-story-light:#e8f8f7;
}

.ics-story-blue{
    --ics-story-color:var(--blue);
    --ics-story-light:#eff6ff;
}

.ics-story-purple{
    --ics-story-color:var(--purple);
    --ics-story-light:#f5f3ff;
}

.ics-story-green{
    --ics-story-color:var(--green);
    --ics-story-light:#ecfdf5;
}

/* Profile */

.ics-story-profile{
    padding:28px 18px;
    text-align:center;
    border-right:1px solid #e2e8f0;
    background:linear-gradient(180deg,#ffffff,#f8fafc);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.ics-story-avatar{
    width:88px;
    height:88px;
    border-radius:50%;
    background:var(--ics-story-light);
    border:4px solid rgba(11,163,158,.22);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
}

.ics-story-avatar span{
    width:64px;
    height:64px;
    border-radius:50%;
    background:#fff;
    color:var(--ics-story-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:900;
    box-shadow:0 8px 20px rgba(15,23,42,.08);
}

.ics-story-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    display:block;
}

.ics-story-profile h3{
    color:var(--ics-story-color);
    font-size:24px;
    font-weight:900;
    margin:0 0 8px;
}

.ics-story-profile p{
    color:var(--heading);
    font-weight:700;
    margin:0 0 12px;
}

.ics-story-location{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    color:var(--text);
    font-weight:600;
    font-size:14px;
}

/* Timeline Track */

.ics-story-track{
    position:relative;
    width:100%;
    padding:24px 22px 24px 38px;
}

.ics-story-track::before{
    content:"";
    position:absolute;
    left:22px;
    top:48px;
    bottom:48px;
    width:2px;
    background:#e2e8f0;
}

.ics-story-item{
    position:relative;
    width:100%;
    max-width:none;
    min-width:0;
    margin-bottom:14px;
}

.ics-story-item:last-child{
    margin-bottom:0;
}

.ics-story-dot{
    position:absolute;
    left:-22px;
    top:30px;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#fff;
    border:4px solid var(--ics-step-color);
    z-index:2;
}

.ics-story-box{
    width:100%;
    display:grid;
    grid-template-columns:54px minmax(0,1fr);
    gap:14px;
    align-items:center;
    padding:16px;
    border-radius:16px;
    border:1px solid var(--ics-step-border);
    background:var(--ics-step-bg);
}

.ics-confusion{
    --ics-step-color:#f97316;
    --ics-step-bg:#fff7ed;
    --ics-step-border:#fed7aa;
}

.ics-discovery{
    --ics-step-color:#2563eb;
    --ics-step-bg:#eff6ff;
    --ics-step-border:#bfdbfe;
}

.ics-decision{
    --ics-step-color:#16a34a;
    --ics-step-bg:#ecfdf5;
    --ics-step-border:#bbf7d0;
}

.ics-learning{
    --ics-step-color:#7c3aed;
    --ics-step-bg:#f5f3ff;
    --ics-step-border:#ddd6fe;
}

.ics-story-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    color:var(--ics-step-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    box-shadow:0 8px 18px rgba(15,23,42,.06);
}

.ics-story-box h4{
    color:var(--ics-step-color);
    font-size:14px;
    font-weight:900;
    text-transform:uppercase;
    margin:0 0 6px;
}

.ics-story-box p{
    margin:0;
    color:var(--heading);
    line-height:1.55;
    font-size:14px;
}

.ics-story-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.ics-story-tags span{
    display:inline-flex;
    padding:6px 12px;
    border-radius:30px;
    background:#fff;
    border:1px solid var(--ics-step-border);
    color:var(--ics-step-color);
    font-size:13px;
    font-weight:800;
}

.ics-compare-section{
    padding:48px 0;
    overflow:hidden;
}

.ics-compare-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 42px;
}

.ics-compare-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    border-radius:50px;
    background:#e8f8f7;
    color:#0ba39e;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:16px;
}

.ics-compare-heading h2{
    font-size:52px;
    line-height:1.08;
    font-weight:900;
    color:#08254c;
    margin-bottom:16px;
}

.ics-compare-heading h2 span{
    display:block;
    color:#0ba39e;
}

.ics-compare-heading p{
    color:#475569;
    font-size:18px;
    line-height:1.7;
    margin-bottom:10px;
}

.ics-compare-heading strong{
    color:#0ba39e;
    font-size:18px;
}

.ics-compare-roadmap{
    position:relative;
    max-width:1080px;
    margin:0 auto;
}

.ics-compare-roadmap::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:50%;
    width:3px;
    transform:translateX(-50%);
    background:linear-gradient(180deg,#0ba39e,#2563eb,#7c3aed,#ec4899);
    border-radius:20px;
    opacity:.55;
}

.ics-compare-row{
    --ics-compare-color:#0ba39e;
    --ics-compare-light:#e8f8f7;

    position:relative;
    display:grid;
    grid-template-columns:1fr 150px 1fr;
    align-items:center;
    gap:18px;
    margin-bottom:28px;
    text-decoration:none;
    color:inherit;
}

.ics-compare-row:last-child{
    margin-bottom:0;
}

.ics-compare-teal{
    --ics-compare-color:#0ba39e;
    --ics-compare-light:#e8f8f7;
}

.ics-compare-orange{
    --ics-compare-color:#f59e0b;
    --ics-compare-light:#fff7ed;
}

.ics-compare-purple{
    --ics-compare-color:#7c3aed;
    --ics-compare-light:#f5f3ff;
}

.ics-compare-pink{
    --ics-compare-color:#ec4899;
    --ics-compare-light:#fdf2f8;
}

.ics-compare-option{
    min-height:120px;
    display:flex;
    align-items:center;
    gap:20px;
    padding:22px 28px;
    background:linear-gradient(90deg,var(--ics-compare-light),#ffffff);
    border:1px solid var(--ics-compare-color);
    border-radius:999px;
    box-shadow:0 14px 35px rgba(15,23,42,.06);
    transition:.3s ease;
}

.ics-compare-right{
    justify-content:flex-end;
    text-align:left;
    background:linear-gradient(90deg,#ffffff,var(--ics-compare-light));
}

.ics-compare-icon{
    width:74px;
    height:74px;
    min-width:74px;
    border-radius:50%;
    background:#fff;
    border:2px solid var(--ics-compare-color);
    color:var(--ics-compare-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    box-shadow:0 10px 25px rgba(15,23,42,.08);
}

.ics-compare-option h3{
    margin:0 0 6px;
    color:#08254c;
    font-size:24px;
    font-weight:900;
}

.ics-compare-option p{
    margin:0;
    color:#475569;
    font-size:15px;
    line-height:1.5;
}

.ics-compare-center{
    position:relative;
    z-index:2;
    text-align:center;
}

.ics-compare-center span{
    width:78px;
    height:78px;
    margin:0 auto 8px;
    border-radius:50%;
    background:var(--ics-compare-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:900;
    box-shadow:
        0 0 0 10px var(--ics-compare-light),
        0 14px 35px rgba(15,23,42,.12);
}

.ics-compare-center small{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:var(--ics-compare-color);
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
}

.ics-compare-row:hover .ics-compare-option{
    transform:translateY(-5px);
    box-shadow:0 22px 45px rgba(15,23,42,.1);
}

.ics-compare-row:hover .ics-compare-center span{
    transform:scale(1.06);
}

.ics-compare-note{
    max-width:560px;
    margin:38px auto 0;
    padding:20px 26px;
    display:flex;
    align-items:center;
    gap:16px;
    background:#ffffff;
    border:1px solid #dff7f5;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.ics-compare-note i{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:50%;
    background:#e8f8f7;
    color:#0ba39e;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.ics-compare-note p{
    margin:0;
    color:#475569;
    line-height:1.6;
}

.ics-compare-note strong{
    display:block;
    color:#08254c;
}

.ics-map-section{
    padding:48px 0;
    background:var(--white);
}

.ics-map-card{
    position:relative;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:36px;
    align-items:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:48px;
    box-shadow:0 18px 45px rgba(15,23,42,.07);
    overflow:hidden;
}

.ics-map-tag{
    display:inline-flex;
    padding:8px 16px;
    border-radius:50px;
    background:#e8f8f7;
    color:var(--primary);
    font-weight:800;
    font-size:13px;
    margin-bottom:16px;
}

.ics-map-points{
    display:grid;
    gap:20px;
    margin-bottom:26px;
}

.ics-map-point{
    display:grid;
    grid-template-columns:64px 1fr;
    gap:18px;
    align-items:center;
}

.ics-map-point i{
    width:58px;
    height:58px;
    border-radius:16px;
    background:#e8f8f7;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.ics-map-point:nth-child(2) i{
    background:#eff6ff;
    color:#2563eb;
}

.ics-map-point:nth-child(3) i{
    background:#f5f3ff;
    color:#7c3aed;
}

.ics-map-point p{
    margin:0;
    color:var(--text);
    font-size:18px;
    line-height:1.6;
}

.ics-map-point strong{
    color:var(--primary);
}

.ics-map-reminder{
    display:grid;
    grid-template-columns:58px 1fr;
    gap:18px;
    align-items:center;
    background:#fff7ed;
    border:1px solid #fed7aa;
    border-radius:18px;
    padding:18px;
}

.ics-map-reminder i{
    width:52px;
    height:52px;
    border-radius:14px;
    background:#f59e0b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.ics-map-reminder p{
    margin:0;
    color:var(--heading);
    line-height:1.6;
}

.ics-map-visual img{
    width:100%;
    display:block;
}

.ics-map-route-grid{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    max-width:900px;
    width:100%;
    margin:28px auto 0;
}

.ics-map-route-card{
    position:relative;
    display:grid;
    grid-template-columns:92px 2px 1fr;
    gap:22px;
    align-items:center;
    padding:24px;
    background:#fff;
    border:2px solid var(--route-color);
    border-radius:20px;
    text-decoration:none;
    box-shadow:0 14px 35px rgba(15,23,42,.07);
    transition:.3s ease;
}

.ics-map-route-card:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 45px rgba(15,23,42,.11);
}

.ics-map-route-it{
    --route-color:#0ba39e;
    --route-light:#e8f8f7;
}

.ics-map-route-non-it{
    --route-color:#2563eb;
    --route-light:#eff6ff;
}

.ics-map-route-icon{
    width:82px;
    height:82px;
    border-radius:50%;
    background:var(--route-light);
    color:var(--route-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

.ics-map-route-content h3{
    position:relative;
    padding-left:22px;
    color:var(--route-color);
    font-size:25px;
    font-weight:900;
    margin:0 0 8px;
}

.ics-map-route-content::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:2px;
    height:70px;
    background:#dbe4ef;
}

.ics-map-route-it .ics-map-route-content::before{
    background:#9fe6df;
}

.ics-map-route-non-it .ics-map-route-content::before{
    background:#b8d1ff;
}

.ics-map-route-divider{
    width:2px;
    height:90px;
    border-radius:999px;
}

.ics-map-route-it .ics-map-route-divider{
    background:#9fe6df;
}

.ics-map-route-non-it .ics-map-route-divider{
    background:#b8d1ff;
}

.ics-map-route-content p{
    color:var(--text);
    font-size:16px;
    margin:0 0 14px;
}

.ics-map-route-content span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:var(--route-color);
    color:#fff;
    border-radius:8px;
    font-size:15px;
    font-weight:800;
}

.ics-parent-section{
    padding:48px 0;
    background:var(--soft-bg);
}

.ics-parent-card{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:40px;
    align-items:center;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:28px;
    padding:48px;
    box-shadow:0 18px 45px rgba(15,23,42,.07);
    overflow:hidden;
}

.ics-parent-visual{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.ics-parent-image{
    width:100%;
    max-width:680px;
    display:block;
}

.ics-parent-message-card{
    width:88%;
    margin-top:24px;

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:22px;

    padding:22px 24px;

    display:grid;
    grid-template-columns:72px 1fr 40px;
    gap:18px;
    align-items:center;

    box-shadow:0 18px 40px rgba(15,23,42,.08);

    position:relative;
    z-index:10;
}

.ics-parent-message-icon{
    width:72px;
    height:72px;
    border-radius:50%;

    background:#0ba39e;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
}

.ics-parent-message-content h3{
    margin:0 0 6px;
    color:#0ba39e;
    font-size:22px;
    font-weight:900;
}

.ics-parent-message-content p{
    margin:0;
    color:#08254c;
    font-size:18px;
    line-height:1.6;
    font-weight:500;
}

.ics-parent-message-heart{
    color:#0ba39e;
    font-size:26px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.ics-parent-content{
    width:100%;
    max-width:100%;
    min-width:0;
}

.ics-parent-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:9px 18px;
    border-radius:10px;

    background:#e8f8f7;
    color:#0ba39e;

    font-size:14px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.3px;

    margin-bottom:22px;
}

.ics-parent-content h2{
    color:#08254c;
    font-size:58px;
    line-height:1.08;
    font-weight:900;
    margin:0 0 28px;
}

.ics-parent-content h2 span{
    color:#0ba39e;
}

.ics-parent-text-row{
    display:grid;
    grid-template-columns:44px 1fr;
    gap:16px;
    align-items:center;
    margin-bottom:18px;
}

.ics-parent-row-icon{
    width:44px;
    height:44px;
    border-radius:10px;

    background:#dff7f5;
    color:#0ba39e;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
}

.ics-parent-text-row p{
    margin:0;
    color:#08254c;
    font-size:17px;
    line-height:1.6;
    font-weight:600;
}

.ics-parent-old-careers{
    display:grid;
    grid-template-columns:1fr 10px 1fr 10px 1fr;
    gap:18px;
    align-items:center;
    margin:0 0 28px 60px;
}

.ics-parent-old-card{
    min-height:92px;
    padding:14px;

    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:16px;
    box-shadow:0 10px 24px rgba(15,23,42,.06);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:9px;

    text-align:center;
}

.ics-parent-old-card i{
    color:#475569;
    font-size:28px;
}

.ics-parent-old-card span{
    color:#08254c;
    font-size:14px;
    font-weight:800;
    line-height:1.25;
}

.ics-parent-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#0ba39e;
    display:block;
}

.ics-parent-it-options{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:12px;
    margin:0 0 28px 0;
}

.ics-parent-option-card{
    min-width:0;
    min-height:128px;
    padding:16px 10px;

    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:16px;
    box-shadow:0 10px 24px rgba(15,23,42,.05);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:11px;

    text-align:center;
}

.ics-parent-option-card i{
    font-size:30px;
}

.ics-parent-option-card p{
    margin:0;
    color:#08254c;
    font-size:13px;
    line-height:1.45;
    font-weight:700;
    overflow-wrap:break-word;
}

.ics-parent-option-card strong{
    font-weight:900;
}

.ics-parent-option-card.coding{
    background:#f0fbfa;
}

.ics-parent-option-card.coding i,
.ics-parent-option-card.coding strong{
    color:#0ba39e;
}

.ics-parent-option-card.business{
    background:#eff6ff;
}

.ics-parent-option-card.business i,
.ics-parent-option-card.business strong{
    color:#2563eb;
}

.ics-parent-option-card.cloud{
    background:#f5f3ff;
}

.ics-parent-option-card.cloud i,
.ics-parent-option-card.cloud strong{
    color:#7c3aed;
}

.ics-parent-option-card.design{
    background:#fff7ed;
}

.ics-parent-option-card.design i,
.ics-parent-option-card.design strong{
    color:#f97316;
}

.ics-parent-option-card.data{
    background:#f0fdf4;
}

.ics-parent-option-card.data i,
.ics-parent-option-card.data strong{
    color:#22c55e;
}

.ics-parent-highlight{
    display:grid;
    grid-template-columns:58px 1fr;
    gap:18px;
    align-items:center;

    background:#e8f8f7;
    border:1px solid #d1f2ee;
    border-radius:18px;
    padding:18px 22px;

    margin:0 0 28px 60px;
}

.ics-parent-highlight-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#0ba39e;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
}

.ics-parent-highlight p{
    margin:0;
    color:#08254c;
    font-size:18px;
    line-height:1.55;
    font-weight:600;
}

.ics-parent-highlight strong{
    color:#0ba39e;
    font-weight:900;
}

.ics-parent-action-row{
    display:flex;
    align-items:center;
    gap:52px;
    margin-left:60px;
}

.ics-parent-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    min-width:340px;
    padding:18px 28px;
    background:#0ba39e;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    font-size:22px;
    font-weight:900;
    box-shadow:0 14px 28px rgba(11,163,158,.24);
    transition:.25s ease;
}

.ics-parent-btn:hover{
    color:#fff;
    background:#087f7b;
    transform:translateY(-3px);
}

.ics-parent-doodle{
    width:120px;
    height:45px;
    border-bottom:3px dashed #0ba39e;
    border-radius:50%;
    color:#0ba39e;

    display:flex;
    align-items:flex-end;
    justify-content:flex-start;

    font-size:22px;
    transform:rotate(-8deg);
}

.ics-free-guide-section{
    padding:48px 0;
    background:var(--white);
}

.ics-free-guide-heading{
    text-align:center;
    margin-bottom:58px;
}

.ics-free-guide-heading-icon{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#e8f8f7;
    color:#0ba39e;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-right:10px;
    vertical-align:middle;
}

.ics-free-guide-heading h2{
    display:inline-block;
    margin:0;
    color:#08254c;
    font-size:38px;
    font-weight:900;
    vertical-align:middle;
}

.ics-free-guide-heading-line{
    display:block;
    width:74px;
    height:3px;
    background:#0ba39e;
    border-radius:50px;
    margin:16px auto 0;
}

.ics-free-guide-wrapper{
    position:relative;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:22px;
}

.ics-free-guide-line{
    position:absolute;
    left:7%;
    right:7%;
    top:48px;
    border-top:2px dashed #cbd5e1;
    z-index:1;
}

.ics-free-guide-item{
    position:relative;
    text-align:center;
    text-decoration:none;
    z-index:2;
}

.ics-free-guide-icon{
    width:92px;
    height:92px;
    margin:0 auto 22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    background:#fff;
    border:12px solid var(--light-color);
    color:var(--main-color);
    box-shadow:0 16px 34px rgba(15,23,42,.10);
}

.ics-free-guide-pointer{
    width:0;
    height:0;
    border-left:9px solid transparent;
    border-right:9px solid transparent;
    border-top:13px solid var(--main-color);
    display:block;
    margin:-12px auto 18px;
}

.ics-free-guide-item h3{
    color:#08254c;
    font-size:18px;
    line-height:1.3;
    font-weight:800;
    margin-bottom:20px;
}

.ics-free-guide-item p{
    color:#334155;
    font-size:15px;
    line-height:1.7;
    margin:0;
}

.guide-teal{
    --main-color:#0ba39e;
    --light-color:#dff7f5;
}

.guide-orange{
    --main-color:#f59e0b;
    --light-color:#fff7ed;
}

.guide-green{
    --main-color:#65a30d;
    --light-color:#ecfccb;
}

.guide-blue{
    --main-color:#3b82f6;
    --light-color:#eff6ff;
}

.guide-purple{
    --main-color:#7c3aed;
    --light-color:#f5f3ff;
}

.guide-coral{
    --main-color:#f97316;
    --light-color:#fff7ed;
}

.ics-free-guide-flight{
    position:relative;
    max-width:1050px;
    height:70px;
    margin:36px auto 0;
}

.ics-free-guide-flight span{
    position:absolute;
    left:0;
    right:80px;
    top:32px;
    border-top:2px dashed #7dd3c7;
}

.ics-free-guide-flight i{
    position:absolute;
    right:20px;
    top:4px;
    font-size:48px;
    color:#0ba39e;
    transform:rotate(12deg);
}

.ics-still-confused-section{
    padding:48px 0;
    background:var(--soft-bg);
}

.ics-still-confused-card{
    position:relative;
    display:grid;
    grid-template-columns:44% 56%;
    gap:40px;
    align-items:center;
    min-height:720px;
    padding:70px;
    background:
        radial-gradient(circle at top left, rgba(11,163,158,.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(11,163,158,.13), transparent 30%),
        linear-gradient(135deg,#f9ffff 0%,#ffffff 45%,#f6fffd 100%);
    border:1px solid #dbeafe;
    border-radius:32px;
    box-shadow:0 22px 55px rgba(15,23,42,.08);
    overflow:hidden;
}

.ics-still-confused-card::before{
    content:"";
    position:absolute;
    left:40px;
    top:40px;
    width:160px;
    height:110px;
    background-image:radial-gradient(rgba(11,163,158,.25) 2px, transparent 2px);
    background-size:18px 18px;
}

.ics-still-confused-card::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:130px;
    background:
        radial-gradient(70% 80% at 20% 100%, rgba(11,163,158,.13), transparent 70%),
        radial-gradient(70% 80% at 70% 100%, rgba(56,189,248,.12), transparent 70%);
    border-radius:60% 40% 0 0;
}

.ics-still-confused-content{
    position:relative;
    z-index:3;
}

.ics-still-confused-content h2{
    margin:0;
    color:#08254c;
    font-size:64px;
    line-height:1.08;
    font-weight:900;
}

.ics-still-confused-line{
    display:block;
    width:120px;
    height:5px;
    background:#0ba39e;
    border-radius:20px;
    margin:28px 0 34px;
}

.ics-still-confused-content h3{
    color:#0ba39e;
    font-size:34px;
    line-height:1.3;
    font-weight:900;
    margin:0 0 30px;
}

.ics-still-confused-list{
    list-style:none;
    padding:0;
    margin:0 0 42px;
    display:grid;
    gap:24px;
}

.ics-still-confused-list li{
    display:grid;
    grid-template-columns:54px 1fr;
    gap:18px;
    align-items:flex-start;
}

.ics-still-confused-list i{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#f0fbfa;
    color:#0ba39e;
    border:1px solid #bdeeea;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    box-shadow:0 8px 18px rgba(15,23,42,.05);
}

.ics-still-confused-list span{
    color:#08254c;
    font-size:21px;
    line-height:1.55;
    font-weight:500;
}

.ics-still-confused-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    min-width:520px;
    padding:22px 34px;
    background:#0ba39e;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    font-size:25px;
    font-weight:900;
    box-shadow:0 16px 35px rgba(11,163,158,.25);
    transition:.25s ease;
}

.ics-still-confused-btn:hover{
    color:#fff;
    background:#087f7b;
    transform:translateY(-3px);
}

.ics-still-confused-visual{
    display:flex;
    align-items:center;
    justify-content:center;
}

.ics-still-confused-visual img{
    width:100%;
    max-width:700px;
    height:auto;
    display:block;
}

.ics-still-confused-map-title{
    position:absolute;
    top:10px;
    left:80px;
    display:grid;
    grid-template-columns:54px 1fr;
    gap:18px;
    align-items:start;
}

.ics-still-confused-map-title > i{
    color:#0ba39e;
    font-size:55px;
}

.ics-still-confused-map-title h3{
    margin:0;
    color:#08254c;
    font-size:26px;
    line-height:1.25;
    font-weight:900;
}

.ics-still-confused-map-title span{
    display:block;
    width:80px;
    height:4px;
    background:#0ba39e;
    border-radius:20px;
    margin-top:18px;
}

.ics-still-confused-road-wrap{
    position:absolute;
    inset:70px 0 0;
}

.ics-still-confused-road{
    position:absolute;
    right:40px;
    top:0;
    width:560px;
    max-width:100%;
    height:auto;
    filter:drop-shadow(0 18px 20px rgba(15,23,42,.18));
}

.ics-still-confused-final-pin{
    position:absolute;
    right:78px;
    top:0;
    color:#0ba39e;
    font-size:120px;
    line-height:1;
    filter:drop-shadow(0 16px 20px rgba(15,23,42,.18));
}

.ics-still-confused-flag{
    position:absolute;
    left:150px;
    top:110px;
    display:grid;
    grid-template-columns:42px 1fr;
    gap:14px;
    align-items:center;
    color:#08254c;
    font-size:20px;
    font-weight:900;
}

.ics-still-confused-flag i{
    color:#0ba39e;
    font-size:46px;
}

.ics-still-confused-step{
    position:absolute;
    display:grid;
    grid-template-columns:76px 1fr;
    gap:18px;
    align-items:start;
}

.ics-still-confused-step-number{
    width:72px;
    height:72px;
    border-radius:50% 50% 50% 0;
    background:#fff;
    border:7px solid var(--step-color);
    color:var(--step-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    font-weight:900;
    transform:rotate(-45deg);
    box-shadow:0 12px 24px rgba(15,23,42,.12);
}

.ics-still-confused-step-number::before{
    content:attr(class);
}

.ics-still-confused-step-number{
    transform:rotate(-45deg);
}

.ics-still-confused-step-number{
    line-height:1;
}

.ics-still-confused-step-number{
    position:relative;
}

.ics-still-confused-step-number{
    font-family:inherit;
}

.ics-still-confused-step-number{
    text-indent:0;
}

.ics-still-confused-step-number{
    transform:rotate(-45deg);
}

.ics-still-confused-step-number{
    display:flex;
}

.ics-still-confused-step-number{
    rotate:0deg;
    border-radius:50%;
}

.ics-still-confused-step h4{
    margin:0 0 8px;
    color:#08254c;
    font-size:22px;
    line-height:1.25;
    font-weight:900;
}

.ics-still-confused-step p{
    margin:0;
    color:#08254c;
    font-size:18px;
    line-height:1.45;
}

.step-one{
    --step-color:#0ba39e;
    left:190px;
    bottom:88px;
}

.step-two{
    --step-color:#f59e0b;
    left:120px;
    top:315px;
}

.step-three{
    --step-color:#7c3aed;
    right:120px;
    top:220px;
}

.ics-learned-section{
    padding:48px 0;
    background:var(--white);
}

.ics-learned-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:28px;
    padding:36px 34px 32px;
    box-shadow:0 18px 45px rgba(15,23,42,.07);
    overflow:hidden;
}

.ics-learned-heading{
    text-align:center;
    margin-bottom:30px;
}

.ics-learned-section-label{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:14px;
}

.ics-learned-section-label span{
    width:130px;
    height:2px;
    background:#0ba39e;
    position:relative;
}

.ics-learned-section-label span::after{
    content:"";
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:7px;
    height:7px;
    border-radius:50%;
    background:#0ba39e;
}

.ics-learned-section-label span:first-child::after{
    right:-1px;
}

.ics-learned-section-label span:last-child::after{
    left:-1px;
}

.ics-learned-section-label strong{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:8px 24px;
    border-radius:10px;
    background:#0ba39e;
    color:#fff;
    font-size:20px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.4px;
}

.ics-learned-heading h2{
    max-width:1180px;
    margin:0 auto 10px;
    color:#08254c;
    font-size:44px;
    line-height:1.12;
    font-weight:900;
}

.ics-learned-heading p{
    margin:0;
    color:#475569;
    font-size:22px;
    line-height:1.4;
}

.ics-learned-content-grid{
    display:grid;
    grid-template-columns:330px minmax(0,1fr);
    gap:34px;
    align-items:start;
}

.ics-learned-founder-panel{
    min-width:0;
}

.ics-learned-founder-img{
    width:100%;
    aspect-ratio:1 / .82;
    object-fit:contain;
    object-position:center;
    display:block;
    border-radius:18px;
    background:#e2e8f0;
}

.ics-learned-founder-name{
    margin:18px 0 22px;
}

.ics-learned-founder-name h3{
    margin:0 0 4px;
    color:#0ba39e;
    font-size:31px;
    line-height:1;
    font-family:"Brush Script MT","Segoe Script",cursive;
    font-weight:400;
}

.ics-learned-founder-name p{
    margin:0;
    color:#08254c;
    font-size:20px;
    line-height:1.3;
    font-weight:900;
}

.ics-learned-truth-box{
    background:#f0fbfa;
    border:1px solid #d1f2ee;
    border-radius:18px;
    padding:24px 22px;
}

.ics-learned-truth-item{
    display:grid;
    grid-template-columns:58px minmax(0,1fr);
    gap:16px;
    align-items:center;
}

.ics-learned-truth-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:27px;
}

.ics-learned-truth-icon.teal{
    background:#0ba39e;
}

.ics-learned-truth-icon.purple{
    background:#6d48c9;
}

.ics-learned-truth-item p{
    margin:0;
    color:#08254c;
    font-size:18px;
    line-height:1.55;
    font-weight:600;
}

.ics-learned-truth-item strong{
    color:#0ba39e;
    font-weight:900;
}

.ics-learned-truth-item strong.purple-text{
    color:#6d48c9;
}

.ics-learned-truth-divider{
    height:1px;
    background:#dbeafe;
    margin:24px 0;
}

.ics-learned-proof-panel{
    min-width:0;
}

.ics-learned-stats-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:14px;
    margin-bottom:20px;
}

.ics-learned-stat-card{
    min-width:0;
    min-height:176px;
    padding:20px 12px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:18px;
    box-shadow:0 10px 24px rgba(15,23,42,.05);
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.ics-learned-stat-icon{
    width:64px;
    height:64px;
    margin:0 auto 12px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.ics-learned-stat-card h3{
    margin:0 0 8px;
    font-size:38px;
    line-height:1;
    font-weight:900;
    white-space:nowrap;
}

.ics-learned-stat-card h4{
    margin:10px 0 0;
    color:#08254c;
    font-size:18px;
    line-height:1.4;
    font-weight:900;
}

.ics-learned-stat-card p{
    margin:0;
    color:#08254c;
    font-size:16px;
    line-height:1.42;
    font-weight:800;
}

.ics-learned-stat-card.teal .ics-learned-stat-icon{background:#dff7f5;color:#0ba39e;}
.ics-learned-stat-card.teal h3{color:#0ba39e;}

.ics-learned-stat-card.blue .ics-learned-stat-icon{background:#dbeafe;color:#2563eb;}
.ics-learned-stat-card.blue h3{color:#2563eb;}

.ics-learned-stat-card.orange .ics-learned-stat-icon{background:#ffedd5;color:#f97316;}
.ics-learned-stat-card.orange h3{color:#f97316;}

.ics-learned-stat-card.purple .ics-learned-stat-icon{background:#f5f3ff;color:#8b5cf6;}

.ics-learned-stat-card.pink .ics-learned-stat-icon{background:#fce7f3;color:#ec4899;}

.ics-learned-media-box{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:16px;
    margin-bottom:18px;
    box-shadow:0 8px 20px rgba(15,23,42,.035);
}

.ics-learned-box-title{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    gap:14px;
    align-items:center;
    margin-bottom:14px;
}

.ics-learned-box-title span{
    height:2px;
    background:#0ba39e;
    position:relative;
}

.ics-learned-box-title span::after{
    content:"";
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:6px;
    height:6px;
    border-radius:50%;
    background:#0ba39e;
}

.ics-learned-box-title span:first-child::after{
    right:-1px;
}

.ics-learned-box-title span:last-child::after{
    left:-1px;
}

.ics-learned-box-title h3{
    margin:0;
    color:#08254c;
    text-align:center;
    font-size:22px;
    line-height:1.25;
    font-weight:900;
    white-space:nowrap;
}

.ics-learned-gallery{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:12px;
}

.ics-learned-gallery img{
    width:100%;
    aspect-ratio:16 / 7.5;
    object-fit:fill;
    object-position:center;
    display:block;
    border-radius:10px;
    background:#e2e8f0;
}

.ics-learned-report-img{
    width:100%;
    aspect-ratio:16 / 3.1;
    object-fit:cover;
    object-position:center;
    display:block;
    border-radius:10px;
    background:#e2e8f0;
}

.ics-learned-mission{
    margin-top:4px;
    padding:24px 34px;
    border-radius:16px;
    background:
        radial-gradient(circle at left center, rgba(255,255,255,.12), transparent 24%),
        radial-gradient(circle at right center, rgba(255,255,255,.10), transparent 26%),
        linear-gradient(135deg,#006b4f,#0ba39e);
    display:grid;
    grid-template-columns:76px minmax(0,1fr);
    gap:26px;
    align-items:center;
}

.ics-learned-mission-icon{
    width:76px;
    height:76px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.55);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

.ics-learned-mission p{
    margin:0;
    color:#fff;
    font-size:22px;
    line-height:1.55;
    font-weight:500;
}

.ics-learned-mission strong{
    color:#facc15;
    font-weight:900;
}

.ics-learned-report-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.ics-learned-report-grid img{
    width:100%;
    border-radius:10px;
    border:1px solid #e2e8f0;
    display:block;
}

.cd-resource-grid a{
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:18px;
    color:var(--heading);
    text-decoration:none;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.cd-parent-card,
.cd-assessment-card{
    padding:35px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:30px;
    align-items:center;
}

.cd-parent-card img,
.cd-assessment-card img{
    max-width:360px;
    width:100%;
    margin:auto;
}

.cd-tabs{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:20px;
}

.cd-tabs button{
    border:1px solid var(--border);
    background:#fff;
    padding:10px 18px;
    border-radius:8px;
    font-weight:700;
}

.cd-tabs button.active{
    background:var(--primary);
    color:#fff;
}

.cd-resource-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;
}

.cd-resource-grid a{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    gap:10px;
}

.cd-resource-grid i{
    font-size:28px;
    color:var(--primary);
}

.cd-trust-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.cd-trust-grid div{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:22px;
    text-align:center;
}

.cd-trust-grid strong{
    display:block;
    font-size:26px;
    color:var(--primary);
}

.cd-trust-grid span{
    color:var(--heading);
    font-weight:700;
}

.cd-disclaimer-card{
    padding:30px;
    display:flex;
    gap:22px;
    align-items:flex-start;
    background:#fff8e7;
    border-color:#fde68a;
}

.cd-final-section{
    padding:45px 0;
    background:#fff;
}

.cd-final-box{
    padding:35px;
    text-align:center;
    background:#f0fbfa;
}

.cd-final-box span{
    color:var(--primary);
    font-weight:800;
}

@media(max-width:1399px){
    .ics-still-confused-card{
        padding:55px;
    }

    .ics-still-confused-content h2{
        font-size:56px;
    }

    .ics-still-confused-btn{
        min-width:440px;
        font-size:22px;
    }

    .ics-still-confused-list span{
        font-size:19px;
    }
}

@media(max-width:1199px){
    .cd-interest-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .popular-field-main{
        grid-template-columns:70px 1fr;
        gap:18px;
        padding:26px;
    }

    .popular-field-icon{
        width:64px;
        height:64px;
        font-size:30px;
    }

    .popular-field-card h3{
        font-size:23px;
    }

    .cd-resource-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .ics-story-card{
        grid-template-columns:150px minmax(0,1fr);
    }

    .ics-story-profile{
        padding:24px 14px;
    }

    .ics-story-avatar{
        width:78px;
        height:78px;
    }

    .ics-story-avatar span{
        width:56px;
        height:56px;
        font-size:24px;
    }

    .ics-story-profile h3{
        font-size:22px;
    }

    .ics-compare-row{
        grid-template-columns:1fr 120px 1fr;
        gap:14px;
    }

    .ics-compare-option{
        padding:20px 22px;
    }

    .ics-compare-icon{
        width:64px;
        height:64px;
        min-width:64px;
        font-size:28px;
    }

    .ics-compare-option h3{
        font-size:21px;
    }

    .ics-compare-center span{
        width:68px;
        height:68px;
        font-size:23px;
    }

    .ics-parent-card{
        grid-template-columns:1fr;
        gap:35px;
    }

    .ics-parent-content{
        max-width:850px;
        margin:0 auto;
    }

    .ics-parent-content{
        text-align:center;
    }

    .ics-parent-text-row{
        max-width:760px;
        margin-left:auto;
        margin-right:auto;
        text-align:left;
    }

    .ics-parent-old-careers,
    .ics-parent-highlight,
    .ics-parent-action-row{
        max-width:760px;
        margin-left:auto;
        margin-right:auto;
    }

    .ics-parent-action-row{
        justify-content:center;
    }

    .ics-free-guide-wrapper{
        grid-template-columns:repeat(3,1fr);
        row-gap:50px;
    }

    .ics-free-guide-line,
    .ics-free-guide-flight{
        display:none;
    }

    .ics-still-confused-card{
        grid-template-columns:1fr;
    }

    .ics-still-confused-content{
        order:1;
    }

    .ics-still-confused-visual{
        order:2;
        margin-top:30px;
    }

    .ics-still-confused-road-wrap{
        max-width:760px;
        margin:0 auto;
        left:0;
        right:0;
    }

     .ics-learned-content-grid{
        grid-template-columns:1fr;
    }

    .ics-learned-founder-panel{
        display:grid;
        grid-template-columns:320px minmax(0,1fr);
        gap:26px;
        align-items:start;
    }

    .ics-learned-founder-name{
        grid-column:1;
        margin-top:14px;
    }

    .ics-learned-truth-box{
        grid-column:2;
        grid-row:1 / span 2;
        align-self:stretch;
        display:flex;
        flex-direction:column;
        justify-content:center;
    }
}

@media(max-width:991px){
    .cd-hero-grid,
    .cd-two-column,
    .cd-background-grid,
    .cd-parent-card,
    .cd-assessment-card{
        grid-template-columns:1fr;
    }

    .cd-hero-content h1{
        font-size:42px;
    }

    .cd-hero-image{
        min-height:auto;
    }

    .cd-bubble{
        display:none;
    }

    .cd-trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .popular-fields-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ics-story-grid{
        grid-template-columns:1fr;
    }

    .ics-story-card{
        grid-template-columns:170px minmax(0,1fr);
    }

   .ics-compare-heading h2{
        font-size:42px;
    }

    .ics-compare-roadmap::before{
        display:none;
    }

    .ics-compare-row{
        grid-template-columns:1fr;
        gap:14px;
        padding-left:0;
        margin-bottom:34px;
    }

    .ics-compare-left{
        order:1;
    }

    .ics-compare-center{
        order:2;
        position:relative;
        display:flex;
        align-items:center;
        justify-content:center;
        gap:12px;
        text-align:center;
    }

    .ics-compare-center span{
        position:static;
        transform:none;
        width:60px;
        height:60px;
        margin:0;
        font-size:22px;
    }

    .ics-compare-center small{
        margin:0;
        white-space:normal;
    }

    .ics-compare-right{
        order:3;
        justify-content:flex-start;
        text-align:left;
    }

    .ics-compare-option{
        border-radius:22px;
        min-height:auto;
    }

    .ics-map-card{
        grid-template-columns:1fr;
        padding:36px;
    }

    .ics-map-visual{
        max-width:620px;
        margin:0 auto;
    }

    .ics-still-confused-card{
        grid-template-columns:1fr;
    }

    .ics-still-confused-card{
        display:flex;
        flex-direction:column;
    }

    .ics-still-confused-content{
        width:100%;
    }

    .ics-learned-heading h2{
        font-size:38px;
    }

    .ics-learned-stats-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .ics-learned-stat-card.pink{
        grid-column:1 / -1;
    }

    .ics-learned-gallery{
        grid-template-columns:1fr;
    }

    .ics-learned-gallery img{
        aspect-ratio:16 / 8;
    }

    .ics-learned-report-img{
        aspect-ratio:16 / 7;
    }

    .ics-learned-report-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .cd-section{
        padding:45px 0;
    }

    .cd-hero-section{
        padding:40px 0;
    }

    .cd-hero-content h1{
        font-size:34px;
    }

    .cd-section-heading h2,
    .cd-heading-row h2,
    .cd-parent-card h2,
    .cd-assessment-card h2,
    .cd-disclaimer-card h2,
    .cd-final-box h2{
        font-size:26px;
    }

    .cd-field-grid,
    .cd-comparison-grid,
    .cd-resource-grid,
    .cd-trust-grid{
        grid-template-columns:1fr;
    }

    .cd-interest-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cd-heading-row{
        align-items:flex-start;
        flex-direction:column;
    }

    .cd-disclaimer-card{
        flex-direction:column;
    }

    .popular-fields-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .popular-field-main{
        grid-template-columns:1fr;
        text-align:center;
    }

    .popular-field-icon{
        margin:0 auto;
    }

     .ics-story-card{
        grid-template-columns:1fr;
    }

    .ics-story-profile{
        border-right:0;
        border-bottom:1px solid #e2e8f0;
    }

    .ics-compare-section{
        padding:55px 0;
    }

    .ics-compare-heading h2{
        font-size:34px;
    }

    .ics-compare-heading p,
    .ics-compare-heading strong{
        font-size:16px;
    }

    .ics-compare-option{
        padding:18px;
        gap:15px;
    }

    .ics-compare-icon{
        width:56px;
        height:56px;
        min-width:56px;
        font-size:24px;
    }

    .ics-compare-option h3{
        font-size:20px;
    }

    .ics-compare-center{
        flex-direction:column;
    }

    .ics-compare-center span{
        width:54px;
        height:54px;
        min-width:54px;
    }

     .ics-map-section{
        padding:55px 0;
    }

    .ics-map-card{
        padding:28px;
        border-radius:22px;
    }

   .ics-map-route-grid{
        grid-template-columns:1fr;
    }

    .ics-parent-section{
        padding:55px 0;
    }

    .ics-parent-card{
        padding:28px;
        border-radius:22px;
    }

    .ics-parent-message-card{
        width:100%;
        margin-top:20px;
    }

    .ics-parent-content h2{
        font-size:40px;
    }

    .ics-parent-it-options{
        grid-template-columns:repeat(2,1fr);
    }

    .ics-parent-old-careers{
        grid-template-columns:1fr 8px 1fr 8px 1fr;
        gap:10px;
    }

    .ics-parent-old-card{
        min-height:84px;
        padding:12px 8px;
    }

    .ics-parent-doodle{
        display:none;
    }

     .ics-free-guide-section{
        padding:55px 0;
    }

    .ics-free-guide-heading{
        margin-bottom:36px;
    }

    .ics-free-guide-heading h2{
        font-size:32px;
    }

    .ics-free-guide-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:30px 18px;
    }

    .ics-still-confused-section{
        padding:55px 0;
    }

    .ics-still-confused-card{
        padding:32px;
        border-radius:24px;
    }

    .ics-still-confused-content h2{
        font-size:42px;
    }

    .ics-still-confused-content h3{
        font-size:26px;
    }

    .ics-still-confused-list li{
        grid-template-columns:44px 1fr;
        gap:14px;
    }

    .ics-still-confused-list i{
        width:40px;
        height:40px;
        font-size:21px;
    }

    .ics-still-confused-list span{
        font-size:17px;
    }

    .ics-still-confused-btn{
        width:100%;
        min-width:0;
        font-size:18px;
        padding:18px 20px;
    }

    .ics-still-confused-visual{
        min-height:620px;
        transform:scale(.9);
        transform-origin:top center;
        margin-bottom:-70px;
    }

    .ics-learned-section{
        padding:55px 0;
    }

    .ics-learned-card{
        padding:28px;
        border-radius:22px;
    }

    .ics-learned-section-label span{
        width:70px;
    }

    .ics-learned-section-label strong{
        font-size:16px;
    }

    .ics-learned-heading h2{
        font-size:32px;
    }

    .ics-learned-heading p{
        font-size:18px;
    }

    .ics-learned-founder-panel{
        grid-template-columns:1fr;
    }

    .ics-learned-founder-name,
    .ics-learned-truth-box{
        grid-column:auto;
        grid-row:auto;
    }

    .ics-learned-founder-img{
        max-width:360px;
        margin:0 auto;
    }

    .ics-learned-founder-name{
        text-align:center;
        margin-bottom:10px;
    }

    .ics-learned-box-title{
        grid-template-columns:1fr;
    }

    .ics-learned-box-title span{
        display:none;
    }

    .ics-learned-box-title h3{
        white-space:normal;
    }

    .ics-learned-mission{
        grid-template-columns:1fr;
        text-align:center;
    }

    .ics-learned-mission-icon{
        margin:0 auto;
    }

    .ics-learned-mission p{
        font-size:18px;
    }
}

@media(max-width:576px){
    .cd-story-question-card,
    .cd-background-card,
    .cd-interest-card,
    .cd-field-card,
    .cd-parent-card,
    .cd-assessment-card,
    .cd-disclaimer-card,
    .cd-final-box{
        padding:22px;
        border-radius:14px;
    }

    .cd-hero-content h1{
        font-size:30px;
    }

        .career-hero-image{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:12px;
        max-width:100%;
    }

    .student-image{
        order:1;
        max-width:320px;
        margin:0 auto;
    }
    
    .cd-background-card{
        padding:24px;
    }

    .cd-card-title-row{
        align-items:flex-start;
        gap:12px;
    }

    .cd-card-title-row h3{
        font-size:21px;
    }

    .cd-icon-list{
        grid-template-columns:1fr;
    }

    .cd-interest-grid{
        grid-template-columns:1fr;
    }

    .cd-interest-card{
        padding:22px;
    }

     .popular-field-card{
        border-radius:16px;
    }
    
    .popular-fields-grid{
        grid-template-columns:1fr;
    }

    .popular-field-main{
        padding:22px;
        min-height:auto;
    }

    .popular-field-meta{
        grid-template-columns:1fr;
    }

    .popular-field-meta div{
        border-right:0;
        border-bottom:1px solid var(--border);
    }

    .popular-field-meta div:last-child{
        border-bottom:0;
    }

    .ics-story-card{
        border-radius:18px;
    }

    .ics-story-track{
        padding:22px 16px 22px 34px;
    }

    .ics-story-track::before{
        left:20px;
    }

    .ics-story-dot{
        left:-21px;
    }

    .ics-story-box{
        grid-template-columns:1fr;
        gap:10px;
    }

    .ics-story-icon{
        width:46px;
        height:46px;
        font-size:21px;
    }

    .ics-story-tags span{
        width:100%;
        justify-content:center;
    }
     .ics-compare-roadmap::before{
        display:none;
    }

    .ics-compare-row{
        padding-left:0;
        margin-bottom:28px;
    }

    .ics-compare-center{
        order:2;
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
    }

    .ics-compare-center span{
        position:static;
        transform:none;
        width:54px;
        height:54px;
        min-width:54px;
        margin:0;
    }

    .ics-compare-center small{
        font-size:13px;
    }

    .ics-compare-option{
        border-radius:18px;
        flex-direction:column;
        text-align:center;
    }

    .ics-compare-right{
        text-align:center;
        align-items:center;
    }

    .ics-compare-right .ics-compare-icon{
        order:-1;
    }

    .ics-compare-note{
        flex-direction:column;
        text-align:center;
        padding:22px;
    }

    .ics-map-card{
        padding:22px;
        border-radius:18px;
    }

    .ics-map-point{
        grid-template-columns:1fr;
        text-align:center;
    }

    .ics-map-point i{
        margin:0 auto;
    }

    .ics-map-reminder{
        grid-template-columns:1fr;
        text-align:center;
    }

    .ics-map-reminder i{
        margin:0 auto;
    }

    .ics-map-route-card{
        grid-template-columns:1fr;
        text-align:center;
        padding:22px;
    }

    .ics-map-route-icon{
        margin:0 auto;
    }

    .ics-map-route-content{
        padding-left:0;
    }

    .ics-map-route-content::before{
        display:none;
    }

    .ics-map-route-card{
        grid-template-columns:1fr;
    }

    .ics-map-route-divider{
        display:none;
    }

    .ics-parent-card{
        padding:22px;
        border-radius:18px;
    }

    .ics-parent-message-card{
        grid-template-columns:1fr;
        text-align:center;
        padding:20px;
    }

    .ics-parent-message-icon,
    .ics-parent-message-heart{
        margin:auto;
    }

    .ics-parent-message-content h3{
        font-size:20px;
    }

    .ics-parent-message-content p{
        font-size:16px;
    }

    .ics-parent-content h2{
        font-size:34px;
    }

    .ics-parent-badge{
        font-size:11px;
        padding:8px 12px;
    }

    .ics-parent-text-row{
        grid-template-columns:1fr;
        text-align:center;
    }

    .ics-parent-row-icon{
        margin:0 auto;
    }

    .ics-parent-old-careers{
        grid-template-columns:1fr;
    }

    .ics-parent-dot{
        display:none;
    }

    .ics-parent-it-options{
        grid-template-columns:1fr;
    }

    .ics-parent-highlight{
        grid-template-columns:1fr;
        text-align:center;
    }

    .ics-parent-highlight-icon{
        margin:0 auto;
    }

    .ics-parent-action-row{
        display:block;
    }

    .ics-parent-btn{
        width:100%;
        min-width:0;
        font-size:18px;
    }

    .ics-free-guide-wrapper{
        grid-template-columns:1fr;
    }

    .ics-free-guide-heading h2{
        display:block;
        margin-top:10px;
        font-size:28px;
    }

    .ics-free-guide-heading-icon{
        margin-right:0;
    }

    .ics-free-guide-icon{
        width:82px;
        height:82px;
        font-size:34px;
    }

     .ics-still-confused-card{
        padding:24px;
        border-radius:20px;
    }

    .ics-still-confused-content h2{
        font-size:36px;
    }

    .ics-still-confused-line{
        width:90px;
        height:4px;
        margin:20px 0 24px;
    }

    .ics-still-confused-list{
        gap:18px;
    }

    .ics-still-confused-card{
        padding:24px;
        border-radius:20px;
    }

    .ics-still-confused-visual{
        display:block;
        width:100%;
        margin:30px auto 0;
    }

    .ics-still-confused-visual img{
        width:100%;
        max-width:100%;
        height:auto;
        display:block;
    }

    .ics-learned-card{
        padding:22px;
        border-radius:18px;
    }

    .ics-learned-section-label span{
        display:none;
    }

    .ics-learned-section-label strong{
        margin:0 auto;
    }

    .ics-learned-heading h2{
        font-size:28px;
    }

    .ics-learned-stats-grid{
        grid-template-columns:1fr;
    }

    .ics-learned-stat-card.pink{
        grid-column:auto;
    }

    .ics-learned-truth-box{
        padding:20px;
    }

    .ics-learned-truth-item{
        grid-template-columns:1fr;
        text-align:center;
    }

    .ics-learned-truth-icon{
        margin:0 auto;
    }

    .ics-learned-report-img{
        aspect-ratio:16 / 9;
    }
}

/* ===================================
   CAREER DISCOVERY END
=================================== */



/* ===================================
   MENTOR FOUNDER START
=================================== */



/* ===================================
   MENTOR FOUNDER END
=================================== */


/* ===================================
   STUDENT SUCCESS STORIES START
=================================== */


.sss-page {
    background: var(--white);
    color: var(--text);
}

.sss-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.sss-hero-section {
    /* padding: 48px 0;
    position: relative;
    overflow: hidden;
    background:
       radial-gradient(circle at 78% 45%, rgba(11,163,158,.12), transparent 28%),
        linear-gradient(135deg,#f7ffff 0%,#eefafa 100%) */

    position:relative;
    overflow:hidden;
    padding: 48px 0;
    background-image:url('../images/student-success-stories/sss-hero-bg.png');
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}

.sss-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    min-height: 530px;
}

.sss-hero-content {
    position: relative;
    z-index: 3;
}

.sss-hero-right{
    display:flex;
    flex-direction:column;
}

.sss-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid #9ee4df;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: #008f8b;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.sss-hero h1 {
    font-size:56px;
    line-height:1.05;
    letter-spacing:-0.04em;
    max-width: 690px;
    margin: 22px 0 18px;
    color: var(--heading);
    font-weight: 800;
    line-height: 1.08;
}

.sss-hero h1 span {
    color: #0fa5a0;
}

.sss-hero p {
    max-width: 620px;
    margin: 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.75;
}

.sss-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.sss-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.sss-btn-primary {
    border: 1px solid #079b98;
    background: linear-gradient(135deg, #079b98, #0ba39e);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(9, 155, 152, .24);
}

.sss-btn-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(9, 155, 152, .28);
}

.sss-btn-outline {
    border: 1px solid #0ba39e;
    background: #ffffff;
    color: #078b88;
}

.sss-btn-outline:hover {
    background: #ecfffd;
    color: #078b88;
    transform: translateY(-2px);
}

.sss-hero-image {
    position: relative;
    z-index: 2;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom:24px;
}

.sss-hero-image img {
    /* width: min(100%, 620px);
    max-height: 510px;
    object-fit: contain;
    object-position: bottom center;
    display: block; */

    width:100%;
    display:block;
    border-radius:24px;

     box-shadow:
        0 12px 24px rgba(15,23,42,.06),
        0 32px 64px rgba(15,23,42,.12);

    transition:.3s ease;
}

.sss-hero-image img:hover{
    transform:translateY(-4px);
}

.sss-stats {
    position: absolute;
    right: 0;
    bottom: -1px;
    margin-top: 18px;
    z-index: 4;
    width: min(560px, 54%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid #e5edf5;
    border-radius: 14px 14px 0 0;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .11);
    box-sizing:border-box;
}

.sss-stats div {
    padding: 24px 18px;
    border-right: 1px solid #e5edf5;
}

.sss-stats div:last-child {
    border-right: 0;
}

.sss-stats strong {
    display: block;
    margin-bottom: 5px;
    color: #101f3f;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
}

.sss-stats span {
    display: block;
    color: #64748b;
    font-size: 13px;
    line-height: 1.35;
}

.sss-list-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 34px 0 22px;
}

.sss-list-top p {
    margin: 0;
    color: #475569;
    font-size: 15px;
}

.sss-list-top strong {
    color: #0fa5a0;
}

.sss-filters {
    display: flex;
    gap: 14px;
}

.sss-filters input,
.sss-filters select {
    height: 44px;
    border: 1px solid #d8e2ef;
    border-radius: 7px;
    padding: 0 16px;
    color: #475569;
    background: #ffffff;
    min-width: 230px;
    outline: none;
}

.sss-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sss-card {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 22px 18px;
    border: 1px solid #e1e9f2;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .035);
    transition: .25s ease;
}

.sss-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
    border-color: #b9ebe8;
}

.sss-card-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sss-card-head img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 78px;
}

.sss-card h2 {
    margin: 4px 0 3px;
    font-size: 20px;
    line-height: 1.15;
    color: #101f3f;
    font-weight: 900;
}

.sss-card h3 {
    margin: 0 0 5px;
    font-size: 13px;
    color: #24324b;
    font-weight: 800;
}

.sss-card-head p {
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.45;
    color: #52627a;
}

.sss-card-head span {
    color: #64748b;
    font-size: 13px;
}

.sss-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-top: 20px;
}

.sss-card-body p {
    margin: 0 0 13px;
    color: #24324b;
    font-size: 14px;
    line-height: 1.55;
}

.sss-card-body strong {
    color: #101f3f;
    font-weight: 900;
}

.sss-card blockquote {
    margin: auto 0 18px;
    padding-left: 14px;
    border-left: 3px solid #0fa5a0;
    color: #52627a;
    font-size: 13px;
    line-height: 1.55;
    font-style: italic;
}

.sss-rating {
    color: #ffb000;
    letter-spacing: 2px;
    font-size: 15px;
    margin-bottom: 12px;
}

.sss-card-body a {
    color: #079b98;
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
}

.sss-pagination {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 28px 0 26px;
}

.sss-pagination a {
    width: 38px;
    height: 38px;
    border: 1px solid #d8e2ef;
    border-radius: 7px;
    display: grid;
    place-items: center;
    color: #101f3f;
    font-weight: 700;
    text-decoration: none;
    background: #ffffff;
}

.sss-pagination a.active {
    background: #0fa5a0;
    color: #ffffff;
    border-color: #0fa5a0;
}

.sss-bottom-cta {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 50px;
    padding: 32px;
    border-radius: 14px;
    border: 1px solid #bcecea;
    background: linear-gradient(105deg, #f1fffd, #ffffff);
}

.sss-cta-illustration {
    display: grid;
    place-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #e4fbf8;
    color: #0fa5a0;
    font-size: 58px;
}

.sss-bottom-cta h2 {
    margin: 0 0 10px;
    color: #101f3f;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.sss-bottom-cta p {
    max-width: 680px;
    margin: 0;
    color: #52627a;
    line-height: 1.7;
}

@media (max-width: 1199px) {
    .sss-hero-content {
        text-align: center;
    }

    .sss-hero h1,
    .sss-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .sss-hero-actions {
        justify-content: center;
    }

     .sss-hero h1{
        font-size:50px;
    }

    .sss-hero-right{
        padding-right:24px;
        box-sizing:border-box;
    }


    .sss-hero{
        grid-template-columns:50% 50%;
        gap:24px;
    }

    .sss-hero-image{
        display:flex;
        justify-content:center;
        margin-top:30px;
    }
    
    .sss-hero-image img{
        max-width:100%;
        border-radius:24px;
    }
    
    .sss-stats{
        position:relative !important;
        right:auto !important;
        bottom:auto !important;
        left:auto !important;
        top:auto !important;

        width:100%;
        max-width:100%;
        margin-top:28px;
        padding-right:20px;
        grid-template-columns:repeat(2,1fr);
    }

    .sss-stats div:nth-child(2){
        border-right:0;
    }

    .sss-stats div:nth-child(1),
    .sss-stats div:nth-child(2){
        border-bottom:1px solid #e5edf5;
    }

    .sss-hero-image,
    .sss-stats{
        width:100%;
        box-sizing:border-box;
    }
    
    .sss-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
     .sss-hero{
        grid-template-columns:1fr;
        text-align:center;
        gap:40px;
    }

    .sss-hero-right{
        padding-right:0;
    }

    .sss-hero-content{
        max-width:100%;
    }

    .sss-hero h1{
        font-size:42px;
        line-height:1.1;
        margin:20px auto;
    }

    .sss-hero p{
        max-width:700px;
        margin:0 auto;
    }

    .sss-hero-actions{
        justify-content:center;
    }

    .sss-hero-image{
        display:flex;
        justify-content:center;
        padding:0;
        margin:0;
    }

    .sss-hero-image img{
        width:100%;
        max-width:650px;
        border-radius:24px;
    }

    .sss-stats{
        position:relative !important;
        right:auto !important;
        bottom:auto !important;
        left:auto !important;
        top:auto !important;

        width:100%;
        max-width:100%;
        margin-top:28px;

        display:grid;
        grid-template-columns:repeat(2,1fr);
    }

    .sss-stats div:nth-child(2){
        border-right:0;
    }

    .sss-stats div:nth-child(1),
    .sss-stats div:nth-child(2){
        border-bottom:1px solid #e5edf5;
    }
    .sss-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sss-list-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .sss-filters {
        width: 100%;
    }

    .sss-filters input,
    .sss-filters select {
        width: 100%;
        min-width: 0;
    }

    .sss-bottom-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sss-cta-illustration {
        margin: 0 auto;
    }

    .sss-bottom-cta .sss-hero-actions {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .sss-container {
        width: min(100% - 28px, 1180px);
    }

    .sss-hero-content {
        padding: 42px 0 28px;
    }

    .sss-badge {
        font-size: 11px;
        padding: 8px 13px;
    }

    .sss-hero h1 {
        font-size: 34px;
        line-height: 1.12;
    }

    .sss-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .sss-hero-actions {
        gap: 12px;
    }

    .sss-btn {
        width: 100%;
    }

    .sss-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 34px;
    }

    .sss-stats div {
        padding: 20px 16px;
    }

    .sss-stats div:nth-child(2) {
        border-right: 0;
    }

    .sss-stats div:nth-child(1),
    .sss-stats div:nth-child(2) {
        border-bottom: 1px solid #e5edf5;
    }

    .sss-container {
        width: min(100% - 28px, 1180px);
    }

    .sss-hero-content {
        padding: 42px 0 28px;
    }

    .sss-badge {
        font-size: 11px;
        padding: 8px 13px;
    }

    .sss-hero h1 {
        font-size: 34px;
        line-height: 1.12;
    }

    .sss-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .sss-hero-actions {
        gap: 12px;
    }

    .sss-btn {
        width: 100%;
    }

    .sss-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 34px;
    }

    .sss-stats div {
        padding: 20px 16px;
    }

    .sss-stats div:nth-child(2) {
        border-right: 0;
    }

    .sss-stats div:nth-child(1),
    .sss-stats div:nth-child(2) {
        border-bottom: 1px solid #e5edf5;
    }

    .sss-grid {
        grid-template-columns: 1fr;
    }

    .sss-card {
        min-height: auto;
    }

    .sss-filters {
        flex-direction: column;
    }

    .sss-btn {
        width: 100%;
    }

    .sss-bottom-cta {
        padding: 24px 18px;
    }

    .sss-bottom-cta h2 {
        font-size: 24px;
    }
}

@media (max-width: 420px) {

    .sss-hero h1 {
        font-size: 30px;
    }

    .sss-stats {
        grid-template-columns: 1fr;
    }

    .sss-stats div {
        border-right: 0;
        border-bottom: 1px solid #e5edf5;
    }

    .sss-stats div:last-child {
        border-bottom: 0;
    }

    .sss-card-head {
        flex-direction: column;
    }
}

/* ===================================
   STUDENT SUCCESS STORIES END
=================================== */









/* ===================================
   STUDENT REVIEWS START
=================================== */


.result-thumb-wrap {
    width: 260px;
    height: 165px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    background: #f8fafc;
}

.result-thumb-scale {
    width: 1500px;
    height: 950px;
    transform: scale(0.173);
    transform-origin: top left;
}

.result-modal-fit {
    width: 100%;
    height: calc(100vh - 180px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.result-modal-scale {
    width: 1500px;
    height: 950px;
    transform-origin: center center;
    transform: scale(0.70);
}

@media (max-width: 1200px) {
    .result-modal-scale {
        transform: scale(0.55);
    }
}

@media (max-width: 768px) {
    .result-modal-scale {
        transform: scale(0.32);
    }
}







.lvl-reviews-section {
    padding: 80px 0;
    background: #f8fafc;
}

.lvl-reviews-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.lvl-reviews-head {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: center;
    margin-bottom: 36px;
}

.lvl-review-eyebrow {
    display: inline-block;
    color: #0ba39e;
    font-weight: 800;
    margin-bottom: 10px;
}

.lvl-reviews-head h2 {
    color: #08254c;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    margin: 0 0 10px;
}

.lvl-reviews-head p {
    color: #475569;
    font-size: 17px;
    margin: 0;
}

.lvl-review-summary-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.lvl-average-rating {
    font-size: 52px;
    font-weight: 900;
    color: #08254c;
    line-height: 1;
}

.lvl-average-stars,
.lvl-review-stars {
    color: #f59e0b;
    margin: 10px 0;
}

.lvl-review-count {
    color: #64748b;
    font-size: 14px;
}

.lvl-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.lvl-review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.lvl-review-top {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.lvl-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ba39e, #087f7b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.lvl-review-top h3 {
    color: #08254c;
    font-size: 18px;
    margin: 0;
}

.lvl-review-top small {
    color: #64748b;
}

.lvl-review-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 17px;
}

.lvl-review-stars span {
    color: #475569;
    font-weight: 700;
    margin-left: 8px;
}

.lvl-review-text {
    color: #334155;
    font-size: 16px;
    line-height: 1.7;
    margin: 14px 0 0;
}

.lvl-result-preview {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed #cbd5e1;
}

.lvl-result-preview > span {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: #0ba39e;
    margin-bottom: 10px;
}

.lvl-empty-review {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: #64748b;
}

@media (max-width: 992px) {
    .lvl-reviews-head {
        grid-template-columns: 1fr;
    }

    .lvl-review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lvl-review-summary-card {
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    .lvl-reviews-section {
        padding: 56px 0;
    }

    .lvl-review-grid {
        grid-template-columns: 1fr;
    }
}
/* ===================================
   STUDENT REVIEWS END
=================================== */
