
    
/* =========================================================
   DIGITAL LIFT IT SOLUTION
   CINEMATIC CSS-ONLY WEBSITE
   NO JAVASCRIPT
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --navy: #03122e;
    --navy-2: #061a3d;
    --blue: #1557d6;
    --blue-light: #2879ff;
    --cyan: #19cfff;

    --orange: #ff741d;
    --orange-light: #ff922f;

    --white: #ffffff;
    --off-white: #f7f9fc;

    --text: #0a1730;
    --muted: #687287;

    --border: #e4e8f0;

    --shadow:
        0 15px 45px rgba(3, 18, 46, .08);

    --radius: 10px;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );

    overflow-x: hidden;

}


img {

    max-width: 100%;
    display: block;

}


a {

    color: inherit;
    text-decoration: none;
	

}


button,
a {

    -webkit-tap-highlight-color: transparent;

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    height: 28px;

    background: #020b1d;

    color: #dbe6ff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 5%;

    font-size: 10px;

}


.top-left,
.top-right {

    display: flex;

    align-items: center;

    gap: 22px;

}


.top-right {

    gap: 16px;

}


.top-right a {

    transition: .3s ease;

}


.top-right a:hover {

    color: var(--orange);

}


.social {

    font-weight: 700;

    opacity: .85;

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: sticky;

    top: 0;

    z-index: 1000;

    height: 74px;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid #e8ecf3;

}


.nav-container {

    width: min(1180px, 92%);

    height: 100%;

    margin: auto;
	

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 9px;

}


.logo-mark {

    width: 35px;
    height: 40px;

    position: relative;

}


.logo-mark::before {

    content: "";

    position: absolute;

    inset: 4px 5px;

    border: 4px solid var(--blue);

    border-right-color: transparent;

    transform: rotate(-25deg);

    border-radius: 6px;

}


.logo-orange {

    position: absolute;

    width: 13px;
    height: 18px;

    background: var(--orange);

    left: 5px;
    bottom: 2px;

    clip-path: polygon(
        0 0,
        100% 50%,
        0 100%
    );

}


.logo-blue {

    position: absolute;

    width: 11px;
    height: 16px;

    background: var(--blue);

    right: 4px;
    top: 7px;

    clip-path: polygon(
        0 0,
        100% 50%,
        0 100%
    );

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo-text strong {

    color: #102d65;

    font-size: 15px;

    letter-spacing: -.5px;

}


.logo-text small {

    color: #66758e;

    font-size: 8px;

    letter-spacing: 1px;

    margin-top: 4px;

}


/* NAV LINKS */

.nav-links {

    display: flex;

    align-items: center;

    gap: 37px;

}


.nav-links > a {

    font-size: 12px;

    font-weight: 600;

    color: #172442;

    position: relative;

    padding: 28px 0;

    transition: .3s ease;

}


.nav-links > a:not(.nav-cta)::after {

    content: "";

    position: absolute;

    width: 0;

    height: 2px;

    background: var(--orange);

    left: 50%;

    bottom: 19px;

    transform: translateX(-50%);

    transition: .3s ease;

}


.nav-links > a:hover {

    color: var(--blue);

}


.nav-links > a:hover::after,
.nav-links > a.active::after {

    width: 100%;

}


.nav-links > a.active {

    color: var(--blue);

}


.nav-cta {

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-light)
        );

    color: white !important;

    padding: 11px 20px !important;

    border-radius: 8px;

    box-shadow:
        0 7px 18px rgba(255,116,29,.25);

}


.nav-cta:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(255,116,29,.35);

}


.mobile-enroll {

    display: none;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 410px;

    position: relative;

    overflow: hidden;

    color: white;

    background:

        radial-gradient(
            circle at 75% 40%,
            rgba(18,104,255,.25),
            transparent 30%
        ),

        radial-gradient(
            circle at 30% 70%,
            rgba(0,191,255,.08),
            transparent 30%
        ),

        linear-gradient(
            115deg,
            #020c20,
            #04183c 55%,
            #02112d
        );

}


/* DIGITAL GRID */

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .2;

    background-image:

        linear-gradient(
            rgba(38,137,255,.12) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(38,137,255,.12) 1px,
            transparent 1px
        );

    background-size: 35px 35px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 95%
        );

}


