* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    html {
    overflow-x: clip;
    scroll-behavior: smooth;
    }
    
    body {
    background: #000 !important;
    overflow-x: clip;
    }
    
    @font-face {
    font-family: 'Galano';
    src: url('/-global-assets/fonts/GalanoGrotesqueRegular.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    }
    
    @font-face {
    font-family: 'Galano';
    src: url('/-global-assets/fonts/GalanoGrotesque-Medium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    }
    
    @font-face {
    font-family: 'Galano';
    src: url('/-global-assets/fonts/GalanoGrotesqueDEMO-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    }
    
    :root {
    --brand-navy: #02253D;
    --deep-navy: #001B2D;
    --black: #000;
    --white: #fff;
    --muted-white: rgba(255, 255, 255, 0.58);
    --platinum-gray: #EFEFEF;
    --brand-gradient: linear-gradient(90deg, #02bcdd 0%, #06d1e5 30%, #64eda8 68%, #d0f88d 100%);
    --brand-gradient-angle: linear-gradient(45deg, #02BCDD 0%, #06D1E5 22.09%, #64EDA8 51.94%, #D0F88D 100%);
    }
    
    .doitership-page {
    color: var(--white);
    font-family: 'Galano', Arial, sans-serif;
    font-weight: 500;
    }
    
    .doitership-main {
    background: #000;
    }
    
    .gradient-text {
    background: var(--brand-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }
    
    /* =========================================================
    Section 1 HERO SECTION
    ========================================================= */
    
    .doitership-hero-section {
    min-height: calc(100vh + 10px);
    background: #000;
    padding: 0 0 95px;
    }
    
    .doitership-hero-panel {
    position: relative;
    width: 100vw;
    min-height: calc(100vh + 10px);
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("/college-students/doitership/images/hands-on-training-experience-panel.webp");
    /* background-size: cover;
    background-position: center center; */
    background-size: 100% 100%;   
    background-position: center; 
    background-repeat: no-repeat;
    text-align: center;
    }
    
    .doitership-hero-logo {
    width: min(345px, 34vw);
    margin-top: 2px;
    }
    
    .doitership-hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(660px, 49vw, 1080px);
    height: auto;
    transform: translate(-50%, -50%);
    }
    
    .doitership-hero-subtext {
    position: absolute;
    left: 50%;
    bottom: clamp(80px, 10vh, 102px);
    width: min(90vw, 1100px);
    margin: 0;
    color: #eaf1f8;
    font-family: 'Galano';
    font-weight: 500;
    font-size: clamp(24px, 1.7vw, 36px);
    line-height: 1.25;
    transform: translateX(-50%);
    }
    
    /* Mobile */
    @media (max-width: 479px) {
    
    .doitership-hero-section {
    min-height: 10vh;
    padding-bottom: 40px;
    }
    .doitership-hero-panel {
    position: relative;
    width: 100vw;
    min-height: calc(90vh - 15px);
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(/college-students/doitership/images/hands-on-training-experience-panel.webp);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    }
    
    
    .doitership-hero-title {
    width: min(90vw, 380px);
    height: auto;
    }
    
    .doitership-hero-subtext {
    bottom: 76px;
    max-width: 320px;
    font-size: clamp(17px, 4.8vw, 22px);
    line-height: 1.3;
    }
    
    }
    
    /* Large Mobile */
    @media (min-width: 480px) and (max-width: 767px) {
    
    .doitership-hero-panel {
    min-height: calc(100vh - 15px);
    
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    }
    
    .doitership-hero-title {
    width: min(88vw, 500px);
    height: auto;
    }
    
    .doitership-hero-subtext {
    bottom: 76px;
    max-width: 500px;
    font-size: clamp(18px, 3.5vw, 24px);
    line-height: 1.25;
    }
    }
    
    /* Tablet */
    @media (min-width: 768px) and (max-width: 1040px) {
    
    .doitership-hero-section,
    .doitership-hero-panel {
    min-height: calc(92vh + 10px);
    }
    
    .doitership-hero-panel {
    padding: 0 30px;
    justify-content: center;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    }
    
    
    .doitership-hero-title {
    width: clamp(560px, 72vw, 760px);
    height: auto;
    }
    
    .doitership-hero-subtext {
    bottom: clamp(65px, 6vh, 102px);
    max-width: 700px;
    font-size: clamp(22px, 2.7vw, 30px);
    line-height: 1.3;
    }
    }
    
    /* =========================================================
    Section 2 YOU ARE NOT ALONE SECTION
    ========================================================= */
    
    .doitership-alone-section {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 20px;
    }
    
    .doitership-alone-visual {
    position: relative;
    width: clamp(320px, 48vw, 920px);
    display: grid;
    place-items: center;
    }
    
    .doitership-alone-visual > img {
    width: 100%;
    display: block;
    opacity: 0.95;
    transform: translateY(clamp(34px, 3vw, 48px));
    }
    
    .doitership-alone-content {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    }
    
    .doitership-alone-content h2 {
    font-family: 'Galano';
    font-weight: 700;
    font-size: clamp(42px, 3.85vw, 86px);
    line-height: 1.28;
    text-transform: uppercase;
    }
    
    .doitership-alone-content p {
    margin-top: clamp(16px, 1.05vw, 22px);
    font-family: 'Galano', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(18px, 1.67vw, 34px);
    line-height: 1.25;
    }
    
    .doitership-alone-content .gradient-text {
    font-size: clamp(64px, 6.25vw, 132px);
    font-weight: 700;
    line-height: 1.2;
    }
    
    /* =========================================================
    Section 3 RELATABLE SITUATIONS INTRO SECTION
    ========================================================= */
    
    .doitership-relate-section {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 45px;
    padding: 110px 20px;
    text-align: center;
    margin: 0 auto;
    }
    
    .heading-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    }
    
    .doitership-relate-section img {
    width: min(680px, 72vw);
    }
    
    .doitership-relate-section h2 {
    font-family: 'Galano';
    font-weight: 700;
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: 2px;
    color: #fff;
    }
    
    /* =========================================================
    Section 4 SCROLL STORYTELLING CARDS SECTION
    ========================================================= */
    
    .doitership-slide-section {
    position: relative;
    width: 100%;
    height: 720vh;
    }
    
    .story-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: clip;
    }
    
    .scroll-container {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    }
    
    .sections-wrapper {
    position: relative;
    width: min(1280px, 72vw);
    height: min(78vh, 700px);
    }
    
    .section {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(70px) scale(0.96);
    filter: brightness(0.78);
    transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
    pointer-events: none;
    }
    
    .section.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: brightness(1);
    pointer-events: auto;
    }
    
    .section.is-before {
    transform: translateY(-70px) scale(0.96);
    }
    
    .doitership-story-card {
    height: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 46px;
    background:
    radial-gradient(circle at 19% 54%, rgba(3, 58, 90, 0.96) 0%, rgba(2, 37, 61, 0.95) 26%, rgba(0, 14, 23, 0.98) 64%, #000 100%) padding-box,
    linear-gradient(135deg, rgba(2, 188, 221, 0.95), rgba(2, 188, 221, 0.22) 48%, rgba(2, 188, 221, 0.9)) border-box;
    box-shadow: 0 0 36px rgba(2, 188, 221, 0.12);
    overflow: hidden;
    }
    
    .story-card-media {
    display: grid;
    align-items: center;
    justify-items: end;
    padding-right: clamp(24px, 3vw, 58px);
    }
    
    .story-card-media img {
    width: clamp(210px, 18vw, 340px);
    object-fit: contain;
    }
    
    .story-card-content {
    padding: 0 clamp(56px, 6vw, 120px) 0 clamp(34px, 4vw, 80px);
    }
    
    .story-card-kicker {
    font-family: 'Galano';
    font-weight: 500;
    font-size: clamp(22px, 1.7vw, 30px);
    color: #fff;
    line-height: 1.3;
    }
    
    .story-card-translation {
    /*margin-top: -5px;*/
    margin-bottom: 0;
    font-family: 'Galano';
    font-weight: 500;
    font-size: clamp(18px, 1.35vw, 24px);
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.25;
    margin-bottom: clamp(54px, 5vw, 84px);
    }
    
    .story-card-content h3 {
    font-family: 'Galano';
    font-weight: 600;
    font-size: clamp(34px, 2.55vw, 48px);
    line-height: 1.24;
    color: #fff;
    }
    
    .doitership-story-card h2 {
    display: inline-block;
    width: fit-content;
    background: linear-gradient(
    90deg,
    #02BCDD 0%,
    #06D1E5 22.09%,
    #64EDA8 51.94%,
    #D0F88D 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
    font-size: clamp(44px, 3.35vw, 62px);
    margin-bottom: -10px;
    }
    
    .progress-container {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 100vw;
    height: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    }
    
    .doitership-slide-section.is-story-active .progress-container {
    position: fixed;
    opacity: 1;
    visibility: visible;
    }
    
    .doitership-slide-section.is-story-complete .progress-container {
    position: absolute;
    opacity: 1;
    visibility: visible;
    }
    
    .progress-bar {
    width: 100%;
    height: 100%;
    background: rgba(2, 37, 61, 0.95);
    position: relative;
    }
    
    .progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    background: var(--brand-gradient);
    transition: width 0.18s linear;
    }
    
    .progress-percentage {
    position: absolute;
    top: 50%;
    right: -36px;
    transform: translateY(-50%);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 30px;
    padding: 0 13px;
    border: 2px solid #d0f88d;
    border-radius: 999px;
    background: #000;
    color: #fff !important;
    font-family: Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 600;
    line-height: 1 !important;
    white-space: nowrap;
    letter-spacing: 0;
    text-align: center;
    }
    
    @media (min-width: 768px) and (max-width: 1040px) {
    
    .doitership-slide-section {
    height: 720vh;
    padding: 0;
    }
    
    .story-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: clip;
    }
    
    .scroll-container {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    }
    
    .sections-wrapper {
    width: min(88vw, 960px);
    height: min(76vh, 620px);
    min-height: 560px;
    position: relative;
    display: block;
    }
    
    .doitership-story-card {
    position: absolute;
    inset: 0;
    grid-template-columns: 40% 60%;
    grid-template-rows: auto;
    border: 1px solid rgba(1, 117, 138, 0.9);
    border-radius: 34px;
    padding: 0;
    text-align: left;
    background:
    radial-gradient(circle at 19% 54%, rgba(3, 58, 90, 0.96) 0%, rgba(2, 37, 61, 0.95) 26%, rgba(0, 14, 23, 0.98) 64%, #000 100%) padding-box,
    linear-gradient(135deg, rgba(2, 188, 221, 0.95), rgba(2, 188, 221, 0.22) 48%, rgba(2, 188, 221, 0.9)) border-box;
    }
    
    .story-card-media {
    justify-items: end;
    padding-right: clamp(18px, 3vw, 40px);
    margin-bottom: 0;
    }
    
    .story-card-media img {
    width: clamp(190px, 25vw, 300px);
    }
    
    .story-card-content {
    padding: 0 clamp(34px, 5vw, 74px) 0 clamp(24px, 3vw, 48px);
    order: initial;
    }
    
    .story-card-media {
    order: initial;
    }
    
    .story-card-header-mobile {
    display: none !important;
    }
    
    .story-card-kicker-desktop,
    .story-card-translation-desktop {
    display: block !important;
    }
    
    .story-card-content h3 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.22;
    margin: 0;
    font-weight: 600;
    }
    
    .story-card-content .gradient-text {
    font-size: clamp(40px, 5.5vw, 60px);
    }
    
    .doitership-story-card {
    min-height: 0;
    height: 100%;
    gap: 0;
    }
    
    .progress-container {
    display: block;
    }
    }
    
    /* =========================================================
    Section 5 DREAM STAYED SAME SECTION
    ========================================================= */
    
    .doitership-dream-section {
    min-height: 95vh;
    display: grid;
    place-items: center;
    padding: 120px 20px;
    text-align: center;
    }
    
    .doitership-dream-section h2 {
    font-family: 'Galano';
    font-weight: 700;
    font-size: clamp(36px, 4.9vw, 86px);
    line-height: 1.18;
    /* text-transform: uppercase; */
    }
    
    .doitership-dream-section p {
    margin-top: clamp(18px, 2vw, 34px);
    font-family: 'Galano';
    font-weight: 500;
    font-size: clamp(20px, 2vw, 36px);
    line-height: 1.3;
    }
    
    /* =========================================================
    Section 6 HIRED SECTION
    ========================================================= */
    
    .doitership-hired-section {
    min-height: 95vh;
    display: grid;
    place-items: center;
    padding: 120px 20px;
    text-align: center;
    }
    
    .hired-animation {
    position: relative;
    display: grid;
    justify-items: center;
    justify-content: center;
    width: min(100%, 760px);
    margin: 0 auto;
    }
    
    .hired-animation > img {
    width: clamp(160px, 16vw, 210px);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    animation: hiredImageLoop 6.8s ease-in-out infinite;
    }
    
    .hired-dots {
    position: absolute;
    width: 112px;
    height: 86px;
    top: 36%;
    left: calc(50% + 105px);
    margin: 0;
    z-index: 2;
    }
    
    .hired-dots span {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translate(8px, 10px);
    }
    
    .hired-dots span:nth-child(1) {
    left: 0;
    top: 0;
    width: 34px;
    height: 34px;
    animation: dotLargeLoop 6.8s cubic-bezier(.22, .61, .36, 1) infinite;
    }
    
    .hired-dots span:nth-child(2) {
    left: 42px;
    top: 30px;
    width: 25px;
    height: 25px;
    animation: dotMediumLoop 6.8s cubic-bezier(.22, .61, .36, 1) infinite;
    }
    
    .hired-dots span:nth-child(3) {
    left: 78px;
    top: 58px;
    width: 18px;
    height: 18px;
    animation: dotSmallLoop 6.8s cubic-bezier(.22, .61, .36, 1) infinite;
    }
    
    .hired-text {
    margin-top: 54px;
    opacity: 1;
    transform: none;
    width: 100%;
    text-align: center;
    }
    
    .hired-text p {
    font-family: 'Galano';
    font-weight: 500;
    font-size: clamp(20px, 2vw, 36px);
    line-height: 1.3;
    margin-left: 0;
    margin-bottom: 35px;
    }
    
    .hired-text h2 {
    font-family: 'Galano';
    font-weight: 700;
    font-size: clamp(36px, 4.9vw, 86px);
    line-height: 1.18;
    margin-bottom: 0;
    }
    
    @keyframes dotSmallLoop {
    0%,
    18% {
    opacity: 0;
    transform: translate(8px, 10px);
    }
    24%,
    58% {
    opacity: 0.8;
    transform: translate(0, 0);
    }
    70%,
    100% {
    opacity: 0;
    transform: translate(-3px, -6px);
    }
    }
    
    @keyframes dotMediumLoop {
    0%,
    24% {
    opacity: 0;
    transform: translate(8px, 10px);
    }
    30%,
    58% {
    opacity: 0.8;
    transform: translate(0, 0);
    }
    70%,
    100% {
    opacity: 0;
    transform: translate(-3px, -6px);
    }
    }
    
    @keyframes dotLargeLoop {
    0%,
    30% {
    opacity: 0;
    transform: translate(8px, 10px);
    }
    36%,
    58% {
    opacity: 0.8;
    transform: translate(0, 0);
    }
    70%,
    100% {
    opacity: 0;
    transform: translate(-3px, -6px);
    }
    }
    
    @keyframes hiredImageLoop {
    0%,
    42% {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    }
    52%,
    90% {
    opacity: 1;
    transform: translateY(0);
    }
    100% {
    opacity: 0;
    transform: translateY(6px) scale(0.99);
    }
    }
    
    @media (max-width: 768px) {
    
    .doitership-hired-section {
    padding: 120px 18px 150px;
    }
    
    .hired-animation {
    width: 100%;
    }
    
    .hired-animation > img {
    width: clamp(118px, 34vw, 150px);
    }
    
    .hired-dots {
    display: block;
    width: 76px;
    height: 58px;
    top: 41%;
    left: calc(50% + 75px);
    }
    
    .hired-dots span:nth-child(1) {
    width: 22px;
    height: 22px;
    }
    
    .hired-dots span:nth-child(2) {
    left: 29px;
    top: 22px;
    width: 16px;
    height: 16px;
    }
    
    .hired-dots span:nth-child(3) {
    left: 53px;
    top: 40px;
    width: 12px;
    height: 12px;
    }
    
    .hired-text {
    margin-top: 44px;
    }
    
    .hired-text p {
    margin-bottom: 22px;
    }
    }
    
    @media (min-width: 769px) and (max-width: 1040px) {
    
    .doitership-hired-section {
    padding: 110px 20px 130px;
    }
    
    .hired-animation > img {
    width: clamp(150px, 22vw, 190px);
    }
    
    .hired-dots {
    width: 100px;
    height: 76px;
    top: 42%;
    left: calc(50% + 100px);
    }
    
    .hired-dots span:nth-child(1) {
    width: 30px;
    height: 30px;
    }
    
    .hired-dots span:nth-child(2) {
    left: 37px;
    top: 27px;
    width: 22px;
    height: 22px;
    }
    
    .hired-dots span:nth-child(3) {
    left: 68px;
    top: 50px;
    width: 16px;
    height: 16px;
    }
    
    .hired-text {
    margin-top: 50px;
    }
    
    .hired-text p {
    margin-bottom: 28px;
    }
    }
    
    /* =========================================================
    Section 7 PAUSE BREATHE SECTION
    ========================================================= */
    
    .doitership-pause-section {
    min-height: 95vh;
    display: grid;
    place-items: center;
    padding: 250px 20px;
    text-align: center;
    }
    
    .doitership-pause-section h2 {
    font-family: 'Galano';
    font-weight: 700;
    font-size: clamp(36px, 4.9vw, 86px);
    line-height: 1.18;
    }
    
    .doitership-pause-section p {
    margin-top: clamp(24px, 3vw, 70px);
    color: #fff;
    font-family: 'Galano';
    font-weight: 500;
    font-size: clamp(20px, 2vw, 36px);
    line-height: 1.3;
    max-width: min(92vw, 1100px);
    }
    
    
    /* =========================================================
    Section 8 GROOM CORPORATE WORLD SECTION
    ========================================================= */
    
    .doitership-groom-section {
    min-height: 95vh;
    display: grid;
    place-items: center;
    padding: clamp(100px, 8vw, 150px) 20px;
    }
    
    .groom-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) auto minmax(260px, 0.9fr);
    align-items: center;
    column-gap: clamp(28px, 3.4vw, 70px);
    width: 100%;
    max-width: 1320px;
    justify-content: center;
    }
    
    .groom-left {
    display: grid;
    justify-items: start;
    align-items: center;
    justify-self:end;
    }
    .gr-block,
    .om-block{
    width:max-content;
    }
    .groom-word-left,
    .groom-word-right{
    align-self:center;
    margin:0;
    }
    
    .groom-letus {
    font-family: 'Galano', Arial, sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: clamp(28px, 2.8vw, 48px);
    text-align: left;
    align-self: flex-start;
    line-height: 1.2;
    margin: 0 0 clamp(10px, 1vw, 18px);
    }
    
    
    .groom-clock-wrap {
    width: clamp(360px, 31vw, 520px);
    aspect-ratio: 1 / 1;
    height: auto;
    border: double 1px transparent;
    border-radius: 9999px;
    background-image:
    linear-gradient(90deg, #000000 -50%, #02253D 50%, #000000 150%),
    linear-gradient(360deg, #01758a, #000, #01758a);
    background-origin: border-box;
    background-clip: content-box, border-box;
    padding: 1px;
    display: grid;
    place-items: center;
    }
    
    .groom-clock-wrap img {
    width: 88%;
    height: 88%;
    display: block;
    object-fit: contain;
    }
    
    .groom-right {
    display: grid;
    justify-content: end;
    justify-items: end;
    align-items: center;
    justify-self:start;
    }
    
    
    .groom-tagline {
    font-family: 'Galano';
    font-weight: 600;
    color: #fff;
    font-size: clamp(26px, 2.8vw, 48px);
    line-height: 1.18;
    text-align: right;
    align-self: flex-end;
    margin: clamp(34px, 3vw, 54px) 0 0 0;
    }
    .groom-tagline:nth-of-type(2) {
    margin-top: 10px;
    }
    .om-block{
    width:max-content;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    }
    
    .groom-right p {
    width: 100%;
    text-align: right;
    }
    
    .groom-word {
    display: flex;
    gap: 0;
    margin: 0;
    align-items: center;
    }
    
    .groom-word-left{
    margin: 0;
    }
    .gr-block{
    width:max-content;
    display:flex;
    flex-direction:column;
    }
    
    .groom-word-right{
    margin: 0;
    position:relative;
    top: clamp(58px, 5vw, 92px);
    }
    
    .groom-word span {
    font-family: 'Galano', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(132px, 13vw, 230px);
    line-height: 1;
    background: var(--brand-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }
    
    @media (min-width:1201px){
    
    .groom-layout{
    max-width:1320px;
    }
    }
    /* =========================================================
    Section 9 NOT REPEATING OTHERS SECTION
    ========================================================= */
    
    .doitership-nooo-section {
    min-height: 95vh;
    display: grid;
    place-items: center;
    padding: 160px 20px 110px;
    }
    
    .nooo-composition {
    position: relative;
    width: clamp(340px, 58vw, 900px);
    min-height: clamp(580px, 46vw, 760px);
    display: grid;
    justify-items: center;
    }
    
    .nooo-bubble {
    width: clamp(320px, 40vw, 620px);
    }
    
    .nooo-text {
    position: absolute;
    top: clamp(18px, 2vw, 32px);
    width: min(86%, 620px);
    text-align: center;
    }
    
    .nooo-text h2 {
    font-family: 'Galano';
    font-weight: 700;
    font-size: clamp(48px, 4.5vw, 78px);
    text-transform: uppercase;
    background: linear-gradient(90deg, #02BCDD 0%, #06D1E5 40.09%, #64EDA8 50.94%, #D0F88D 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    
    }
    
    .nooo-text p {
    font-family: 'Galano';
    font-weight: 500;
    font-size: clamp(22px, 2.1vw, 36px);
    line-height: 1.2;
    }
    
    .nooo-bot {
    position: absolute;
    left: 50%;
    bottom: clamp(72px, 7vw, 112px);
    width: clamp(280px, 31vw, 520px);
    transform: translateX(-50%);
    }
    
    @media (max-width: 479px) {
    
    .nooo-composition {
    width: min(92vw, 390px);
    min-height: 560px;
    }
    
    .nooo-bubble {
    width: 90%;
    display: block;
    margin: 0 auto;
    transform: none;
    }
    
    .nooo-text {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 84%;
    }
    
    .nooo-text h2 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1;
    }
    
    .nooo-text p {
    font-size: clamp(17px, 4.8vw, 20px);
    line-height: 1.25;
    }
    
    .nooo-bot {
    left: 50%;
    transform: translateX(-50%);
    width: min(290px, 72vw);
    top: 245px;
    bottom: auto;
    }
    .nooo-text .gradient-text{
    padding: 0 0 2px 0;
    }
    }
    @media (min-width: 480px) and (max-width: 767px) {
    
    .doitership-nooo-section {
    min-height: auto;
    padding: 120px 20px 70px;
    }
    
    .nooo-composition {
    width: min(90vw, 560px);
    min-height: 680px;
    }
    
    .nooo-bubble {
    width: 100%;
    display: block;
    }
    
    .nooo-text {
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 84%;
    }
    
    .nooo-text h2 {
    font-size: clamp(42px, 8vw, 58px);
    line-height: 1;
    
    }
    
    .nooo-text p {
    font-size: clamp(22px, 4vw, 28px);
    line-height: 1.22;
    margin: 2px auto;
    }
    
    .nooo-bot {
    left: 50%;
    transform: translateX(-50%);
    width: min(390px, 70vw);
    top: 330px;
    bottom: auto;
    }
    .nooo-text .gradient-text{
    padding: 0 0 12px 0;
    }
    }
    /* =========================================================
    Section 10 DOITER ROADMAP SECTION
    ========================================================= */
    
    .doitership-roadmap-section {
    min-height: 100vh;
    padding: 130px 20px;
    text-align: center;
    }
    
    .roadmap-header h2 {
    font-family: 'Galano';
    font-weight: 700;
    font-size: 74px;
    /* text-transform: uppercase; */
    display: inline-block;
    width: fit-content;
    background: linear-gradient(
    90deg,
    #02BCDD 0%,
    #06D1E5 22.09%,
    #64EDA8 51.94%,
    #D0F88D 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
    }
    
    .roadmap-header p {
    /* margin-top: 35px; */
    font-family: 'Galano';
    font-weight: 600;
    font-size: 56px;
    line-height: 1;
    }
    
    .roadmap-grid {
    width: min(1440px, 76vw);
    margin: 110px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: stretch;
    }
    
    .roadmap-card {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* border: 2px solid #02BCDD; */
    --background-transition: 0.3s;
    --border-radius: 10px 10px 10px 10px;
    border-radius: var(--border-radius);
    background: radial-gradient(99.4% 99.4% at 50% 14.07%, #033658 1.42%, #02253D 33.27%, #000 100%);
    box-shadow: 0px 0px 5px 3px rgba(3, 192, 223, 0.5);
    overflow: hidden;
    transition: all var(--background-transition) ease;
    color: rgba(255, 255, 255, 0.52);
    }
    
    .roadmap-card > * {
    position: relative;
    z-index: 1;
    }
    
    .roadmap-icon {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    }
    
    .roadmap-card:nth-child(1) .roadmap-icon {
    --roadmap-icon: url("/college-students/doitership/images/corporate-skills-understanding-icon.svg");
    }
    
    .roadmap-card:nth-child(2) .roadmap-icon {
    --roadmap-icon: url("/college-students/doitership/images/workplace-practice-training-icon.svg");
    }
    
    .roadmap-card:nth-child(3) .roadmap-icon {
    --roadmap-icon: url("/college-students/doitership/images/career-growth-improvement-icon.svg");
    }
    
    .roadmap-card:nth-child(4) .roadmap-icon {
    --roadmap-icon: url("/college-students/doitership/images/job-placement-readiness-icon.svg");
    }
    
    .roadmap-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(84.15deg, #02BCDD 0%, #06D1E5 22.09%, #64EDA8 51.94%, #D0F88D 100%);
    -webkit-mask: var(--roadmap-icon) center / contain no-repeat;
    mask: var(--roadmap-icon) center / contain no-repeat;
    opacity: 0;
    transition: opacity var(--background-transition) ease;
    }
    
    .roadmap-icon img {
    width: 68px;
    height: 68px;
    min-width: 68px;
    min-height: 68px;
    max-width: 68px;
    max-height: 68px;
    object-fit: contain;
    opacity: 0.62;
    transition: opacity var(--background-transition) ease;
    }
    
    .roadmap-card:nth-child(1) .roadmap-icon {
    width: 92px;
    height: 92px;
    }
    
    .roadmap-card:nth-child(1) .roadmap-icon img {
    width: 92px;
    height: 92px;
    min-width: 92px;
    min-height: 92px;
    max-width: 92px;
    max-height: 92px;
    }
    
    .roadmap-card:hover .roadmap-icon img,
    .roadmap-card:focus-within .roadmap-icon img {
    opacity: 0;
    }
    
    .roadmap-card:hover .roadmap-icon::before,
    .roadmap-card:focus-within .roadmap-icon::before {
    opacity: 1;
    }
    
    .roadmap-card h3 {
    /*padding: 0 36px;*/
    margin-top: auto;
    padding-top: 40px;
    font-family: 'Galano';
    font-weight: 600;
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.56);
    }
    
    .roadmap-card p {
    max-width: 235px;
    margin: 24px auto 40px;
    font-family: 'Galano', Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.1vw, 22px);
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.54);
    }
    
    .roadmap-card:hover,
    .roadmap-card:focus-within {
    z-index: 2;
    transform: scale(1.1);
    box-shadow: 0px 0px 5px 3px rgba(3, 192, 223, 0.5);
    color: #fff;
    }
    
    .roadmap-card:hover p,
    .roadmap-card:focus-within p {
    color: #fff;
    }
    
    .roadmap-card:hover h3,
    .roadmap-card:focus-within h3 {
    font-weight: 700;
    background: linear-gradient(84.15deg, #02BCDD 0%, #06D1E5 22.09%, #64EDA8 51.94%, #D0F88D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    }
    
    /* =========================================================
    Section 11 VIDEO TESTIMONIAL SECTION
    ========================================================= */
    
    .doitership-video-section {
    min-height: auto;
    display: grid;
    place-items: center;
    padding: clamp(60px, 6vw, 90px) 20px;
    }
    
    .video-panel {
    width: min(92vw, 1280px);
    padding: clamp(70px, 8vw, 130px) 20px;
    text-align: center;
    
    }
    
    .video-panel h2 {
    font-family: 'Galano';
    font-weight: 700;
    font-size: clamp(34px, 5vw, 78px);
    line-height: 1.12;
    max-width: 1180px;
    margin: 0 auto;
    }
    
    .video-panel p {
    /* margin-top: 22px; */
    font-family: 'Galano';
    font-weight: 600;
    font-size: clamp(22px, 3.6vw, 58px);
    line-height: 1.18;
    max-width: 1050px;
    margin: 0 auto;
    }
    
    .video-thumbnail {
    position: relative;
    display: block;
    width: clamp(280px, 48vw, 820px);
    margin: clamp(28px, 4vw, 48px) auto 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(2, 188, 221, 0.4);
    }
    
    .video-thumbnail img {
    display: block;
    width: 100%;
    }
    
    .video-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 48'%3E%3Cpath d='M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z' fill='%23f00'/%3E%3Cpath d='M45 24 27 14v20' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: clamp(54px, 6vw, 76px) auto;
    transition: opacity 0.2s ease;
    }
    
    .video-thumbnail:hover::after {
    opacity: 0.85;
    }
    
    @media (max-width: 479px) {
    .doitership-video-section {
    padding: 120px 16px 150px;
    }
    
    .video-panel {
    width: min(92vw, 390px);
    padding: 0;
    }
    
    .video-panel h2 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.08;
    }
    
    .video-panel p {
    margin-top: 12px;
    font-size: clamp(16px, 4.6vw, 20px);
    line-height: 1.18;
    }
    
    .video-thumbnail {
    width: min(92vw, 390px);
    margin-top: 34px;
    border-radius: 8px;
    }
    
    .video-thumbnail::after {
    background-size: clamp(46px, 16vw, 58px) auto;
    }
    }
    
    @media (min-width: 480px) and (max-width: 767px) {
    .doitership-video-section {
    padding: 130px 18px 160px;
    }
    
    .video-panel {
    width: min(92vw, 560px);
    padding: 0;
    }
    
    .video-thumbnail {
    width: min(92vw, 560px);
    margin-top: 38px;
    }
    }
    
    /* =========================================================
    Section 12 BELIEF SECTION
    ========================================================= */
    
    .doitership-belief-section {
    min-height: 90vh;
    display: grid;
    align-content: start;
    justify-items: center;
    padding: clamp(90px, 8vw, 150px) 20px clamp(90px, 7vw, 120px);
    text-align: center;
    }
    
    .belief-intro h2 {
    font-family: 'Galano';
    font-weight: 700;
    font-size: clamp(36px, 4.9vw, 86px);
    line-height: 1.18;
    /* text-transform: uppercase; */
    }
    
    .belief-intro p {
    font-family: 'Galano';
    font-weight: 500;
    font-size: clamp(20px, 2vw, 36px);
    line-height: 1.3;
    /* margin: 20px 0 0; */
    max-width: min(92vw, 1280px);
    }
    
    .belief-statement {
    margin-top: clamp(120px, 42vh, 560px);
    }
    
    .belief-statement img {
    width: clamp(90px, 10vw, 170px);
    margin-bottom: clamp(24px, 3vw, 48px);
    }
    
    .belief-statement h2 {
    font-family: 'Galano';
    font-weight: 700;
    font-size: clamp(36px, 4.9vw, 86px);
    line-height: 1.18;
    max-width: min(92vw, 1320px);
    margin: 0 auto;
    }
    
    .belief-statement h3 {
    font-family: 'Galano';
    font-weight: 500;
    font-size: clamp(20px, 2vw, 36px);
    line-height: 1.3;
    max-width: min(92vw, 1320px);
    margin: 0 auto;
    }
    
    @media (max-width: 479px) {
    
    .doitership-belief-section {
    min-height: auto;
    padding: 80px 16px 90px;
    }
    
    /* H2 */
    .belief-intro h2 {
    line-height: 1.15;
    }
    
    /* Body Text */
    .belief-intro p {
    margin-top: 14px;
    line-height: 1.28;
    padding: 0 12px;
    }
    
    .belief-statement {
    margin-top: 200px;
    }
    
    .belief-statement img {
    margin-bottom: 22px;
    }
    
    /* H3 */
    .belief-statement h3 {
    line-height: 1.28;
    max-width: 330px;
    margin: 0 auto;
    }
    
    .belief-statement h3 .gradient-text {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    }
    }
    
    @media (min-width: 480px) and (max-width: 767px) {
    .doitership-belief-section {
    min-height: auto;
    padding: 110px 18px 150px;
    }
    
    .belief-statement {
    margin-top: 220px;
    }
    }
    
    /* =========================================================
    Section 13 PLACEMENT JOURNEY SECTION
    ========================================================= */
    
    .doitership-start-section {
    min-height: 80vh;
    display: grid;
    place-items: center;
    padding: clamp(130px, 18vw, 350px) 20px;
    text-align: center;
    }
    
    .doitership-start-section h2 {
    margin-top: clamp(22px, 2.5vw, 36px);
    font-family: 'Galano';
    font-weight: 700;
    font-size: clamp(36px, 4.9vw, 86px);
    line-height: 1.18;
    display: inline-block;
    margin: 0 auto;
    max-width: min(94vw, 1500px);
    color: #fff;
    }
    
    .doitership-start-section h2:first-of-type {
    margin-top: 0;
    }
    
    .doitership-start-section h2.gradient-text {
    background: linear-gradient(90deg, #02BCDD 0%, #06D1E5 22.09%, #64EDA8 51.94%, #D0F88D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    }
    
    
    @media (max-width: 479px) {
    
    .doitership-start-section {
    min-height: auto;
    padding: 90px 16px;
    }
    
    .doitership-start-section h2 {
    margin-top: 20px;
    line-height: 1.14;
    padding: 0 12px;
    }
    
    
    }
    
    /* =========================================================
    Section 14 FINAL CTA SECTION
    ========================================================= */
    
    @property --cta-border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
    }
    
    .doitership-final-cta-section {
    min-height: auto;
    display: grid;
    place-items: center;
    padding: clamp(72px, 7vw, 110px) 20px clamp(90px, 8vw, 130px);
    }
    
    /* .final-cta-card {
    width: min(1425px, 75vw);
    min-height: auto;
    padding: 65px 40px 60px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 20px;
    border: 1px solid transparent;
    border-radius: 50px;
    background:
    linear-gradient(180deg, #02253D 20%, #000000 100%) padding-box,
    linear-gradient(180deg, #000000, #01758A) border-box;
    box-shadow: 0 0 18px 2px rgba(1, 116, 138, 0.22);
    } */
    
    .final-cta-card {
    width: min(1425px, 75vw);
    min-height: auto;
    padding: 65px 40px 60px;
    display: grid;
    place-items: center;
    gap: 20px;
    
    text-align: center;
    
    border: 1px solid transparent;
    border-radius: 50px;
    background:
    linear-gradient(180deg, #02253D 20%, #000000 100%) padding-box,
    linear-gradient(180deg, #000000, #01758A) border-box;
    box-shadow: 0 0 18px 2px rgba(1, 116, 138, 0.22);
    }
    
    .final-cta-title {
    margin: 0 0 clamp(58px, 5vw, 88px);
    }
    
    .final-cta-title h2 {
    margin: 0;
    font-family: 'Galano';
    font-weight: 700;
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: 1.1;
    background: var(--brand-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }
    
    .final-cta-title img,
    .final-cta-title-image {
    display: block;
    }
    
    .final-cta-title-image {
    width: clamp(340px, 47vw, 760px);
    margin-bottom: clamp(24px, 3.2vw, 42px);
    }
    
    .final-cta-card h3 {
    margin: 0;
    font-family: 'Galano';
    font-weight: 500;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: 2px;
    max-width: 980px;
    color: #fff;
    }
    
    .final-cta-card h3:first-of-type {
    margin-bottom: 0;
    }
    
    .final-cta-button {
    --cta-bg: #02253D;
    isolation: isolate;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: clamp(330px, 29vw, 500px);
    min-height: 64px;
    margin-top: clamp(76px, 7vw, 116px);
    padding: clamp(16px, 1.3vw, 22px) clamp(46px, 5vw, 84px);
    background:
    linear-gradient(var(--cta-bg), var(--cta-bg)) padding-box,
    conic-gradient(
    from var(--cta-border-angle),
    transparent 0deg,
    #02BCDD 42deg,
    #06D1E5 72deg,
    #64EDA8 112deg,
    #D0F88D 145deg,
    transparent 190deg,
    transparent 360deg
    ) border-box;
    border: 1px solid transparent;
    color: #fff;
    font-family: 'Galano';
    font-weight: 700;
    font-size: clamp(22px, 2.05vw, 34px);
    text-decoration: none;
    border-radius: 999px;
    box-shadow: none;
    order: 3;
    cursor: pointer;
    animation: ctaBorderFlow 3s linear infinite;
    transition: color 0.32s ease, transform 0.28s ease, box-shadow 0.28s ease;
    }
    
    .final-cta-button span {
    position: relative;
    z-index: 2;
    }
    
    .final-cta-button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background: var(--brand-gradient);
    transform: translateY(105%);
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    }
    
    .final-cta-button::after {
    display: none;
    }
    
    .final-cta-button:hover,
    .final-cta-button:focus-visible {
    background:
    linear-gradient(var(--cta-bg), var(--cta-bg)) padding-box,
    linear-gradient(transparent, transparent) border-box;
    color: var(--brand-navy);
    transform: translateY(-2px);
    box-shadow:
    inset 0 0 0 1px rgba(6, 209, 229, 0.18),
    0 0 36px rgba(2, 188, 221, 0.3),
    0 0 70px rgba(208, 248, 141, 0.12);
    }
    
    .final-cta-button:hover::before,
    .final-cta-button:focus-visible::before {
    transform: translateY(0);
    opacity: 1;
    }
    
    .final-cta-button:active {
    transform: translateY(1px);
    }
    
    @keyframes ctaBorderFlow {
    to {
    --cta-border-angle: 360deg;
    }
    }
    
    @media (max-width: 479px) {
    
    .doitership-final-cta-section {
    padding: 84px 16px 96px;
    }
    
    .final-cta-card {
    width: min(92vw, 390px);
    min-height: clamp(420px, 112vw, 520px);
    padding: clamp(58px, 14vw, 72px) 22px;
    border-radius: 34px;
    }
    
    .final-cta-title {
    margin-bottom: clamp(44px, 12vw, 62px);
    }
    
    .final-cta-title-image {
    width: min(70vw, 260px);
    max-width: 100%;
    }
    
    .final-cta-title h2 {
    font-size: clamp(30px, 8.6vw, 42px);
    line-height: 1.08;
    }
    
    .final-cta-card h3 {
    margin: 0 auto;
    max-width: 250px;
    }
    
    .final-cta-card h3:first-of-type {
    margin-bottom: 0;
    }
    
    .final-cta-button {
    width: min(300px, 76vw);
    max-width: none;
    min-width: 0;
    margin-top: clamp(54px, 15vw, 76px);
    padding: 13px 18px 15px;
    border-width: 2px;
    font-size: clamp(17px, 5vw, 21px);
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(2, 188, 221, 0.18);
    }
    
    }
    
    /* =========================================================
    RESPONSIVE
    ========================================================= */
    
    @media (max-width: 1024px) {
    .doitership-hero-panel {
    background-image: url("/college-students/doitership/images/dark-navy-header-background.webp");
    }
    
    .doitership-alone-visual {
    width: clamp(520px, 78vw, 820px);
    }
    .video-panel,
    .final-cta-card,
    .roadmap-grid {
    width: 90vw;
    }
    
    .roadmap-grid {
    grid-template-columns: 1fr;
    }
    
    .roadmap-card,
    .roadmap-card:hover {
    min-height: 300px;
    transform: none;
    }
    
    .roadmap-card h3 {
    margin-top: 0;
    padding-top: 40px;
    }
    
    .final-cta-button {
    border: 1.6px solid transparent;
    }
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
    .roadmap-header h2 {
    font-size: 56px;
    }
    
    .roadmap-header p {
    width: 100%;
    max-width: none;
    font-size: 28px;
    line-height: 1.16;
    }
    
    .roadmap-grid {
    width: min(76vw, 620px);
    margin-top: 72px;
    }
    
    .roadmap-card,
    .roadmap-card:hover {
    min-height: 420px;
    }
    
    .roadmap-icon {
    width: 92px;
    height: 92px;
    }
    
    .roadmap-icon img {
    width: 92px;
    height: 92px;
    min-width: 92px;
    min-height: 92px;
    max-width: 92px;
    max-height: 92px;
    }
    
    .roadmap-card:nth-child(1) .roadmap-icon {
    width: 112px;
    height: 112px;
    }
    
    .roadmap-card:nth-child(1) .roadmap-icon img {
    width: 112px;
    height: 112px;
    min-width: 112px;
    min-height: 112px;
    max-width: 112px;
    max-height: 112px;
    }
    
    .roadmap-card h3 {
    font-size: 56px;
    line-height: 1;
    }
    
    .roadmap-card p {
    width: 100%;
    max-width: none;
    padding: 0 34px;
    font-size: 28px;
    line-height: 1.15;
    }
    }
    
    @media (max-width: 767px) {
    .doitership-slide-section {
    height: auto !important;
    padding: 0 0 clamp(70px, 16vw, 120px);
    }
    
    .doitership-alone-section {
    min-height: 50vh;
    padding: 110px 16px;
    }
    
    .doitership-alone-visual {
    width: min(92vw, 460px);
    }
    
    .doitership-relate-section {
    min-height: 50vh;
    padding: 230px 16px;
    }
    
    .doitership-dream-section {
    min-height: 50vh;
    padding: 150px 16px;
    }
    
    .doitership-pause-section {
    min-height: 50vh;
    display: grid;
    place-items: center;
    padding: 120px 16px;
    text-align: center;
    }
    
    .doitership-nooo-section {
    min-height: auto;
    display: grid;
    padding: 150px 20px 70px;
    }
    
    .nooo-composition {
    width: min(92vw, 560px);
    min-height: clamp(560px, 88vw, 680px);
    }
    
    .doitership-start-section {
    min-height: auto;
    padding: 150px 16px;
    }
    
    .story-pin,
    .scroll-container,
    .sections-wrapper,
    .section {
    position: static;
    height: auto;
    display: block;
    opacity: 1;
    transform: none;
    filter: none;
    pointer-events: auto;
    }
    
    .sections-wrapper {
    display: grid;
    gap: clamp(90px, 18vw, 130px);
    }
    
    
    .doitership-story-card {
    position: relative;
    border-radius: 34px;
    border: 2px solid transparent;
    background:
    linear-gradient(180deg, #000 0%, #01080d 16%, #02253d 72%, #001b2d 100%) padding-box,
    linear-gradient(135deg, rgba(2, 188, 221, 0.95), rgba(2, 188, 221, 0.28) 48%, rgba(2, 188, 221, 0.9)) border-box;
    box-shadow: 0 0 24px rgba(2, 188, 221, 0.16);
    overflow: hidden;
    }
    
    .doitership-story-card::before {
    content: none;
    display: none;
    }
    
    .story-card-content {
    padding: 0;
    }
    
    .story-card-media {
    justify-items: center;
    padding-right: 0;
    }
    
    .story-card-translation {
    margin-bottom: 28px;
    }
    
    .progress-container {
    display: none;
    }
    
    .doitership-relate-section h2 {
    font-size: 34px;
    }
    
    .video-thumbnail {
    width: min(90vw, 620px);
    }
    
    .final-cta-card {
    width: min(86vw, 760px);
    }
    
    .final-cta-button {
    min-width: 0;
    width: min(300px, 72vw);
    border: 1.6px solid transparent;
    box-shadow:
    inset 0 0 0 1px rgba(6, 209, 229, 0.55),
    0 0 18px rgba(2, 188, 221, 0.18);
    }
    
    }
    
    
    /* Mobile */
    @media (max-width: 767px) {
    
    .doitership-groom-section {
    padding: 70px 16px 90px;
    }
    
    .groom-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(16px, 4vw, 26px);
    }
    
    .groom-clock-wrap {
    width: clamp(150px, 42vw, 220px);
    }
    
    .groom-left,
    .groom-right {
    display: grid;
    justify-items: center;
    justify-self: center;
    }
    
    .om-block {
    align-items: center;
    }
    
    .groom-word {
    display: grid;
    gap: clamp(16px, 4vw, 26px);
    justify-items: center;
    }
    
    .groom-word span {
    font-size: clamp(64px, 17vw, 92px);
    line-height: 0.9;
    display: block;
    width: 1em;
    word-break: break-all;
    text-align: center;
    letter-spacing: 0;
    }
    
    .groom-right p {
    margin-top: 0;
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.12;
    text-align: center;
    }
    
    .groom-letus {
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1.15;
    margin: 0 0 10px;
    text-align: center;
    }
    
    .groom-word-right {
    top: 0;
    }
    
    }
    
    /*Tab*/
    
    @media (min-width: 768px) and (max-width: 1040px) {
    
    .doitership-alone-section,
    .doitership-relate-section,
    .doitership-dream-section,
    .doitership-hired-section,
    .doitership-groom-section,
    .doitership-nooo-section,
    .doitership-start-section {
    min-height: auto;
    }
    
    .doitership-pause-section {
    text-align: center;
    padding: 150px 20px;
    min-height: auto;
    }
    
    .doitership-dream-section {
    padding: 130px 20px;
    }
    
    .doitership-nooo-section {
    padding: 150px 20px 70px;
    }
    
    .nooo-composition {
    width: min(96vw, 820px);
    min-height: clamp(620px, 82vw, 760px);
    }
    
    .nooo-bubble {
    width: min(760px, 72vw);
    display: block;
    }
    
    .nooo-text {
    top: clamp(30px, 6vw, 44px);
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    }
    
    .nooo-text h2 {
    font-size: clamp(58px, 9vw, 82px);
    line-height: 1;
    }
    
    .nooo-text p {
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.18;
    }
    
    .nooo-bot {
    left: 50%;
    top: clamp(285px, 36vw, 350px);
    bottom: auto;
    width: min(560px, 68vw);
    transform: translateX(-50%);
    }
    
    .belief-statement {
    margin-top: 250px;
    }
    }
    
    
    /*Tab & laptop*/
    @media (min-width:768px) and (max-width:1200px){
    
    .groom-layout{
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(18px, 2.4vw, 34px);
    }
    
    .groom-clock-wrap{
    width:clamp(300px,32vw,420px);
    }
    
    .groom-word span{
    font-size:clamp(92px,12vw,150px);
    }
    
    .groom-word-left,
    .groom-word-right{
    transform:none;
    margin:0;
    }
    
    .groom-word-right{
    top: clamp(42px, 5vw, 68px);
    }
    
    .groom-letus,
    .groom-tagline{
    font-size:clamp(22px,2.4vw,34px);
    }
    .groom-tagline{
    font-size: clamp(20px, 2.2vw, 30px);
    margin-top: clamp(28px, 3vw, 42px);
    line-height: 1.16;
    }
    }
    
    
    @media (max-width: 479px) {
    
    .sections-wrapper {
    width: 92vw;
    height: auto;
    min-height: 72vh;
    }
    
    .doitership-story-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    border-radius: 34px;
    padding: 56px 22px 58px;
    text-align: center;
    }
    
    .story-card-media {
    margin-bottom: 0;
    }
    
    .story-card-media img {
    width: min(280px, 76vw);
    }
    
    .story-card-content {
    padding-right: 0;
    }
    
    .section[data-index="0"] .story-card-kicker{
    font-size: 20px;
    line-height: 1.3;
    padding: 40px;
    }
    
    .section[data-index="0"] .story-card-translation {
    font-size: 18px;
    margin-top: -60px;
    line-height: 1.3;
    }
    
    .story-card-kicker {
    font-size: 25px;
    line-height: 1.3;
    padding: 40px;
    font-weight: 500;
    }
    
    .story-card-translation {
    font-size: 20px;
    margin-top: -50px;
    /*margin-bottom: 22px;*/
    line-height: 1.3;
    padding: 40px;
    }
    
    .story-card-content h3 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.18;
    margin: 0;
    font-weight: 600;
    }
    
    .story-card-content .gradient-text {
    font-size: clamp(42px, 11vw, 54px);
    background: linear-gradient(90deg, #02BCDD 0%, #06D1E5 12.09%, #64EDA8 30.94%, #D0F88D 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    }
    
    .progress-container {
    height: 20px;
    }
    
    .progress-percentage {
    min-width: 56px;
    height: 24px;
    font-size: 12px !important;
    right: -28px;
    padding: 0 8px;
    }
    }
    
    /*Mobile*/
    @media (max-width: 767px) {
    .doitership-pause-section p {
    padding: 0 20px;
    }
    
    .roadmap-header p {
    margin-top: 35px;
    font-family: 'Galano';
    font-weight: 600;
    font-size: 20px;
    }
    
    .roadmap-header h2 {
    font-family: 'Galano';
    font-weight: 700;
    font-size: 40px;
    }
    
    .story-card-header-mobile {
    display: block !important;
    text-align: center !important;
    width: 100%;
    max-width: min(92vw, 390px);
    margin: 0 auto !important;
    padding: 0;
    }
    
    .story-card-header-mobile .header-icon {
    display: block;
    width: clamp(96px, 28vw, 150px);
    height: auto;
    margin: 0 auto 26px;
    object-fit: contain;
    }
    
    .story-card-header-mobile .story-card-kicker {
    color: white !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    font-size: clamp(20px, 5.8vw, 26px) !important;
    line-height: 1.18 !important;
    font-weight: 500 !important;
    }
    
    .story-card-header-mobile .story-card-translation {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: clamp(16px, 4.8vw, 21px) !important;
    line-height: 1.2 !important;
    color: rgba(255, 255, 255, 0.38) !important;
    }
    
    /* Hide desktop versions */
    .story-card-kicker-desktop,
    .story-card-translation-desktop {
    display: none !important;
    }
    
    
    .doitership-story-card {
    display: flex !important;
    flex-direction: column;
    min-height: auto;
    height: auto;
    gap: clamp(28px, 6vw, 46px);
    padding: clamp(34px, 7vw, 52px) clamp(24px, 6vw, 36px) clamp(44px, 9vw, 68px);
    }
    
    .story-card-content {
    order: 2 !important;
    width: 100%;
    text-align: center;
    }
    
    .story-card-media {
    order: 1 !important;
    width: 100%;
    justify-items: center;
    padding-right: 0;
    margin-bottom: 0;
    }
    
    .story-card-media img {
    width: min(250px, 58vw);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    }
    
    .hired-text p {
    margin-left: 0px;
    }
    
    }
    
    /* DESKTOP */
    @media (min-width: 1041px) {
    .story-card-header-mobile {
    display: none !important;
    }
    
    .story-card-kicker-desktop,
    .story-card-translation-desktop {
    display: block !important;
    }
    
    }
    
    .section[data-index="0"] .header-icon {
    display: none;
    }
    
    
    @media (max-width: 390px) {
    .nooo-bot {
    width: min(270px, 72vw);
    top: 248px;
    }
    }
    
    @media (max-width: 767px) {
    
    .belief-statement h3 br {
    display: none;
    }
    
    .clear-things-up-heading span:not(.text-aqua) {
    font-size: 20px !important;
    padding: 0px 20px 0px 20px;
    font-weight: 500 !important;
    color: #fff !important;
    }
    
    .clear-things-up-heading .text-aqua {
    font-size: 40px !important;
    }
    
    }
    
    @media (max-width: 479px) {
    
    .final-cta-card {
    width: min(86vw, 360px);
    }
    
    }
    