:root {
    --primary-color: #32afb2;
    --secondary-color: #3288B3;
    --tertiary-color: #32B389;
    --tertiary-dark-color: #3aaf8a;
    --quaternary-color: #325FB3;
    --icon-color: #a93333;
    --accent-color: #ffa700;
    --background-color: #f4f4f4;
    --text-color: white;
}

/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}

.scroll {
    overflow: auto;
}

.no-scroll {
    overflow: hidden;
}

h1 {
    font-size: 4em;
}

.w-100 {
    width: 100%;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.dropdown-content.d-block {
    display: block;
}

#language-selector.d-none {
    display: none;
}

/* Navbar Styling */
.navbar {
    position: fixed;
    display: flex;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    width: 100%;
    top: 0;
    background-color: rgba(25 25 25 / 86%);
    backdrop-filter: blur(8px);
    color: white;
    padding: 5px 0;
    z-index: 10000;
    transition: background-color 0.3s, box-shadow 0.3s;
    padding-left: 4rem;
    padding-right: 4rem;
}

nav {
    display: flex;
    justify-content: flex-end;
}

.tab:hover {
    cursor: pointer;
}

/* Hamburger Menu Styling */
.hamburger {
    display: none;
    /* Hide hamburger by default */
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    /* Ensure it's on top of the navbar */
}

/* Hamburger Lines Styling */
.hamburger div {
    width: 35px;
    /* Width of each line */
    height: 5px;
    /* Height of each line */
    background-color: white;
    /* Color of each line */
    margin: 6px 0;
    /* Space between each line */
    transition: all 0.3s ease;
    /* Smooth transition for the transform */
}

.navbar nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

.navbar nav ul li {
    margin: 0 20px;
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.navbar nav ul li a.active {
    color: var(--primary-color);
    transition: color .3s linear;
}

.navbar nav ul li a:hover {
    text-decoration: none;
}

.navbar nav ul li a {
    text-decoration: none;
    font-weight: 400;
    /* font-size: 1rem; */
    color: white;
    position: relative;
    padding-bottom: 5px;
}

/* The ::before pseudo-element */
.navbar nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    /* Color of the underline */
    opacity: 0;
    /* Start fully transparent */
    transition: opacity 0.3s ease;
    /* Animate opacity change */
}

/* When hovering over the link, animate the opacity of the ::before element */
.navbar nav ul li a:hover::before {
    opacity: 1;
}

/* Language dropdown */
.dropdown {
    float: left;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: .1rem;
}

.dropdown-content-item p,
.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    font-family: inherit;
    margin: 0;
}

.dropdown .dropbtn {
    background: transparent;
    padding: 1px 5px;
    min-width: 5rem;
}

.dropdown-content-item p {
    margin-left: .5rem;
}

.dropdown-content-item:hover,
.dropdown:hover .dropbtn {
    background-color: rgb(70, 70, 70);
}

.dropdown:hover {
    background-color: rgb(70, 70, 70);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 6rem;
}

.dropdown-container {
    display: flex;
    align-items: center;
}

.dropdown-content-item:nth-child(1) {
    margin-top: 1rem;
}

.dropdown-content-item {
    background-color: #333;
    float: none;
    cursor: pointer;
    color: black;
    padding: 5px 2px;
    text-decoration: none;
    display: flex;
    text-align: left;
    align-items: center;
}

/* .dropdown:hover .dropdown-content {
    display: block;
} */

.flag,
.flag.nav {
    margin-left: .5rem;
}

.flag.nav {
    height: 22px;
}

.flag {
    height: 25px;
}

/* Video Section Styling */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #121212;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay with Blur Effect */
.video-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    z-index: 10;
}

.video-section .overlay .main-logo {
    background-image: url(./assets/images/EHC-white.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 15%;
    width: 100%;
}

.video-section .main-title {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
    color: var(--primary-color)
}

.video-section .sub-text {
    font-size: 2.2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-top: 0;
    line-height: 1.5;
}

.pulsating-text {
    font-size: 3rem;
    font-weight: bold;
}

.video-section .arrow-down-button {
    background-color: transparent;
    border: none;
    margin-top: 4rem;
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.4s ease;
}

/* Pseudo-element for color animation */
.video-section .arrow-down-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: #333333c4;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 20px;
    opacity: 0;
    transition: transform 1s ease, opacity 0.8s ease, color 0.8s;
    z-index: -1;
}

