@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #a0a0a0;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #f37f00;
}

h2 {
    color: #f37f00;
    font-family: 'Oswald';
    font-size: clamp(25px, 5vw, 38px);
    font-weight: 400;
    text-align: center;
    padding: 10px;
    margin-bottom: 5px;
    line-height: 2;
    transition: all 0.3s ease;
}

h3 {
    font-family: 'Oswald';
}

.video-wrapper {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 60px;
    overflow: visible;
}

.video-wrapper h3 {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    color: #f37f00;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 400;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.SaW-pathway {
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    place-items: center;
}

.SaW-pathway::before {
    content: '';
    position: absolute;
    top: 120px;
    left: calc(10% + 32px);
    right: calc(10% + 32px);
    height: 3px;
    background: linear-gradient(90deg, #1a1a1a 45%, #95483f 46%, #f37f00 50%, #95483f 54%, #1a1a1a 55%);
    background-size: 250% 100%;
    background-position: 0% 0%;
    z-index: 0;
    animation: none;
}

.SaW-pathway.animate::before {
    animation: gradient 20s linear infinite;
}

.SaW-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px;
    position: relative;
    z-index: 1;
    color: white;
    gap: 20px;
    transform: translateY(20%);
    transition: transform 0.25s ease-in-out;
    animation: none;
}

.animate .SaW-step {
    animation: stepCycle 20s ease-in-out infinite;
}

.SaW-step h3 {
    opacity: 0;
    transform: translateY(0%);
    transition: all 0.25s ease-in-out;
}

.SaW-step p {
    opacity: 0;
    transform: translateY(0%);
    transition: all 0.25s ease-in-out;
}

.SaW-step h3,
.SaW-step p {
    animation: none;
}

.animate .SaW-step h3,
.animate .SaW-step p {
    animation: textCycle 20s ease-in infinite;
}

.SaW-step-num {
    display: flex;
    background-color: #f37f00;
    height: 78px;
    width: 78px;
    border-radius: 50%;
    padding: 10px;
    color: white;
    font-weight: 400;
    align-items: center;
    font-size: 34px;
    justify-content: center;
}

.SaW-step:nth-child(1) {
    animation-delay: 0s;
}

.SaW-step:nth-child(2) {
    animation-delay: 4s;
}

.SaW-step:nth-child(3) {
    animation-delay: 8s;
}

.SaW-step:nth-child(4) {
    animation-delay: 12s;
}

.SaW-step:nth-child(5) {
    animation-delay: 16s;
}

.SaW-step:nth-child(1) h3,
.SaW-step:nth-child(1) p {
    animation-delay: 0s;
}

.SaW-step:nth-child(2) h3,
.SaW-step:nth-child(2) p {
    animation-delay: 4s;
}

.SaW-step:nth-child(3) h3,
.SaW-step:nth-child(3) p {
    animation-delay: 8s;
}

.SaW-step:nth-child(4) h3,
.SaW-step:nth-child(4) p {
    animation-delay: 12s;
}

.SaW-step:nth-child(5) h3,
.SaW-step:nth-child(5) p {
    animation-delay: 16s;
}

.real-gain-image {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-bottom: 1px solid rgb(248, 153, 29);
    padding-bottom: 10px;
    text-align: center;
    align-items: center;
}

.college-buttons {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    gap: 50px;
    z-index: 300;
}

.real-gain-image h2 {
    color: white;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 1);
    top: 20%;
    left: 50%;
    translate: -50%;
    gap: 50px;
    z-index: 300;
}

.real-gain-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: blur(0px);
}

.college-buttons .apply-button {
    width: 180px;
}

.apply-button {
    background: #f37f00;
    color: white;
    font-size: 15px;
    padding: 16px 30px;
    border-radius: 10px;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.7);
    z-index: 235;
}

.header .apply-button {
    position: relative;
    left: 0;
    translate: 0% 0%;
    top: 0;
}

.apply-button:hover {
    color: white;
    background-color: #e08718;
    transition: all 0.25s ease-in-out;
}

/* ----------- SECTIONS ----------- */

.section-students {
    background-color: #000;
    padding: 20px 60px;
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    gap: 3rem;
    align-items: flex-start;
}

.section-students h2 {
    width: 100%;
}

.section-students .video-wrapper {
    flex: 1;
    min-width: 300px;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: visible;
}

