html {
    -webkit-text-size-adjust: 100%;
    font-family: 'neue-haas-unica', sans-serif;
    font-style: normal;
    font-feature-settings: normal;
    font-variation-settings: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

body {
    font-family: 'neue-haas-unica', sans-serif;
    scroll-behavior: smooth;
    color: white;
}

.bg-custom-primary {
    background-color: #7f0436;
}

.curtom-dropdown-menu-dark {
    --bs-dropdown-link-active-bg: #6f011d !important;
}

section {
    padding-top: 13vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 {
    font-size: 3rem;
    color: #fff;
}

p {
    color: #aaa;
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 70%;
}

.carousel-items {
    display: flex;
    align-items: center;
    justify-items: center;
    animation: seamless-scroll 60s linear infinite;
    gap: 50px;
}

.carousel-items li {
    display: inline-block;
    margin: 0 15px;
}

.carousel-items img {
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
}

.overflow-hidden {
    overflow: hidden;
}

.gradient-box-tr-tl-br-bl {
    position: relative;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    z-index: 1;
}

.gradient-box-tr-tl-br-bl::before {
    content: "";
    position: absolute;
    top: -0px;
    left: -0px;
    right: -0px;
    bottom: -0px;
    border-radius: 1.25rem;
    background: linear-gradient(45deg, #390061, #AF0B27);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    padding: 0.125rem;
    z-index: -1;
}

.gradient-box-tr-bl {
    position: relative;
    /*padding: 1.25rem;*/
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(5px);
    border-radius: 1.25rem;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 1;
}

.gradient-box-tr-bl::before {
    content: "";
    position: absolute;
    top: -0px;
    left: -0px;
    right: -0px;
    bottom: -0px;
    border-radius: 1.25rem;
    border-top-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    background: linear-gradient(45deg, #390061, #AF0B27);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    padding: 0.125rem;
    z-index: -1;
}

.glow-btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    padding: 5px;
    /* Gradients/Blue Red */
    background: linear-gradient(45deg, #0047FF 0.01%, #FF0000 100.01%);
    /* Shadow-Blur/sm */
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05), 0px 4px 4px rgba(0, 0, 0, 0.05), 0px 10px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid;
    border-image-source: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), linear-gradient(45deg, rgba(0, 71, 255, 0.5) 0.01%, rgba(126, 36, 129, 0) 50.01%, rgba(255, 0, 0, 0.5) 100.01%);
    color: black;
}

.glow-btn:hover,
.glow-btn:active,
.glow-btn-active {
    color: white;
}

.lab-image-container {
    width: auto;
    /* Fixed width */
    height: 300px;
    /* Fixed height */
    /* Ensures rounded container */
    overflow: hidden;
    /* Ensures the image doesn't overflow the container */
    display: flex;
    /* Centers the image inside */
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
}

.lab-image-container img {
    width: 100%;
    /* Ensures the image fills the container */
    height: 100%;
    /* Ensures the image fills the container */
    object-fit: contain;
    /* Maintains aspect ratio while filling the container */
}

.text-white h4 {
    font-size: 16px;
    /* Adjust the size to make it smaller */
}

.text-white p {
    font-size: 14px;
}

footer {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 20px 0;
    color: white;
}

footer ul li a {
    text-decoration: none;
    color: gray;
    transition: color 0.2s ease-in-out;
}

footer ul li a:hover {
    color: white;
}

.border-t {
    position: relative;
}

.border-t:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(45deg, #0047FF 0.01%, #FF0000 100.01%);
}

.w-2_5 {
    width: 2.5rem;
}

::placeholder {
    color: white !important;
    opacity: 1;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

#loading-screen img {
    max-width: 200px;
    /* Adjust logo size */
    animation: zoomFade 5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    filter: drop-shadow(0 0 15px white);
    /* Subtle glowing effect */
}

/* Animation: Zoom in and fade out */
@keyframes zoomFade {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(5);
    }
}

/* Background fade-out effect */
#loading-screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), black 90%);
    z-index: -1;
    animation: fadeOutBackground 10s linear forwards;
}

@keyframes fadeOutBackground {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Main content hidden initially */
#main-content {
    display: none;
}

.cc-page-gradient {
    background: linear-gradient(45deg,
            rgba(0, 71, 255, 0.1) 0%,
            /* Very light blue with high transparency */
            rgba(255, 0, 0, 0.1) 50%,
            /* Very light red with high transparency */
            rgba(0, 0, 0, 1) 100%);
    /* Solid black overlay */
    height: 100vh;
    inset: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}

.cc-page-gradient_red {
    --cc-background-color: rgba(255, 41, 118, .24)
}