/* Trigger the animation on hover */
.video-section .arrow-down-button:hover::after {
    transform: translate(-50%, -50%) scale(1);
    /* Expand the color */
    opacity: 1;
    /* Make the pseudo-element visible */
}

.video-section .arrow-down-button:hover {
    color: #fff;
}

.svg-icon-50-50 {
    height: 50px;
    width: 50px;
}

/* The Modal (hidden by default) */
.modal {
    display: none;
    overflow: scroll;
    flex-wrap: wrap;
    justify-content: center;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 4rem;
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    padding: 0rem 2rem 1rem;
    padding-bottom: 1rem;
    border-radius: 10px;
    width: 1300px;
    height: fit-content;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-icon-div {
    height: 25px;
    width: 25px;
}

/* Close Button */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    margin-left: .5rem;
}

.close-btn:hover,
.close-btn:focus {
    color: rgb(211, 17, 17);
    text-decoration: none;
    cursor: pointer;
}

.modal-container-text-image {
    display: flex;
    flex-direction: row;
}

.modal h1 {
    color: #32afb2;
    font-size: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin: 1rem;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: #3b3b3b;
    font-size: 1.2rem;
}

.modal ul {
    margin-bottom: 1rem;
}

.modal-section {
    margin-bottom: 20px;
}

.modal-section p {
    font-weight: 500;
    padding: 0 1rem;
    color: #252525;
}

.modal-subsection {
    background: aliceblue;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem;
}

.modal-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-left: 5px;
    position: relative;
    font-size: 1rem;
}

.contact-container h1+p {
    padding: 1rem 1rem 0 1rem;
}

.modal-list-item svg {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.modal-container-contact {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.euro {
    color: var(--primary-color);
}

.hire {
    color: var(--accent-color);
}

.consulting {
    color: white;
}

/* About Section */
.about {
    display: flex;
    position: relative;
    color: #fff;
    background: aliceblue;
    height: 100vh;
    align-items: center;
}

/* Add a dark overlay over the background image */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about .container {
    display: flex;
    height: 85%;
    background: #e8f0f7;
    border-radius: 10px;
    margin-right: 10%;
    margin-left: 10%;
    overflow-y: auto;
    background-image: url(./assets/images/global-business.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(1px 3px 2px #000000);
}

.about .child {
    display: flex;
    flex: 1;
    text-align: center;
    padding: 3rem;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
}

.about .card:nth-child(2) {
    margin-left: 5%;
}

.about .teal-quad {
    display: flex;
    width: 100%;
    height: 100%;
}

.about-text-container {
    display: flex;
    flex-direction: column;
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
}

.about h2 {
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent-color);
}

.about-text {
    padding: 1.5rem;
    text-align: justify;
    font-size: 1.2rem;
    word-wrap: break-word;
    /* This ensures long words will break to the next line */
    overflow-wrap: break-word;
    /* Modern version of word-wrap */
}

.about p:nth-of-type(2) span:nth-child(1) {
    color: var(--accent-color);
}

.about p:nth-of-type(4) span:nth-child(1) {
    color: var(--primary-color);
}

.button-container {
    display: flex;
    align-items: flex-end;
    height: 20%;
    margin-top: 3rem;
}

.button-buy {
    all: unset;
    width: 100px;
    height: 30px;
    font-size: 16px;
    background: transparent;
    border: none;
    position: relative;
    color: #f0f0f0;
    cursor: pointer;
    z-index: 1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-buy::after,
.button-buy::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
}

.button-buy::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #28282d;
    border-radius: 10px;
}

.button-buy::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
}

.button-buy:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
}

.button-buy:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
}

.button-buy:active::after {
    transition: 0s;
    transform: translate(0, 5%);
}