/* GLOW */

.hero-glow {

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    filter: blur(80px);

    opacity: .18;

    animation: glowMove 8s ease-in-out infinite alternate;

}


.hero-glow-one {

    background: #008cff;

    right: 20%;

    top: 5%;

}


.hero-glow-two {

    background: #ff641c;

    left: 25%;

    bottom: -70%;

    animation-delay: 2s;

}


@keyframes glowMove {

    from {
        transform: translateY(-20px) scale(.9);
    }

    to {
        transform: translateY(25px) scale(1.1);
    }

}


/* HERO CONTAINER */

.hero-container {

    width: min(1180px, 92%);

    min-height: 410px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    position: relative;

    z-index: 2;

}


/* HERO TEXT */

.hero-content {

    padding: 45px 0;

}


.hero-label {

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;

    color: #79c8ff;

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 14px;

}


.hero-label span {

    width: 28px;

    height: 2px;

    background: var(--orange);

}


.hero h1 {

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.04;

    letter-spacing: -2px;

    font-weight: 800;

    animation: titleIn 1s ease both;

}


.hero h1 span {

    color: var(--orange);

}


.hero-content > p {

    max-width: 480px;

    color: #c6d4ec;

    font-size: 13px;

    line-height: 1.8;

    margin-top: 18px;

    animation: titleIn 1s .2s ease both;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 25px;

    animation: titleIn 1s .35s ease both;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    height: 43px;

    padding: 0 18px;

    border-radius: 7px;

    font-size: 11px;

    font-weight: 700;

    transition: .35s ease;

}


.btn-orange {

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            #ff9638
        );

    box-shadow:
        0 10px 25px rgba(255,115,25,.25);

}


.btn-orange:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(255,115,25,.4);

}


.btn-outline {

    color: white;

    border: 1px solid rgba(255,255,255,.55);

    background: rgba(255,255,255,.03);

}


.btn-outline:hover {

    background: white;

    color: var(--navy);

    transform: translateY(-4px);

}


.play-icon {

    font-size: 8px;

    width: 20px;

    height: 20px;

    border: 1px solid white;

    border-radius: 50%;

    display: grid;

    place-items: center;

}


/* TRUST */

.hero-trust {

    display: flex;

    gap: 30px;

    margin-top: 28px;

}


.hero-trust div {

    display: flex;

    flex-direction: column;

}


.hero-trust strong {

    font-size: 18px;

}


.hero-trust small {

    color: #91a5c7;

    font-size: 9px;

    margin-top: 3px;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    height: 100%;

    position: relative;

}


.hero-circle {

    position: absolute;

    width: 360px;

    height: 360px;

    border-radius: 50%;

    border: 1px solid rgba(40,156,255,.2);

    right: 60px;

    top: 35px;

}


.hero-circle::before {

    content: "";

    position: absolute;

    inset: 30px;

    border-radius: 50%;

    border: 1px dashed rgba(40,156,255,.25);

    animation: rotateCircle 20s linear infinite;

}


@keyframes rotateCircle {

    to {
        transform: rotate(360deg);
    }

}


.person-container {

    position: absolute;

    width: 440px;

    height: 410px;

    right: 30px;

    bottom: 0;

    overflow: hidden;

}


.person-glow {

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background: #0b8cff;

    filter: blur(70px);

    opacity: .25;

    top: 100px;

    left: 100px;

}


.hero-person {

    position: absolute;

    width: 470px;

    height: 470px;

    object-fit: cover;

    object-position: center top;

    bottom: -30px;

    right: -20px;

    border-radius: 45% 45% 0 0;

    mix-blend-mode: normal;

    filter:
        saturate(.9)
        contrast(1.08);

    mask-image:
        linear-gradient(
            to bottom,
            black 75%,
            transparent 100%
        );

    animation:
        personFloat 6s ease-in-out infinite;

}


@keyframes personFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


/* ORBITS */

.tech-orbit {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(50,180,255,.2);

}


.orbit-one {

    width: 470px;
    height: 230px;

    right: 0;
    top: 95px;

    transform: rotate(-15deg);

}


