@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --theme-switcher-bg: rgba(155, 155, 155, 0.2);
  --theme-switcher-toggle-bg: #ffd371;
  --theme-switcher-toggle-pos: 0.2rem;
  --theme-switcher-toggle-boxshadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
  --theme-switcher-active-icon-color: #997f44;
  --theme-switcher-icon-color: #b1b0b5;

  --h1-text-mobile-size: 2.5rem;
  --h2-text-mobile-size: 2rem;
  --h3-text-mobile-size: 1.8rem;

  --bg-color: #ededed;
  --text-color: #002e6e;
  --text-hover-color: #023d8f;
  --h2-text-size: 3rem;
  --h3-text-size: 2.5rem;
  --main-font: "Nunito Sans", sans-serif;
  --max-width: 90%;

  --button-color: #bab8b8;

  --hero-ellipse-gradient: linear-gradient(to right, #ededed, #d8e2f0, #7ab2ff);

  --vision-ring-gradient: linear-gradient(to right, #0066f5, #ededed);

  --our-technologies-button-shadow: 0px 2px 1px 1px rgba(0, 0, 0, 0.3);

  --map-default-color: #bab8b8;
  --map-selected-color: #0066f5;

  --history-timeline-point-color: #0055f5;
  --timeline-gradient-start: #0055f5;
  --timeline-gradient-end: #002e6e;

  --services-frame-svg-gradient-start: #0066f5;
  --services-frame-svg-gradient-end: #ededed;
  --services-mobile-frame-gradient-left-top: linear-gradient(
    to bottom right,
    #0066f5,
    #ededed
  );
  --services-mobile-frame-gradient-right-top: linear-gradient(
    to bottom left,
    #0066f5,
    #ededed
  );
  --services-mobile-frame-gradient-left-bottom: linear-gradient(
    to top right,
    #0066f5,
    #ededed
  );
  --services-mobile-frame-gradient-right-bottom: linear-gradient(
    to top left,
    #0066f5,
    #ededed
  );

  --competencies-card-image-filter-color: rgba(0, 102, 245, 0.7);
  --competencies-card-content-color: rgba(186, 184, 184, 0.5);

  --default-transition: color 0.3s ease-in-out,
    background-color 0.3s ease-in-out, border-color 0.3s ease-in-out,
    fill 0.3s ease-in-out, transform 0.3s ease-in-out;
}

:root[data-theme="dark"] {
  --theme-switcher-bg: #00204d;
  --theme-switcher-toggle-bg: #0066f5;
  --theme-switcher-toggle-pos: 2rem;
  --theme-switcher-toggle-boxshadow: 0px 0px 2px 1px rgba(255, 255, 255, 0.7);
  --theme-switcher-icon-color: rgba(255, 255, 255, 1);

  --bg-color: #000f24;
  --text-color: #ffffff;
  --text-hover-color: #dddcdc;
  --text-second-color: #7d7d7d;
  --main-font: "Nunito Sans", sans-serif;
  --max-width: 90%;

  --button-color: #0066f5;

  --hero-ellipse-gradient: linear-gradient(
    to right,
    #000f24,
    #001430,
    #00204d,
    #002f70,
    #0066f5
  );

  --vision-ring-gradient: linear-gradient(to right, #0066f5, #002f70);

  --map-default-color: #002e6e;
  --map-selected-color: #0059d4;

  --history-timeline-point-color: #ffffff;
  --timeline-gradient-start: #0055f5;
  --timeline-gradient-end: #d5d5d6;

  --services-frame-svg-gradient-start: #0066f5;
  --services-frame-svg-gradient-end: #000f24;
  --services-mobile-frame-gradient-left-top: linear-gradient(
    to bottom right,
    #0066f5,
    #000f24
  );
  --services-mobile-frame-gradient-right-top: linear-gradient(
    to bottom left,
    #0066f5,
    #000f24
  );
  --services-mobile-frame-gradient-left-bottom: linear-gradient(
    to top right,
    #0066f5,
    #000f24
  );
  --services-mobile-frame-gradient-right-bottom: linear-gradient(
    to top left,
    #0066f5,
    #000f24
  );

  --competencies-card-image-filter-color: rgba(0, 102, 245, 0.7);
  --competencies-card-content-color: linear-gradient(
    to bottom,
    #0066f5,
    rgba(0, 102, 245, 0.4),
    rgba(0, 102, 245, 0.1)
  );

  --our-technologies-button-shadow: 0px 2px 1px 1px rgba(0, 102, 245, 0.8);
}

body {
  background-color: var(--bg-color) !important;
  color: var(--text-color);
  font-family: var(--main-font);
  transition: var(--default-transition);
  overflow-x: hidden !important;
}

header {
  z-index: 100;
  background-color: var(--bg-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25) !important;
  padding: 5px 10px;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--default-transition);
}

header nav .header-wrapper {
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.header .logo {
  cursor: pointer;
  display: flex;
}

.logo svg {
  fill: var(--text-color) !important;
}

#navbarNav div {
  gap: 5rem;
}

.navbar-toggler {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

.navbar-toggler i {
  color: var(--text-color);
}

.navbar-toggler #icon-xmark {
  display: none;
}

.navbar-toggler[aria-expanded="true"] #icon-hamb {
  display: none;
}