.custom-card {
    position: relative;
    padding: 20px;
    background-color: transparent;
    border-radius: 15px;
    color: #ffffff;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.custom-card-no-hover {
    position: relative;
    padding: 20px;
    background-color: transparent;
    border-radius: 15px;
    color: #ffffff;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    /*height: 100%;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-subtitle {
    font-size: 0.9rem;
    text-transform: capitalize;
    color: white;
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-description {
    text-transform: lowercase;
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    flex-grow: 1;
    max-width: calc(100% - 5%);
}


.card-description-with-btn {
    text-transform: lowercase;
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    flex-grow: 1;
    max-width: calc(100% - 20%);
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
}


.card-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #390061, #AF0B27);
    ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.card-icon:hover {
    background: black;
}

.icon-link {
    color: #101010;
    font-size: 1.5rem;
}

.card-hover-1,
.card-hover-1:hover {
    background: radial-gradient(circle at 466.672px 330.562px, rgba(41, 178, 255, 0.24), transparent 80%);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    transition: all 0.3s ease;
}

.card-hover-1:hover {
    border: 2px solid rgba(41, 178, 255, 0.6);
}

.card-hover-2,
.card-hover-2:hover {
    background: radial-gradient(circle at 466.672px 330.562px, rgba(255, 41, 118, 0.24), transparent 80%);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    transition: all 0.3s ease;
}

.card-hover-2:hover {
    border: 2px solid rgba(255, 41, 118, 0.6);
}

.card-hover-3,
.card-hover-3:hover {
    background: radial-gradient(circle at 466.672px 330.562px, rgba(122, 41, 255, 0.24), transparent 80%);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    transition: all 0.3s ease;
}

.card-hover-3:hover {
    border: 2px solid rgba(122, 41, 255, 0.6);
}

.card-hover-4,
.card-hover-4:hover {
    background: radial-gradient(circle at 949.328px 326.016px, rgba(41, 255, 204, 0.24), transparent 80%);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    transition: all 0.3s ease;
}

.card-hover-4:hover {
    border: 2px solid rgba(41, 255, 204, 0.6);
}

.card-hover-5,
.card-hover-5:hover {
    background: radial-gradient(circle at 949.328px 326.016px, rgba(88, 101, 242, 1), transparent 80%);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    transition: all 0.3s ease;
}

.card-hover-5:hover {
    border: 2px solid rgba(88, 101, 242, 1);
}

.card-hover-1 .card-icon a:hover,
.card-hover-2 .card-icon a:hover,
.card-hover-3 .card-icon a:hover,
.card-hover-4 .card-icon a:hover,
.card-hover-5 .card-icon a:hover {
    color: white;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.fixed {
    position: fixed;
}

.bottom-4 {
    bottom: 1rem;
}

.right-4 {
    right: 1rem;
}

.pointer-events-none {
    pointer-events: none;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mr-4 {
    margin-right: 1rem;
}

.w-96 {
    width: 24rem;
}

.max-w-full {
    max-width: 100%;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.gap-4 {
    gap: 1rem;
}

.custom-style {
    z-index: 9999999;
}

.pointer-events-auto {
    pointer-events: auto
}

.data-\[toast-show\]\:block[data-toast-show] {
    display: block
}

.data-\[toast-hide\]\:hidden[data-toast-hide] {
    display: none
}

.flex {
    display: flex
}

.flex-row {
    flex-direction: row
}

.gap-4 {
    gap: 1rem
}

.items-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.rounded-full {
    border-radius: 9999px;
}

.text-black-200 {
    color: oklch(16.4% 0.04 265.75 /1)
}

.bg-green-400 {
    --tw-bg-opacity: 1;
    background-color: oklch(var(--green-400)/var(--tw-bg-opacity))
}

.bg-green-400\/40 {
    background-color: oklch(var(--green-400)/.4)
}

.bg-yellow-400 {
    --tw-bg-opacity: 1;
    background-color: oklch(var(--yellow-400)/var(--tw-bg-opacity))
}

.bg-yellow-400\/40 {
    background-color: oklch(var(--yellow-400)/.4)
}

.bg-red-400 {
    --tw-bg-opacity: 1;
    background-color: oklch(var(--red-400)/var(--tw-bg-opacity))
}

.bg-red-400\/40 {
    background-color: oklch(var(--red-400)/.4)
}

.bg-primary-400 {
    --tw-bg-opacity: 1;
    background-color: oklch(var(--primary-400)/var(--tw-bg-opacity))
}

.bg-primary-400\/40 {
    background-color: oklch(var(--primary-400)/.4)
}

.absolute {
    position: absolute
}

.top-0 {
    top: 0
}

.right-0 {
    right: 0
}

.z-40 {
    z-index: 40
}


.mr-2 {
    margin-right: .5rem
}


.mt-2 {
    margin-top: .5rem
}

.box-content {
    box-sizing: content-box
}

.border-none {
    border-style: none
}

.opacity-70 {
    opacity: .7
}

.hover\:no-underline:hover {
    text-decoration-line: none
}

.hover\:opacity-50:hover {
    opacity: .5
}

.focus\:opacity-100:focus {
    opacity: 1
}

.list-unstyled {
    line-height: 1.5rem;
}

.counter-section {
    padding: 20px 10px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.counter-section:hover {
    transform: scale(1.05);
}

.medium-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff6f61;
}

.counter-title {
    margin-top: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.timer {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0f0f0;
}

.main-desc {
    font-size: 1.2rem;
    color: white;
}

.form-control,
.form-select {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 4px;
}

select.form-control {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.form-control:focus {
    background-color: transparent;
    color: white;
    border-color: #7f0436;
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.2);
}

.form-select option {
    background-color: #7f0436;
    color: white;
}

select.form-control option {
    background-color: #7f0436;
    color: white;
}

.custom-sub-desc {
    color: #dfe0e2;
    text-align: left;
    line-height: 1.6;
}

.text-left {
    text-align: left;
}

.cc-button_primary {
    cursor: pointer;
    padding: 0.3rem 0.4rem;
    color: rgba(255, 255, 255);
    border-radius: 9999999px;
    background: linear-gradient(90deg, rgba(0, 71, 255, 0.45) 0%, rgba(255, 0, 0, 0.20) 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cc-button_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(90deg, rgba(0, 71, 255, 0.55) 0%, rgba(255, 0, 0, 0.30) 100%);
}

.cc-button_primary:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cc-button_primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cc-button_primary:hover::before {
    left: 100%;
    animation: shine 1.5s infinite;
}

.cc-button_primary:disabled,
.cc-button_neutral {
    cursor: not-allowed;
    opacity: 0.5;
    padding: 0.5rem 0.8rem;
    color: rgba(255, 255, 255, 0.70);
    /*border-radius: 0.3125rem;*/
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(0, 71, 255, 0.45) 0%, rgba(255, 0, 0, 0.20) 100%);
}

.stats-card .card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    transition: transform 0.3s ease;
}

.stats-card .card:hover {
    transform: translateY(-5px);
}

.stats-card .card-title {
    color: purple;
    font-weight: 600;
}

.card-body {
    justify-items: self-start;
}

.stat-icon {
    color: purple;
    font-size: 1.8rem;
}

.stat-number {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0;
    color: white;
}

.stat-label {
    color: beige;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.big-logo-container {
    position: relative;
    padding: 2rem;
}

.big-logo {
    filter: drop-shadow(0 10px 25px rgba(0, 71, 255, 0.2));
    animation: float 6s ease-in-out infinite;
    max-width: 50%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Hands-On Cybersecurity Section Styles */
.cybersecurity-section {
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cybersecurity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 0L100 100" stroke="rgba(0,71,255,0.05)" stroke-width="1"/></svg>');
    pointer-events: none;
}

.framework-card {
    background: linear-gradient(145deg, rgba(15, 15, 30, 0.9) 0%, rgba(5, 5, 15, 0.95) 100%);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(80, 80, 120, 0.3);
}

.framework-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 71, 255, 0.2);
    border: 1px solid rgba(0, 71, 255, 0.5);
}

.framework-bg {
    height: 150px;
    margin: 15px 0 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.framework-card:hover .framework-bg {
    opacity: 1;
    transform: scale(1.05);
}

.nist-bg {
    background-image: url('/assets/images/nist_2.0.png');
}

.mitre-bg {
    background-image: url('/assets/images/mittre_attack.png');
}

.multi-skill-bg {
    background-image: url('/assets/images/badges-skills.png');
}

.framework-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.framework-description {
    text-align: left;
    color: beige;
    font-size: 1rem;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff3e3e, #ff9e3e);
    margin: 15px auto 0;
}

.offering-card {
    background: rgba(22, 22, 31, 0.8);
    border: 1px solid rgba(99, 99, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    border-color: rgba(99, 99, 255, 0.6);
}

.offering-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.offering-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offering-subtitle {
    color: beige;
}

.offering-text {
    color: beige;
    font-size: 1rem;
    line-height: 1.6;
}

.offering-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(150, 150, 255, 0.4));
}

.cyber-drill {
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.8) 0%, rgba(30, 40, 80, 0.9) 100%);
    border-left: 4px solid #3e8aff;
}

.roadmap {
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.8) 0%, rgba(80, 30, 40, 0.9) 100%);
    border-left: 4px solid #ff3e8a;
}