.contact-button {
    background-color: #28282d;
    border: 1px solid #e1e1e1;
    border-radius: 1.5rem;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: "Basier circle", -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    padding: 1rem 1.6rem;
    text-align: center;
    text-decoration: none #0d172a solid;
    text-decoration-thickness: auto;
    transition: background-color 0.8s ease;
    box-shadow: 0px 1px 2px rgba(166, 175, 195, 0.25);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.contact-button:hover {
    background-color: var(--accent-color);
    color: #000000;
}

/* Ensure content inside the section appears above the overlay */
.container {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

/* Services Section */
.services {
    padding: 20px 0;
    text-align: center;
}

.services .container {
    margin: 0 auto;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.services h2 {
    font-size: 3.5rem;
    font-weight: 100;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-cards {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 0fr);
    grid-gap: 3rem;
    max-width: 80vw;
    margin: 0 auto;
}

.service-cards .card {
    height: 100%;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 2rem;
    padding-bottom: 1rem;
    padding-top: 0;
    text-align: center;
    border-radius: 15px;
    box-shadow: 1px 2px 4px rgb(0 0 0 / 38%);
    overflow: hidden;
    background-image: url(./assets/images/card-background.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(0);
}

.service-cards .card.visible {
    animation: popIn 0.5s forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animation with delay for each card */
.card.visible:nth-child(1) {
    animation-delay: 0.1s;
}

.card.visible:nth-child(2) {
    animation-delay: 0.2s;
}

.card.visible:nth-child(3) {
    animation-delay: 0.3s;
}

.card.visible:nth-child(4) {
    animation-delay: 0.4s;
}

.card.visible:nth-child(5) {
    animation-delay: 0.5s;
}

.card.visible:nth-child(6) {
    animation-delay: 0.6s;
}

.card.visible:nth-child(7) {
    animation-delay: 0.7s;
}

.card.visible:nth-child(8) {
    animation-delay: 0.8s;
}

.card.visible:nth-child(9) {
    animation-delay: 0.9s;
}

#diploma,
#family,
#visa,
#approval,
#binding,
#forms,
#dream_job,
#dev,
#design {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#diploma {
    background-image: url(./assets/images/diploma.jpg);
}

#family {
    background-image: url(./assets/images/family.jpg);
}

#visa {
    background-image: url(./assets/images/visa.jpg);
}

#approval {
    background-image: url(./assets/images/approval.jpg);
}

#binding {
    background-image: url(./assets/images/link.jpg);
}

#forms {
    background-image: url(./assets/images/form.jpg);
}

#dream_job {
    background-image: url(./assets/images/dream-job.jpg);
}

#dev {
    background-image: url(./assets/images/dev.jpg);
}

#design {
    background-image: url(./assets/images/design.jpg);
}

.service-cards .card h3 {
    font-size: 1.1rem;
    margin-top: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(50, 175, 178, 1);
}

.service-cards .card p {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: .5rem;
    color: #212121;
}

.service-cards .image {
    display: grid;
    height: 220px;
    width: 350px;
    aspect-ratio: 1;
}

.why-us {
    display: flex;
    align-items: center;
    height: 100vh;
    background-color: aliceblue;
}

.why-us .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-us h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 5rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.why-us .row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: 8rem;
    margin-right: 8rem;
}

.column {
    width: 48%;
    /* Each column takes up 48% of the width */
}

/* Feature Box Styling */
.feature {
    display: flex;
    align-items: flex-start;
}

.icon.experience,
.icon.presence,
.icon.comprehensive,
.icon.approach,
.icon.transparency,
.icon.save {
    font-size: 2rem;
    /* Icon size */
    margin-right: 1.2rem;
    opacity: 0;
    transform: scale(0);
}

.icon.experience.visible,
.icon.presence.visible,
.icon.comprehensive.visible,
.icon.approach.visible,
.icon.transparency.visible,
.icon.save.visible {
    animation: popIn 0.5s forwards;
}

.text.experience,
.text.presence,
.text.comprehensive,
.text.approach,
.text.transparency,
.text.save {
    opacity: 0;
    transform: scale(0);
}

.text.experience.visible,
.text.presence.visible,
.text.comprehensive.visible,
.text.approach.visible,
.text.transparency.visible,
.text.save.visible {
    animation: popIn 0.5s forwards;
}

/* Apply animation with delay for each card */
.why-us .visible.experience {
    animation-delay: 0.3s;
}

.why-us .text.visible.experience {
    animation-delay: 0.1s;
}

.why-us .visible.presence {
    animation-delay: 0.7s;
}

.why-us .text.visible.presence {
    animation-delay: 0.5s;
}

.why-us .visible.comprehensive {
    animation-delay: 1.2s;
}

.why-us .text.visible.comprehensive {
    animation-delay: 0.9s;
}

