html, body {
    height: auto !important;
    min-height: 100vh;
    overflow-x: hidden;
}

body, footer {
    background-color: white;
}

body {
    font-family: "Lora", serif;
    font-size: 1.1rem;
}
/* Hide the link off-screen by default */
.skip-to-content {
    position: absolute;
    top:-100px;
    left:0;
    background: #5a31f4; /*match your brand color*/
    color:white;
    padding: 10px 20px;
    z-index: 10001; /* Must be higher than your fixed top navbar */
    text-decoration: none;
    transition: top 0.3s ease;
}

/* Make the link visible when a user tabs onto it */

.skip-to-content:focus {
    top: 0;
    outline: none;
}

    

header nav a {
    font-family: "Inter", sans-serif;
    color: rgb(120, 92, 175);
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
}

header nav a:hover {
    color:rgb(223, 88, 161);
}


.navbarColor {
    background-color:rgb(253, 252, 251);
    padding-top: 0;
    padding-bottom:0;
    border-bottom: solid 1px rgb(223, 88, 161);
    
}

.navbar .nav-item a.activeMenuItem {
    text-decoration: underline rgb(223, 88, 161) 5px !important;
    text-underline-offset: 8px;
    color:rgb(223, 88, 161);
    
}

.lang-selector {
    display:flex;
    gap: 5px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    align-items: center;
}
.lang-btn {
    background: none;
    border:none;
    padding:0;
    cursor:pointer;
    color: rgb(120, 92, 175); /* Inactive color*/
    font-weight: normal;
    transition: all 0.3s ease;
}
.lang-btn.active {
    color:rgb(223, 88, 161); /* Active color*/
    font-weight: bold;
    text-decoration: underline;
}
.divider {
    color: #ccc;
    pointer-events:none;
}
.lang-fr {
    display:none !important;
}
.lang-fr.active-lang {
    display:block !important;
}
.lang-en.hidden-lang {
    display:none !important;
}


.imageGateway {
    position: relative;
    width: 100%;
    min-height: 650px;
    padding: 4em 0;
    background: none !important; /* Removes any old background settings*/

    overflow: hidden; /* Clips the image layer */
    clip-path: inset(0 0 0 0);
    z-index: 1;
}

/* The fixed image layer (the parallax magic) */
.imageGateway::before {
    content: "";
    position: fixed; /* This pins the image to the screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images/gateway.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1; /* Keeps it behind your text */

    /* This ensures it stays behind the div and doesn't cover the whole site */
    will-change: transform;

}

.fontForTitle {
    font-family: "Inter", sans-serif;
    letter-spacing: 3px;
    font-size: 4rem;
    margin-top: 1em;
    max-width:100%;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
    word-wrap:break-word;
   
}

.fontForTitleValues {
    font-size: 3rem;

}

.whiteButton {
    background-color: rgb(223, 88, 161);
    color:white;
    font-family: "Inter", sans-serif;
    letter-spacing: 2px;

}
.whiteButton:hover {
    background-color: black;
    color:white;
}
.whiteButtonContact {
    background-color: rgb(223, 88, 161);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255,0,255, 0.6);
    transition:all 0.3s ease-in-out;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
}
.whiteButtonContact:hover {
    box-shadow: 0 0 25px rgba(223,88,161, 0.9), 0 0 45px rgba(255, 0, 255, 0.4);
    transform: translateY(-2px);
    color:rgb(223, 88, 161);
    cursor:pointer

}

.fontTitle {
    font-family: "Inter", sans-serif;
    letter-spacing: 3px;
    color: rgb(84, 56, 136);
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.3;   
    max-width:100%;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
    word-wrap:break-word; 
}

.paddingUpDown {
    padding-bottom: 2em;
    padding-top: 2em;
}

.paddingAndWidth {
    padding-right: 4em;
    max-width: 35em;
}


.expandParagraphe {
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    line-height: 1.7em;
    color: rgb(120, 92, 175);
    
}


.dropShadow {
    filter: drop-shadow(15px 15px 25px gray);
    
}

.fontCards {
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    color: white;
    background-color: rgb(120, 92, 175);
    font-weight: bold;
    line-height: 1.7;
    margin-right:1em;
    margin-left: 1em;
}

