.home::-webkit-scrollbar { /* Chrome, Safari */
    display: none;
}

.home{
    margin: auto;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    overflow-y: auto;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
    background-color: #fafafa;
}

.homepage__welcome, .homepage__partnership, .homepage__information, .homepage__about-us, .technologies-section, footer{
    display: flex;
    justify-content: center;
    align-items: center;
}

.homepage__information{
    display: flex;
    min-height: 80vh;
}

.homepage__container{
    margin: auto;
}

.homepage__welcome {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    min-height: 100vh;
    background-image: url("/images/home.gif");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.homepage__first,
.homepage__second {
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage__first{
    display: block;
    width: 25em;
    margin-left: 2.5em;
    font-size: 150%;
    color: #fafafa;
}

.homepage__intro{
    margin-top: 0.3em;
    margin-bottom: 0.7em;
}

.homepage__title{
    color: rgb(255, 167, 44);
}

.homepage__description{
    font-weight: lighter;
}

.homepage__logo{
    width: 5em;
}

.homepage__partners{
    display: flex;
    width: 100%;
    justify-self: center;
    align-self: center;
    margin: auto;
    margin-top: 2em;
    margin-bottom: 2em;
}

.homepage__partners--img{
    width: 8em;
    height: 8em;
    padding: 2em;
    margin-top: 1em;
}

.homepage__partners--container{
    margin: auto;
    width: 30%;
    height: 18em;
    font-weight: bold;
    border: 2px solid rgb(250, 127, 26);
    border-radius: 1em;
    text-align: center;
    transition: transform 0.5s ease;
    background-color: #fafafa;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.homepage__partners--container {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    background-color: #fff;
    color: #000;
}

/* Shine effect */
.homepage__partners--container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.homepage__partners--container:hover::before {
    left: 100%;
}

.homepage__partners--container:hover {
    transform: scale(1.05);
    background-color: rgb(250, 127, 26);
    color: #fafafa;
}

.homepage__partners--container p{
    margin-left: 2em;
    margin-right: 2em;
}

.homepage__info{
    border: 2px solid rgb(250, 127, 26);
    border-radius: 1em;
    font-size: 75%;
    padding: 1em;
    margin-bottom: 1em;
    width: 100%;
    background-color: #fafafa;
}

.homepage__information--container{
    width: 100%;
    padding: 2rem 5%;
    position: relative;
    z-index: 1;
}

.map-image{
    width: 100%;
    height: 30em;
    text-align: center;
    justify-self: center;
    margin-top: 1.8em;
    border-radius: 0.5em;
}

.homepage__information--wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #fafafa;
}

.box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Push behind */
}

.box div {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 4px solid rgba(254, 195, 3, 0.418);
  z-index: 0;
  border-radius: 1em;
}

.box div:nth-child(1){
    top: 12%;
    left: 42%;
    animation: animate 10s linear infinite;
}

.box div:nth-child(2){
    top: 70%;
    left: 50%;
    animation: animate 7s linear infinite;
}

.box div:nth-child(3){
    top: 17%;
    left: 6%;
    animation: animate 7s linear infinite;
}

.box div:nth-child(4){
    top: 20%;
    left: 60%;
    animation: animate 10s linear infinite;
}

.box div:nth-child(5){
    top: 67%;
    left: 10%;
    animation: animate 6s linear infinite;
}

.box div:nth-child(6){
    top: 80%;
    left: 70%;
    animation: animate 12s linear infinite;
}

.box div:nth-child(7){
    top: 60%;
    left: 80%;
    animation: animate 15s linear infinite;
}

.box div:nth-child(8){
    top: 32%;
    left: 25%;
    animation: animate 16s linear infinite;
}

.box div:nth-child(9){
    top: 80%;
    left: 25%;
    animation: animate 9s linear infinite;
}

.box div:nth-child(10){
    top: 20%;
    left: 80%;
    animation: animate 5s linear infinite;
}

@keyframes animate{
    0%{
        transform: scale(0) translateY(0) rotate(0);
        opacity: 1;
    }
    100%{
        transform: scale(1.3) translateY(-90px) rotate(360deg);
        opacity: 0;
    }
}

.homepage__users{
    display: flex;
    gap: 0.5em;
    margin-top: 1%;
}

.homepage__title--about{
    font-size: 2em;
    font-weight: 800;
    color:rgb(250, 127, 26);
    margin-top: 3%;
}