.orbit-two {

    width: 380px;
    height: 180px;

    right: 40px;
    top: 125px;

    transform: rotate(25deg);

}


/* FLOATING CARDS */

.tech-card {

    position: absolute;

    min-width: 125px;

    padding: 10px 13px;

    border: 1px solid rgba(55,164,255,.35);

    border-radius: 8px;

    background:
        rgba(5,29,67,.72);

    backdrop-filter: blur(12px);

    box-shadow:
        0 12px 35px rgba(0,0,0,.2);

    display: flex;

    align-items: center;

    gap: 9px;

    animation:
        cardFloat 5s ease-in-out infinite;

}


.tech-card strong {

    display: block;

    font-size: 8px;

    color: white;

}


.tech-card small {

    display: block;

    font-size: 7px;

    color: #7eb5ed;

    margin-top: 3px;

}


.tech-icon {

    width: 28px;

    height: 28px;

    border: 1px solid #168fff;

    border-radius: 7px;

    display: grid;

    place-items: center;

    color: #27c7ff;

    font-size: 11px;

}


.code-card {

    top: 70px;
    right: 290px;

}


.data-card {

    top: 60px;
    right: 0;

    animation-delay: .7s;

}


.web-card {

    top: 180px;
    right: -5px;

    animation-delay: 1.2s;

}


.cyber-card {

    top: 275px;
    right: 30px;

    animation-delay: 1.7s;

}


@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================================================
   FEATURE STRIP
========================================================= */

.features {

    width: min(1110px, 88%);

    margin: -30px auto 0;

    position: relative;

    z-index: 10;

    background: white;

    border-radius: 10px;

    box-shadow:
        0 15px 45px rgba(3,18,46,.13);

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    padding: 20px 25px;

}


.feature {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 5px 18px;

    border-right: 1px solid #e9edf3;

}


.feature:last-child {

    border-right: none;

}


.feature-icon {

    color: var(--blue);

    font-size: 26px;

}


.feature strong {

    font-size: 10px;

    display: block;

}


.feature p {

    color: #788399;

    font-size: 8px;

    line-height: 1.5;

    margin-top: 4px;

}


/* =========================================================
   GLOBAL SECTION
========================================================= */

.section {

    width: min(1180px, 92%);

    margin: auto;

    padding: 75px 0;

}


.section-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 25px;

}


.section-label {

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


.section h2 {

    font-size: 24px;

    letter-spacing: -.8px;

    margin-top: 6px;

}


.outline-small {

    border: 1px solid #8da6df;

    color: #144dbb;

    padding: 9px 20px;

    border-radius: 7px;

    font-size: 9px;

    font-weight: 700;

    transition: .3s ease;

}


.outline-small:hover {

    background: var(--blue);

    color: white;

    border-color: var(--blue);

    transform: translateY(-2px);

}


/* =========================================================
   COURSE GRID
========================================================= */

.course-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 9px;

}


.course-card {

    min-height: 155px;

    padding: 18px 13px;

    background: white;

    border: 1px solid #e3e7ee;

    border-radius: 7px;

    text-align: center;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    position: relative;

    overflow: hidden;

}


.course-card::before {

    content: "";

    position: absolute;

    width: 90px;

    height: 90px;

    background: rgba(20,88,214,.05);

    border-radius: 50%;

    right: -40px;

    top: -40px;

    transition: .4s ease;

}


.course-card:hover {

    transform: translateY(-8px);

    border-color: rgba(21,87,214,.3);

    box-shadow:
        0 15px 35px rgba(4,36,87,.1);

}


.course-card:hover::before {

    transform: scale(2);

}


.course-icon {

    width: 43px;

    height: 43px;

    margin: 0 auto 12px;

    border-radius: 9px;

    display: grid;

    place-items: center;

    font-size: 20px;

    font-weight: 700;

    color: #1454c6;

    background:
        linear-gradient(
            145deg,
            #e9f2ff,
            #f5f9ff
        );

}


.course-card h3 {

    font-size: 11px;

    line-height: 1.3;

}


.course-card p {

    font-size: 8px;

    color: #7a8496;

    line-height: 1.5;

    margin: 7px 0;

}


.course-card a {

    font-size: 8px;

    color: var(--blue);

    font-weight: 700;

}