.cyber-labs {
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.8) 0%, rgba(40, 30, 80, 0.9) 100%);
    border-left: 4px solid #a63eff;
}

.ctf-challenges {
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.8) 0%, rgba(30, 80, 60, 0.9) 100%);
    border-left: 4px solid #3effa6;
}

.join-discord {
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.8) 0%, rgba(60, 40, 80, 0.9) 100%);
    border-left: 4px solid #7289DA;
}

.cyber-arena {
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.8) 0%, rgba(80, 60, 30, 0.9) 100%);
    border-left: 4px solid #ffa63e;
}

.card-tag {
    color: beige;
}

.industry-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 255, 0.2);
    margin-bottom: 20px;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 200, 255, 0.4);
}

.card-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 1;
}

.bfsi-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/industries/bfsi.png') center/cover;
    box-shadow: inset 0 0 100px rgba(76, 175, 80, 0.5);
}

.gov-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/industries/gov.png') center/cover;
    box-shadow: inset 0 0 100px rgba(63, 81, 181, 0.5);
}

.industrial-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/industries/industrial.png') center/cover;
    box-shadow: inset 0 0 100px rgba(255, 152, 0, 0.5);
}

.professional-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/industries/pro_services.png') center/cover;
    box-shadow: inset 0 0 100px rgba(233, 30, 99, 0.5);
}