.cardPurple:hover {
    background-color: white;

}
.cardPurple:hover .card-title, .cardPurple:hover .card-text {
    color:rgb(120, 92, 175);
}


.imageExpandBackground {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 5em 0;
    background: none !important; /* Removes any old background settings*/

    overflow: hidden; /* Clips the image layer */
    clip-path: inset(0 0 0 0);
    z-index: 1;
}

/* The fixed image layer (the parallax magic) */
.imageExpandBackground::before {
    content: "";
    position: fixed; /* This pins the image to the screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgb(250, 250, 250), rgba(250,250,250, 0.84)), 
        url('Images/liberty.jpg');
    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1; /* Keeps it behind your text */

    /* This ensures it stays behind the div and doesn't cover the whole site */
    will-change: transform;

}


.paddingTopp {
    padding-top: 30px;
}


/* values delen */
.backgroundValues {
    padding-top: 7em;
    padding-bottom: 7em;
    min-height: 1000px;
    width: 100%;
    position: relative;
    width: 100%;
    background: none !important; /* Removes any old background settings*/
    
    overflow: hidden; /* Clips the image layer */
    clip-path: inset(0 0 0 0);
    z-index: 1;
}

/* The fixed image layer (the parallax magic) */
.backgroundValues::before {
    content: "";
    position: fixed; /* This pins the image to the screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:url('Images/backgroundValues.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1; /* Keeps it behind your text */

    /* This ensures it stays behind the div and doesn't cover the whole site */
    will-change: transform;

}


    

.cardValues {
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    color: rgb(120, 92, 175);
    line-height: 1.7;
    max-width:100%;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
    word-wrap:break-word; 

}

.cardValues:hover {
    background-color: rgb(223, 88, 161);
    opacity: 0.9;
    
}

.cardValues:hover .card-title, .cardValues:hover .card-text {
    color: white;
}


.paddingUp {
    padding-top: 10em;
}
.headingPadding {
    padding-top: 8em;

}

/* slut Values delen */



/* bridge delen */

.imageCapitol {
    position: relative;
    width: 100%;
    min-height: 300px;
    padding: 5em 0;
    background: none !important; /* Removes any old background settings*/

    overflow: hidden; /* Clips the image layer */
    clip-path: inset(0 0 0 0);
    z-index: 1;
}

/* The fixed image layer (the parallax magic) */
.imageCapitol::before {
    content: "";
    position: fixed; /* This pins the image to the screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgb(250, 250, 250), rgba(250,250,250, 0.82)), 
        url('Images/capitol.jpg');
    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1; /* Keeps it behind your text */

    /* This ensures it stays behind the div and doesn't cover the whole site */
    will-change: transform;

}


.paddingAndWidthValues {
    padding-left: 4em;
    max-width: 30em;
}

.paddingLeftAndRight {
    margin-left: 0;
    padding-left:0;
}


/* slut bridge delen */


/* services sidan*/

.imageServices {
    position: relative;
    width: 100%;
    min-height: 1000px;
    padding: 5em 0;
    background: none !important; /* Removes any old background settings*/

    overflow: hidden; /* Clips the image layer */
    clip-path: inset(0 0 0 0);
    z-index: 1;
}

/* The fixed image layer (the parallax magic) */
.imageServices::before {
    content: "";
    position: fixed; /* This pins the image to the screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgb(250, 250, 250), rgba(250,250,250, 0.3)), 
        url('Images/backgroundServices.jpg');
    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1; /* Keeps it behind your text */

    /* This ensures it stays behind the div and doesn't cover the whole site */
    will-change: transform;

}


.backgroundAndMargin {
    color: rgb(120, 92, 175);
    margin:0;
    padding-top: 2em;
    padding-left:1em;
    padding-right:1em;
}

.color {
    color:rgb(223, 88, 161);
    font-family: "Inter", sans-serif;
}

.paddingUpServices {
    padding-top: 6em;
}

.cardServices {
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    color: rgb(120, 92, 175);
    line-height: 1.7;
    transition:transform 0.3s ease;
    /* Prevents the phone from getting stuck in a zoom/scroll move*/
    touch-action: pan-y;

    /* Standard pointer setup*/
    cursor: pointer;
}

.cardServices:hover {
    transform:translateY(-5px);
}