.section-students .video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.story-buttons {
    margin-top: -100px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.story-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.read-story-button {
    background: #f37f00;
    color: white;
    font-family: 'Oswald';
    font-size: 1.1em;
    padding: 16px 30px;
    border-radius: 10px;
    transition: all 0.25s ease-in-out;
    text-align: center;
    width: 100%;
    z-index: 235;
}

.read-story-button:hover {
    color: white;
    background-color: #e08718;
    transition: all 0.25s ease-in-out;
}

.story-text {
    margin-top: -10px;
    color: white;
    max-height: 0;
    width: calc(100% - 1px);
    overflow: hidden;
    opacity: 0;
    padding: 20px 16px;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 234;
}

.story-text.open {
    flex: 1;
    max-height: 600px;
    opacity: 1;
}

.section-challenge {
    background-color: #f9f5f2;
    min-height: 650px;
    height: fit-content;
    margin-bottom: 25px;
}

.section-at-work {
    background-color: #000;
    min-height: 450px;
    height: fit-content;
    margin-bottom: 25px;
}

.section-at-work .card {
    align-self: auto;
    border-radius: 8px;
    padding: 40px 30px;
    width: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    border: 1px solid rgba(248, 153, 29, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.section-at-work .card h2 {
    margin-left: 0;
    font-size: clamp(20px, 2vw, 30px);
}

.section-at-work .service-cards {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 35px 5%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    margin-bottom: 35px;
}

.section-real-gain {
    min-height: 510px;
    padding-top: 35px;
}

.section-real-gain h2 {
    margin-top: -30px;
    padding: 0;
}

.section-real-gain img {
    padding-top: 20px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -48%) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes scaleWidthUp {
    from {
        opacity: 0;
        transform: scaleX(0) scaleY(2) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scaleX(1.0) scaleY(1) translateY(0px);
    }
}

@keyframes gradient {
    0% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}


@keyframes textCycle {
    0% {
        opacity: 0;
        transform: translateY(0%);
    }

    5% {
        opacity: 1;
        transform: translateY(50%);
    }

    20% {
        opacity: 1;
        transform: translateY(50%);
    }

    25% {
        opacity: 0;
        transform: translateY(0%);
    }

    100% {
        opacity: 0;
        transform: translateY(0%);
    }
}


@keyframes stepCycle {
    0% {
        transform: translateY(20%);
    }

    5% {
        transform: translateY(0%) scale(1.05);
    }

    20% {
        transform: translateY(0%) scale(1.05);
    }

    25% {
        transform: translateY(20%) scale(1);
    }

    100% {
        transform: translateY(20%);
    }
}

/* ---------- COOKIE POLICY MODAL ---------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 20000;
    display: none;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-overlay.show {
    display: block;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #ffffff 0%, #f9f5f2 100%);
    border-radius: 8px;
    padding: 40px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 20001;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(248, 153, 29, 1);
}

.modal-header h2 {
    color: #1f1f1f;
    font-size: 26px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(248, 153, 29, 0.1);
    color: #f37f00;
    transform: rotate(90deg);
}

.modal-body {
    color: #333;
    line-height: 1.8;
}

.modal-body h3 {
    color: #f37f00;
    font-size: 18px;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 12px;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 15px;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-body li {
    margin-bottom: 8px;
    font-size: 15px;
}

.modal-body strong {
    color: #1f1f1f;
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    border-top: 2px solid rgba(248, 153, 29, 0.3);
    animation: slideInBottom 0.5s ease-out;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: #f37f00;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-icon {
    font-size: 24px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cookie-text a {
    color: #f37f00;
    text-decoration: underline;
    transition: color 0.3s ease;
    cursor: pointer;
}

.cookie-text a:hover {
    color: #ffa940;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #f37f00 0%, #e08718 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(248, 153, 29, 0.3);
}

.cookie-btn-accept::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cookie-btn-accept:hover::before {
    left: 100%;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 153, 29, 0.4);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: #f37f00;
    border: 1px solid #f37f00;
}

.cookie-btn-settings:hover {
    background: rgba(248, 153, 29, 0.1);
    transform: translateY(-2px);
}

/* ---------- TOP CONTACT BAR ---------- */
.top-info {
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInDown 0.6s ease-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-info .icon-list-text img {
    transform: translateY(0px);
}

.top-info .icon-list-text:hover img {
    transform: scale(1.05) translateY(-3px);
}

.contact-info {
    display: flex;
    gap: 30px;
    list-style: none;
    color: rgb(197, 197, 197);
    font-size: 12px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.contact-info li:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info li:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-info li:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-info img {
    height: 16px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.contact-info li:hover img {
    transform: scale(1.2);
}

.contact-btn {
    background: linear-gradient(135deg, #f37f00 0%, #e08718 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 153, 29, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 153, 29, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
}

/* ---------- HEADER ---------- */
.header {
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fadeInDown 0.8s ease-out;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: slideInLeft 0.8s ease-out;
}

.logo-section img {
    height: 75px;
    transition: transform 0.3s ease;
}

.logo-section img:hover {
    transform: scale(1.05) rotate(2deg);
}

.header-text h1 {
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    background: linear-gradient(135deg, #1f1f1f 0%, #f37f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-text p {
    font-family: Inter;
    font-size: 13px;
    color: #666;
    margin: 5px 0 0 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.back-btn {
    background: linear-gradient(135deg, #f37f00 0%, #e08718 100%);
    color: white;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 153, 29, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.back-btn:hover::before {
    left: 100%;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 153, 29, 0.4);
}

/* ---------- HERO ---------- */
.hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 40px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(248, 153, 29, 0.08) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out 0.2s forwards;
}

.hero-eyebrow {
    display: inline-block;
    color: white;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 22px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.hero h2 {
    font-size: 52px;
    font-weight: 400;
    color: white;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero h2 span {
    background: #f37f00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---------- SECTIONS ---------- */
.section {
    background: #ffffff;
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-dark {
    background: #000;
    max-width: 100%;
    padding: 40px 0;
}

.section-dark .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f37f00;
    margin-bottom: 12px;
}

.section-label-light {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f37f00;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    padding-left: 0;
    line-height: 1.2;
    text-align: start;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #f37f00, #e08718);
    border-radius: 2px;
    margin-bottom: 30px;
}

/* ---------- VIDEO SECTION ---------- */
.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(248, 153, 29, 0.2);
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------- ABOUT GRID ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    padding: 0;
}

.about-text p {
    color: #444;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.values-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #f37f00;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---------- LEADERSHIP CARD ---------- */
.leadership-card {
    background: #000;
    border-radius: 8px;
    padding: 50px;
    border: 1px solid rgba(248, 153, 29, 0.15);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    transition: all 0.4s ease;
}

.leadership-card:hover {
    border-color: rgba(248, 153, 29, 0.5);
    box-shadow: 0 20px 50px rgba(248, 153, 29, 0.15);
}

.leader-avatar {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(248, 153, 29, 0.4);
    border: 4px solid #f37f00;
    object-fit: cover;
    object-position: 75% 15%;
}

.leader-info h3 {
    color: #f37f00;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 4px;
}

.leader-info .role {
    color: rgba(255, 255, 255, 1);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.leader-quote {
    border-left: 3px solid #f37f00;
    padding-left: 18px;
    margin-bottom: 20px;
}

.leader-quote p {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
}

.leader-info p {
    color: rgba(255, 255, 255, 1);
    font-size: 15px;
    line-height: 1.8;
}

/* ---------- TIMELINE ---------- */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #f37f00, rgba(248, 153, 29, 0.1));
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(7) {
    animation-delay: 0.7s;
}

.timeline-item:nth-child(8) {
    animation-delay: 0.8s;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f37f00;
    border: 3px solid #1a1a1a;
    box-shadow: 0 0 0 2px #f37f00;
}

.timeline-year {
    font-size: 12px;
    font-weight: 400;
    color: #f37f00;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.timeline-text {
    color: rgba(255, 255, 255, 1);
    font-size: 15px;
    line-height: 1.6;
}

/* ---------- GROUP CARDS ---------- */
.group-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.group-card {
    background: linear-gradient(145deg, rgba(51, 51, 51, 0.95) 0%, rgba(31, 31, 31, 0.95) 100%);
    border-radius: 8px;
    padding: 32px 28px;
    border: 1px solid rgba(248, 153, 29, 0.1);
    transition: all 0.4s ease;
}

.group-card:hover {
    border-color: rgba(248, 153, 29, 0.5);
    box-shadow: 0 15px 40px rgba(248, 153, 29, 0.15);
    transform: translateY(-4px);
}

.group-card-logo {
    height: 60px;
    max-width: 160px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.group-card:hover .group-card-logo {
    transform: scale(1.08);
}

.group-card h4 {
    color: #f37f00;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.group-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.7;
}

/* ---------- BROCHURE CTA ---------- */
.cta-section {
    background: linear-gradient(135deg, #f37f00 0%, #e08718 100%);
    border-radius: 8px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(248, 153, 29, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.cta-section h3 {
    color: white;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 12px;
    position: relative;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 36px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn-white {
    background: white;
    color: #f37f00;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-white:hover {
    background: #dddddd;
}



/* ---------- FOOTER ---------- */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 30px 5%;
    text-align: center;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
}

.footer img {
    max-width: 185px;
    height: 75px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer img:hover {
    transform: scale(1.05);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.icon-list-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: rgb(197, 197, 197);
    font-size: 12px;
    justify-content: center;
}

.icon-list-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.icon-list-text:hover {
    color: rgb(220, 220, 220);
    transform: translateX(3px);
}

.icon-list-text img {
    height: 18px;
    transition: transform 0.3s ease;
}

.icon-list-text:hover img {
    transform: scale(1.2);
}

.icon-list-text a {
    color: #f37f00;
    transition: all 0.3s ease;
    position: relative;
}

.icon-list-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f37f00;
    transition: width 0.3s ease;
}

.icon-list-text a:hover::after {
    width: 100%;
}

.icon-list-text a:hover {
    color: #ffa940;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .top-info {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo-section {
        flex-direction: column;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .leadership-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .leader-avatar {
        margin: 0 auto;
    }

    .leader-quote {
        text-align: left;
    }

    .group-cards {
        grid-template-columns: 1fr;
    }

    .icon-list-elements {
        flex-direction: column;
        gap: 15px;
    }

    .hero h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 5%;
    }

    .hero h2 {
        font-size: 28px;
    }

    .section {
        padding: 60px 5%;
    }

    .section-title,
    .section-title-light {
        font-size: 28px;
    }

    .cta-section {
        padding: 40px 25px;
    }

    .cta-section h3 {
        font-size: 24px;
    }

    .leadership-card {
        padding: 35px 25px;
    }

    .header-text h1 {
        font-size: 22px;
    }
}

/*------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #a0a0a0;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #f37f00;
}

h2 {
    color: #f37f00;
    font-family: Bebas Neue, Inter, sans-serif;
    font-size: clamp(25px, 5vw, 38px);
    font-weight: 400;
    text-align: center;
    padding: 0px;
    margin-bottom: 0px;
    line-height: 2;
    transition: all 0.3s ease;
}

h3 {
    font-family: Bebas Neue, Inter, sans-serif;
}

.video-wrapper {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 60px;
    overflow: hidden;
}

.video-wrapper h3 {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    color: #f37f00;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 400;
}

.video-wrapper img {
    width: 100%;
    height: auto;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.SaW-pathway {
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    place-items: center;
}

.SaW-pathway::before {
    content: '';
    position: absolute;
    top: 120px;
    left: calc(10% + 32px);
    right: calc(10% + 32px);
    height: 3px;
    background: linear-gradient(90deg, #000 45%, #95483f 46%, #f37f00 50%, #95483f 54%, #000 55%);
    background-size: 250% 100%;
    background-position: 0% 0%;
    z-index: 0;
    animation: none;
}

.SaW-pathway.animate::before {
    animation: gradient 15s linear infinite;
}

.SaW-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px;
    position: relative;
    z-index: 1;
    color: white;
    gap: 20px;
    transform: translateY(20%);
    transition: transform 0.25s ease-in-out;
    animation: none;
}

.animate .SaW-step {
    animation: stepCycle 15s ease-in-out infinite;
}

.SaW-step h3 {
    opacity: 0;
    transform: translateY(0%);
    transition: all 0.25s ease-in-out;
}

.SaW-step p {
    opacity: 0;
    transform: translateY(0%);
    transition: all 0.25s ease-in-out;
}

.SaW-step h3,
.SaW-step p {
    animation: none;
}

.animate .SaW-step h3,
.animate .SaW-step p {
    animation: textCycle 15s ease-in infinite;
}

.SaW-step-num {
    display: flex;
    background-color: #f37f00;
    height: 78px;
    width: 78px;
    border-radius: 50%;
    padding: 10px;
    color: white;
    font-weight: 400;
    align-items: center;
    font-size: 34px;
    justify-content: center;
}

.SaW-step:nth-child(1) {
    animation-delay: 0s;
}

.SaW-step:nth-child(2) {
    animation-delay: 3s;
}

.SaW-step:nth-child(3) {
    animation-delay: 6s;
}

.SaW-step:nth-child(4) {
    animation-delay: 9s;
}

.SaW-step:nth-child(5) {
    animation-delay: 12s;
}

.SaW-step:nth-child(1) h3,
.SaW-step:nth-child(1) p {
    animation-delay: 0s;
}

.SaW-step:nth-child(2) h3,
.SaW-step:nth-child(2) p {
    animation-delay: 3s;
}

.SaW-step:nth-child(3) h3,
.SaW-step:nth-child(3) p {
    animation-delay: 6s;
}

.SaW-step:nth-child(4) h3,
.SaW-step:nth-child(4) p {
    animation-delay: 9s;
}

.SaW-step:nth-child(5) h3,
.SaW-step:nth-child(5) p {
    animation-delay: 12s;
}

.real-gain-image {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    padding-bottom: 10px;
    text-align: center;
    align-items: center;
}

.college-buttons {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    translate: -50% 50%;
    gap: 5%;
    z-index: 300;
}

.real-gain-image h2 {
    color: white;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 1);
    top: 40%;
    left: 50%;
    translate: -50%;
    gap: 50px;
    z-index: 300;
}

.real-gain-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: blur(0px);
    object-position: center 0, center -250px;

}

.college-buttons .apply-button {
    width: 180px;
}

.apply-button {
    background: #f37f00;
    color: white;
    font-size: 15px;
    padding: 16px 30px;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.7);
    z-index: 235;
}

.header .apply-button {
    font-family: Inter, system-ui, sans-serif;
    font-size: 15px;
    padding: 10px 30px;
    position: relative;
    align-items: center;
    border-radius: 8px;
    box-shadow: none;
}

.header .apply-button:hover {
    color: white;
}

.apply-button:hover {
    color: white;
    background-color: rgb(193, 105, 8);
    transition: all 0.25s ease-in-out;
}

/* ----------- SECTIONS ----------- */

.section {
    background: #ffffff;
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-dark p {
    color: #ffffff;
}

.section-students {
    background-color: #ffffff;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    gap: 0;
    align-items: flex-start;
}

.section-students h2 {
    width: 100%;
}

.section-students h3 {
    text-align: center;
}

.section-students .video-wrapper {
    flex: 1;
    min-width: 300px;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: visible;
}

.section-students .video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.story-buttons {
    margin-top: -100px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.story-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.read-story-button {
    background: #f37f00;
    color: white;
    font-family: Inter, system-ui, sans-serif;
    font-size: 1.1em;
    padding: 16px 30px;
    border-radius: 8px;
    border: 0px;
    transition: all 0.25s ease-in-out;
    text-align: center;
    width: 100%;
    z-index: 235;
    justify-content: center;
    align-items: center;
    display: flex;
}

.read-story-button svg {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.read-story-button.active svg {
    transform: scaleY(-1);
}

.read-story-button:hover {
    color: white;
    background-color: #e08718;
    transition: all 0.25s ease-in-out;
}

.story-text {
    margin-top: -10px;
    color: rgb(0, 0, 0);
    max-height: 0;
    width: calc(100% - 1px);
    overflow: hidden;
    opacity: 0;
    padding: 20px 16px;
    background: none;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: 234;
}

.story-text.open {
    flex: 1;
    max-height: 600px;
    opacity: 1;
}

.section-challenge {
    background-color: #ffffff;
    min-height: 300px;
    height: fit-content;
    margin-bottom: 25px;
}

.section-challenge .card {
    align-self: auto;
    border-radius: 8px;
    padding: 40px 30px;
    width: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    border: 0px solid rgba(248, 153, 29, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
    font-family: Bebas Neue, Inter, sans-serif;
    font-size: 15px;
}

.section-challenge .card img {
    height: 80px;
    width: auto;
}

.section-challenge .card h2 {
    margin-left: 0;
    font-size: clamp(20px, 2vw, 30px);
}

.section-challenge .service-cards {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 15px 5%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    width: 100%;
}

.section-challenge a {
    color: white;
    font-family: Inter, system-ui, sans-serif;
    font-size: 15px;
}

.section-challenge a:hover {
    color: #f37f00;
}

.section-at-work {
    background-color: #000;
    min-height: 450px;
    height: fit-content;
    margin-bottom: 0;
}

.section-at-work h2 {
    text-align: right;
    padding: 0 5%;
}

.section-at-work .section-label-light {
    text-align: right;
    padding: 0 5%;
    margin-bottom: 0;
}

.section-at-work .card {
    align-self: auto;
    border-radius: 8px;
    padding: 40px 30px;
    width: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    border: 0px solid rgba(248, 153, 29, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.section-at-work .card h2 {
    margin-left: 0;
    font-size: clamp(20px, 2vw, 30px);
}

.section-at-work .service-cards {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 35px 5%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    margin-bottom: 0;
    width: 100%;
}

.section-real-gain {
    background: #000;
    min-height: 510px;
    padding-top: 35px;
}

.section-real-gain h2 {
    margin-top: 0px;
    line-height: 1.5;
    padding: 0 5%;
}

.section-label-light {
    padding: 0 5%;
    text-align: right;
}

.section-title-light {
    padding: 0 5%;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    padding-left: 0;
    line-height: 1.2;
    text-align: end;
}

.section-real-gain img {
    padding-top: 20px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -48%) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes scaleWidthUp {
    from {
        opacity: 0;
        transform: scaleX(0) scaleY(2) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scaleX(1.0) scaleY(1) translateY(0px);
    }
}

@keyframes gradient {
    0% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}


@keyframes textCycle {
    0% {
        opacity: 0;
        transform: translateY(0%);
    }

    5% {
        opacity: 1;
        transform: translateY(50%);
    }

    20% {
        opacity: 1;
        transform: translateY(50%);
    }

    25% {
        opacity: 0;
        transform: translateY(0%);
    }

    100% {
        opacity: 0;
        transform: translateY(0%);
    }
}


@keyframes stepCycle {
    0% {
        transform: translateY(20%);
    }

    5% {
        transform: translateY(0%) scale(1.05);
    }

    20% {
        transform: translateY(0%) scale(1.05);
    }

    25% {
        transform: translateY(20%) scale(1);
    }

    100% {
        transform: translateY(20%);
    }
}

/* ---------- COOKIE POLICY MODAL ---------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 20000;
    display: none;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-overlay.show {
    display: block;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #ffffff 0%, #f9f5f2 100%);
    border-radius: 8px;
    padding: 40px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 20001;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.modal-header h2 {
    color: #1f1f1f;
    font-size: 26px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(248, 153, 29, 0.1);
    color: #f37f00;
    transform: rotate(90deg);
}

.modal-body {
    color: #333;
    line-height: 1.8;
}

.modal-body h3 {
    color: #f37f00;
    font-size: 18px;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 12px;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 15px;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-body li {
    margin-bottom: 8px;
    font-size: 15px;
}

.modal-body strong {
    color: #1f1f1f;
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    border-top: 2px solid rgba(248, 153, 29, 0.3);
    animation: slideInBottom 0.5s ease-out;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: #f37f00;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-icon {
    font-size: 24px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cookie-text a {
    color: #f37f00;
    text-decoration: underline;
    transition: color 0.3s ease;
    cursor: pointer;
}

.cookie-text a:hover {
    color: #ffa940;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #f37f00 0%, #e08718 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(248, 153, 29, 0.3);
}

.cookie-btn-accept::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cookie-btn-accept:hover::before {
    left: 100%;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 153, 29, 0.4);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: #f37f00;
    border: 1px solid #f37f00;
}

.cookie-btn-settings:hover {
    background: rgba(248, 153, 29, 0.1);
    transform: translateY(-2px);
}

/* ---------- TOP CONTACT BAR ---------- */
.top-info {
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 7px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInDown 0.6s ease-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-info .icon-list-text img {
    transform: translateY(0px);
}

.top-info .icon-list-text:hover img {
    transform: scale(1.05) translateY(-3px);
}

.top-info.hidden {
    transform: translateY(-100%);
}

.contact-info {
    display: flex;
    gap: 30px;
    list-style: none;
    color: rgb(197, 197, 197);
    font-size: 12px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.contact-info li:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info li:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-info li:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-info img {
    height: 16px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.contact-info li:hover img {
    transform: scale(1.2);
}

.contact-btn {
    background: linear-gradient(135deg, #f37f00 0%, #e08718 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 153, 29, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 153, 29, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
}

/* ---------- HEADER ---------- */
.header {
    background: #00000000;
    border-bottom: 0;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fadeInDown 0.8s ease-out;
    transition: background 0.25s ease;
    z-index: 9999;
}

.header.opacity {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header a {
    color: #ffffff;
    font-family: Bebas Neue, Inter, sans-serif;
    font-size: 20px;
}

.header a:hover {
    color: #f37f00;
    transition: all 0.25s ease-in-out;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: slideInLeft 0.8s ease-out;
}

.logo-section img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo-section img:hover {
    transform: scale(1.05) rotate(2deg);
}

.header-text {
    font-family: Bebas Neue, Inter, sans-serif;
}

.header-text img {
    height: 30px;
}

.header-smalltext {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.header-text h1 {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    color: #ffffff;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-text p {
    font-size: 13px;
    color: #ffffff;
    margin: 5px 0 0 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.header-divider {
    width: 1px;
    height: 30px;
    background-color: #ffffff;
}

.link-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Container button for the hamburger icon */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    /* Kept slightly higher than the nav overlay */
    padding: 0;
    position: fixed;
    top: 20px;
    right: 20px;
}

.menu-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    border-radius: 8px;
    z-index: -1;
}

/* Individual horizontal bars */
.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, width 0.25s ease, background-color 0.3s ease;
}

.menu-toggle.active::before {
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
    transition: background-color 0.3s ease;
}

/* --- THE MORPH MECHANICS --- */

/* Top bar rotates downwards */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

/* Middle bar fades completely away */
.menu-toggle.active span:nth-child(2) {
    width: 0px;
}

/* Bottom bar rotates upwards */
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- MOBILE NAV OVERLAY BOX --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-screen right by default */
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding-top: 80px;
    z-index: 10000;
}

/* Slide overlay into view when active */
.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li a {
    font-family: Bebas Neue, Inter, sans-serif;
    display: block;
    padding: 15px 25px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

.mobile-nav ul li a:hover {
    color: #f37f00;
    transition: all 0.25s ease;
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    top: 0;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* background-image: url('image_assets/background_image.png'); Unnecessary background image */
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0a0a0a99;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

.hero h3 {
    color: #ffffff;
    font-weight: 400;
    font-size: clamp(3rem, 5vw, 4.5rem);
    position: relative;
    text-align: left;
    animation: fadeInUp 2s ease-out forwards;
    transform: scale(1);
    transition: all 0.25s ease-out;
    z-index: 25;
}

.hero h3:hover {
    transform: scale(1.1) translateY(-10px);
}

.real-hero-text {
    text-align: left;
    padding: 0 5%;
}

.hero p {
    font-size: 1.25rem;
    position: relative;
    color: #ffffff;
    z-index: 25;
    animation: fadeInUp 2s ease-out forwards;
}

.hero a {
    animation: fadeInUp 2s ease-out forwards;
}

.hero .apply-button {
    font-family: Inter, system-ui, sans-serif;
    display: block;
    width: 45%;
    border-radius: 8px;
    position: relative;
    text-align: center;
    font-weight: 600;
    font-size: 24px;
}

::selection {
    background-color: #f37f00;
    color: #000;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: fadeIn 1.5s ease-out;
}

/* ---------- SERVICE CARDS ---------- */

.academy-grid {
    display: grid;
    grid-template-columns: 47.5% 47.5%;
    margin: 0 5%;
    gap: 5%;
}

.academy-grid .video-wrapper {
    margin: 0;
    padding: 0;
}

.academy-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.academy-container h2 {
    font-size: 25px;
}

.academy-container .section-label {
    text-align: center;
}


.service-cards {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    max-width: 1400px;
    /* margin: 0 auto; */
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
}

.card {
    align-self: center;
    background-size: cover;
    background-position: center 0, center -100px;
    background-repeat: no-repeat;
    border-radius: 8px;
    padding: 0px 30px;
    padding-top: 15px;
    padding-bottom: 20px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
    flex: 1;
    justify-content: center;
}

.card:nth-child(1) {
    background-position: center 0, center 0px;
    animation-delay: 0.2s;
}

.card:nth-child(2) {
    background-position: center 0, center -100px;
    animation-delay: 0.4s;
}

.card:nth-child(3) {
    background-position: center 0, center 0px;
    animation-delay: 0.6s;
}

.section-challenge .card:nth-child(1) {
    background-position: center 0, center 0px;
}

.section-challenge .card:nth-child(2) {
    background-position: center 0, center 0px;
}

.section-challenge .card:nth-child(3) {
    background-position: center 0, center 0px;
}

.section-at-work .card:nth-child(1) {
    background-position: center 0, center 0px;
}

.section-at-work .card:nth-child(2) {
    background-position: center 0, center 0px;
}

.section-at-work .card:nth-child(3) {
    background-position: center 0, center 0px;
}

.section-at-work .card:nth-child(4) {
    background-position: center 0, center 0px;
}

.section-challenge .card:hover {
    box-shadow: 0 25px 50px rgba(248, 153, 29, 0.4),
        0 0 30px rgba(248, 153, 29, 0.2);
    border-color: rgba(248, 153, 29, 0.8);
}

.card-content {
    align-self: center;
    padding: 0px 0px;
    width: 100%;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.card-content p {
    font-size: clamp(7px, 2vw + 8px, 20px);
}

.card:hover .card-logo {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 12px 20px rgba(248, 153, 29, 0.75));
}

.card svg {
    width: auto;
    height: 25px;
    align-self: flex;
    filter: drop-shadow(0 12px 20px rgba(248, 153, 29, 0.35));
    animation: fadeInUp 1s forwards;
}

.card img {
    width: 10%;
    height: auto;
    animation: fadeInUp 1s forwards;
}

.card h2 {
    color: #f37f00;
    font-size: clamp(25px, 5vw, 20px);
    font-weight: 400;
    /* margin-left: 35px; */
    margin-bottom: 0;
    line-height: 1.5;
    transition: all 0.3s ease;
    padding: 0;
    text-align: left;
}

.section-challenge .card:hover h2 {
    color: #ffa940;
    text-shadow: 0 0 20px rgba(248, 153, 29, 0.5);
    transform: translateY(-2px);
}

.card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.card:hover p {
    color: rgba(255, 255, 255, 1);
}

.learn-more {
    color: #f37f00;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    position: relative;
    transition: all 0.3s ease;
}

.learn-more:after {
    content: '→';
    transition: transform 0.3s ease;
    display: inline-block;
}

.card:hover .learn-more {
    gap: 12px;
    transform: translateX(3px);
}

.card:hover .learn-more:after {
    transform: translateX(5px);
}

/* ---------- FOOTER ---------- */
.footer {
    display: flex;
    flex-direction: column;
    background: #000;
    padding: 30px 5%;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    z-index: 25;
    align-items: center;
}

.footer img {
    display: flex;
    max-width: 185px;
    height: 75px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer img:hover {
    transform: scale(1.05);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-brand-column {
    grid-column: span 1 / span 1;
    text-align: left;
}

.footer-nav-column {
    text-align: left;
}

.footer-logo {
    font-family: Bebas Neue, Inter, sans-serif;
    font-size: 1.375rem;
    line-height: 1.3;
    font-weight: 600;
    color: rgb(255 255 255 / 1);
    text-decoration: inherit;
}

.footer-tagline {
    margin-top: 1rem;
    font-size: .9375rem;
    line-height: 1.6;
    color: rgb(163 163 163 / 1);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    color: rgb(255 255 255 / 1);
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-decoration: inherit;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.footer-social-link:hover {
    color: rgb(243 127 0 / 1);
}

.footer-heading {
    font-size: .8125rem;
    line-height: 1.5;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgb(163 163 163 / 1);
    margin-bottom: 1rem;
    font-family: Bebas Neue, Inter, sans-serif;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link {
    font-size: .9375rem;
    line-height: 1.6;
    color: rgb(255 255 255 / 1);
    text-decoration: inherit;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.footer-link:hover {
    color: rgb(243 127 0 / 1);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top-width: 1px;
    border-color: rgb(34 34 34 / 1);
    font-size: .8125rem;
    line-height: 1.5;
    letter-spacing: .04em;
    color: rgb(115 115 115 / 1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: inherit;
    background-color: transparent;
    background-image: none;
    border-width: 0px;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-decoration: inherit;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.footer-bottom-link:hover {
    color: rgb(255 255 255 / 1);
}

.icon-list-elements {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgb(197, 197, 197);
    font-size: 12px;
}

.icon-list-elements .apply-button {
    height: 100%;
}

.icon-list-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.icon-list-text:hover {
    color: rgb(220, 220, 220);
    transform: translateX(3px);
}

.icon-list-text img {
    height: 18px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.icon-list-text:hover img {
    transform: scale(1.15) translateY(10px);
}

.icon-list-text a {
    color: #f37f00;
    transition: all 0.3s ease;
    position: relative;
}

.icon-list-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f37f00;
    transition: width 0.3s ease;
}

.icon-list-text a:hover::after {
    width: 100%;
}

.icon-list-text a:hover {
    color: #ffa940;
}

.copyright {
    padding-top: 20px;
    color: #444;
    font-size: 15px;
    text-align: center;
    width: 100%;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .academy-grid {
        grid-template-columns: 100%;
        gap: 15px;
    }

    .top-info {
        display: none;
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header {
        position: absolute;
        top: 0px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .header.opacity {
        border: 0;
        background: none;
        backdrop-filter: blur(0px) saturate(100%);
        -webkit-backdrop-filter: blur(0px) saturate(100%);
    }

    .header .apply-button {
        position: relative;
        order: 4;
    }

    .header-text {
        margin: 0;
    }

    .logo-section {
        flex-direction: column;
        gap: 10px;
    }

    .logo-section img {
        order: 1;
        max-width: 100px;
        height: 30px;
    }

    .logo-section .header-text {
        order: 2
    }

    .link-container {
        display: none;
    }

    .service-cards {
        flex-direction: column;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .footer {
        align-items: flex-start;
    }

    .icon-list-elements {
        flex-direction: column;
        gap: 15px;
    }

    .card {
        background-position: center center;
        animation-delay: 0s !important;
    }

    .card:nth-child(n) {
        background-position: center center;
    }

    .section-challenge .card:nth-child(n) {
        background-position: center center;
    }

    .section-challenge .card.card:nth-child(2) {
        background-position: center 0, center 0px;
    }

    .card h2 {
        text-align: center;
        margin-left: 0;
    }

    .card-content svg {
        align-self: center;
        margin: 0;
    }

    .card-content {
        padding: 0;
        gap: 0;
    }

    .card-content p {
        order: 1;
        padding: 15px;
        width: 100%;
    }

    .section-at-work .service-cards {
        flex-direction: column;
    }

    .section-at-work .card h2 {
        font-size: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .SaW-pathway {
        grid-template-columns: auto;
        place-items: left;
    }

    .SaW-pathway::before {
        display: none;
    }


}

@media (max-width: 783px) {
    .header-text h1 {
        font-size: 22px;
    }

    .cookie-banner {
        padding: 20px 5%;
    }

    .cookie-text h3 {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .section-students {
        flex-direction: column;
        gap: 1rem;
    }

    .section-students .video-wrapper:nth-of-type(2) {
        order: 3;
    }

    .story-buttons {
        display: contents;
    }

    .story-item:nth-child(1) {
        order: 2;
    }

    .story-item:nth-child(2) {
        order: 4;
    }

    .story-item {
        width: 100%;
    }

    .section-challenge .service-cards {
        flex-direction: column;
    }

    .section-challenge .card.card:nth-child(2) {
        background-position: center 0, center -150px;
    }

    .footer-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (min-width: 1025px) {
    .menu-toggle {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .footer-brand-column {
        grid-column: span 1 / span 1;
    }
}

@media (min-width: 768px) {
    .footer-container {
        padding-left: var(--gutter-md, 2rem);
        padding-right: var(--gutter-md, 2rem);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding-left: var(--gutter-lg, 3rem);
        padding-right: var(--gutter-lg, 3rem);
    }
}

/*-------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MS+UI+Gothic:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

::selection {
    background-color: #f37f00;
    color: #000;
}

a {
    text-decoration: none;
    color: #a0a0a0;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #f37f00;
}

h2 {
    color: #f37f00;
    font-family: Bebas Neue, Inter, sans-serif;
    font-size: clamp(25px, 5vw, 38px);
    font-weight: 400;
    text-align: center;
    padding: 10px;
    margin-bottom: 5px;
    line-height: 2;
    transition: all 0.3s ease;
}

h3 {
    font-family: Bebas Neue, Inter, sans-serif;
}

.apply-button {
    background: #f37f00;
    color: white;
    font-size: 15px;
    padding: 16px 30px;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.7);
    z-index: 235;
}

.header .apply-button {
    font-family: Inter, system-ui, sans-serif;
    font-size: 15px;
    padding: 10px 30px;
    position: relative;
    align-items: center;
    border-radius: 8px;
    box-shadow: none;
}

.header .apply-button:hover {
    color: white;
}

.apply-button:hover {
    color: white;
    background-color: rgb(193, 105, 8);
    transition: all 0.25s ease-in-out;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -48%) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* ---------- COOKIE POLICY MODAL ---------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 20000;
    display: none;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-overlay.show {
    display: block;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #ffffff 0%, #f9f5f2 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 20001;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(248, 153, 29, 0.2);
}

.modal-header h2 {
    color: #1f1f1f;
    font-size: 26px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(248, 153, 29, 0.1);
    color: #f37f00;
    transform: rotate(90deg);
}

.modal-body {
    color: #333;
    line-height: 1.8;
}

.modal-body h3 {
    color: #f37f00;
    font-size: 18px;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 12px;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 15px;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-body li {
    margin-bottom: 8px;
    font-size: 15px;
}

.modal-body strong {
    color: #1f1f1f;
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    border-top: 2px solid rgba(248, 153, 29, 0.3);
    animation: slideInBottom 0.5s ease-out;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: #f37f00;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-icon {
    font-size: 24px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cookie-text a {
    color: #f37f00;
    text-decoration: underline;
    transition: color 0.3s ease;
    cursor: pointer;
}

.cookie-text a:hover {
    color: #ffa940;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #f37f00 0%, #e08718 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(248, 153, 29, 0.3);
}

.cookie-btn-accept::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cookie-btn-accept:hover::before {
    left: 100%;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 153, 29, 0.4);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: #f37f00;
    border: 1px solid #f37f00;
}

.cookie-btn-settings:hover {
    background: rgba(248, 153, 29, 0.1);
    transform: translateY(-2px);
}

/* ---------- TOP CONTACT BAR ---------- */
.top-info {
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 7px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInDown 0.6s ease-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-info .icon-list-text img {
    transform: translateY(0px);
}

.top-info .icon-list-text:hover img {
    transform: scale(1.05) translateY(-3px);
}

.contact-button {
    background: #f37f00;
    color: white;
    font-size: 15px;
    padding: 16px 30px;
    border-radius: 20px;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.7);
    z-index: 235;
}

.contact-button:hover {
    color: white;
    background-color: #e08718;
    transition: all 0.25s ease-in-out;
}

.contact-info {
    display: flex;
    gap: 30px;
    list-style: none;
    color: rgb(197, 197, 197);
    font-size: 12px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.contact-info li:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info li:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-info li:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-info img {
    height: 16px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.contact-info li:hover img {
    transform: scale(1.2);
}

.contact-btn {
    background: linear-gradient(135deg, #f37f00 0%, #e08718 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 153, 29, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 153, 29, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
}

/* ---------- HEADER ---------- */
.header {
    background: #00000000;
    border-bottom: 0;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fadeInDown 0.8s ease-out;
    transition: background 0.25s ease;
    z-index: 9999;
}

.header.opacity {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header a {
    color: #ffffff;
    font-family: Bebas Neue, Inter, sans-serif;
    font-size: 20px;
}

.header a:hover {
    color: #f37f00;
    transition: all 0.25s ease-in-out;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: slideInLeft 0.8s ease-out;
}

.logo-section img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo-section img:hover {
    transform: scale(1.05) rotate(2deg);
}

.header-text {
    font-family: Bebas Neue, Inter, sans-serif;
}

.header-text img {
    height: 30px;
}

.header-smalltext {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.header-text h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-text p {
    font-size: 14px;
    color: #ffffff;
    margin: 5px 0 0 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.header-divider {
    width: 1px;
    height: 30px;
    background-color: #ffffff;
}

.link-container {
    display: flex;
    gap: 40px;
    align-items: center;
}


/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
}

.hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0px;
    background: rgba(10, 10, 10, 0.6);
    animation: 1s ease-out 0s 1 normal none running fadeIn;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 ratio */
    min-height: 100%;
    min-width: 400vh;
    /* 16:9 ratio */
    transform: translate(-50%, -50%);
    z-index: 0;
    border: none;
    animation: fadeIn 1.5s ease-out;
}

/* Video element supports object-fit: cover natively — override iframe hack */
video.bg-video {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
    min-height: unset;
    min-width: unset;
    object-fit: cover;
}

/* ---------- SERVICE home-cardS ---------- */
.home-cards {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    margin-top: 5vw;
}

.home-cards > a {
    flex: 1;
    display: contents;
}

.home-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 40px 30px;
    width: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(0, 0, 0, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        inset 0 0 20px 10px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.home-card:nth-child(1) {
    animation-delay: 0.2s;
}

.home-card:nth-child(2) {
    animation-delay: 0.4s;
}

.home-card:nth-child(3) {
    animation-delay: 0.6s;
}

.home-card:nth-child(4) {
    animation-delay: 0.8s;
}

.home-card:hover {
    box-shadow: 0 25px 50px rgba(248, 153, 29, 0.4),
        0 0 30px rgba(248, 153, 29, 0.2);
    border-color: rgba(248, 153, 29, 0.8);
}

.home-card-logo {
    height: 100px;
    width: 100%;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.home-card:hover .home-card-logo {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 12px 20px rgba(248, 153, 29, 0.5));
}

.home-card h2 {
    min-height: 72px;
    color: #f37f00;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.home-card:hover h2 {
    color: #ffa940;
    text-shadow: 0 0 20px rgba(248, 153, 29, 0.5);
    transform: translateY(-2px);
}

.home-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.home-card:hover p {
    color: rgba(255, 255, 255, 1);
}

.learn-more {
    color: #f37f00;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    position: relative;
    transition: all 0.3s ease;
}

.learn-more:after {
    margin-top: 3px;
    content: '>';
    font-size: 12px;
    font-family: MS UI Gothic;
    transition: transform 0.3s ease;
    display: inline-block;
}

.home-card:hover .learn-more {
    gap: 12px;
    transform: translateX(3px);
}

.home-card:hover .learn-more:after {
    transform: translateX(5px);
}

/* ---------- FOOTER ---------- */
.footer {
    display: flex;
    flex-direction: column;
    background: #000;
    padding: 30px 5%;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    z-index: 25;
    align-items: center;
}

.footer img {
    display: flex;
    max-width: 185px;
    height: 75px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer img:hover {
    transform: scale(1.05);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-brand-column {
    grid-column: span 1 / span 1;
    text-align: left;
}

.footer-nav-column {
    text-align: left;
}

.footer-logo {
    font-family: Bebas Neue, Inter, sans-serif;
    font-size: 1.375rem;
    line-height: 1.3;
    font-weight: 600;
    color: rgb(255 255 255 / 1);
    text-decoration: inherit;
}

.footer-tagline {
    margin-top: 1rem;
    font-size: .9375rem;
    line-height: 1.6;
    color: rgb(163 163 163 / 1);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    color: rgb(255 255 255 / 1);
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-decoration: inherit;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.footer-social-link p {
    color: #a3a3a3;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.footer-social-link:hover,
.footer-social-link:hover p {
    color: rgb(243 127 0 / 1);
}

.footer-heading {
    font-size: .8125rem;
    line-height: 1.5;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgb(163 163 163 / 1);
    margin-bottom: 1rem;
    font-family: Bebas Neue, Inter, sans-serif;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link {
    font-size: .9375rem;
    line-height: 1.6;
    color: rgb(255 255 255 / 1);
    text-decoration: inherit;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.footer-link:hover {
    color: rgb(243 127 0 / 1);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top-width: 1px;
    border-color: rgb(34 34 34 / 1);
    font-size: .8125rem;
    line-height: 1.5;
    letter-spacing: .04em;
    color: rgb(115 115 115 / 1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: inherit;
    background-color: transparent;
    background-image: none;
    border-width: 0px;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-decoration: inherit;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.footer-bottom-link:hover {
    color: rgb(255 255 255 / 1);
}

.icon-list-elements {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgb(197, 197, 197);
    font-size: 12px;
}

.icon-list-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.icon-list-text:hover {
    color: rgb(220, 220, 220);
    transform: translateX(3px);
}

.icon-list-text img {
    height: 18px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.icon-list-text:hover img {
    transform: scale(1.15) translateY(10px);
}

.icon-list-text a {
    color: #f37f00;
    transition: all 0.3s ease;
    position: relative;
}

.icon-list-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f37f00;
    transition: width 0.3s ease;
}

.icon-list-text a:hover::after {
    width: 100%;
}

.icon-list-text a:hover {
    color: #ffa940;
}

.copyright {
    padding-top: 20px;
    color: #444;
    font-size: 15px;
    text-align: center;
    width: 100%;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .top-info {
        display: none;
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header {
        position: absolute;
        top: 0px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .header.opacity {
        border: 0;
        background: none;
        backdrop-filter: blur(0px) saturate(100%);
    }

    .header-text {
        margin: 0;
    }

    .header-smalltext p {
        text-align: center;
        width: 100%;
    }

    .logo-section {
        flex-direction: column;
        gap: 10px;
    }

    .link-container {
        display: none;
    }

    .home-cards {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 200px 0;
    }

    .icon-list-elements {
        flex-direction: column;
        gap: 15px;
    }

    .home-card {
        animation-delay: 0s !important;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .footer {
        align-items: flex-start;
    }

    .bg-video {
        height: 100vh;
    }
}

@media (max-width: 783px) {
    .header-text h1 {
        font-size: 22px;
    }

    .home-card {
        padding: 30px 20px;
    }

    .home-card-logo {
        height: 80px;
        width: 80px;
    }

    .cookie-banner {
        padding: 20px 5%;
    }

    .cookie-text h3 {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .home-cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1025px) {
    .menu-toggle {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .footer-brand-column {
        grid-column: span 1 / span 1;
    }
}

@media (min-width: 768px) {
    .footer-container {
        padding-left: var(--gutter-md, 2rem);
        padding-right: var(--gutter-md, 2rem);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding-left: var(--gutter-lg, 3rem);
        padding-right: var(--gutter-lg, 3rem);
    }
}