.homepage__subtitle--about{
    font-size: 1.5em;
    font-weight: 750;
    color:rgb(250, 127, 26);
}

.homepage__text--about{
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 1.1em;
}

li{
    margin-top: 0.8em;
}

.homepage__people{
    background-color: rgb(250, 127, 26);
    padding: 0.5em;
    border-radius: 1em;
    width: 5em;
    text-align: center;
    color: white;
}

.homepage__text{
    text-align: center;
    color: rgb(250, 127, 26);
    padding: 1em;
    font-size: 150%;
}

.homepage__text:nth-of-type(2){
    text-align: center;
    color: black;
}

footer {
    background-color: #1a1a1a;
    color: #f2f2f2;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}
  
.homepage__contact-us {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
  
.homepage__contact-us h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #f9d342;
}
  
.homepage__contact-us p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #dddddd;
}
  
.contact-info {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
  
.contact-info li {
    margin: 10px 0;
    font-size: 16px;
}
  
.footer-bottom {
    font-size: 14px;
    color: #888;
    border-top: 1px solid #444;
    padding-top: 20px;
}
  
.homepage__user--img {
    width: 10em;
    height: 10em;
    margin-top: 1em;
    transition: filter 0.3s ease;
}

.homepage__user--container {
    margin: auto;
    width: 90%;
    height: 15em;
    padding: 1em;
    font-weight: bold;
    border: 2px solid rgb(250, 127, 26);
    border-radius: 1em;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    color: #000;
    font-size: 120%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.4s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Starts below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Moves to original position */
  }
}

.homepage__user--container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.homepage__user--container:hover::before {
    left: 100%;
}

.homepage__user--container:hover[data-role="lawyer"] .homepage__user--img {
    content: url('/images/lawyer-white.png');
}

.homepage__user--container:hover[data-role="client"] .homepage__user--img {
    content: url('/images/client-white.png');
}

.homepage__user--container:hover[data-role="secretary"] .homepage__user--img {
    content: url('/images/secretary-white.png');
}

.homepage__user--container:hover {
    transform: scale(1.05);
    background-color: rgb(250, 127, 26);
    color: #fafafa;
}

.homepage__user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.homepage__user--wrapper {
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: #fafafa;
}

.homepage__user--container::-webkit-scrollbar {
    display: none;
}

.homepage__back-button {
    position: absolute;
    bottom: 2em;
    left: 2em;
    background-color: rgb(250, 127, 26);
    color: #fff;
    border: none;
    padding: 0.75em 1.5em;
    border-radius: 2em;
    font-size: 1em;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 2px solid rgb(250, 127, 26);
}

.homepage__back-button:hover {
    background-color: #fafafa;
    color: rgb(250, 127, 26);
}

.homepage__user--logo{
    width: 8em;
    margin-top: -7em;
    margin-bottom: 4em;
}

.homepage__user--container:nth-of-type(1){
    margin-right: 2em;
    margin-top: 2em;
}

.homepage__user--container:nth-of-type(2){
    margin-left: 2em;
    margin-top: 2em;
}

a{
    text-decoration: none;
}

