@font-face {
    font-family: "Swansea";
    src: url("fonts/Swansea-Regular.ttf");
}

@font-face {
    font-family: "Gilroy";
    src: url("fonts/Gilroy-Bold.ttf");
}


:root {
    --color-1: #0B0B0B;
    --color-2: #FBFBFB;
    --color-3: linear-gradient(90deg, rgba(145, 93, 0, 1) 2%, rgba(152, 103, 9, 1) 9%, rgba(172, 130, 36, 1) 19%, 
                                      rgba(205, 175, 79, 1) 33%, rgba(214, 187, 90, 1) 37%, rgba(227, 203, 94, 1) 45%, 
                                      rgba(241, 222, 99, 1) 57%, rgba(247, 229, 101, 1) 65%, rgba(238, 216, 89, 1) 71%, 
                                      rgba(215, 181, 60, 1) 83%, rgba(179, 126, 12, 1) 99%, rgba(176, 121, 8, 1) 100%);
    --color-4: #040404;
    --color-5: linear-gradient(90deg, rgba(145, 93, 0, 0.1) 2%, rgba(152, 103, 9, 0.1) 9%, rgba(172, 130, 36, 0.1) 19%, 
                                      rgba(205, 175, 79, 0.1) 33%, rgba(214, 187, 90, 0.1) 37%, rgba(227, 203, 94, 0.1) 45%, 
                                      rgba(241, 222, 99, 0.1) 57%, rgba(247, 229, 101, 0.1) 65%, rgba(238, 216, 89, 0.1) 71%, 
                                      rgba(215, 181, 60, 0.1) 83%, rgba(179, 126, 12, 0.1) 99%, rgba(176, 121, 8, 0.1) 100%);
    --font-1: "Swansea";
    --font-2: "Gilroy";
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    font-family: var(--font-1);
    color: var(--color-1);
    background-color: var(--color-2);
  }

  header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0px 4px 30px rgba(4, 4, 4, 0.5);
    z-index: 1000;
  }

  @keyframes fade_in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes move_right_and_fade_in {
    from {
      opacity: 0;
      transform: translateX(-20%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes move_up_and_fade_in {
    from {
      opacity: 0;
      transform: translateY(20%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .top-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-4);
    color: var(--color-2);
    font-size: 0.9em;
    border-bottom: solid 1px var(--color-2);
  }

  .top-bar-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 50px;
  }

  .contact-info {
    display: flex;
  }

  .contact-info span {
    margin-right: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .contact-info span * {
    margin: 0;
    font-family: var(--font-1);
    color: var(--color-2);
    text-decoration: none;
  }

  .contact-info span a:hover {
    color: var(--color-2);
  }
  
  .social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .social-icons img {
    width: 20px;
    height: 20px;
  }
  
  .navbarr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-4);
    color: var(--color-2);
  }

  .navbarr-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 80px;
    flex-wrap: wrap;
  }
  
  .logo {
    height: 60px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    padding: 0;
    margin: 0;
  }
  
  .nav-links a {
    color: var(--color-2);
    text-decoration: none;
    font-family: var(--font-1);
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 10px;
    transition: all 200ms ease-in-out;
  }

  .nav-links a:hover {
    color: var(--color-1);
    background-color: var(--color-2);
  }

  .menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }

  /* Submenu Styles */
  .has-submenu {
    position: relative;
  }

  .has-submenu-element {
    display: flex;
    flex-direction: row;
    gap: 5px;
    font-family: var(--font-1);
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 10px;
    transition: all 200ms ease-in-out;
  }

  .has-submenu:hover > a::before {
    transform: rotate(180deg);
  }
  
  .submenu {
    position: absolute;
    top: 70px;
    left: -20px;
    width: 300px;
    background-color: var(--color-4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 100;
  }
  
  .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .submenu li {
    list-style: none;
    margin-bottom: 10px;
  }
  
  .submenu li:last-child {
    margin-bottom: 0;
  }
  
  .submenu a {
    display: block;
    padding: 5px 10px;
    color: var(--color-2);
    border: solid 1px rgba(255,255,255,0.1);
    transition: background-color 0.3s, color 0.3s;
    border-radius: 10px;
  }
  
  .submenu a:hover {
    background-color: var(--color-2);
    color: var(--color-1);
  }
  
  .submenu a::after {
    display: none;
  }

  .menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--color-2);
    border-radius: 1000px;
    transition: all 0.3s ease;
  }

  .menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Side Navigation Menu */
  .side-nav {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background-color: var(--color-4);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 999;
    display: none; /* Hidden by default */
  }

  .side-nav.active {
    right: 0;
  }

  .side-nav ul {
    list-style: none;
    padding: 0 20px;
  }

  .side-nav > ul > li {
    padding: 15px 0px;
    border-bottom: 1px solid rgba(242, 242, 242, 0.5);
  }

  .side-nav ul li a {
    color: var(--color-2);
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    display: block;
  }

  .mobile-submenu {
    padding: 0 20px !important;
  }

  /* Mobile submenu */
  .side-nav .mobile-submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
  }
  
  .side-nav .mobile-submenu-toggle span {
    transition: transform 0.3s;
  }
  
  .side-nav .mobile-submenu-toggle.active span {
    transform: rotate(180deg);
  }
  
  .side-nav .mobile-submenu {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
  }
  
  .side-nav .mobile-submenu.active {
    display: block;
  }
  
  .side-nav .mobile-submenu li {
    margin-bottom: 10px;
  }
  
  .side-nav .mobile-submenu li a {
    font-size: 16px;
    padding: 8px 8px;
    border: solid 1px rgba(255,255,255,0.1);
    border-radius: 10px;
  }

  /* Overlay for mobile menu */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 998;
  }

  /* Hero section */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 133px;
    background-image: url("images/globe-background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    border-bottom: solid 3px var(--color-4);
  }

  .hero-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    padding: 60px 80px;
    align-items: center;
    gap: 70px;
    justify-content: space-between;
  }

  .hero-elements {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    width: 60%;
    max-width: 750px;
    height: 500px;
  }

  .hero-elements * {
    margin: 0 !important;
  }

  .hero-title h1 {
    font-family: var(--font-2);
    font-size: 60px;
    color: var(--color-1);
    animation-name: move_right_and_fade_in;
    animation-duration: 1s;
  }

  .hero-text p {
    font-family: var(--font-1);
    font-size: 27px;
    color: var(--color-1);
    line-height: 120%;
    animation-name: move_up_and_fade_in;
    animation-duration: 1s;
  }

  .hero-button {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
  }

  .hero-button a {
    padding: 20px 40px;
    box-sizing: border-box;
    background-color: var(--color-4);
    box-shadow: 0px 8px 30px rgba(4, 4, 4, 0.25);
    border-radius: 15px;
    color: var(--color-2);
    font-family: var(--font-2);
    font-size: 23px;
    text-decoration: none;
    transition: all 200ms ease-in-out;
    animation-name: fade_in;
    animation-duration: 1s;
  }

  .hero-button a:hover {
    background-color: rgb(8, 8, 8);
  }
  
  .image-grid {
    flex: 1 1 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .image-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 150px;
  }
  
  .hero-image {
    animation-name: fade_in;
    animation-duration: 1s;
  }

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("images/globe-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}

.about-container {
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  padding: 80px 80px;
  align-items: center;
  gap: 50px;
}

.section-title {
  text-align: center;
  font-size: 60px;
  font-family: var(--font-2);
  color: var(--color-1);
  margin: 0;
}

.carousel-container {
  width: 100%;
}

.splide__slide {
  height: 600px;
  position: relative;
  border-radius: 60px;
  overflow: hidden;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 80px 100px;
  color: var(--color-2);
  z-index: 2;
  background: var(--color-5);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 50px;
}

.slide-title {
  font-size: 45px;
  text-align: center;
  font-family: var(--font-2);
  margin: 0 0 16px 0;
}

.slide-text {
  text-align: center;
  font-size: 25px;
  padding: 0 80px;
  line-height: 1.6;
  margin: 0;
}

.splide__arrow {
  background: var(--color-2);
  width: 3em;
  height: 3em;
}

.splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover {
  background: var(--color-2);
}

.page-title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-size: 36px;
}