.why-us .visible.approach {
    animation-delay: 1.6s;
}

.why-us .text.visible.approach {
    animation-delay: 1.4s;
}

.why-us .visible.transparency {
    animation-delay: 2.0s;
}

.why-us .text.visible.transparency {
    animation-delay: 1.8s;
}

.why-us .visible.save {
    animation-delay: 2.4s;
}

.why-us .text.visible.save {
    animation-delay: 2.2s;
}

/* Paragraph Styling */
.feature p:nth-child(2) {
    font-size: 1.1rem;
    color: #333;
    height: 8em;
    line-height: 1.5em;
    overflow: hidden;
    text-overflow: clip;
}

.column .feature div p:nth-child(1) {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.4rem;
}

/*************** Contact us ******************/

/* Set the parent div to 100vh */
.contact-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.contact {
    position: relative;
    /* Ensure the pseudo-element is positioned correctly */
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    /* The background color for the entire div */
}

.contact::before {
    content: '';
    /* Required to create the pseudo-element */
    position: absolute;
    /* Position it relative to the parent div */
    top: 0;
    /* Align it to the top of the div */
    left: 0;
    /* Align it to the left of the div */
    width: 100%;
    /* Full width of the parent div */
    height: 60%;
    /* Half the height of the parent div */
    background-color: var(--primary-color);
    /* Color for the top half */
}

/* The top div takes up 2/3 of the parent height */
.top-container {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

.top-container h2 {
    font-size: 3.5rem;
    font-weight: 100;
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 8rem;
}

.contact-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 82%;
}

.top-container p {
    font-size: 1.5rem;
    color: #ffffff;
    display: flex;
}

.contact-bottom-text {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    margin-top: 5rem;
    color: #717171;
}

/* Styling for the cards */
.contact-card {
    width: 400px;
    background-color: white;
    border: 1px solid #dfdfdf;
    border-radius: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    z-index: 1;
    margin-right: 1rem;
    margin-left: 1rem;
    padding: 2rem 1rem;
    box-shadow: 1px 2px 4px rgb(0 0 0 / 13%);
    flex-wrap: wrap;
}

.contact-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85%;
    margin-top: calc(12vh - 50px);
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-card-svg {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-end {
    align-items: flex-end;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: #393939;
}

.contact-card-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #7b7b7b;
}

.contact-phone .i-box {
    align-items: center;
    display: flex;
    margin-right: 0.5rem;
    cursor: pointer;
}

/* .bg-very-light-blue {
    background: #cbe3f7;
} */

/* .bg-very-light-green {
    background: #32b38982;
}

.bg-very-light-orange {
    background: #e9961561;
} */

.notify-container {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e7e7e7;
    margin-top: 1rem;
    align-items: flex-end;
    padding-top: 1rem;
    margin-bottom: .25rem;
}

.notif-with-icon {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin-bottom: .8rem;
}

.notif-with-icon i {
    font-size: 15px;
    color: #46a0eb;
}

.notify-btn {
    color: #040404;
    background: none;
    width: 100%;
    text-decoration: none;
}

.copy-icon-container {
    display: flex;
    align-items: center;
    padding: .5rem;
    margin-left: .2rem;
    cursor: pointer;
    opacity: .2;
}

.copy-icon-container:hover {
    opacity: 1;
}

#office-link::after,
#info-link::after {
    content: attr(data-link);
    font-weight: bold;
    font-size: 1.1rem;
    transform: translateX(32px);
    z-index: 2000;
    position: absolute;
    color: #46a0eb;
}

.fa.fa-copy:hover {
    color: #0a5b9e;
}

/* Specific styles for each container */
.contact-phone {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1.2rem;
    color: #040404;
}

.contact-phone-container {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e7e7e7;
    margin-top: 1rem;
    align-items: flex-end;
    padding-top: 1.6rem;
}

.contact-phone a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: all .3s;
    line-height: 1;
    font-weight: 400;
}

/* Socials */
.socials-container {
    display: flex;
    justify-items: center;
    gap: 25px;
    margin-top: 1rem;
    padding-top: 1rem;
    margin-bottom: 2.2rem;
    border-top: 1px solid #e7e7e7;
}