/********************************************************************************************************************/
/*****************************************MOBILE RESPONSIVE*************************************************/
/*PHONES*/
@media screen and (max-width: 595px){
.homepage__welcome {
    display: flex;
}

.homepage__first,
.homepage__second {
    display: block;
    align-items: center;
    justify-content: center;
}

.homepage__first{
    display: block;
    width: 25em;
    margin: 0em;
    font-size: 100%;
    text-align: center;
}

.homepage__logo{
    width: 5em;
}

.homepage__information--container h1{
    font-size: 170%;
}

.homepage__partnership{
    padding-top: 10%;
    font-size: 60%;
}

.homepage__partners{
    display: block;
    width: 100%;
    justify-self: center;
    align-self: center;
    margin: auto;
    margin-top: 0em;
    margin-bottom: 0em;
}

.homepage__partners--img{
    width: 6em;
    height: 6em;
    padding: 0.5em;
    margin-top: 0.5em;
}

.homepage__partners--container{
    margin: auto;
    width: 70%;
    height: 30%;
    margin-top: 1em;
    padding: 1em;
}

.homepage__info{
    transform: scale(0.7);
    margin-top: -5%;
    margin-bottom: 5%;
    padding-left: 0em;
    padding-right: 0em;
}

.homepage__information{
    text-align: center;
    display: block;
    font-size: 70%;
    padding-top: 17%;
}

.homepage__information--container div:nth-of-type(3){
    margin-top: -5%;
}

.homepage__users{
    text-align: center;
    justify-self: center;
}

.homepage__information--container{
    width: 100%;
    padding-left: 0em;
    padding-right: 0em;
    padding-top: 11%;
    position: relative;
    z-index: 1;
}

.homepage__information--container:nth-of-type(2){
    margin-top: -3%;
}

.map-image{
    width: 95%;
    height: 14em;
    text-align: center;
    justify-self: center;
    margin-top: 0em;
    border-radius: 0.5em;
}

/***/

.homepage__users{
    display: block;
    gap: 0em;
    margin-top: 0;
}

.homepage__user {
    display: block;
    align-items: center;
    justify-content: center;
    gap: 0em;
}

.homepage__user--container{
    width: 80%;
    height: 7em;
    margin-left: 2em;
    padding: 0;
}

.homepage__user--container::-webkit-scrollbar {
    display: none;
}

.homepage__back-button {
    transform: scale(0.8);
    margin-left: 0;
}

.homepage__back-button:hover {
    background-color: #fafafa;
    color: rgb(250, 127, 26);
}

.homepage__user--logo{
    width: 10em;
    margin: 0;
    margin-left: 0em;
    margin-top: -5em;
    margin-bottom: 0em;
}

.homepage__user--container:nth-of-type(1){
    margin: 0, 0, 0, 0;
}

.homepage__user--container:nth-of-type(2){
    margin: 0, 0, 0, 0;
}

.homepage__user--container:nth-of-type(3){
    margin: 0, 0, 0, 0;
}

.homepage__user--img{
    width: 3em;
    height: 3em;
}

.homepage__user--wrapper{
    font-size: 0.8em;
}

}

/*******************************************************************************************************************/
/*TABLET*/
@media screen and (min-width: 768px) and (max-width: 768px){
.homepage__welcome {
    display: flex;
    font-size: 70%;
}

.homepage__first,
.homepage__second {
    display: block;
    align-items: center;
    justify-content: center;
}

.homepage__first{
    display: block;
    margin: 0em;
    text-align: center;
}

.homepage__logo{
    width: 5em;
}

.homepage__partnership{
    padding: 2rem 0;
    font-size: 50%;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(250, 127, 26);
}

.homepage__partners{
    display: flex;
    width: 100%;
    justify-self: center;
    align-self: center;
    margin: auto;
    margin-top: 0em;
    margin-bottom: 0em;
}

.homepage__partners--img{
    width: 15em;
    height: 15em;
    padding: 0.5em;
    margin-top: 0.5em;
}

.homepage__partners--container{
    margin: auto;
    width: 70%;
    height: 20em;
    margin: 1em;
    padding: 1em;
}

.homepage__info{
    display: block;
    transform: scale(0.9);
    width: 90%;
    justify-self: center;
}

.homepage__information{
    text-align: center;
    display: flex;
    font-size: 70%;
}

.homepage__information--container div:nth-of-type(3){
    margin-top: 0;
}

.homepage__users{
    text-align: center;
    justify-self: center;
}

.homepage__information--container{
    width: 100%;
    padding-left: 0em;
    padding-right: 0em;
    padding-top: 7%;
    position: relative;
    z-index: 1;
}

.homepage__information--container:nth-of-type(2){
    margin-top: 0;
}

.map-image{
    width: 95%;
    height: 29em;
    text-align: center;
    justify-self: center;
    margin-top: 0em;
    border-radius: 0.5em;
}

.homepage__user--container{
    width: 90%;
    height: 12em;
    margin-left: 2em;
    padding: 0;
}

.homepage__user--container::-webkit-scrollbar {
    display: none;
}

.homepage__back-button {
    transform: scale(0.8);
    margin-left: 0;
}

.homepage__back-button:hover {
    background-color: #fafafa;
    color: rgb(250, 127, 26);
}

.homepage__user--logo{
    width: 10em;
    margin: 0;
    margin-left: 0em;
    margin-top: -5em;
    margin-bottom: 0em;
}

.homepage__user--container:nth-of-type(1){
    margin: 0, 0, 0, 0;
}

.homepage__user--container:nth-of-type(2){
    margin: 0, 0, 0, 0;
}

.homepage__user--container:nth-of-type(3){
    margin: 0, 0, 0, 0;
}

.homepage__user--img{
    width: 7em;
    height: 7em;
}

.homepage__user--wrapper{
    font-size: 0.8em;
}

}