.references {
  background-color: var(--color-4);
  padding: 50px 0;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: linear !important;
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("images/globe-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}

.services-container {
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  padding: 80px 80px;
  align-items: start;
  gap: 50px;
}

.section-header h2 {
  font-size: 60px;
  font-family: var(--font-2);
  color: var(--color-1);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 25px;
  font-family: var(--font-1);
  color: var(--color-1);
  line-height: 1.5;
}

.service-card {
  background-color: var(--color-4);
  color: var(--color-2);
  border-radius: 20px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 200px;
  margin: 30px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
  width: 250px;
  margin-right: 20px;
}

.service-icon svg {
  width: 100%;
  height: auto;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-content h3 {
  font-size: 28px;
  font-family: var(--font-2);
  color: var(--color-2);
  margin-bottom: 10px;
}

.service-content p {
  font-size: 20px;
  line-height: 1.4;
  color: #bbb;
}

.background-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.05;
  pointer-events: none;
}

/* Service Page */
.service-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 133px;
  background-image: url("images/globe-background.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: auto;
}

.service-page-container {
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  padding: 50px 80px;
  align-items: center;
  gap: 50px;
}

.service-page-title {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 80px 80px;
  border-radius: 50px;
  background-image: url("images/about-image-3.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
  animation-name: fade_in;
  animation-duration: 1s;
}

.service-page-title-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-5);
}

.service-page-title h1 {
  font-size: 70px;
  font-family: var(--font-2);
  color: var(--color-2);
  margin: 0;
}

.service-page-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation-name: fade_in;
  animation-duration: 1s;
}