/* =========================================================
   TRAINING
========================================================= */

.training-section {

    padding-top: 10px;

}


.center-heading {

    text-align: center;

    margin-bottom: 25px;

}


.center-heading h2 {

    font-size: 25px;

}


.heading-line {

    width: 30px;

    height: 2px;

    background: var(--blue);

    margin: 9px auto;

}


.training-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

}


.training-card {

    background: white;

    border: 1px solid #e1e6ef;

    border-radius: 8px;

    overflow: hidden;

    transition: .4s ease;

}


.training-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(5,28,66,.1);

}


.training-image {

    height: 120px;

    position: relative;

    overflow: hidden;

}


.training-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.2),
            transparent
        );

}


.training-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;

}


.training-card:hover .training-image img {

    transform: scale(1.08);

}


.training-image span {

    position: absolute;

    left: 10px;

    top: 10px;

    z-index: 2;

    background: white;

    color: var(--blue);

    font-size: 7px;

    font-weight: 800;

    padding: 5px 7px;

    border-radius: 4px;

}


.training-content {

    padding: 13px;

    text-align: center;

}


.training-content h3 {

    font-size: 11px;

}


.training-content p {

    font-size: 8px;

    color: #788399;

    line-height: 1.5;

    min-height: 30px;

    margin: 7px 0;

}


.training-content a {

    color: var(--blue);

    font-size: 8px;

    font-weight: 700;

}


/* =========================================================
   DARK FEATURE
========================================================= */

.dark-feature-section {

    width: min(1180px, 92%);

    margin: 0 auto 70px;

    padding: 25px;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(28,100,230,.2),
            transparent 35%
        ),

        linear-gradient(
            120deg,
            #02112f,
            #061d43
        );

    border-radius: 5px;

    color: white;

    display: grid;

    grid-template-columns: 1fr 1px 1fr;

    gap: 30px;

}


.dark-feature {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


.dark-content {

    max-width: 290px;

}


.dark-content > span {

    color: #48a6ff;

    font-size: 8px;

    font-weight: 800;

}


.dark-content h2 {

    font-size: 17px;

    margin: 7px 0;

}


.dark-content p {

    color: #a8b8d1;

    font-size: 8px;

    line-height: 1.7;

    margin-bottom: 12px;

}


.dark-btn {

    display: inline-block;

    border: 1px solid rgba(255,255,255,.55);

    border-radius: 6px;

    padding: 8px 13px;

    font-size: 8px;

    transition: .3s ease;

}


.dark-btn:hover {

    background: var(--orange);

    border-color: var(--orange);

    transform: translateY(-3px);

}


.vertical-divider {

    width: 1px;

    background: rgba(255,255,255,.15);

}


/* CERTIFICATE */

.certificate-visual {

    width: 175px;

    height: 115px;

    position: relative;

}


.certificate {

    position: absolute;

    width: 130px;

    height: 88px;

    background:
        linear-gradient(
            135deg,
            #fff,
            #f4ead4
        );

    color: #1d2e54;

    padding: 12px;

    border-radius: 3px;

    box-shadow:
        0 15px 25px rgba(0,0,0,.2);

    font-size: 6px;

    text-align: center;

    transform: rotate(5deg);

    right: 0;

    top: 10px;

}


.certificate strong {

    display: block;

    font-size: 8px;

}


.certificate small {

    display: block;

    margin: 8px 0;

}


.certificate b {

    font-size: 7px;

}


.certificate span {

    display: block;

    color: #d49d30;

    font-size: 13px;

    margin-top: 4px;

}


.certificate-back {

    background: #d7e2f5;

    transform: rotate(-8deg);

    right: 35px;

    top: 15px;

    opacity: .8;

}


/* INSTRUCTORS */

.instructor-stack {

    display: flex;

    align-items: center;

}


.instructor {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    overflow: hidden;

    border: 3px solid #071c3e;

    margin-left: -9px;

    transition: .35s ease;

}


.instructor:first-child {

    margin-left: 0;

}


.instructor:hover {

    transform: translateY(-8px);

    z-index: 3;

}


.instructor img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


/* =========================================================
   RESOURCES
========================================================= */

.resources-section {

    padding-top: 0;

}


.resources-grid {
display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

}


.article-card {

    background: white;

    border: 1px solid #e1e6ef;

    border-radius: 7px;

    overflow: hidden;

    transition: .35s ease;

}


.article-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(4,29,70,.1);

}