.cardTitle {
    color:rgb(223, 88, 161);
    font-family: "Inter", sans-serif;
    font-size: 1.4rem;
}

/* 1. The Container: Uses Grid to overlap children */
.service-stack {
    position: relative;
    display:flex;
    align-items: start;    /* Vertical position start */
    justify-content: center;  /* Horizontal centering */
    width: 100%;
    /* We set a min-height here so the card doesn't collapse
       if both elements are small */
    min-height: 240px;
}

/* 3. The List: Start hidden but occupying the 'ghost' space */
.card-text-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    /* REDUCED PADDING: 10px all around for more room */
    padding: 10px !important;
    list-style: none !important;
    text-align: left;
    background-color: white;
    z-index: 2;
    pointer-events: none;
}

.card-text-list li {
    display: block !important;
    position: relative;
    padding-left: 20px !important; /* Slightly smaller gutter for bullets */
    /* REDUCED MARGIN & LINE-HEIGHT: Makes list more compact */
    margin-bottom: 4px;
    line-height: 1.2;
    /* SMALLER FONT: Helps fit more items in the card */
    font-size: 0.9rem;
    color: rgb(120, 92, 175) !important;
}

.card-text-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgb(223, 88, 161);
    font-weight: bold;
    font-size: 1.2rem; /* Scaled down bullet */
    line-height: 1.3;
    top: -2px; /* Fine-tuned alignment */
}


.card-text-list.is-active {
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
}

/* 4. The Image: Visible by default */
.picto {
    position: relative;
    z-index:1;
    max-width: 100%;
    height:auto;
    width: 150px;
    height:auto;
    margin: 0 auto;
   

}





/* slut services sidan */




/* about sidan */



.fontLora {
    font-family: "Lora", serif;
}

 .dropShadowAbout {
    filter: drop-shadow(15px 15px 5px purple);
    
}
.dropShadowAbout2 {
    filter: drop-shadow(15px 15px 5px gray);
    
}


.spaceBeforeHeading {
    margin-top: 1em;
}


.halfContainer {
    display: flex;
    width: 100%;
    align-items: center;
}
 
.imageHalf {
    flex: 1;
    max-width: 50%;
}
 
.imageHalf img {
    width: 100%;
    height: auto;
}
 
.textHalf {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}


.backgroundSectionAbout {
    background-color: rgb(223, 88, 161);
    color: white;
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    line-height: 1.7em;
}

.imageNewYorkWater {
    background-color: white;
    
}

.fontCardsAbout {
    font-family: "Lora", serif;
    font-size: 1rem;
    letter-spacing: 1.3px;
    color: rgb(120, 92, 175);
    line-height: 1.7;
}

.borderTop {
    border-top: 1px solid rgb(223, 88, 161);
}
.borderBottom {
    border-bottom: 1px solid rgb(223, 88, 161);
}

/*initial state: hidden and shifted down */
.reveal {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease-out; /* this makes it smooth*/
    visibility: visible;
}

/* active state: visible and original position */

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Acessibility: if a user jumps the content, show it immediately */

#main-content:focus-within .reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


/* slut about sidan*/



/* contact sidan */



.contactBackground {
    background:linear-gradient(145deg, #1a1c2c 0%, #4b2a85 100%);
    width: 100%;
    padding: 5rem 0;
}


.colorForm {
    background-color: rgba(255,255,255, 0.1);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255, 0.3);
    border-radius: 8px;
    padding: 12px;

}

.colorForm::placeholder {
    color: rgba(255,255,255, 0.6);

}

.colorForm:focus {
    background-color: rgba(255,255,255, 0.2);
    border-color: #ffffff;
    outline:none;
    box-shadow: 0 0 8px rgba(255,255,255, 0.2);
}

label {
    color: white;
    font-family: "Lora", serif;
    font-weight: bold;
}




/* slut contact sidan */




/* Footer */



.fontText {
   
    font-size: 1.1rem;
    font-family: "Inter", sans-serif;
   
}
.email {
    color:rgb(223, 88, 161);
}

.linksFooter {
    text-decoration: underline;
    color: white;
}
.linksFooter:hover, .terms {
    color: rgb(223, 88, 161);
    
}
footer {
    background-color: rgb(120, 92, 175);
    color:white;
  
}

.whiteFooter {
    background-color: white;
    color:mediumpurple;
}