/*******************************************************************************************************************/
/*SCREEN LAPTOPS // DESKTOPS*/
@media screen and (min-width: 2560px) and (max-width: 2560px){
.homepage__welcome {
    display: flex;
    font-size: 200%;
}

.homepage__first,
.homepage__second {
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage__first{
    display: block;
    margin: 0em;
    text-align: center;
}

.homepage__logo{
    width: 10em;
}

.homepage__partnership{
    padding-top: 5em;
    font-size: 150%;
}

.homepage__partners{
    display: flex;
    width: 100%;
    justify-self: center;
    align-self: center;
    margin: auto;
    margin-top: 0em;
    margin-bottom: 0em;
}

.homepage__partners--img{
    width: 15em;
    height: 15em;
    padding: 0.5em;
    margin-top: 0.5em;
}

.homepage__partners--container{
    margin: auto;
    width: 70%;
    height: 20em;
    margin: 1em;
    padding: 1em;
}

.homepage__info{
    display: block;
    transform: scale(0.9);
    width: 90%;
    justify-self: center;
}

.homepage__information{
    text-align: center;
    display: flex;
    font-size: 200%;
}

.homepage__information--container div:nth-of-type(3){
    margin-top: 0;
}

.homepage__users{
    text-align: center;
    justify-self: center;
}

.homepage__information--container{
    width: 100%;
    padding-left: 0em;
    padding-right: 0em;
    padding-top: 5%;
    position: relative;
    z-index: 1;
}

.homepage__information--container:nth-of-type(2){
    margin-top: 0;
}

.map-image{
    width: 95%;
    height: 29em;
    text-align: center;
    justify-self: center;
    margin-top: 0em;
    border-radius: 0.5em;
}

.homepage__user--container{
    transform: scale(2);
    font-size: 2em;
    padding: 0;
}

.homepage__user--container::-webkit-scrollbar {
    display: none;
}

.homepage__back-button {
    transform: scale(2);
    margin-left: 3em;
}

.homepage__back-button:hover {
    background-color: #fafafa;
    color: rgb(250, 127, 26);
}

.homepage__user--logo{
    width: 30em;
    margin: 0;
    margin-left: 0em;
    margin-top: -5em;
    margin-bottom: 0em;
}

.homepage__user--container:nth-of-type(1){
    margin: 0, 0, 0, 0;
    margin-right: 10em;
}

.homepage__user--container:nth-of-type(2){
    margin: 0, 0, 0, 0;
}

.homepage__user--container:nth-of-type(3){
    margin: 0, 0, 0, 0;
}

.homepage__user--img{
    width: 10em;
    height: 10em;
}

.homepage__user--wrapper{
    font-size: 0.8em;
}

}

/*******************************************************************************************************************/

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: #fafafa;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 80vh;
}

.team-section .box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.team-section .box div {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 4px solid rgba(254, 195, 3, 0.418);
    z-index: 0;
    border-radius: 1em;
}

.team-section .box div:nth-child(1){
    top: 12%;
    left: 42%;
    animation: animate 10s linear infinite;
}

.team-section .box div:nth-child(2){
    top: 70%;
    left: 50%;
    animation: animate 7s linear infinite;
}

.team-section .box div:nth-child(3){
    top: 17%;
    left: 6%;
    animation: animate 7s linear infinite;
}

.team-section .box div:nth-child(4){
    top: 20%;
    left: 60%;
    animation: animate 10s linear infinite;
}

.team-section .box div:nth-child(5){
    top: 67%;
    left: 10%;
    animation: animate 6s linear infinite;
}

.team-section .box div:nth-child(6){
    top: 80%;
    left: 70%;
    animation: animate 12s linear infinite;
}

.team-section .box div:nth-child(7){
    top: 60%;
    left: 80%;
    animation: animate 15s linear infinite;
}

.team-section .box div:nth-child(8){
    top: 32%;
    left: 25%;
    animation: animate 16s linear infinite;
}

.team-section .box div:nth-child(9){
    top: 80%;
    left: 25%;
    animation: animate 9s linear infinite;
}

.team-section .box div:nth-child(10){
    top: 20%;
    left: 80%;
    animation: animate 5s linear infinite;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.team-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.team-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #eb8816;
    margin-bottom: 3rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.team-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.team-card {
    background: white;
    border-radius: 1em;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    width: 25%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 126, 34, 0.2);
}