.university-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/industries/universities.png') center/cover;
    box-shadow: inset 0 0 100px rgba(156, 39, 176, 0.5);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    position: relative;
    display: inline-block;
}

.card-description {
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}



.bottom-cards {
    margin-top: 10px;
}

@media (max-width: 992px) {
    .bottom-cards {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }
}

.feature-card {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(123, 31, 162, 0.3);
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(123, 31, 162, 0.5);
}

.card-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
}

.industry-specific-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/industries/Industry specific lab.png') center/cover;
    box-shadow: inset 0 0 100px rgba(76, 175, 80, 0.5);
}

.cyber-drill-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/industries/cyber drill.png') center/cover;
    box-shadow: inset 0 0 100px rgba(63, 81, 181, 0.5);
}

.evolving-labs-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/industries/evolving labs.png') center/cover;
    box-shadow: inset 0 0 100px rgba(76, 175, 80, 0.5);
}

.ctf-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/industries/any_ctf.png') center/cover;
    box-shadow: inset 0 0 100px rgba(123, 31, 162, 0.4);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    position: relative;
    display: inline-block;
}

.card-description {
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.full-width-card {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }
}


.warzone-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.warzone-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
    background: inherit;
    filter: blur(10px);
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
}


.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.special-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(72, 28, 115, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(72, 28, 115, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    transform: perspective(500px) rotateX(60deg);
    animation: grid-movement 20s linear infinite;
}

@keyframes grid-movement {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(30px);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: rgba(157, 78, 221, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 6px 1px rgba(157, 78, 221, 0.5);
    animation: float-up var(--duration) linear infinite;
    opacity: 0;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: var(--opacity);
    }

    90% {
        opacity: var(--opacity);
    }

    100% {
        transform: translateY(-20vh) translateX(var(--shift));
        opacity: 0;
    }
}

.cyber-circuit {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(115, 28, 186, 0.1) 0%, transparent 70%);
    opacity: 0.4;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.4;
    }
}

.digital-noise {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

.hexagon-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
}

