#loader{
    position: fixed;
    inset: 0;
    background: #111522;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#loader.hide{
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}
#spinner{
    z-index: 99999;
    width: 48px;
    height: 48px;
    border: 4px solid #111522;
    border-top-color: #409bfb;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-sizing: border-box;

}
@keyframes spin {
    to{
        transform: rotate(360deg);
    }
}
body.loading{
    overflow: hidden;
}
html{
    color-scheme: dark;
}
html, body {
    overflow-x: hidden;
    margin: 0;
}
.sectionBody{
    background: url("image/mobileBGNew.webp");
    background-size: contain;
    background-repeat: repeat;
    background-position: center 0;
}
body{
    margin: 0;
    padding: 0;
    height: auto;
}
.logo{
    border-radius: 50%;
}
header{
    z-index: 20;
    position: fixed !important;
    width: 100%;
    background: rgba(9,12,21,0.9);
    border-bottom: 1px solid rgba(109,109,109,0.2);
    overflow-x: hidden;
    padding-top: 5px;

}
.wideHeader{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sep{
    display: flex;
    align-items: center;
}
/* TOP BAR */

.first, .last{
    display:flex;
    align-items:center;
    padding:10px;
}

/* MENU (HIDDEN) */

.navMenu{
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;

    display: flex;
    flex-direction: column;
    padding: 0 0 10px 0;
}
.navMenu a{
    padding:15px 0 15px 20px;
}

/* WHEN OPEN */

header.open .navMenu{
    max-height:400px;
}
header.open{
    max-height: none;
}
/* NAV LINKS */

.navLinks nav{
    padding:15px 0 15px 24px;
    font-family: "Montserrat",sans-serif;
}
nav a{
    color: gray;
    outline: none;
    -webkit-tap-highlight-color: transparent; 
    font-family: "Montserrat",sans-serif;
    text-decoration: none;

}
.navMenu a{
    transition: transform 0.2s ease-in-out;
}
.navMenu a:hover{
    transform: scale(1.05);
}
header h1,.last h1{
    font-family: "Orbitron",sans-serif;
    font-size: large;
    padding: 5px;
}
.last .logo{
    box-shadow: 0px 4px 10px rgba(101, 173, 251, 0.556);
}
.navBars img{
    width: 30px;
    height: 30px;
}
.blue{
    color:#409bfb;
}
.white, .smallGrid p{
    color: rgba(228, 233, 240);
}
.gray{
    color: gray;
}
.iconBackDrop{
    width: 50px;
    height: 50px;
    border: lightskyblue 2px solid;
    border-radius: 20%;
    box-shadow: 4px 4px 10px rgba(101, 173, 251, 0.556);
}
button{
    background: none;
    border: none;
}
.navLinkContainer{
    display: flex;
    flex-direction: column;
    font-family: "Montserrat",sans-serif;
    justify-content: center;
    align-content: center;
    transform: translateY(0);
    transition: transform ease-in-out 2s;
}
.navLinkContainer.show{
    transform: translateY(0px);
}
.navLinks{
    font-family: "Inter",sans-serif;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.getQuoteContainer{
    display:flex;
    justify-content:center;
    width:100%;
    margin-top:20px;
}
a{
     outline: none;
    -webkit-tap-highlight-color: transparent; 
    font-family: "Montserrat",sans-serif;
    text-decoration: none;
    color: #111522;
}
.getQuoteO, .getQuoteW{
    padding: 12px 25px;
    background-color: rgba(70, 159, 255, 0);
    border-radius: 14px;
    width: 200px;
    text-align: center;
    color: #111522;
    border: solid gray 1px;
}
.getQuote{
    padding: 12px 25px;
    background-color: rgb(70,159,255);
    border-radius: 14px;
    width: 200px;
    text-align: center;
    color: #111522;

    /* Glow */
    box-shadow: 0 0 8px rgba(70,159,255,0.6);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.getQuote:hover,.whatsappBttn:hover,.getQuoteO:hover,.getQuoteW:hover {
    box-shadow: 0 0 20px rgba(70,159,255,0.8), 0 0 40px rgba(70,159,255,0.5);
    transform: scale(1.05);
    cursor: pointer;
}
@keyframes glowPulse {
    0% { box-shadow: 0 0 8px rgba(70,159,255,0.6); }
    50% { box-shadow: 0 0 16px rgba(70,159,255,0.9); }
    100% { box-shadow: 0 0 8px rgba(70,159,255,0.6); }
}

.getQuote {
    animation: glowPulse 2s infinite ease-in-out;
}
.getQuoteContainerlast{
    display:  flex;
    flex-direction: column;
}
.getQuoteW{
    margin-top: 20px;
}
.glow-btn {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    color: #fff;
    border: 2px solid #409bfb;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* The filling layer */
.glow-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #d67c0d;
    z-index: -1;
    transition: width 0.4s ease;
}

/* Hover fill from left → right */
.glow-btn:hover::before {
    width: 100%;
}

/* Text color change */
.glow-btn:hover {
    color: #000;
}

/* Glow effect */
.glow-btn:hover {
    box-shadow: 
        0 0 10px #f4850e,
        0 0 20px #f4850e,
        0 0 40px #f4850e;
}

.bump{
    height: 38px;
}
.containerOne,.containerTwo,.containerFour,.containerFive{
    display: flex;
    width: 100%;
    padding-top: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    text-align: center;
    overflow-x: hidden;
}
.containerThree,.containerSix, footer{
    display: block;
    max-width: 100%;
    padding-top: 50px;
    flex-direction: column;
    justify-content:flex-start;
    align-items: flex-start;
    font-family: "Inter", sans-serif;
    padding: 10px;
    text-align: left;
    overflow-x: hidden;
}
p{
    color: gray;
}
.slogan{
    padding: 0 6px 0 6px ;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: #409afb9a solid 0.1px;
    border-radius: 50px;
    height: 30px;
    background-color: #409afb24;
    font-size: 15px;
    margin-bottom: 20px;
    font-size: small;
}
.hero{
    padding: 20px;
 background:
        linear-gradient(rgba(0, 0, 0, 0.437), rgba(0, 0, 0, 0.415)),
        url(image/Bannersonderskrif.webp) center right/cover no-repeat;
    max-width: 100%;
}
.smallback{
    background-color: #0c152300;
    border-radius: 20px;
    margin: 20px;
}
.infoTab{
    color: gray;
    font-family: "Inter",sans-serif;
}
.infoTab p {
    padding: 0 20px 0 20px;
}
.whatsappBttn img{
    margin-right: 10px;
}
.whatsappBttn{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 12px 25px;
    background-color: rgba(109, 123, 138, 0);
    border-radius: 14px;
    border: solid 1px gray;
    width: 200px;
    text-align: center;
    color: rgba(228, 233, 240);

    /* Glow */
    box-shadow: 0 0 8px rgba(70,159,255,0.6);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.infoTab.One h1{
    margin: 5px;
}
.infoTab.Two{
    width: 100%;
    margin: 60px 0 60px 0;
    display: flex;
    justify-content: space-around;
    padding: 0;
}
.item{
    gap: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}
.tabCimg{
    margin-right: 10px;
}
.item p{
    margin: 0;
}
.infoTabC{
    margin-top: 100px;
    display: none;
    justify-content: center;
}
.tabC img{
    width: 50px;
}
.tabC{
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 0 20px 0 20px;
}
.tabC p{
    margin: 0;
}
.tabCtext .gray{
    color: rgb(218, 136, 34);
}
.tabC.oneC{
    border-right: solid 1px gray ;
}
.tabC.threeC{
    border-left: solid 1px gray;
}
.offset{
    margin: 20px;
}
.namebox{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
.coverDivRow{
    margin: 0;
}
.namebox h1{
    margin: 0;
}
.serviceLabel{
    display: flex;
    margin: 10px;
    flex-direction: column;
    justify-content: space-between;
    border: solid 1px #409afb22;
    background-color:#111522;
    border-radius: 20px;
    text-align: left;
    padding: 20px;
    color: gray;
    max-width: 400px;
    max-height: 200px;
}
.serviceLabelS{
    display: flex;
    margin: 10px;
    flex-direction: column;
    justify-content: space-between;
    border: solid 1px #409afb22;
    background-color:#111522;
    border-radius: 20px;
    text-align: left;
    padding: 20px;
    color: gray;
    width: auto;
    height: auto; 
    align-items: center;
}
.serviceLabelS p{
    color: #d67c0d !important;
}
.serviceLabel img {
    border: #409afb67 solid 1px;
    background-color: #112038;
    border-radius: 20px;
    width: 60px;
    padding: 5px;
    transition: 0.3s;
}
.serviceBttn:hover .serviceLabel{
        box-shadow: 4px 4px 10px rgb(70,159,255);
    }
.serviceBttn:hover .serviceLabel img{
        background-color: #577ea88d;
}
.smallGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
}
.panels p {
    color: gray;
    font-size: small;
}
.smallGrid .serviceLabel{
    justify-items: center;
    align-items: center;
    padding: 0 20px 0 20px;
    justify-content: center;
}
.panels h3{
    padding: 10px 0 0 0;
    margin: 0;
}
.whyInfo{
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 10px 20px 10px;
}
.whyInfo img{
    border: #409afb67 solid 1px;
    background-color: #112038;
    border-radius: 50%;
    width: 50px;
    padding: 5px;
}
.whyInfo .gray{
    font-size: small;
    padding: 0 20px 0 20px;
    width: 100%;
    height: 100px;

}
.quoteClient .gray{
    color: #d67c0d;
}
.testimonialsTab{
    display: flex;
    margin: 10px;
    flex-direction: column;
    justify-content: space-between;
    border: solid 1px #409afb22;
    background-color:#111522;
    border-radius: 20px;
    text-align: left;
    padding: 20px;
    color: gray;
    max-width: 400px;
}
.quoteClient p{
    margin: 0;
    font-size: small;
}

.contactTab{
    display: flex;
    margin-top: 20px;
}
.grid1{
    display: flex;
    justify-content: center;
}
.grid2{
    align-content: center;
}
.grid2 p{
    margin: 0;
}
.grid2 .gray{
    font-size: small;
}
.contactImg{
    border: #409afb67 solid 1px;
    background-color: #112038;
    border-radius: 20px;
    width: 20px;
    padding: 5px;
    transition: 0.3s;
    margin-right: 10px;
}
.contactTab:hover .contactImg{
     background-color: #577ea88d;

}
.serviceSlct{
    display: flex;
    text-align: center;
    border: #112038 solid 1px;
    background-color: #24457b96;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    padding: 10px;
    margin: 20px;
}
#serviceS{
    border: #409afb67 solid 1px;
    background-color: #112038;
    border-radius: 20px;
    width: auto;
    padding: 5px;
    transition: 0.3s;
    margin: 20px;
    font-family: "Inter",sans-serif;
}
img, svg {
  max-width: 100%;
  height: auto;
  filter: none !important;
  mix-blend-mode: normal !important;
  -webkit-filter: none !important;
}
@media (prefers-color-scheme: dark) {
    img {
        filter: none !important;
    }
}
svg {
  fill: #C0C0C0; /* or your exact brand color */
}

.logo {
  transform: translateZ(0);
}
footer{
    display: flex;
    flex-direction: column;
    background-color: #112038;
    font-family: "Inter",sans-serif;
}
footer p {
    padding: 10px;
}
.last h1{
    font-size: small;
}
.last .logo{
    width: 30px;
}
.end .gray{
    margin: 0;
    text-align: left;
}
.end .white{
    font-size: large;
}
.end p{
    display: flex;
    align-items: center;
}
.copyright{
    width: 100%;
    text-align: center;
    border-top: #375079 solid 2px;
    margin-top: 40px;
    font-size: x-small;
}
/* Base hidden state */
.reveal {
    opacity: 0;
    transform: translateY(40px); /* default slide up */
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Slide directions */
.reveal-left { transform: translateX(-20px); }
.reveal-right { transform: translateX(20px); }
.reveal-up { transform: translateY(40px); }

/* Active state */
.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Optional: smooth multiple reveals */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.infoTab.three{
    grid-area: iOne;
}
.serviceBttn.one{
    grid-area: iTwo;
}
.serviceBttn.two{
    grid-area: iThree;
}.serviceBttn.three{
    grid-area: iFour;
}.serviceBttn.four{
    grid-area: iFive;
}.serviceBttn.five{
    grid-area: iSix;
}.serviceBttn.six{
    grid-area: iSeven;
}
.getQuoteContainer.free{
    display: none;
}
.logo{
    width: 50px;
}
.item img{
    width: 50px;
}
.contactCover p img{
    margin-right: 5px;
}
@media (min-width: 768px) {
.mobileNavBars {
    display: none;
}
.navMenu {
    max-height: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.hero {
    padding: 60px;
    width: 100%;
}

.infoTab.One h1 {
    font-size: 2rem;
}
.smallback,.slogan{
    margin: 0 50px 0 50px;
    width: 50%;
}
.containerTwo {
    display: grid;
    grid-template-areas:   
    "iOne iOne"
    "iTwo iThree"
    "iFour iFive"
    "iSix iSeven";
    gap: 5px;
    padding: 0 0 0 5px;
}
.containerThree{
    text-align: center;
    padding: 40px;
}
.serviceLabel{
    max-width: 300px;
}
.infoTab.Two {
    justify-content: space-evenly;
}
.smallGrid {
    grid-template-columns: 1fr 1fr;
}
.getQuoteContainer.top{
    display: none;
}
.coverDiv{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
}
.serviceSlct{
    width: 50%;
}
.first{
    justify-content: center;
}
.getQuoteContainer.free{
    display: flex;
}
.bump{
    height: 80px;
}
.item img{
    width: 50px;
}
.hero{
    padding: 20px;
 background:
        linear-gradient(rgba(0, 0, 0, 0.336), rgba(0, 0, 0, 0.363)),
        url(image/Bannersonderskrif.webp) center/cover no-repeat;
    max-width: 100%;
}
.logo{
    width: 50px;
}
.wideHeader{
    justify-content: center;
}
.wide{
    width: 100%;
    display: flex;
    justify-content: center;
}
}
@media (min-width: 1024px) {
.coverDivCol{
    display: flex;
    flex-direction: column;
}
.coverDivRow{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.containerTwo {
    display: grid;
    grid-template-areas:   
    "iOne iOne iOne"
    "iTwo iThree iFour"
    "iFive iSix iSeven";
    gap: 5px;
    padding: 0 0 0 5px;
}
.serviceLabel{
    max-width: 400px;
}
.serviceLabelS{
    width: 150px;
}
.infoTab.Two{
    display: none;
}
.infoTabC{
    display: flex;
}
.smallGrid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}
.footerGrid {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
}
footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer p{
    width: 300px;
    text-align: center;
}
.copyright{
    display: flex;
    width: 100%;
    justify-content: center;
}
.containerSix{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.coverDivColLast{
    margin: 20px;
}
.coverDivColLast p{
    width: 300px;
}
.serviceSlct{
    width: 500px;
}
.coverDiv .whatsappLast{
    display: none;
}
.coverDiv{
    align-items: center;
}
.contactTab{
    gap: 10px;
}
.containerThree p{
    max-width: 1200px;
    text-align: center;
}
.containerThree{
    display: flex;
    justify-content: center;
    align-items: center;
}
.containerFour{
    max-width: 1200px;
}
.wide{
    display: flex;
    justify-content: center;
}
.inter{
    max-width: 2000px;
}
.hero{
    display: flex;
    justify-content: center;
}
.bump{
    height: 20px;
}
.hero{
    padding: 20px;
 background:
        linear-gradient(rgba(0, 0, 0, 0.353), rgba(0, 0, 0, 0.332)),
        url(image/Bannersonderskrif.webp) center/cover no-repeat;
    max-width: 100%;
}
.sectionBody{
    background-image: url(image/BGspace.webp);
}
.end{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.end .white,.end .gray{
    justify-content: center;
}

.item img{
    width: 60px;
}
header{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-height: 70px;
    overflow-y: hidden;
}
.wideHeader{
    margin: 0;
    padding: 0;
}
.first,.sep,a{
    padding: 0;
    margin: 0;
}
.logo{
    width: 70px;
    border-radius: 0;
    margin: 0;
}
.namebox h1{
    font-size: 22px;
}
.second{
    margin-right: 30px ;
}
.infoTab.One h1{
    font-size: 56px;
}
.bttnCover{
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.last .logo{
    width: 40px;
}
}
@media (max-width: 1023px) {
    .qLinks{
        display: none;
    }
    .logo{
    box-shadow: 0px 4px 10px rgba(101, 173, 251, 0.556);
}
}
@media (min-width: 1920px){
    header{
        max-height: 100px;
    }
    .logo{
        width: 100px;
    }
    .bump{
        height: 50px;
    }
    #navMenu a{
        font-size: 22px !important;
    }
    .namebox h1{
        font-size: 34px;
    }
    .whatsappBttn{
        font-size: 22px;
    }
    .serviceLabel img{
        width: 100px;
    }
    .serviceLabel{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        max-height: none;
    }
    .serviceSlct{
        transform: scale(1.2);
    }
    .getQuoteContainer{
        align-items: center;
        font-size: 24px;
    }
    .tabC img{
    width: 100px;
    }
    .item img{
        width: 80px;
    }
    .infoTab.Two{
        margin-top: 200px;
    }
    .getQuoteContainer{
        margin-top: 100px;
    }
    .hero{
    padding: 20px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.353), rgba(0, 0, 0, 0.332)),
        url(image/Test1.webp) center/cover no-repeat;
    max-width: 100%;
}
.smallback{
    background-color: #0c152300;
}
.whatsappBttn{
    width: 250px;
}
}
@media (max-width: 383px){
    .item img{
        width: 40px;
    }
    .item p{
        font-size: 10px;
    }
}