.blackFooter {
    background-color: black;
}


/* end Footer */


/* terms of use */

.paddingUpTermsofUse {
    padding-top: 3em;
}
.fontTitleTermsofUse {
    font-family: "Inter", sans-serif;
    letter-spacing: 3px;
    color: rgb(120, 92, 175);
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.3;    
}


@media (max-width: 1049px){
    .cardTitle {
        text-transform: uppercase;
        font-size: 1.1rem;
    }
}


@media (max-width: 991px) {
    .navbar-nav a.activeMenuItem {
        display: inline-block; /* helps with underline rendering on some mobile browsers*/
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 900px)  {
    .fontForTitle {
        font-size: 3.5rem;
    }
    .paddingAndWidth {
        padding-right: 1em;
        padding-left: 1em;
    }
    .paddingAndWidthValues {
        padding-right: 1em;
        padding-left: 1em;
    }
    .cardTitle {
        font-size: 1em;
    }
    
}


@media (max-width: 850px){
    .card-body {
        padding-left:0.2em;
        padding-right: 0.2em;
    }
}

@media (max-width: 800px) {
    .imageGateway {
        min-height: 600px !important;
        height: auto !important;
        overflow:hidden;
        padding: 1em 1em;
        clip-path: inset(0 0 0 0);
    
    }
    .imageGateway::before{
        /* swap to tablet sized image */
        background-image: url('Images/gateway800.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;
    }
  
    .imageExpandBackground {
        min-height: 400px !important;
        height: auto !important;
        overflow:hidden;
        clip-path: inset(0 0 0 0);

    }
    .imageExpandBackground::before {
        background-image: linear-gradient(rgb(250, 250, 250), rgba(250,250,250, 0.80)), 
        url('Images/liberty800.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;
    }

    .backgroundValues {
        min-height: 600px !important;
        height: auto !important;
        overflow:hidden;
        padding: 1em 1em;
        clip-path: inset(0 0 0 0);
    
    }
    .backgroundValues::before{
        /* swap to tablet sized image */
        background-image: url('Images/backgroundValues800.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;
    }
    .imageCapitol {
        min-height: 400px !important;
        height: auto !important;
        overflow:hidden;
        padding: 1em 1em;
        clip-path: inset(0 0 0 0);
    }
    .imageCapitol::before {
        background-image: linear-gradient(rgb(250, 250, 250), rgba(250,250,250, 0.80)), 
        url('Images/capitol800.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;
    }

    .imageServices {
        min-height: 600px;
        padding: 5em 0;
        overflow: hidden; /* Clips the image layer */
        clip-path: inset(0 0 0 0);
    }


    .imageServices::before {
        background-image:
        linear-gradient(rgb(250, 250, 250), rgba(250,250,250, 0.3)), 
        url('Images/backgroundServices800.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;

    }


    .fontForTitle {
        font-size: 3rem; 
    }
    .fontCards {
        margin-right:0.5em;
        margin-left: 0.5em;
    }

}



@media screen and (max-width: 767px)  {
    
    .paddingUpDown {
        padding-bottom: 2em;
        padding-top: 2em;
    }
    .cardTitle {
        font-size: 1.1rem;
    }
    .centerText {
        text-align: center;
    }
    .picto {
        width: 160px;
    }
    .imageHalf {
        flex: 1;
        max-width: 95%;
    }
 
    .imageHalf img {
        width: 100%;
        height: auto;
    }
 
    .textHalf {
        flex: 1;
        max-width: 100%;
        padding: 20px;
    }
    .card-body {
        padding-left:1em;
        padding-right: 1em;
    }
    .service-stack {
    /* We set a min-height here so the card doesn't collapse
       if both elements are small */
    min-height: 100px;
}
    
}


@media screen and (max-width: 725px)  {
    .fontForTitle {
        font-size: 2.6rem;
    }
     
}

@media screen and (max-width: 610px)  {
    
    .fontForTitle {
        font-size: 2.5rem;
    }

}

@media (max-width: 600px) {
    .imageGateway {
        min-height: 550px !important;
        height: auto !important;
        overflow:hidden;
        padding: 2em 1em;
        clip-path: inset(0 0 0 0);
    
    }
    .imageGateway::before{
        /* swap to tablet sized image */
        background-image: url('Images/gatewayBackground600vertical.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;
    }
  
    .imageExpandBackground {
        min-height: 400px !important;
        height: auto !important;
        overflow:hidden;
        padding: 5em 0em;
        clip-path: inset(0 0 0 0);

    }
    .imageExpandBackground::before {
        background-image: linear-gradient(rgb(250, 250, 250), rgba(250,250,250, 0.80)), 
        url('Images/liberty600.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;
    }
    .backgroundValues {
        min-height: 550px !important;
        height: auto !important;
        overflow:hidden;
        padding: 2em 1em;
        clip-path: inset(0 0 0 0);
    
    }
    .backgroundValues::before{
        /* swap to tablet sized image */
        background-image: url('Images/values600vertical.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;
    }
    .imageCapitol {
        min-height: 550px !important;
        height: auto !important;
        overflow:hidden;
        padding: 1em 1em;
        clip-path: inset(0 0 0 0);
    }
    .imageCapitol::before {
        background-image: linear-gradient(rgb(250, 250, 250), rgba(250,250,250, 0.80)), 
        url('Images/capitolVertical600.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;
    }
    .imageServices {
        min-height: 500px;
        padding: 3em 0;
        overflow: hidden; /* Clips the image layer */
        clip-path: inset(0 0 0 0);
    }

    .imageServices::before {
        background-image:
        linear-gradient(rgb(250, 250, 250), rgba(250,250,250, 0.3)), 
        url('Images/backgroundServices600vertical.jpg');
        background-size: cover !important;
        background-position: center 20% !important;
        position: fixed;

    }
}


@media (max-width: 550px) {
    .service-stack {
    
    /* We set a min-height here so the card doesn't collapse
       if both elements are small */
    min-height: 255px;
}
}




@media (max-width: 400px) {
    .imageGateway {
        min-height: 450px !important;
        height: auto !important;
        overflow:hidden;
        clip-path: inset(0 0 0 0);
        padding: 1.5em 1em;
    }
    .imageGateway::before{
        /* swap to tablet sized image */
        background-image: url('Images/gateway400vertical.jpg');
        background-size: cover !important;
        background-position: center 15% !important;
        position:fixed;
       
    }
    .imageExpandBackground {
        min-height: 400px !important;
        height: auto !important;
        overflow:hidden;
        padding: 5em 0em;
        clip-path: inset(0 0 0 0);

    }
    .imageExpandBackground::before {
        background-image: linear-gradient(rgb(250, 250, 250), rgba(250,250,250, 0.80)), 
        url('Images/liberty400.jpg');
        background-size: cover !important;
        background-position: center 15% !important;
        position: fixed;
    }
    .backgroundValues {
        min-height: 400px !important;
        height: auto !important;
        overflow:hidden;
        padding: 2em 1em;
        clip-path: inset(0 0 0 0);
    
    }
    .backgroundValues::before{
        /* swap to tablet sized image */
        background-image: url('Images/valuesBackgroundVertical.jpg');
        background-size: cover !important;
        background-position: center 15% !important;
        position: fixed;
    }

    .imageCapitol {
        min-height: 400px !important;
        height: auto !important;
        overflow:hidden;
        padding: 1em 1em;
        clip-path: inset(0 0 0 0);
    }
    .imageCapitol::before {
        background-image: linear-gradient(rgb(250, 250, 250), rgba(250,250,250, 0.80)), 
        url('Images/capitolVertical400.jpg');
        background-size: cover !important;
        background-position: center 15% !important;
        position: fixed;
    }
    .imageServices {
        min-height: 400px;
        padding: 3em 0;
        overflow: hidden; /* Clips the image layer */
        clip-path: inset(0 0 0 0);
    }

    .imageServices::before {
        background-image:
        linear-gradient(rgb(250, 250, 250), rgba(250,250,250, 0.3)), 
        url('Images/backgroundServices400vertical.jpg');
        background-size: cover !important;
        background-position: center 15% !important;
        position: fixed;
    }

}

/* Pre-hide French with high priority */
.lang-fr {
    display: none !important;
}

/* Ensure the language buttons look correct */
#btn-en.active, #btn-fr.active {
    color: rgb(223, 88, 161) !important;
    font-weight: bold;
    text-decoration: underline;
}

























    