.article-image {

    height: 105px;

    position: relative;

    overflow: hidden;

}


.article-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s ease;

}


.article-card:hover .article-image img {

    transform: scale(1.1);

}


.article-image span {

    position: absolute;

    bottom: 7px;

    left: 7px;

    background: rgba(7,34,75,.9);

    color: white;

    padding: 5px 7px;

    font-size: 6px;

    border-radius: 3px;

}


.article-content {

    padding: 12px;

}


.article-content h3 {

    font-size: 10px;

    line-height: 1.45;

    min-height: 43px;

}


.article-meta {

    border-top: 1px solid #edf0f5;

    margin-top: 9px;

    padding-top: 8px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.article-meta span {

    font-size: 7px;

    color: #8a94a5;

}


.article-meta a {

    color: var(--blue);

    font-size: 7px;

    font-weight: 700;

}


/* RESOURCE BOX */

.resource-box {

    background:
        linear-gradient(
            145deg,
            #edf3ff,
            #f7f9ff
        );

    border: 1px solid #dbe4f7;

    border-radius: 7px;

    padding: 18px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.resource-icon {

    width: 32px;

    height: 32px;

    background: white;

    border-radius: 7px;

    display: grid;

    place-items: center;

    color: var(--blue);

    box-shadow: 0 5px 15px rgba(0,0,0,.05);

    margin-bottom: 13px;

}


.resource-box h3 {

    font-size: 12px;

    line-height: 1.45;

}


.resource-box p {

    color: #707c91;

    font-size: 8px;

    line-height: 1.6;

    margin: 8px 0 14px;

}


.resource-box a {

    border: 1px solid #88a4e4;

    color: var(--blue);

    padding: 8px 10px;

    border-radius: 5px;

    font-size: 7px;

    font-weight: 700;

    text-align: center;

    transition: .3s ease;

}


.resource-box a:hover {

    background: var(--blue);

    color: white;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    width: min(1180px, 92%);

    margin: 0 auto 0;

    min-height: 75px;

    position: relative;

    overflow: hidden;

    border-radius: 6px 6px 0 0;

    background:
        linear-gradient(
            100deg,
            #2146bd,
            #173ca8
        );

    color: white;

}


.cta-pattern {

    position: absolute;

    inset: 0;

    opacity: .15;

    background-image:

        radial-gradient(
            circle,
            white 1px,
            transparent 1px
        );

    background-size: 16px 16px;

}


.cta-content {

    min-height: 75px;

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 45px;

}


.cta-content span {

    font-size: 7px;

    color: #8fc5ff;

    font-weight: 800;

}


.cta-content h2 {

    font-size: 20px;

    margin: 3px 0;

}


.cta-content p {

    font-size: 8px;

    color: #cbd8f5;

}


.cta-button {

    background:
        linear-gradient(
            135deg,
            var(--orange),
            #ff9433
        );

    padding: 12px 24px;

    border-radius: 6px;

    font-size: 9px;

    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(0,0,0,.2);

    transition: .35s ease;

}


.cta-button:hover {

    transform:
        translateY(-4px)
        scale(1.03);

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background:
        linear-gradient(
            130deg,
            #020d24,
            #031a3d
        );

    color: white;

    padding-top: 40px;

}


.footer-container {

    width: min(1180px, 92%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1fr
        1.3fr;

    gap: 35px;

    padding-bottom: 30px;

}


.footer-logo .logo-text strong {

    color: white;

}


.footer-logo .logo-text small {

    color: #94a7c6;

}


.footer-brand > p {

    max-width: 240px;

    color: #9baecc;

    font-size: 8px;

    line-height: 1.7;

    margin-top: 15px;

}


.footer-social {

    display: flex;

    gap: 8px;

    margin-top: 15px;

}


.footer-social a {

    width: 24px;

    height: 24px;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-size: 8px;

    transition: .3s ease;

}


.footer-social a:hover {

    background: var(--orange);

    border-color: var(--orange);

    transform: translateY(-4px);

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.footer-column h4 {

    font-size: 8px;

    letter-spacing: .8px;

    color: white;

    margin-bottom: 5px;

}


.footer-column a,
.footer-column p {

    font-size: 8px;

    color: #9eafca;

    transition: .3s ease;

    line-height: 1.5;

}


.footer-column a:hover {

    color: var(--orange);

    transform: translateX(3px);

}


.contact-column p {

    display: flex;

    gap: 6px;

}


.copyright {

    border-top: 1px solid rgba(255,255,255,.1);

    text-align: center;

    color: #7185a5;

    font-size: 8px;

    padding: 14px;

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes titleIn {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


.reveal-left {

    animation:
        revealLeft 1s ease both;

}


@keyframes revealLeft {

    from {

        opacity: 0;

        transform: translateX(-40px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1050px) {


    .nav-links {

        gap: 13px;

    }


    .nav-links > a {

        font-size: 9px;

    }


    .course-grid {

        grid-template-columns:
            repeat(4, 1fr);

    }


    .resources-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .hero-person {

        width: 400px;
        height: 400px;

    }


    .person-container {

        width: 400px;

    }


    .tech-card {

        transform: scale(.85);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {


    .top-bar {

        display: none;

    }


    .navbar {

        height: 65px;

    }


    .nav-links {

        display: none;

    }


    .mobile-enroll {

        display: block;

        background: var(--orange);

        color: white;

        padding: 9px 15px;

        border-radius: 6px;

        font-size: 9px;

        font-weight: 700;

    }


    .hero {

        min-height: 650px;

    }


    .hero-container {

        grid-template-columns: 1fr;

        min-height: 650px;

    }


    .hero-content {

        padding-top: 60px;

        position: relative;

        z-index: 5;

    }


    .hero h1 {

        font-size: 42px;

    }


    .hero-visual {

        position: absolute;

        right: -50px;

        bottom: 0;

        width: 500px;

        height: 400px;

        opacity: .8;

    }


    .features {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;

    }


    .feature {

        border-right: none;

        border-bottom: 1px solid #edf0f4;

        padding: 12px;

    }


    .course-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .training-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .dark-feature-section {

        grid-template-columns: 1fr;

    }


    .vertical-divider {

        display: none;

    }


    .dark-feature {

        padding: 15px;

    }


    .footer-container {

        grid-template-columns:
            repeat(2, 1fr);

    }


}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 550px) {


    .nav-container {

        width: 90%;

    }


    .logo-text strong {

        font-size: 12px;

    }


    .hero {

        min-height: 700px;

    }


    .hero-container {

        min-height: 700px;

    }


    .hero h1 {

        font-size: 35px;

        letter-spacing: -1.5px;

    }


    .hero-content > p {

        font-size: 11px;

        max-width: 330px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

    }


    .btn {

        width: 170px;

    }


    .hero-trust {

        gap: 18px;

    }


    .hero-visual {

        transform: scale(.78);

        transform-origin: bottom right;

        right: -115px;

    }


    .features {

        width: 90%;

        margin-top: -20px;

        grid-template-columns: 1fr;

    }


    .feature {

        border-bottom: 1px solid #edf0f4;

    }


    .feature:last-child {

        border-bottom: none;

    }


    .section {

        padding: 55px 0;

    }


    .section-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

    }


    .course-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 8px;

    }


    .course-card {

        min-height: 165px;

    }


    .training-grid {

        grid-template-columns: 1fr;

    }


    .resources-grid {

        grid-template-columns: 1fr;

    }


    .dark-feature-section {

        width: 92%;

        padding: 18px;

    }


    .dark-feature {

        flex-direction: column;

        align-items: flex-start;

    }


    .certificate-visual {

        margin-left: auto;

        margin-right: auto;

    }


    .instructor-stack {

        margin: 10px auto;

    }


    .cta-content {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

        padding: 25px;

    }


    .cta-section {

        width: 92%;

    }


    .cta-content h2 {

        font-size: 18px;

    }


    .footer-container {

        grid-template-columns: 1fr;

        gap: 28px;

    }


}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

        scroll-behavior: auto !important;

    }

}