.service-page-text p {
  font-size: 25px;
  font-family: var(--font-1);
  color: var(--color-1);
  text-align: center;
  margin: 0;
  padding: 0 30px;
}

.service-page-elements {
  width: 100%;
  display: flex;
  justify-content: center;
}

.service-page-elm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  margin: 35px 70px;
  padding: 30px 40px;
  border: solid 5px var(--color-4);
  border-radius: 35px;
}

.service-page-elm h3 {
  margin: 0;
  font-size: 40px;
  font-family: var(--font-2);
  color: var(--color-1);
  text-align: center;
}

.service-page-elm p {
  margin: 0;
  font-size: 23px;
  font-family: var(--font-1);
  color: var(--color-1);
  text-align: center;
}
/* Service Page*/

/* Footer container */
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-4);
  color: var(--color-2);
  width: 100%;
}

/* Footer content wrapper */
.footer-content {
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 70px;
  padding: 50px 50px;
}

/* Quick access section */
.quick-access {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
    min-width: 250px;
    padding: 30px 30px;
    border: 1px solid var(--color-2);
    
}

.quick-access h2 {
    color: var(--color-2);
    font-family: var(--font-2);
    font-size: 30px;
}

.quick-access .rows {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding: 0;
}

.quick-access .column {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.quick-access a {
    color: var(--color-2);
    text-decoration: none;
    font-family: var(--font-1);
    font-size: 23px;
    padding: 5px 10px;
    border-radius: 10px;
    transition: all 200ms ease-in-out;
}

.quick-access a:hover {
    background-color: var(--color-2);
    color: var(--color-1);
}

/* Logo section */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

/* Contact section */
.contact {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 250px;
  padding: 30px 30px;
  gap: 10px;
  border: 1px solid var(--color-2);
}

.contact h2 {
  color: var(--color-2);
  font-family: var(--font-2);
  font-size: 30px;
}

.contact-info.vert {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-info.vert span {
  justify-content: start;
  color: var(--color-2);
  font-family: var(--font-1);
  font-size: 23px;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 10px;
}

.contacter-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon {
    margin-right: 15px;
    font-size: 18px;
}

.contacter-text {
    font-size: 16px;
}

/* Social media icons */

.social-icons.foot {
  justify-content: end;
}

.social-icons.foot img {
  width: 25px;
  height: 25px;
}

/* Copyright section */
.copyright {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 0;
  border-top: solid 1px var(--color-2);
  font-size: 14px;
  font-family: var(--font-1);
  color: var(--color-2);
  font-size: 18px;
}

  /* RESPONSIVE STYLES */

  @media (max-width: 1400px) {
    .logo-section {
      display: none;
    }
  }

  @media ((max-width: 1400px) and (min-width: 1100px)) or (max-width: 768px) {
    .hero-container {
      padding: 60px 30px;
      gap: 50px;
    }

    .hero-elements {
      gap: 20px;
    }

    .hero-title h1 {
      font-size: 50px;
    }

    .hero-text p {
      font-size: 25px;
    }

    .hero-button a {
      font-size: 20px;
      padding: 15px 25px;
    }

    .hero-image img {
      width: 500px;
      height: auto;
    }

    .about-container {
      padding: 60px 30px;
    }

    .about-container .section-title {
      font-size: 50px;
    }

    .slide-title {
      font-size: 40px;
    }

    .slide-content {
      padding: 80px 70px;
    }

    .services-container {
      padding: 80px 30px;
    }

    .services-container .section-header h2  {
      font-size: 50px;
    }
  }

  @media (max-width: 1100px) {
    .top-bar {
      display: none;
    }

    .hero-container {
      flex-direction: column;
    }

    .hero-elements {
      max-width: 1000px;
      width: 100%;
    }

    .hero-title {
      text-align: center;
    }

    .hero-text {
      text-align: center;
    }

    .hero-button {
      align-items: center;
    }

    .slide-content {
      padding: 50px 40px;
      gap: 40px;
      justify-content: center;
    }

    .slide-title {
      font-size: 35px;
      margin-bottom: 0;
    }

    .slide-text {
      font-size: 23px;
      padding: 0 40px;
    }

    .services-container .section-header h2  {
      text-align: center;
    }

    .services-container .section-header p {
      text-align: center;
    }

    .footer-content {
      flex-direction: column;
    }
  }

  @media (max-width: 992px) {
    .nav-links {
      display: none;
    }
    
    .menu-btn {
      display: flex;
    }
    
    .side-nav {
      display: block;
    }

    .service-page-title {
      align-items: center;
    }

    .service-page-title h1 {
      font-size: 45px;
    }

    .service-page-text p {
      font-size: 20px;
    }

  }

  @media (max-width: 768px) {
    .hero {
      margin-top: 30px;
    }

    .navbarr-container {
      padding: 15px 30px;
    }

    .image-grid {
      flex: 1;
      margin-left: 40px;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
    }
  
    .hero-text h1 {
      font-size: 2.5rem;
    }

    .hero-image img {
      width: 400px;
      height: auto;
    }

    .about-container {
      padding: 60px 20px;
    }

    .about-container .section-title {
      font-size: 35px;
    }

    .splide__track {
      padding: 0 !important;
    }

    .slide-content {
      padding: 20px;
    }

    .slide-title {
      font-size: 30px;
    }

    .slide-text {
      padding: 0;
    }

    .services-container .section-header h2  {
      font-size: 35px;
    }

    .service-card {
      margin: 30px 0;
      padding: 50px 20px;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-icon {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .service-content {
      gap: 10px;
    }

    .service-content h3 {
      text-align: center;
    }

    .service-content p {
      text-align: center;
    }
    
    .service-page-container {
      padding: 50px 20px;
    }

    .service-page-text p {
      padding: 0;
    }
  }
  
  @media (max-width: 600px) {
    .top-bar {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .nav-links {
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }
  
    .hero {
      padding: 40px 20px;
    }
  
    .image-grid {
      grid-template-columns: 1fr;
    }
  
    .image-grid img {
      height: 200px;
    }

    .footer-content {
      padding: 30px 20px;
      gap: 30px;
    }

    .quick-access {
      padding: 30px 20px;
    }

    .contact {
      padding: 30px 20px;
    }

    .service-page-title {
      background-size: cover;
    }
  }

  @media  (max-width: 480px) {

    .hero-container {
      padding: 40px 0;
    }

    .hero-title h1 {
      font-size: 35px;
    }

    .hero-text p {
      font-size: 23px;
    }

    .hero-button a {
      font-size: 18px;
      padding: 10px 20px;
    }

    .hero-image img {
      width: 300px;
      height: auto;
    }

    .slide-content {
      gap: 10px;
    }

    .slide-text {
      font-size: 20px;
    }

    .footer-content {
      padding: 30px 10px;
    }

    .quick-access {
      padding: 30px 10px;
    }

    .contact {
      padding: 30px 10px;
    }

    .quick-access .rows {
      gap: 10px;
    }

    .quick-access a {
      font-size: 20px;
    }

    .contact-info span {
      margin-right: 0;
    }

    .contact-info.vert span {
      font-size: 20px;
    }

    .copyright {
      font-size: 15px;
    }

    .service-page-elm {
      padding: 30px 10px;
    }
  }
  