.team-image-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e67e22;
    transition: all 0.3s ease;
}

.team-card:hover .team-image-container {
    border-color: #d35400;
    transform: scale(1.05);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image {
    transform: none;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.team-role {
    font-size: 0.85rem;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
}

.team-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    color: #e67e22;
    transform: scale(1.1);
}

/* Technologies Section */
.technologies-section {
    padding: 4rem 0;
    background: #fafafa;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.technologies-section .box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.technologies-section .box div {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 4px solid rgba(254, 195, 3, 0.418);
    z-index: 0;
    border-radius: 1em;
}

.technologies-section .box div:nth-child(1){
    top: 12%;
    left: 42%;
    animation: animate 10s linear infinite;
}

.technologies-section .box div:nth-child(2){
    top: 70%;
    left: 50%;
    animation: animate 7s linear infinite;
}

.technologies-section .box div:nth-child(3){
    top: 17%;
    left: 6%;
    animation: animate 7s linear infinite;
}

.technologies-section .box div:nth-child(4){
    top: 20%;
    left: 60%;
    animation: animate 10s linear infinite;
}

.technologies-section .box div:nth-child(5){
    top: 67%;
    left: 10%;
    animation: animate 6s linear infinite;
}

.technologies-section .box div:nth-child(6){
    top: 80%;
    left: 70%;
    animation: animate 12s linear infinite;
}

.technologies-section .box div:nth-child(7){
    top: 60%;
    left: 80%;
    animation: animate 15s linear infinite;
}

.technologies-section .box div:nth-child(8){
    top: 32%;
    left: 25%;
    animation: animate 16s linear infinite;
}

.technologies-section .box div:nth-child(9){
    top: 80%;
    left: 25%;
    animation: animate 9s linear infinite;
}

.technologies-section .box div:nth-child(10){
    top: 20%;
    left: 80%;
    animation: animate 5s linear infinite;
}

.technologies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.technologies-title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 1em;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.technologies-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #eb8816;
    margin-bottom: 3rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.legalclick-bold {
    color: #e67e22;
    font-weight: 900;
}

.technologies-scroll {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    padding: 2rem 0;
}

/* Blurry edges for scrolling cards */
.technologies-scroll::before,
.technologies-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.technologies-scroll::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0.8) 50%, rgba(248, 249, 250, 0) 100%);
}

.technologies-scroll::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0.8) 50%, rgba(248, 249, 250, 0) 100%);
}

.technologies-track {
    display: flex;
    animation: scroll-right 30s linear infinite;
    gap: 3rem;
    align-items: center;
}

.tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 12em;
    text-align: center;
    height: 12em;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.2);
}

.tech-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
}

.tech-card:hover .tech-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.tech-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0.5rem 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.tech-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    max-width: 200px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .technologies-title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .technologies-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .tech-card {
        min-width: 140px;
        padding: 0.8rem;
    }
    
    .tech-image {
        width: 60px;
        height: 60px;
    }
    
    .tech-title {
        font-size: 1rem;
    }
    
    .tech-description {
        font-size: 0.8rem;
        max-width: 150px;
    }
    
    .technologies-track {
        gap: 2rem;
    }
    
    .technologies-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .technologies-title {
        font-size: 1.5rem;
    }
    
    .technologies-subtitle {
        font-size: 0.9rem;
    }
    
    .tech-card {
        min-width: 120px;
        padding: 0.6rem;
    }
    
    .tech-image {
        width: 50px;
        height: 50px;
    }
    
    .tech-title {
        font-size: 0.9rem;
    }
    
    .tech-description {
        font-size: 0.7rem;
        max-width: 120px;
    }
    
    .technologies-track {
        gap: 1.5rem;
    }
}

/* Team Section Responsive */
@media (max-width: 768px) {
    .team-title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .team-cards {
        gap: 1.5rem;
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    
    .team-card {
        width: 250px;
        padding: 1.5rem;
    }
    
    .team-image-container {
        width: 120px;
        height: 120px;
    }
    
    .team-name {
        font-size: 1.3rem;
    }
    
    .team-role {
        font-size: 1rem;
    }
    
    .team-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .team-title {
        font-size: 1.8rem;
    }
    
    .team-cards {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .team-card {
        width: 220px;
        padding: 1.2rem;
    }
    
    .team-image-container {
        width: 100px;
        height: 100px;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-role {
        font-size: 0.9rem;
    }
    
    .team-description {
        font-size: 0.85rem;
    }
}