.navbar-toggler[aria-expanded="true"] #icon-xmark {
  display: block;
}

.header #navbarNav div a {
  font-size: 1.2rem;
  color: var(--text-color);
  font-family: var(--main-font);
  text-decoration: none;
  font-weight: 400;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

.header #navbarNav div a:hover {
  opacity: 1;
}

.header .theme-switcher {
  background-color: var(--theme-switcher-bg);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.theme-switcher .icon-sun-container,
.theme-switcher .icon-moon-container {
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
}

.header .theme-switcher::before {
  content: "";
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50px;
  background-color: var(--theme-switcher-toggle-bg);
  z-index: 0;
  left: 0;
  transform: translateX(var(--theme-switcher-toggle-pos));
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
  transition: var(--default-transition);
}

.header .theme-switcher svg {
  color: var(--theme-switcher-active-icon-color);
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
  width: 1.1rem;
  height: 1.1rem;
}

.header .theme-switcher #icon-moon {
  color: var(--theme-switcher-icon-color);
}

.header .theme-switcher svg:hover {
  opacity: 1;
}

section {
  max-width: var(--max-width) !important;
}

/* HERO STYLE */
.hero {
  position: relative;
  width: var(--max-width);
  z-index: -1;
  height: 95vh;
  display: flex;
  align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8rem;
}

.hero .ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  height: 100vh;
  background: var(--hero-ellipse-gradient);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
  gap: 2rem;
  color: var(--text-color);
  margin: 0 auto;
  top: -15%;
}

.hero-left {
  flex: 1 1 70%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-left .hero-label svg {
  fill: var(--text-color) !important;
}

.hero-title {
  display: flex;
  flex-direction: column;
}

.hero-title h1,
.second-line h1 {
  margin: 0;
  font-size: 6rem;
  font-weight: 600;
  font-family: var(--main-font);
  line-height: 1;
}

.second-line {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.second-line svg {
  width: 5rem;
  height: auto;
  stroke: var(--text-color) !important;
  transform: rotate(135deg);
}

.hero-right {
  flex: 1 1 30%;
}
.hero-right p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--main-font);
}

/* ABOUT US STYLE */

.introduction-section {
  max-width: var(--max-width);
  margin: 12rem auto 0 auto;
}

.introduction-section h2 {
  color: var(--text-color);
  font-family: var(--main-font);
  font-weight: 700;
  font-size: var(--h2-text-size);
  margin-bottom: 2rem;
}

.introduction-section .container-fluid p {
  color: var(--text-color);
  font-family: var(--main-font);
  text-align: justify;
  margin: 1.2rem 2rem;
}