.hexagon {
    position: absolute;
    width: 100px;
    height: 110px;
    background: transparent;
    border: 1px solid rgba(157, 78, 221, 0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotate var(--rotation-duration) linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.events-title {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    text-align: left;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

.events-title::after {
    content: "";
    display: block;
    width: 150px;
    height: 4px;
    background: #9333ea;
    margin: 0.5rem 0 1.5rem;
}

.events-tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #a855f7;
}

/* Cards Section */
.events-cards {
    padding: 4rem 2rem;
    background: linear-gradient(0deg, #0a0a0a, #121212);
}

.cards-heading {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    text-transform: uppercase;
    color: #e0e0e0;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.cards-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #9333ea;
}

.cards-container {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 35vw;
}

.event-card {
    /*max-width: 30vw;*/
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-card-content {
    padding: 1.5rem;
}

.event-date {
    font-size: 1rem;
    color: #a855f7;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.event-date svg {
    margin-right: 0.5rem;
}

.event-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.event-card-description {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.duration {
    display: flex;
    align-items: center;
}

.duration-label {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.duration-value {
    margin-left: 0.5rem;
    font-size: 1rem;
    color: #a855f7;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.duration-icon {
    margin-right: 0.3rem;
    color: #a855f7;
}

.event-card-btn {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid #9333ea;
    color: #a855f7;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-card-btn:hover {
    background: rgba(147, 51, 234, 0.2);
    color: #e0e0e0;
}

/* Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(147, 51, 234, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(147, 51, 234, 0);
    }
}

.register-btn {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .events-title {
        font-size: 3rem;
    }

    .events-tagline {
        font-size: 1.2rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}


.stat-card {
    background: rgba(143, 0, 179, 0.1);
    border-radius: 0.45rem;
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(143, 0, 179, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: fit-content;
}

.icon-container {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(143, 0, 179, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    position: relative;
}

.stat-icon {
    font-size: 1rem;
    color: #c056db;
}

.stat-number {
    font-size: 1rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #c056db, #8f00b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #c056db;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
}

/* Pulse animation for icons */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(192, 86, 219, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(192, 86, 219, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(192, 86, 219, 0);
    }
}

/* Floating particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    background-color: rgba(192, 86, 219, 0.5);
    border-radius: 50%;
    opacity: 0;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        grid-template-columns: 1fr;
    }
}

.stat-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    /*max-width: 70vw;*/
    z-index: 1;
    align-items: center;
    justify-self: center;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: -1;
}

.hero-content {
    width: 90vw;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ced4da;
    margin-bottom: 40px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-h1 {
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
}

.hero-h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #7b2cbf);
}

.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(90deg, #7b2cbf, #4361ee);
    color: #f8f9fa;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.4);
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.hero-btn:hover::before {
    left: 100%;
}











:root {
    --dark-bg: #121218;
    --darker-bg: #0a0a0f;
    --accent-purple: #7b2cbf;
    --accent-red: #e63946;
    --accent-blue: #4361ee;
    --text-primary: #f8f9fa;
    --text-secondary: #ced4da;
    --spartan-border: 2px solid rgba(123, 44, 191, 0.5);
    --nav-gradient: linear-gradient(90deg, #0f1e4b, #341256, #4e0c2c);
    --button-gradient: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
}

header {
    background: var(--nav-gradient);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(123, 44, 191, 0.6);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.logo::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 20px);
    background: rgba(123, 44, 191, 0.1);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    z-index: -1;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--text-primary), #a783e1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 5px rgba(123, 44, 191, 0.7);
    margin-left: 0.5rem;
}

.logo-tagline {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-secondary);
    opacity: 0.8;
    margin-top: -5px;
    margin-left: 1rem;
}

.battle-nav {
    margin-left: auto;
}

.nav-grid {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 15px;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s;
    border-radius: 4px;
    text-transform: uppercase;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: calc(100% - 30px);
}

.dropdown-toggle {
    padding-right: 25px;
    position: relative;
}

.dropdown-icon {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s;
}

.curtom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 180px;
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid rgba(123, 44, 191, 0.4);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    /*clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);*/
}

.curtom-dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    border-left: 2px solid transparent;
}

.curtom-dropdown-menu a:hover {
    background: rgba(123, 44, 191, 0.2);
    color: var(--text-primary);
    border-left: 2px solid var(--accent-purple);
    padding-left: 20px;
}

.nav-item:hover .curtom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

.portal-btn {
    margin-left: 10px;
}

.portal-link {
    background: linear-gradient(90deg, rgba(123, 44, 191, 0.4), rgba(67, 97, 238, 0.4));
    border-radius: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(123, 44, 191, 0.6);
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
}

.portal-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s;
}

.portal-link:hover::before {
    left: 100%;
}

.portal-link::after {
    display: none;
}

.portal-btn .curtom-dropdown-menu {
    left: 10%;
    width: fit-content;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .battle-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--darker-bg);
        transition: right 0.3s ease;
        padding: 80px 20px 20px;
        z-index: 99;
        border-left: 1px solid rgba(123, 44, 191, 0.4);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .battle-nav.active {
        right: 0;
    }

    .nav-grid {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .nav-item {
        width: 100%;
    }

    .curtom-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        border: none;
        background: transparent;
        box-shadow: none;
        margin-top: 5px;
        clip-path: none;
    }

    .nav-item.active .curtom-dropdown-menu {
        max-height: 300px;
    }

    .portal-btn {
        margin-left: 0;
        margin-top: 10px;
    }

    .portal-link {
        width: 100%;
        text-align: center;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }
}

dl,
ol,
ul {
    margin-top: revert !important;
}

.logo-img {
    width: 10vw;
}