.socials-container a {
    background-color: #ffffff8f;
    padding: .5em;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.socials-container a svg {
    height: 22px;
}

.socials-container a::before {
    content: attr(data-social);
    position: absolute;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 0em 0.5em;
    border-radius: 100px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(20px);
    opacity: 0;
    transition: 200ms cubic-bezier(.42, 0, .44, 1.68);
    align-content: center;
}

.socials-container a:hover {
    background-color: var(--accent-color);
    fill: white;
}

.socials-container a:hover::before {
    transform: translateY(40px) rotate(0);
    opacity: 1;
}

a[data-social="Facebook"] {
    --accent-color: #106bff;
}

a[data-social="Instagram"] {
    --accent-color: #fe107c;
}

a[data-social="TikTok"] {
    --accent-color: #000000;
}

/******************* Facebook frame ***************/

#jobs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 4rem;
}

#jobs h2 {
    font-size: 3.5rem;
    font-weight: 100;
    margin: 2rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.jobs-container {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
}

.opportunities-with-image {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-right: 8rem;
}

.opportunities-image {
    padding: 1rem;
    margin-top: 4rem;
    height: 30rem;
    opacity: 0;
    transform: scale(0);
}

.opportunities-image.visible {
    animation: popIn 1.5s forwards;
}

.opportunities-text-container{
    display: flex;
    flex-direction: row;
}

.opportunities-text {
    font-size: 2.5rem;
    color: #4b4b4b;
    margin-right: .5rem;
    /* font-style: italic; */
    opacity: 0;
    /* Start as invisible */
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.opportunities-text-bottom {
    font-size: 2.5rem;
    /* font-style: italic; */
    /* margin-bottom: 2rem; */
    /* margin-left: 5rem; */
    color: var(--primary-color);
    opacity: 0;
    /* Start as invisible */
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.opportunities-text.visible {
    animation-name: slideIn1;
}

.opportunities-text-bottom.visible {
    animation-name: slideIn2;
}

@keyframes slideIn1 {
    0% {
        opacity: 0;
        transform: translateX(150%);
        /* Start off the right */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        /* Slide to the original position */
    }
}

@keyframes slideIn2 {
    0% {
        opacity: 0;
        transform: translateX(-150%);
        /* Start off the left */
    }

    50% {
        opacity: 0.05;
    }

    80% {
        opacity: 0.1;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        /* Slide to the original position */
    }
}

.fb-iframe {
    border: none;
    overflow: hidden;
    width: 500px;
    height: 800px;
    background: white;
    /* opacity: 0;
    transform: scale(0); */
}

/* .fb-iframe.visible {
    animation: popIn 2s forwards;
} */


/******************* FAQ **************************/
.faq {
    display: flex;
    position: relative;
    background: #fbfbfb;
    /* background-image: url(./assets/images/question.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat; */
    color: #fff;
    height: 100%;
    padding: 20px 0;
    text-align: center;
    align-items: center;
}

.faq-accordion-image-container {
    display: flex;
    flex-direction: row;
}

.faq .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.faq .container-h2 {
    padding: 1rem;
    margin-bottom: 4rem;
    border-radius: 10px;
    width: 100%;
}

.faq h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
}

.accordion-container input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.accordion-container .accordion-wrapper {
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5); */
    width: 30vw;
    margin: 0 4rem auto;
}

.accordion-container .accordion {
    width: 100%;
    color: white;
    overflow: hidden;
    margin-bottom: .2rem;
}

.accordion-container .accordion:last-child {
    margin-bottom: 0;
}

.accordion-container .accordion-label {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 16px;
    cursor: pointer;
    font-size: 20px;
    border-bottom: 1px solid #939393;
    color: rgb(61 61 61);
}

/* .accordion-container .accordion-label:hover {
    background: var(--primary-color);
} */