/* VISON AND MISSION STYLE */

.vision-mission-section {
  margin: 6rem auto 0 auto;
  display: flex;
  flex-direction: column;
  max-width: var(--max-width);
}

.vision-mission-section h2 {
  color: var(--text-color);
  font-family: var(--main-font);
  font-weight: 700;
  font-size: var(--h2-text-size);
  margin-bottom: 5rem;
}

.vision-mission-section .container-fluid {
  margin: 0 2rem;
}
.vision-mission-section .info-panels .info-panel {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2rem;
}

.vision-mission-section .info-panels .info-panel .info-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.vision-mission-section .info-panels .info-panel .info-icon-container .ellipse {
  width: 5rem;
  height: 5rem;
  position: relative;
  border-radius: 50%;
  background: var(--vision-ring-gradient);
  padding: 3px;
}

.vision-mission-section
  .info-panels
  .info-panel
  .info-icon-container
  .ellipse::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--bg-color);
}

.vision-mission-section .info-panels .info-panel .info-icon-container svg {
  position: absolute;
  transform: scale(0.8, 0.8);
}

.vision-mission-section .info-panels .info-panel .info-icon-container svg path {
  stroke: var(--text-color);
}

.vision-mission-section .info-panels .info-panel h3 {
  color: var(--text-color);
  font-family: var(--main-font);
  font-weight: 700;
  font-size: var(--h3-text-size);
}

.vision-mission-section .info-panels .info-panel .info-text {
  color: var(--text-color);
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 1.2rem;
  padding-inline: 0;
  max-width: 80%;
  text-align: justify;
}

/* GLOBAL MAP STYLE */
.global-map-section {
  margin: 6rem auto 0 auto;
  display: flex;
  flex-direction: column;
  max-width: var(--max-width);
}
.global-map-section h2 {
  font-size: var(--h2-text-size);
  color: var(--text-color);
  margin-bottom: 5rem;
}

.global-map-section svg {
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.global-map-section svg path {
  fill: var(--map-default-color);
}

.global-map-section svg path[id] {
  fill: var(--map-selected-color);
}

.global-map-section svg #selected-map-label,
#selected-map-line {
  fill: var(--text-color);
}

/* HISTORY STYLE */
.history-section {
  margin: 6rem auto 0 auto;
  display: flex;
  flex-direction: column;
  max-width: var(--max-width);
}

.history-section h2 {
  font-size: var(--h2-text-size);
  color: var(--text-color);
  margin-bottom: 5rem;
}

/* Container that scrolls only on mobile */
.timeline-wrapper {
  overflow-x: hidden;
  overflow-y: hidden;
  width: 100%;
  max-width: 100%;
  padding-bottom: 5rem;
}

/* The horizontal line of the timeline */
.timeline-wrapper .timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 350px;
  flex-wrap: wrap;
  width: 85%;
  max-width: 85%;
  margin: 0 auto;
}

.timeline-wrapper .timeline .timeline-arrow {
  top: 50%;
  left: 50%;
  transform: translate(-250%, -50%);
  width: 110%;
  position: absolute;
  opacity: 0;
  transition: all 0.4s ease-out;
}

.history-section .timeline-wrapper .timeline .timeline-arrow.visible {
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
}

.history-section .timeline-wrapper .timeline .line {
  height: 3px;
  background: linear-gradient(
    to right,
    var(--timeline-gradient-start),
    var(--timeline-gradient-end)
  );
}

.timeline-wrapper .timeline .arrow {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
  fill: var(--timeline-gradient-end);
}

.timeline-wrapper .timeline .timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0%;
  z-index: 1;
}

.timeline-wrapper .timeline .timeline-item .timeline-dot {
  width: 14px;
  height: 14px;
  background-color: var(--history-timeline-point-color);
  border-radius: 50%;
  z-index: 2;
}

