: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;
}

/* ===================================
   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:#08254c;
    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;
}

/* ===================================
   RESPONSIVE
=================================== */

@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;
    }

}

@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;
    }

}

/* ===================================
   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{
    padding:80px 0;
    background: var(--soft-bg);
    border-top:1px solid #eef2f7;
    border-bottom:1px solid #eef2f7;
}

.resource-hub-section .container{
    max-width:1400px;
    margin:auto;
    padding:0 15px;
}

/* HEADER */

.resource-hub-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    margin-bottom:50px;
}

.resource-hub-header h2{
    font-size:36px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:12px;
}

.resource-hub-header p{
    color:#64748b;
    line-height:1.8;
    max-width:750px;
}

/* BUTTON */

.resource-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    text-decoration:none;
    background:#14b8a6;
    color:var(--white);
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.resource-btn:hover{
    transform:translateY(-2px);
}

/* CATEGORY ROW */

.resource-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:20px;
}

.resource-item{
    text-decoration:none;
    text-align:center;
    padding:20px 10px;
    border:1px solid #edf2f7;
    border-radius:12px;
    transition:.3s;
}

.resource-item:hover{
    border-color:#14b8a6;
    transform:translateY(-4px);
}

.resource-item i{
    font-size:34px;
    color:#14b8a6;
    margin-bottom:14px;
    display:block;
}

.resource-item span{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#334155;
    line-height:1.5;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:992px){

    .resource-hub-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .resource-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

@media(max-width:768px){

    .resource-hub-header h2{
        font-size:28px;
    }

    .resource-grid{
        grid-template-columns:repeat(3,1fr);
        gap:15px;
    }

    .resource-item{
        padding:18px 10px;
    }

    .resource-item i{
        font-size:28px;
    }

}

@media(max-width:480px){

    .resource-grid{
        grid-template-columns:1fr 1fr;
    }

    .resource-item span{
        font-size:13px;
    }
}

/* ===================================
   RESOURCE HUBS 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
=================================== */