.accordion-container .accordion-label::after {
    content: "\276F";
    width: 16px;
    height: 16px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.accordion-container .accordion-content {
    max-height: 0;
    padding: 0 16px;
    color: rgba(4, 57, 94, 1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.accordion-container .accordion-content p {
    text-align: left;
    margin: 0;
    color: rgb(87 86 86);
    font-size: 1rem;
    background-color: #00000000;
}

.accordion-container input:checked+.accordion-label {
    /* background: var(--primary-color); */
    color: var(--primary-color);
    font-weight: bold;
}

.accordion-container input:checked+.accordion-label::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.accordion-container input:checked~.accordion-content {
    max-height: fit-content;
    padding: 2rem;
    /* background: #ffffff; */
    /* backdrop-filter: blur(20px); */
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
}

footer .container {
    max-width: 1170px;
    margin: auto;
    padding-bottom: .5rem;
}

footer p {
    font-size: 14px;
    color: #b9b9b9;
    padding-top: 3rem;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

.footer {
    background-color: #24262b;
    padding-top: 5rem;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e9b31e;
    height: 2px;
    box-sizing: border-box;
    width: 100%;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}


/*responsive*/
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}

/* Add a shadow when navbar changes to white */
.navbar.white {
    background-color: white;
    color: black;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar.white nav ul li a {
    color: black;
}

/* Show the navigation links when the hamburger menu is clicked */
.navbar.navbar-active nav ul {
    display: flex;
}

@media (max-width: 1350px) {

    .dropdown .dropbtn {
        /* min-width: unset; */
        min-width: 3.5rem;
    }

    .dropdown {
        padding-right: 1rem;
        margin-right: 2rem;
    }

    .why-us .row {
        margin-left: 4rem;
        margin-right: 4rem;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }

    .feature p:nth-child(2) {
        height: 11rem;
    }

    .services {
        height: unset;
    }

    .why-us {
        height: unset;
    }

    .contact-card {
        width: 320px;
        height: unset;
        margin-right: 1rem;
        margin-left: unset;
        margin-bottom: 1rem;
    }

    .contact-container {
        overflow: hidden;
    }

    .contact-button {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }

    .contact-bottom-text {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .top-container h2 {
        font-size: 3.5rem;
    }

    .top-container p {
        font-size: 1.2rem;
    }

    .contact-card-svg {
        width: 55px;
        height: 55px;
        padding: .5rem;
    }

    .contact-card-title {
        font-size: 1.2rem;
    }

    .contact-card-subtitle {
        font-size: .8rem;
    }

    .contact-phone a {
        font-weight: 600;
    }

    #jobs {
        height: unset;
    }

    .jobs-container {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding-bottom: 2rem;
    }

    .opportunities-with-image {
        margin-right: unset;
    }

    .opportunities-image {
        margin-bottom: 4rem;
        height: 30rem;
        padding: 0;
    }

    .opportunities-text {
        font-size: 2rem;
    }

    .opportunities-text-bottom {
        font-size: 2rem;
    }

    a b {
        font-size: .8rem;
    }

    .faq-accordion-image-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .faq-image {
        height: 300px;
        margin-top: 2rem;
    }

    .faq h2 {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .accordion-container input:checked+.accordion-label {
        font-weight: normal;
    }

}

@media (max-width: 1120px) {

    .services {
        height: unset;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }

    .why-us {
        height: unset;
    }

    .why-us .row {
        /* flex-direction: column;
        gap: 0; */
        margin-left: 0;
        margin-right: 0;
    }

    .column {
        width: 100%;
    }

    .why-us h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    .feature p:nth-child(2) {
        height: 13rem;
    }

    .hamburger {
        display: block;
    }

    nav {
        justify-content: center;
    }

    /* When navbar is active, rotate and animate the hamburger lines to form an X */
    .navbar-active .hamburger div:nth-child(1) {
        transform: rotate(44deg) translateY(15px);
        /* Move down a bit more */
    }

    .navbar-active .hamburger div:nth-child(2) {
        opacity: 0;
        /* Hide the middle line */
        transform: translateX(-20px);
        /* Move it out of the view */
    }

    .navbar-active .hamburger div:nth-child(3) {
        transform: rotate(-44deg) translateY(-15px);
        /* Move up a bit more */
    }

    .logo {
        display: none;
    }

    .navbar {
        justify-content: center;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Adjust navbar links for small screens */
    .navbar nav ul {
        display: none;
        flex-direction: column;
        /* Stack navbar items vertically */
    }

    .navbar nav ul li {
        margin: 7px 0;
        /* Add vertical spacing between items */
    }

    .faq-image {
        height: 200px;
    }

    .about .child:nth-child(2) {
        display: none;
    }

    .about h2 {
        font-size: 2rem;
    }

}

/* Media Queries for Small Screens (Mobile devices) */
@media (max-width: 768px) {

    h1 {
        font-size: 2.5em;
    }

    .euro {
        font-size: 2.5rem;
    }

    .hire {
        font-size: 2.5rem;
    }

    .consulting {
        font-size: 2.5rem;
    }

    .hamburger {
        display: block;
    }

    nav {
        justify-content: center;
    }

    /* When navbar is active, rotate and animate the hamburger lines to form an X */
    .navbar-active .hamburger div:nth-child(1) {
        transform: rotate(44deg) translateY(15px);
        /* Move down a bit more */
    }

    .navbar-active .hamburger div:nth-child(2) {
        opacity: 0;
        /* Hide the middle line */
        transform: translateX(-20px);
        /* Move it out of the view */
    }

    .navbar-active .hamburger div:nth-child(3) {
        transform: rotate(-44deg) translateY(-15px);
        /* Move up a bit more */
    }

    .logo {
        display: none;
    }

    .navbar {
        justify-content: center;
        padding-left: 1rem;
        padding-right: 0rem;
    }

    /* Adjust navbar links for small screens */
    .navbar nav ul {
        display: none;
        flex-direction: column;
        /* Stack navbar items vertically */
    }

    .navbar nav ul li {
        margin: 7px 0;
        /* Add vertical spacing between items */
    }

    .flag,
    .flag.nav {
        margin-left: 0;
    }

    /* Adjust video text size for small screens */
    .video-section .main-title {
        font-size: 2rem;
        /* Smaller text size */
    }

    .video-section .sub-text {
        font-size: 1.8rem;
        /* Smaller sub-text */
    }

    .services {
        height: unset;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }

    /* Adjust service cards for smaller screens */
    .service-cards .card {
        width: 100%;
        /* Make each card take up full width on mobile */
        margin: 10px 0;
        /* Ensure proper spacing between cards */
    }

    .services h2 {
        font-size: 2rem;
    }

    .about p {
        font-size: .8rem;
    }

    .about .child {
        padding: 0;
    }

    .about .child:nth-child(2) {
        display: none;
    }

    .why-us {
        height: unset;
    }

    .why-us .row {
        flex-direction: column;
        gap: 0;
        margin-left: 2rem;
        margin-right: 2rem;
    }

    .column {
        width: 100%;
    }

    /* Adjust footer padding on mobile */
    footer {
        padding: 10px 0;
        /* Less padding on mobile */
    }

    .why-us h2 {
        font-size: 2.2rem;
        margin-bottom: 4rem;
    }

    .feature p:nth-child(2) {
        height: 11rem;
    }

    .accordion-container .accordion {
        margin-bottom: .1rem;
    }

    .accordion-container .accordion-wrapper {
        width: unset;
    }

    .accordion-container {
        width: 90%;
    }

    .accordion-container .accordion-wrapper p {
        font-size: 1rem;
    }

    .faq h2 {
        font-size: 1.8rem;
    }

    .faq-image {
        height: 200px;
    }

    .contact {
        height: unset;
    }

    .contact-card {
        width: 320px;
        height: unset;
        margin-right: 0rem;
        margin-bottom: 1rem;
    }

    .contact-container {
        overflow: hidden;
        height: unset;
    }

    .contact-button {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }

    .contact-bottom-text {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .contact-cards-container {
        flex-direction: column;
    }

    .top-container h2 {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }

    .top-container p {
        font-size: 1rem;
        padding: 0 0.2rem 0 0.2rem;
    }

    .contact-card-svg {
        width: 55px;
        height: 55px;
        padding: .5rem;
    }

    .contact-card-title {
        font-size: 1.2rem;
    }

    .contact-card-subtitle {
        font-size: .8rem;
    }

    .contact-bottom-text {
        margin-top: 2rem;
    }

    .contact-phone,
    .contact-phone-container {
        margin: 0.8rem 0;
    }

    .notify-btn {
        font-size: .9rem;
    }

    .contact-phone a {
        font-size: .9rem;
        font-weight: 400;
    }

    a b {
        font-size: .9rem;
    }

    #jobs {
        height: unset;
    }

    .jobs-container {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .opportunities-with-image {
        margin-right: unset;
    }

    .opportunities-image {
        margin-bottom: 4rem;
        height: 15rem;
        padding: 0;
    }

    .opportunities-text {
        font-size: 1.4rem;
        padding-left: .5rem;
    }

    .opportunities-text-bottom {
        font-size: 1.4rem;
    }

    .modal {
        padding: .5rem;
    }

    /* Modal Content */
    .modal-content {
        padding: 1rem;
    }

    .modal-list-item svg {
        width: 30px;
        height: 30px;
    }

    .modal h1 {
        font-size: 1.5rem;
    }

    .modal h2 {
        font-size: 1.1rem;
    }

    .modal p {
        font-size: .8rem;
    }

    .modal-section p {
        padding: 0 0 0 1rem;
    }

    .modal-subsection {
        padding: .7rem;
    }

    .modal-list-item p {
        margin: .5rem 0 0 0;
        font-size: .9rem;
    }
}

@media (max-width: 700px) {

    .services {
        height: unset;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .why-us {
        height: unset;
    }

    .why-us .row {
        flex-direction: column;
        gap: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .column {
        width: 100%;
    }

    .why-us h2 {
        font-size: 2rem;
        margin-bottom: 4rem;
    }

    .feature p:nth-child(2) {
        height: 11rem;
    }

    .accordion-container .accordion-wrapper {
        width: unset;
    }

    .accordion-container {
        width: 90%;
    }

    .accordion-container .accordion-wrapper p {
        font-size: 1rem;
    }

    .fb-iframe {
        width: 384px;
    }

    .faq h2 {
        font-size: 2rem;
    }

    .faq-image {
        height: 200px;
    }

}

/* Media Queries for Extra Small Screens (Mobile portrait) */
@media (max-width: 480px) {
    .euro {
        font-size: 2rem;
    }

    /* Adjust about section for mobile */
    .about .container {
        height: 95%;
        display: flex;
        margin-right: 2%;
        margin-left: 2%;
    }

    .about-text {
        padding: 1.5rem;
        text-align: left;
    }

    .about .child {
        padding: 0;
    }

    .about h2 {
        font-size: 1.7rem;
    }

    .hire {
        font-size: 2rem;
    }

    .consulting {
        font-size: 2rem;
    }

    /* Further reduce font size for very small screens */
    .video-section .main-title {
        font-size: 1.5rem;
        /* Even smaller text */
    }

    .video-section .sub-text {
        font-size: 1.4rem;
        /* Even smaller sub-text */
    }

    /* Navbar items for very small screens */
    .navbar nav ul li a {
        font-size: 16px;
        /* Slightly smaller font size */
    }

    .services {
        height: unset;
    }

    .services h2 {
        font-size: 1.7rem;
    }

    /* Adjust service cards for smaller screens */
    .service-cards {
        grid-template-columns: 1fr;

    }

    .services .container {
        max-width: 70%;
    }

    .why-us {
        height: unset;
    }

    .why-us .row {
        flex-direction: column;
        gap: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .column {
        width: 100%;
    }

    .feature p:nth-child(2) {
        height: 11rem;
    }

    .why-us .container {
        padding: 0;
    }

    .why-us h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .accordion-container .accordion-wrapper {
        width: unset;
        margin: unset;
    }

    .accordion-container {
        width: 90%;
    }

    .accordion-container .accordion-wrapper p {
        font-size: 1rem;
    }

    .faq h2 {
        font-size: 1.5rem;
        /* margin-top: 1.5rem;
        margin-bottom: 3rem; */
    }

    .faq-image {
        height: 200px;
    }
}

@media (max-width: 420px) {

    .services {
        height: unset;
    }

    .services .container {
        max-width: none;
    }

    .feature p:nth-child(2) {
        height: 15rem;
    }

    .why-us {
        height: unset;
    }

    .why-us .container {
        padding: 0;
    }

    .why-us h2 {
        font-size: 1.7rem;
        margin-bottom: 3rem;
    }

    .column .feature div p:nth-child(1) {
        font-size: 1.1rem;
    }

    .why-us p {
        font-size: 1rem;
    }

    .why-us p:nth-child(2) {
        font-size: .8rem;
    }

    .feature p:nth-child(2) {
        height: 10rem;
    }

    .why-us .row {
        flex-direction: column;
        gap: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .accordion-container .accordion-wrapper {
        width: unset;
        margin: 0;
    }

    .accordion-container {
        width: 90%;
    }

    .accordion-container .accordion-wrapper p {
        font-size: 1rem;
    }

    .faq h2 {
        font-size: 1.5rem;
    }

    .faq-image {
        height: 200px;
    }

}