.timeline-item.top .timeline-label {
  position: absolute;
  bottom: 0%;
  text-align: start;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 2rem;
  max-width: 200px;
  left: 45%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-item.bottom h3 {
  margin-bottom: 1.5rem;
}
.timeline-item.top h3 {
  margin-top: 1.5rem;
}

.timeline-item.bottom .timeline-label {
  position: absolute;
  top: 0%;
  margin-top: 2rem;
  text-align: start;
  text-align: start;
  display: flex;
  flex-direction: column;
  width: 100%;
  left: 45%;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-label h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.3rem, 40vw, 2.5rem) !important;
  line-height: 0.8;
  color: var(--text-color);
  font-family: var(--main-font);
  line-height: 1.1;
}

.timeline-label p {
  margin: 0.2rem 0;
  font-size: clamp(1.1rem, 40vw, 1.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-color);
  font-family: var(--main-font);
}

/* SERVICES STYLE */
.services-section {
  margin: 6rem auto 0 auto;
  display: flex;
  flex-direction: column;
  max-width: var(--max-width);
}

.services-section h2 {
  font-size: var(--h2-text-size);
  color: var(--text-color);
  margin-bottom: 5rem;
}

.services-section .content-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  margin: 0 auto;
  position: relative;
  gap: 2rem;
}

.services-section .content-container .slide-in-left {
  animation: slide-in-left both;
  animation-timeline: view(85% 2%);
}

.services-section .content-container .slide-in-right {
  animation: slide-in-right both;
  animation-timeline: view(85% 2%);
}

.services-section .content-container .left-top-panel,
.right-top-panel,
.left-bottom-panel,
.right-bottom-panel {
  position: relative;
}

.services-section .content-container .mobile-frame-wrapper.hidden {
  display: none;
}

.services-section .content-container .left-top-panel .mobile-frame-wrapper {
  padding: 3px;
  border-radius: 33px;
  background: var(--services-mobile-frame-gradient-left-top);
  height: 250px;
  width: 300px;
}
.services-section .content-container .right-top-panel .mobile-frame-wrapper {
  padding: 3px;
  border-radius: 33px;
  background: var(--services-mobile-frame-gradient-right-top);
  height: 250px;
  width: 300px;
}
.services-section .content-container .left-bottom-panel .mobile-frame-wrapper {
  padding: 3px;
  border-radius: 33px;
  background: var(--services-mobile-frame-gradient-left-bottom);
  height: 250px;
  width: 300px;
}
.services-section .content-container .right-bottom-panel .mobile-frame-wrapper {
  padding: 3px;
  border-radius: 33px;
  background: var(--services-mobile-frame-gradient-right-bottom);
  height: 250px;
  width: 300px;
}

.services-section .content-container .mobile-frame {
  background: var(--bg-color);
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.services-section .content-container .right-top-panel svg {
  transform: scaleX(-1);
}

.services-section .content-container .left-bottom-panel svg {
  transform: scaleY(-1);
}

.services-section .content-container .right-bottom-panel svg {
  transform: scale(-1, -1);
}

.services-section .content-container .panel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  align-items: center;
}

.services-section .content-container .middle-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.services-section .content-container .auto-show {
  animation: autoShowAnimation both;
  animation-timeline: view(20% 10%);
}

.services-section .content-container .middle-logo svg {
  fill: var(--text-color);
  width: 4rem;
  height: 4rem;
}

.services-section .content-container h4 {
  color: var(--text-color);
  font-family: var(--main-font);
  font-size: 2rem;
  font-weight: 700;
}

.services-section .content-container p {
  color: var(--text-color);
  margin-top: 2rem;
  max-width: 60%;
  text-align: center;
}

/* CORE COMPETENCIES STYLE*/
.core-competencies-section {
  margin: 6rem auto 0 auto;
  display: flex;
  flex-direction: column;
  max-width: var(--max-width);
}

