@font-face {
    font-family: 'Robotica';
    src: url('Fonts/Robotica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

a#dnn_dnnLOGO_hypLogo {    
    background: white;
    padding: 0 15px;
    /*border: solid 1px white;    
    transform: skew(20deg);*/
}

img#dnn_dnnLOGO_imgLogo {
    /*transform: skew(-20deg);*/
}

body, p, li {
    font-family: Helvetica, Arial !important;
    font-size: 1.4rem !important;
    color: var(--dnn-color-neutral-dark,#000000);
    text-align: justify;
}

body, h1, h2, h3, h4, h5, h6, p, li {
    font-family: Helvetica, Arial !important;
    line-height: 1.5;
}

.banner-heading {
    font-family: 'Robotica', Helvetica, Arial !important;
    font-size: 2.2rem !important;
    line-height: 1;
    text-align: left;
    color: var(--dnn-color-neutral-light,#000000) !important;
}

h1, .h1 {
    font-size: 2.6rem !important;
    color: var(--dnn-color-tertiary-light,#000000);
}
/* Manage Heading 2 */
h2, .h2 {
    font-size: 2.2rem !important;
    color: var(--dnn-color-primary,#000000);
}
/* Manage Heading 3 */
h3, .h3 {
    font-size: 2rem !important;
}

h4, .h4 {
    font-size: 1.8rem !important;
}

h5, .h5 {
    font-size: 1.6rem !important;
}

h6, .h6 {
    font-size: 1.4rem !important;
    color: var(--dnn-color-neutral-dark,#000000);
}

#nav-desktop a {
    font-size: 1.2rem !important;
}
.counter-plus::after{
    content: '+';
}


.banner-heading {
    color: #00f2ff;
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

    .banner-heading:hover {
        /* Play once, stay at the end (forwards) */
        animation: glitch-stay 0.3s ease-out 1 forwards;
    }

@keyframes glitch-stay {
    0% {
        transform: skew(0deg);
        text-shadow: 0 0 0px #fff;
    }

    20% {
        transform: skew(10deg) translateX(-5px);
        text-shadow: 2px 0 #ff00c1, -2px 0 #00f2ff;
    }

    40% {
        transform: skew(-10deg) translateX(5px);
        filter: hue-rotate(90deg); /* Shifts colors robotically */
    }
    /* Final State: The animation "stays" here */
    100% {
        transform: skew(0deg) translateX(2px);
        text-shadow: 3px 0px 1px #ff00c1, -3px 0px 1px #00f2ff;
        filter: drop-shadow(0 0 5px #00f2ff);
    }
}

.download-info-link {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .download-info-link:hover {
        transform: scale(1.15);
    }


/* slider or banner */
.aperture-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5.5;
    overflow: hidden;
    background-color: var(--dnn-color-primary-dark,#000000) !important;
}

.aperture-banner {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

    .aperture-banner.active {
        opacity: 1;
        visibility: visible;
        z-index: 10;
    }

.banner-bg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
}

.banner-content {
    position: absolute;
    z-index: 20;
    left: 50%;
    top: 15%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 800px;
    opacity: 0;
}

.banner-content-top {
    top: 5% !important;
}

.banner-content-left {
    position: absolute;
    z-index: 20;
    left: 5%;
    top: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 90%;
    max-width: 600px;
    opacity: 0;
    transform: none;
}

    .banner-content-left .banner-title, .banner-content-left .banner-text {
        text-align: left !important;
        margin-left: 0;
    }

.aperture-banner.active .banner-content {
    animation: contentDrop 1s ease-out forwards;
    animation-delay: 0.3s;
}

.aperture-banner.active .banner-content-left {
    animation: contentDropLeft 1s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes contentDrop {
    0% {
        opacity: 0;
        transform: translate(-50%, -30px);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes contentDropLeft {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-title {
    font-size: clamp(1.1rem, 1rem + 2vw, 3.2rem) !important;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-align: center !important;
}

.banner-text {
    font-size: clamp(0.9rem, 2vw, 1.2rem) !important;
    margin: 0 0 20px 0;
    text-align: center !important;
}

.banner-button {
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(21,69,104,0.3);
    cursor: pointer;
    border: none;
}

    .dot.active {
        background: var(--dnn-color-primary-dark,#000000) !important;
    }

@media (max-width: 768px) {
    .banner-bg {
        background-size: 100% auto;
    }

    .banner-content-left {
        left: 5%;
        top: 10%;
        width: 85%;
    }

    .banner-content, .banner-content-left {
        top: 10%;
    }

    .banner-content-top {
        top: 2% !important;
    }

    .banner-title {
        margin: 0 0 1px 0;
    }

    .banner-text {
        margin: 0 0 10px 0;
        width: 40%;
        font-size: 1.2vw !important;
        line-height: 1;
    }

    .banner-button {
        padding: 5px 5px !important;
        font-size: 0.8rem !important;
    }
}
/* end slider or banner */
.animat-col01 div {
    height: 300px;
    line-height: 1;
}
.animat-col01 .box .cont {
    text-align: center;
    height: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms; /* Firefox 4 */
    -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
    -o-transition: all ease-in 200ms; /* Opera */
    -ms-transition: all ease-in 200ms; /* IE9? */
}

.animat-col01 div:hover .box .cont {
    height: 140px;
    visibility: visible;
    opacity: 1;
}
/* breadcrumb */
.breadcrumbLink {
        text-decoration: none;
        color: #666;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.2s ease-in-out;
        display: inline-flex;
        align-items: center;
    }

        /* The "Name" span inside the link */
        .breadcrumbLink span {
            position: relative;
            padding: 2px 4px;
            display: inline-block; 
        }

        /* Hover effect */
        .breadcrumbLink:hover {
            color: var(--dnn-color-primary-dark,#00A5E0); /* Change to your theme color */
            font-weight: bold;
        }

        /* Adding a modern separator via CSS */
        /* This targets every link EXCEPT the last one */
        .breadcrumbLink:not(:last-child)::after {
            content: '>'; /* Modern slash separator */
            margin: 0 10px;
            color: var(--dnn-color-primary-light,#00A5E0);
            font-weight: 300;
            text-decoration: none;
            display: inline-block;
        }

        /* Styling the active (last) link if applicable */
        .breadcrumbLink:last-child {
            color: var(--dnn-color-primary-light,#00A5E0);;
            pointer-events: none; /* Makes the current page link non-clickable */
        }
        .breadcrumbLink span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px; /* Thickness of the line */
    bottom: 0;
    left: 0;
    background-color: var(--dnn-color-primary-dark, #00A5E0);
    
    /* The Animation Logic */
    transform: scaleX(0);       /* Start invisible/zero width */
    transform-origin: center;   /* Expansion starts from the middle */
    transition: transform 0.3s ease-in-out;
}
.breadcrumbLink:hover span::after {
    transform: scaleX(1);       /* Expand to full width */
}
/* The container */

.tooltip {
    position: relative;
    cursor: pointer;
    border-bottom: 1px dashed #666;
}
    /* The Tooltip Box */
    .tooltip::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 150%; /* Moved up slightly */
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--dnn-color-tertiary-light);
        color: #fff;
        padding: 8px 12px;
        border-radius: 4px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 10; /* Ensures box is on top */
        white-space: normal;       /* Allows text to wrap */
  width: max-content;        /* Fits content up to a point */
  max-width: 200px;          /* Prevents it from being too wide on mobile */
  min-width: 100px;          /* Keeps it from being too skinny */
  text-align: center;
  line-height: 1.4;
    }

    /* The Triangle (Arrow) */
    .tooltip::before {
        content: "";
        position: absolute;
        bottom: 150%; /* Start at the same base as the box */
        left: 50%;
        transform: translateX(-50%) translateY(100%); /* Shift it down to the edge */
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid var(--dnn-color-tertiary-light); /* Matches the box color */

        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 9;
    }

    /* Show both on hover */
    .tooltip:hover::after,
    .tooltip:hover::before {
        opacity: 1;
        visibility: visible;
    }