.core-competencies-section h2 {
  font-size: var(--h2-text-size);
  color: var(--text-color);
  margin-bottom: 5rem;
}

.core-competencies-section .content-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.core-competencies-section .content-container .competency-card {
  display: flex;
  flex-direction: column;
  background: var(--competencies-card-content-color);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  gap: 0;
}

.core-competencies-section .content-container .competency-card:hover {
  transform: translateY(-5px);
}

.core-competencies-section .content-container .competency-card .image-wrapper {
  position: relative;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.core-competencies-section
  .content-container
  .competency-card
  .image-wrapper
  img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
}

.core-competencies-section
  .content-container
  .competency-card
  .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 102, 245, 0.4);
  z-index: 1;
}

.core-competencies-section .content-container .competency-card .card-content {
  padding: 1rem;
}

.core-competencies-section
  .content-container
  .competency-card
  .card-content
  h3 {
  font-family: var(--main-font);
  color: var(--text-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.core-competencies-section
  .content-container
  .competency-card
  .card-content
  ul {
  list-style: disc;
  padding-left: 1.2rem;
  line-height: 1.5;
  font-family: var(--main-font);
  color: var(--text-color);
  z-index: -1;
}

/* OUR TECHNOLOGIES STYLE */
.our-technologies-section {
  margin: 6rem auto 0 auto;
  display: flex;
  flex-direction: column;
  max-width: var(--max-width);
}

.our-technologies-section h2 {
  font-size: var(--h2-text-size);
  color: var(--text-color);
  margin-bottom: 5rem;
}
.our-technologies-section .content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 2rem;
}

.our-technologies-section .content-container .left-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.our-technologies-section .content-container .right-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.our-technologies-section .content-container button {
  background-color: var(--button-color);
  border: none;
  border-radius: 10px;
  padding: 8px;
  text-align: start;
  cursor: pointer;
  width: 100%;
  transition: box-shadow ease-in-out 0.2s;
  position: relative;
}

.our-technologies-section
  .content-container
  button[aria-expanded="true"]
  .collapsible-button-chevron {
  transform: rotate(180deg);
}

.our-technologies-section
  .content-container
  button
  .collapsible-button-chevron {
  position: absolute;
  right: 10px;
  fill: var(--text-color);
  top: 10px;
  transition: transform 0.3s ease-in-out;
}

.our-technologies-section .content-container button:hover {
  box-shadow: var(--our-technologies-button-shadow);
  -webkit-box-shadow: var(--our-technologies-button-shadow);
  -moz-box-shadow: var(--our-technologies-button-shadow);
}

.our-technologies-section .content-container button label {
  color: var(--text-color);
  font-weight: 700;
  font-family: var(--main-font);
  font-size: 1.2rem;
}
.our-technologies-section .content-container button p {
  margin-bottom: 0;
  color: var(--text-color);
  font-family: var(--main-font);
}
/* FOOTER STYLE */

footer {
  border-top: 2px solid #d5d5d5;
  margin: 6rem auto 2rem auto;
  max-width: var(--max-width);
  color: var(--text-color);
}

footer h2 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: var(--h2-text-size);
  margin-top: 4rem;
  color: var(--text-color);
}

footer p {
  opacity: 0.8;
}

footer .content-container .content-left,
footer .content-container .content-right {
  gap: 1rem;
  color: var(--text-second-color) !important;
  margin-top: 3rem;
}

footer .content-container .content-right a {
  color: var(--text-second-color);
  cursor: pointer;
  transition: color ease-in-out 0.3s;
  opacity: 0.8;
  text-decoration: none;
}

footer .content-container .content-right a:hover {
  opacity: 1;
  text-decoration: underline;
}

footer .social-section {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

footer .social-section svg {
  width: 2rem;
  height: 2rem;
}

/* ANIMATIONS */
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.3);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50%) scale(0.3);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes autoShowAnimation {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* MOBILE STLYE*/
@media (max-width: 768px) {
  header nav .header-wrapper {
    max-width: initial;
  }

  .header .theme-switcher {
    position: absolute;
    left: 70%;
    transform: translateX(-70%);
    top: 14px;
    margin-top: auto;
  }

  #navbarNav div {
    gap: 2rem;
    padding-top: 2rem;
  }

  h1 {
    font-size: var(--h1-text-mobile-size) !important;
  }

  h2 {
    font-size: var(--h2-text-mobile-size) !important;
    margin-bottom: 2.5rem !important;
  }

  section,
  footer {
    width: var(--max-width) !important;
  }

  .hero {
    align-items: center;
    padding: 5rem 0;
    height: fit-content !important;
    margin-top: 0 !important;
  }
  .hero .ellipse {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1/1;
    height: 85%;
    background: var(--hero-ellipse-gradient);
    border-radius: 50%;
  }

  .hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
    gap: 3rem;
    color: var(--text-color);
    margin: 13rem 0 0 0;
  }

  .hero-left {
    width: 100%;
    white-space: normal;
    align-items: flex-start;
  }

  .hero-title {
    display: flex;
    flex-direction: column;
  }

  .second-line {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .second-line svg {
    width: 2.3rem;
    height: auto;
  }

  .hero-right {
    display: none;
  }
  .hero-right p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--main-font);
    max-width: 70%;
  }

  .introduction-section {
    max-width: var(--max-width);
    margin: 5rem auto 0 auto;
  }

  .vision-mission-section .container-fluid {
    margin: 0;
  }

  .introduction-section .container-fluid p {
    margin: 0;
  }

  .vision-mission-section {
    margin: 3rem auto 0 auto;
  }

  .vision-mission-section .info-panels {
    flex-direction: column !important;
  }
  .vision-mission-section .info-panels .info-panel {
    gap: 1rem;
  }

  .vision-mission-section .info-panels .info-panel .info-text {
    font-size: initial;
  }

  .vision-mission-section
    .info-panels
    .info-panel
    .info-icon-container
    .ellipse {
    width: 2.5rem;
    height: 2.5rem;
  }
  .vision-mission-section .info-panels .info-panel .info-icon-container svg {
    transform: scale(0.4, 0.4);
  }

  .vision-mission-section .info-panels .info-panel h3 {
    font-size: var(--h3-text-mobile-size);
  }

  .global-map-section {
    margin: 3rem auto 0 auto;
  }

  .global-map-section svg {
    width: 100%;
    height: auto;
  }

  .history-section {
    margin: 3rem auto 0 auto;
  }

  .history-section .timeline-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: tocuh;
    /* touch-action: pan-x; */
    touch-action: auto;
    scroll-snap-type: x mandatory;
    pointer-events: auto;
  }

  .history-section .timeline-wrapper .timeline {
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    padding: 0 1rem;
  }

  .history-section .timeline-wrapper .timeline .timeline-arrow {
    width: 100%;
    transform: translateY(-50%);
    left: 0;
  }

  .history-section .timeline-wrapper .timeline .timeline-item {
    min-width: 200px;
    flex: 0 0 auto;
  }

  .services-section {
    margin: 3rem auto 0 auto;
  }

  .services-section .content-container {
    grid-template-columns: initial;
    grid-template-rows: initial;
  }

  .services-section .content-container h4 {
    font-size: 1.7rem;
  }

  .services-section .content-container p {
    margin-top: 0.5rem;
  }

  .services-section .content-container .mobile-frame-wrapper {
    display: block !important;
    padding: 1rem;
  }

  .services-section .content-container svg {
    display: none;
  }

  .core-competencies-section {
    margin: 3rem auto 0 auto;
  }

  .our-technologies-section .content-container {
    flex-direction: column;
  }

  footer {
    margin: 3rem auto 0 auto;
  }

  footer h2 {
    margin-top: 2rem;
  }

  footer .content-container .content-left,
  footer .content-container .content-right {
    margin-top: 0;
  }
}
