* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-weight: 500;
  font-family: 'Avenir';
}
.iframe-height {
  width: 100%;
  height: 100vh;
  border: none;
}

section {
  width: 100%;
  padding: 9px 3%;
  display: table;
  margin: 0;
  max-width: none;
  height: 70vh;
  background-color: #373b44;
}
.outer-container-section {
  padding: 0 0% !important;
  background-color: #fff;
}
.content {
  display: table-cell;
  vertical-align: middle;
}

a {
  font-weight: 700;
  color: #373b44;
  position: relative;
}

h1 {
  font-size: 3em;
  display: block;
  color: white;
  font-weight: 500;
}

a:hover {
  opacity: 0.8;
}

a:active {
  top: 1px;
}

.intro {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.intro video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro h1 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 3.5rem;
  color: #e0ffff;
  mix-blend-mode: hard-light;
  font-family: Avenir;
  color: white !important;
  font-weight: bold;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.nav-item {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.13px;
  text-decoration: none;
  margin-left: 2.5rem;
  transition: all 0.5s ease;
}

.nav-item:hover {
  color: rgba(168, 239, 255, 0.9);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  width: 0;
  height: 0.15rem;
  transform: translateX(-50%);
  background-color: rgba(168, 239, 255, 0.9);
  transition: all 0.5s ease;
}

.nav-item:hover:after {
  width: 100%;
}

#check {
  display: none;
}

.vw-2 {
  width: 16.66%;
}

.vw-5 {
  width: 41.66%;
}

.vw-4 {
  width: 33.33%;
  margin: 2% auto;
}

.vw-6 {
  width: 50%;
  margin: 2% auto;
}

.vw-8 {
  width: 66.66%;
  margin: 2% auto;
}

.vectors {
  margin-top: 8%;
  margin-left: 10%;
  margin-right: 10%;
  font-size: clamp(20px, 2.5vw, 40px);
  text-align: center;
  overflow: visible;
}

.avenir-next {
  font-family: 'Avenir Medium';
  font-size: clamp(25px, 3vw, 45px);
  /* Responsive font size */
}

.vector-text {
  text-align: center;
  font-size: 15px;
}

.vectors table td {
  text-align: center;
  width: 90vw;
}

.vector-img {
  font-size: clamp(25px, 2vw, 45px);
}

.demographic-vector-content {
  width: 100%;
  padding: 0 7%;
  display: table;
  margin: 0;
  max-width: none;
  background-color: #373b44;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: white;
  background-color: black;
}

.center-align {
  text-align: center;
}

.demographic-vector-text {
  margin: 3em auto;
  font-size: clamp(2em, 2vw, 2em);
  display: flex;
}

/* =============================== */
/* == Accordion starts here ======== */
/* =============================== */

.accordion {
  width: 100%;
  margin: 20px auto;
  overflow: hidden;
  font-family: Avenir;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  color: #fff;
  padding: 2% 7%;
  display: flex;
  font-weight: bold;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 2.2em;
  position: relative;
}

.accordion-content {
  display: none;
  padding: 2% 7%;
  color: #fff;
  font-size: 1.2em;
  transition: max-height 1s ease, padding 1s ease;
}

.accordion-content.open {
  display: block;
}

.accordion-header .arrow {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion-header .arrow::before {
  content: '';
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.accordion-header.active .arrow::before {
  transform: rotate(-135deg);
}

.accordion-item:nth-child(1) {
  background-color: #d7104a;
  color: white;
}

.accordion-item:nth-child(2) {
  background-color: #9b0031;
  color: white;
}

.accordion-item:nth-child(3) {
  background-color: #5d1220;
  color: white;
}

.accordion-item:nth-child(1) .active .arrow {
  background-color: white;
}

.accordion-item:nth-child(2) .active .arrow {
  background-color: white;
}

.accordion-item:nth-child(3) .active .arrow {
  background-color: white;
}

.accordion-item:nth-child(1) .active .arrow::before {
  border-color: #d7104a;
  background-color: white;
}

.accordion-item:nth-child(2) .active .arrow::before {
  border-color: #9b0031;
  background-color: white;
}

.accordion-item:nth-child(3) .active .arrow::before {
  border-color: #5d1220;
  background-color: white;
}

.team-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5%;
}

.row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.team-table .card {
  display: flex;
  width: 33.33%;
  margin: 0px 10px;
}

.team-table .card img {
  width: 8vw;
  height: 15vh;
  margin-right: 5%;
  border-radius: 10%;
}

.team-table .card .content {
  flex: 1;
  /* Allows the content to fill the remaining space */
}

.team-table .card h3 {
  font-size: 18px;
  margin: 0px;
  color: #ffffff;
}

.team-table .card h4 {
  font-size: 16px;
  margin: 5px 0px 0px 0px;
  font-weight: bold;
}

.team-table .card p {
  font-size: 14px;
  line-height: 1.5;
}

/* #d7104a */
/* #9b0031 */
/* #5d1220 */

/* =============================== */
/* == Accordion ends here ======== */
/* =============================== */

/* Keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

/* Styling */
.slider {
  background: white;
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: absolute;
  width: 73vw;
  margin-top: 5vh;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  content: '';
  position: fixed;
  width: 100vw;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slide {
  height: 100px;
  width: 250px;
  margin-left: 2em;
}

.sliding-text-heading {
  font-weight: bold;
  text-align: center;
  margin-top: 10vh;
}

.slide img {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.explore-btn {
  background: none;
  color: white;
  border: 1px solid white;
  font-size: 1em;
  padding: 15px 25px 15px 25px;
  border-radius: 2em;
  transition: 0.5s;
}

.explore-btn:hover {
  background-color: white;
  color: #9b0031;
}

.fadein {
  opacity: 0;
  transition: all 2s;
  transform: translate(0, 100px);
}

.fadein.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.highcharts-title {
  font-family: Avenir;
}

div.companies-first-row {
  margin: 0 auto;
}

.companies-first-row img {
  padding-left: 2vw;
}

/* Dynamic Geospatial Services for Modern Challenges Section */
.services-content {
  display: flex;
  justify-content: space-between;
}

.services-content-title {
  text-align: left;
  font-size: 2vw;
  margin-left: 139px;
  margin-top: 368px;
}

.services-content-paragraph {
  width: 100%;
  font-family: Avenir;
  font-size: 1.6rem;
  margin-top: 388px;
}

/* Our Services Section */
.rounded-box {
  position: relative;
  padding: 0px 7px 56px 7px;
  border-radius: 64px;
  background-color: black;
  width: 78%;
  margin: 134px auto;
}

.about-services h1 {
  font-size: 50px;
  font-weight: bold;
  text-align: left;
  color: white;
  margin-bottom: 20px;
  padding-left: 134px;
}

.about-services-2 h1 {
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  color: white;
  line-height: 1.6;
  padding-left: 28vw;
}

.services-img {
  width: 47%;
  height: auto;
  border-radius: 31px;
  margin-top: 41px;
  margin-left: 725px;
}

.service-buttons {
  position: absolute;
  top: 35%;
  left: 0%;
  transform: translateY(-46%);
  display: flex;
  flex-direction: column;
  gap: -1px;
}

.service-button {
  padding: 9px 30px;
  /* Increased the horizontal padding (left and right) */
  background-color: black;
  color: white;
  border: 2px solid white;
  border-radius: 23px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  margin-left: 162px;
  margin-top: 11px;
  transition: background-color 0.3s, border 0.3s;
}

.service-button:hover {
  background-color: rgba(4, 83, 50, 0.7);
  border: 2px solid white;
}

body,
html {
  overflow-x: hidden;
}

/* Media Query for Laptop (1440px) */
@media screen and (min-width: 1440px) and (max-width: 1920px) {
  .rounded-box {
    width: -37%;
    max-width: 1440px;
    margin: 289px auto;
    padding: 20px 15px;
    height: 724px;
    overflow-y: auto;
  }

  .services-content-paragraph {
    flex: 1;
    text-align: left;
    font-size: 11px;
    margin-top: 377px;
    margin-right: 98px;
  }

  .about-services h1 {
    font-size: 3.2em;
    padding-left: 58px;
  }

  .about-services-2 h1 {
    font-size: 1.2em;

    margin: 2px -274px;
    margin-right: 20px;
    margin-top: 30px;
  }

  .services-img {
    width: 45%;
    height: auto;
    margin-top: 15px;
    margin: 0px;
    padding: -1px;
    margin-top: 29px;
    margin-left: 393px;
  }

  .service-buttons {
    flex-direction: column;
    gap: -6px;
    margin: -28px;
    left: -52px;
    top: 408px;
  }

  .service-button {
    width: 48%;
    /* Two buttons per row */
  }

  #dynamic-content {
    font-size: 1.1em;
    /* Slightly larger font */
    text-align: center;
  }

  .Geospatial_section_bottom {
    width: 47% !important;
    font-family: Avenir;
    font-size: 1.5em !important;
    color: white;
    position: relative;
    bottom: 6vw;
    left: 43vw !important;
  }

  .Geospatial_span_bottom {
    font-size: 3rem;
    color: white;
    position: relative;
    top: 2vw;
    left: 4vw !important;
  }

  .information-section-one {
    padding: 0% 16% 0% 0%;
    width: 56% !important;
  }
}

/* Equipment & Technology Resources Section */
.about-services-part-two {
  text-align: left;
  font-size: 2vw;
  margin-left: 139px;
}

.equipment-description {
  text-align: left;
}

.equipment-item {
  margin-bottom: -122px;
  width: 107%;
}

/* .equipment-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
} */

.equipment-item:last-child::after {
  display: none;
}

.equipment-item h1 {
  font-size: 21px;
  color: black;
  line-height: 1.6;
  margin: 0;
  padding: 7px;
}

/* Empowering Global Impact, One Project at a Time Section */
.first-heading h1 {
  font-size: 49px;
  font-weight: bold;
  color: black;
  margin: 168px;
  text-align: center;
  margin-top: 20px;
}

.second-heading h1 {
  font-size: 28px;
  font-weight: normal;
  color: black;
  margin-top: -156px;
  text-align: center;
}

.explore-button-container {
  margin-top: 38px;
  text-align: center;
}

.explore-button {
  font-size: 1.2rem;
  padding: 15px 35px;
  border-radius: 50px;
  background-color: white;
  font-family: Avenir;
  font-weight: bold;
}

.explore-button:hover {
  background-color: black;
  color: white;
  transition: 0.5s ease;
}

.foundation-section {
  background-color: rgb(255, 255, 255);
  display: block;
  height: 60vh;
}

.schedule-consultation {
  text-align: center;
  font-size: 1.4rem;
}

.schedule-consultation h1 {
  color: black;
  font-weight: bold;
  font-size: 2.5em;
  margin-bottom: 20px;
  font-family: Avenir;
}

.schedule-consultation button {
  font-size: 1.2rem;
  padding: 15px 35px;
  border-radius: 50px;
  background-color: white;
  font-family: Avenir;
  font-weight: bold;
}

.schedule-consultation button:hover {
  background-color: black;
  color: white;
  transition: 0.5s ease;
}

.info-section {
  background-color: white;
  display: block;
  padding: 0% 0% 0% 0%;
}

.info-sec {
  display: flex;
  padding-top: 7%;
}

.information-section-one {
  padding: 0% 16% 0% 0%;
  width: 50%;
}

.Geospatial_section {
  width: 50%;
  font-family: Avenir;
  font-size: 1.2em;
}

.Geospatial_span {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: bold;
  font-family: Avenir;
  line-height: 1.2;
}

section {
  width: 100%;
  padding: 0 7%;
  display: table;
  margin: 0;
  max-width: none;
  height: 100vh;
}

/* ///////////////////// */
.outer-container {
  position: relative;
  background-color: black;
  padding: 40px 40px 40px 40px;
  margin-top: -19%;
  width: 99%;
  border-radius: 80px;
}

.tabs-navigation {
  padding: 0px 2%;
  background-image: url(../assets/Images/services-page/images/Servies6.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 3%;
  margin-top: 20vw;
}

.outer-container-bottom {
  position: relative;
  background-color: rgb(0 100 64);
  padding: 40px 40px 40px 40px;
  margin-top: 27%;
  width: 197%;
  height: 56%;
  border-radius: 80px;
}

.Geospatial_span_bottom {
  font-size: 3rem;
  color: white;
  position: relative;
  top: 2vw;
  left: 4vw;
}

.Geospatial_section_bottom {
  width: 40%;
  font-family: Avenir;
  font-size: 1.5em;
  color: white;
  position: relative;
  bottom: 4vw;
  left: 43vw;
}

.table-image-Servies7 {
  max-width: 225px;
  position: relative;
  left: 24vw;
  bottom: 7vw;
}

.table-image-Servies8 {
  max-width: 306px;
  position: relative;
  left: 23vw;
  bottom: 5vw;
}

.table-image-Servies9 {
  max-width: 230px;
  position: relative;
  left: 23vw;
  bottom: 11vw;
}

.table-image-Servies10 {
  max-width: 225px;
  position: relative;
  left: 22vw;
  bottom: 3vw;
}

.table-image-Servies11 {
  max-width: 276px;
  position: relative;
  left: 22vw;
  bottom: 10vw;
}

.table-image-Servies12 {
  max-width: 318px;
  position: relative;
  left: 20vw;
  bottom: 11vw;
}

.row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.mt-4percent {
  margin-top: 2% !important;
}

.left-header {
  text-align: center;
}

.right-header {
  text-align: left;
}

.heading-for-Milestone {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 16%;
  white-space: nowrap;
}

section {
  width: 100%;
  padding: 0 7%;
  display: table;
  margin: 0;
  max-width: none;
  height: 100vh;
  background-color: #ffffff;
}

.fontss {
  font-size: 1.5em;
}

.services-img2 {
  width: 47%;
  height: auto;
  border-radius: 31px;
  margin-top: 10vw;
  margin-left: 46vw;
}

.igg {
  width: 95%;
  height: 95%;
}

.service-button2 {
  padding: 0.7vw 3vw;
  background-color: black;
  color: white;
  border: 2px solid white;
  border-radius: 2vw;
  font-size: 1.4em;
  cursor: pointer;
  text-align: left;
  margin-left: 11vw;
  margin-top: 0.8vw;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.service-button2.active {
  background-color: rgb(0 152 93);
  border: 2px solid white;
  border-color: rgb(0 152 93);
}

.service-buttons2 {
  flex-direction: column;
  gap: -6px;
  margin: -28px;
  left: -52px;
  top: 408px;
  position: absolute;
  top: 58%;
  transform: translateY(-46%);
  display: flex;
}

.none {
  display: none;
}

.table-header-font {
  font-family: Avenir;
  font-size: 1.2rem;
  font-weight: bold;
}

.table-font {
  font-family: Avenir;
  font-size: 2.5rem;
}

.table-font-description {
  width: 47%;
  font-size: 1.2rem;
  position: relative;
  top: 1.2vw;
}

.table-font-description-span {
  width: 42%;
  font-size: 1rem;
  position: relative;
  top: 2.2vw;
}

.table-font-description-bottom {
  width: 178%;
  font-size: 1.3rem;
  position: relative;
  top: 1.2vw;
}

.heading-for-Milestone {
  font-size: 2.5rem;
  padding-left: 3%;
  font-weight: bold;
  font-family: 'Avenir';
}

.h1-Section {
  font-size: 1.8em;
}

.h2-Section {
  font-size: 1em;
}

@media screen and (max-width: 768px) {
  .outer-container-section {
    display: block;
  }

  .mobile-outer-container-section {
    display: none;
  }

  .intro h1 {
    font-size: 2rem;
  }

  .Geospatial_span {
    font-size: 2rem;
  }

  .Geospatial_section {
    font-size: 1rem;
  }

  .top-left h2 {
    font-size: 2rem !important;
    left: 5% !important;
  }

  .igg {
    width: 95%;
    height: 95%;
  }

  .fontss {
    font-size: 0.8em;
  }

  .service-button2 {
    padding: 1vw 1vw;
    font-size: 0.9em;
    margin-left: 15vw;
  }

  .tabs-navigation {
    padding: 0px 2%;
    background-image: url(../assets/Images/services-page/images/Servies6.jpg);
    background-repeat: no-repeat;
    background-size: 170%;
    background-position: center 100%;
    margin-top: 20vw;
  }

  .Geospatial_span_bottom {
    font-size: 1.4rem;
    left: -4vw;
  }

  .Geospatial_section_bottom {
    width: 58%;
    font-size: 1rem;
    bottom: 6vw;
    left: 40vw;
  }

  .information-section-one {
    padding: 0% 8% 0% 8%;
    width: 53%;
  }

  .outer-container-bottom {
    right: 31px;
    width: 220%;
    height: 62%;
    padding: 20px;
    margin-top: 31%;
    border-radius: 30px;
  }

  .equipment-item {
    margin-bottom: -80px; /* Reduce margin */
    width: 96%; /* Full width for mobile */
  }

  .table-font-description {
    width: 115%;
    font-size: 1rem;
    top: 3vw;
  }

  .table-font-description-span {
    width: 85%; /* Adjust width for mobile */
    font-size: 0.85rem; /* Smaller font size */
    top: 3.5vw; /* Adjust vertical position */
  }

  .table-font-description-bottom {
    width: 236%;
    font-size: 1rem;
    top: 3vw;
  }

  .table-image-Servies7 {
    max-width: 150px;
    left: 21vw;
    bottom: -4vw;
  }

  .table-image-Servies8 {
    max-width: 218px;
    left: 16vw;
    bottom: 1vw;
  }

  .table-image-Servies9 {
    max-width: 160px;
    left: 21vw;
    bottom: 7vw;
  }

  .table-image-Servies10 {
    max-width: 150px;
    left: 24vw;
    bottom: -7vw;
  }

  .table-image-Servies11 {
    max-width: 180px;
    left: 21vw;
    bottom: 10vw;
  }

  .table-image-Servies12 {
    max-width: 200px;
    left: 21vw;
    bottom: 7vw;
  }

  .table-font {
    font-family: Avenir;
    font-size: 1.5rem;
  }

  .adjust-bottom {
    position: relative;
    bottom: -12vw !important;
  }

  .services-img {
    width: 45%;
    height: auto;
    margin-top: 15px;
    margin: 0px;
    padding: -1px;
    margin-top: 29px;
    margin-left: 393px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .outer-container-section {
    display: block;
  }

  .mobile-outer-container-section {
    display: none;
  }

  .intro h1 {
    font-size: 2rem;
  }

  .Geospatial_span {
    font-size: 2rem;
  }

  .Geospatial_section {
    font-size: 1.2em;
  }

  .top-left h2 {
    font-size: 2rem !important;
  }

  .igg {
    width: 95%;
    height: 95%;
  }

  .fontss {
    font-size: 0.8em;
  }

  .service-button2 {
    padding: 1vw 1vw;
    font-size: 0.9em;
    margin-left: 15vw;
  }

  .bottom-right {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .Geospatial_section_bottom {
    width: 48%;
    font-family: Avenir;
    font-size: 1.2em;
    color: white;
    position: relative;
    bottom: 5vw !important;
    left: 45vw;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .outer-container-section {
    display: block;
  }

  .mobile-outer-container-section {
    display: none;
  }

  .intro h1 {
    font-size: 2rem;
  }

  .Geospatial_span {
    font-size: 2.5rem;
  }

  .Geospatial_section {
    font-size: 1em;
  }

  .top-left h2 {
    font-size: 2rem !important;
  }

  .igg {
    width: 95%;
    height: 95%;
    position: relative;
     top: 3vw;
  }

  .fontss {
    font-size: 1.1em;
  }

  .service-button2 {
    padding: 1vw 1vw;
    font-size: 0.9em;
    margin-left: 15vw;
  }

  .Geospatial_span_bottom {
    font-size: 2rem;
    color: white;
    position: relative;
    top: 2vw;
    left: 3vw;
  }

  .Geospatial_section_bottom {
    width: 48%;
    max-width: 1440px;
    font-family: Avenir;
    font-size: 1.2em;
    color: white;
    position: relative;
    bottom: 0vw;
    left: 45vw;
  }

  .information-section-one {
    padding: 0% 16% 0% 0%;
    width: 68%;
  }

  .outer-container-bottom {
    position: relative;
    right: 4vw;
    background-color: rgb(0 100 64);
    padding: 41px 41px 41px 41px;
    margin-top: 27%;
    width: 218%;
    height: 56%;
    border-radius: 80px;
  }

  .tabs-navigation {
    padding: 0px 2%;
    background-image: url(../assets/Images/services-page/images/Servies6.jpg);
    background-repeat: no-repeat;
    background-size: 128%;
    background-position: center;
    margin-top: 20vw;
  }

  .equipment-item {
    margin-bottom: -122px;
    width: 114%;
  }

  .table-font-description {
    width: 55%;
    font-size: 1.1rem;
    top: 1.5vw;
  }

  .table-font-description-span {
    width: 50%;
    font-size: 0.95rem;
    top: 2vw;
  }

  .table-font-description-bottom {
    width: 201%;
    font-size: 1.2rem;
    top: 1.5vw;
  }

  .table-image-Servies7 {
    max-width: 200px;
    left: 24vw;
    bottom: 3vw;
  }

  .table-image-Servies8 {
    max-width: 250px;
    left: 24vw;
    bottom: 6vw;
  }

  .table-image-Servies9 {
    max-width: 210px;
    left: 26vw;
    bottom: 18vw;
  }

  .table-image-Servies10 {
    max-width: 200px;
    left: 23vw;
    bottom: 2vw;
  }

  .table-image-Servies11 {
    max-width: 250px;
    left: 21vw;
    bottom: 12vw;
  }

  .table-image-Servies12 {
    max-width: 280px;
    left: 18vw;
    bottom: 13vw;
  }

  .adjust-bottom {
    position: relative;
    bottom: -12vw !important;
  }
}

@media screen and (min-width: 1440px) and (max-width: 1920px) {
  .outer-container-section {
    display: block;
  }

  .mobile-outer-container-section {
    display: none;
  }

  .intro h1 {
    font-size: 3.5rem;
  }

  .Geospatial_span {
    font-size: 2rem;
  }

  .Geospatial_section {
    font-size: 1.3rem;
  }

  .top-left h2 {
    font-size: 3.5rem !important;
  }

  .igg {
    width: 95%;
    height: 95%;
  }

  .fontss {
    font-size: 1.1em;
  }

  .service-button2 {
    padding: 1vw 2vw;
    font-size: 1.3em;
    margin-left: 15vw;
  }
}

/* OUTER_CONTAINER */
.outer-container {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 30% 70%;
  height: 100vh;
  /* Full container height */
  width: 100%;
  /* Full container width */
  gap: 0;
  /* Optional: Adjust gap between sections */
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;

  /* Optional: Add a border for visual distinction */
  box-sizing: border-box;
  /* Include padding and border in element's size */
}

.top-left {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  background-color: #000000;
  position: relative;
}

.top-right {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background-color: #000000;
  color: #ffffff;
}

.bottom-left {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  background-color: #000000;
  /* Optional: Background color */
}

.bottom-right {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background-color: #000000;
  /* Optional: Background color */
}

.bottom-full {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
  background-color: #d3ffd3;
  /* Optional: Background color */
}

.top-left h2 {
  position: absolute;
  top: 10%;
  left: 15%;
  font-size: 3.5rem;
  color: #ffffff;
}

/* Smooth fade-in/out for content sections */
.top-right,
.bottom-right {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  /* Smooth fade-in and fade-out transition */
}

.fade-out {
  opacity: 0;
}

/* Hiding the scroller from the broswer */
*::-webkit-scrollbar {
  width: 0;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}

* {
  -ms-overflow-style: none;
}

.services-explore-our-work-section {
  background-color: #fff;
  display: block;
  height: 70vh;
  margin-top: 24vw;
}

.break-lines {
  border-bottom: 2px solid #000000;
}

.break-lines-section {
  border-bottom: 2px solid #000000;
  position: relative;
  bottom: -10vw;
}

.iframe-height {
  width: 100%;
  height: 102vh;
  border: none;
}

/* Media query for mobile screens under 500px */
@media (max-width: 500px) {
  .info-sec {
    display: flex;
    padding-top: 0%;
  }

  .mobile-outer-container-section {
    display: block;
  }

  .outer-container-section {
    margin: 0;
    padding: 0;
    display: none;
  }

  .outer-container {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .information-section-one {
    padding: 0% 8% 0% 8%;
    width: 0%;
  }

  .Geospatial_span {
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
    display: block;
    margin: 0 auto;
    position: relative;
    right: 7vw;
    top: 32vw;
  }

  .Geospatial_section {
    width: 100%;
    font-size: 0.8rem;
    position: relative;
    right: 7vw;
    top: 41vw;
    text-align: center;
    line-height: 1.2;
  }

  .services-font {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
    display: inline-block;
    white-space: nowrap;
  }

  .mobile-outer-container-section {
    padding: 0px 0%;
    background-image: url(../assets/Images/services-page/images/Servies6.jpg);
    background-repeat: no-repeat;
    background-size: 103%;
    background-position: center 100%;
    margin-bottom: 0;
  }

  .services-description {
    text-align: center;
    margin-bottom: 10%;
  }

  .box-b.staff {
    position: relative;
    min-height: 800px;
  }

  .box-b.staff img {
    position: absolute;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 70%;
    height: auto;
  }

  .services-title {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10%;
  }

  .services-font {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 3rem);
    padding-right: 63vw;
    font-weight: bold;
    font-family: 'Avenir';
    position: relative;
    bottom: -10vw;
    left: 31vw;
    color: white;
  }

  .team-members-slider-section {
    position: relative;
    bottom: 15vw;
  }

  .padding {
    padding-top: 5vw;
    position: relative;
    top: 30%;
  }

  table {
    width: 100%;
    border-spacing: 0px;
    padding-top: 0vw !important;
  }

  td {
    display: block;
    width: 104%;
  }

  .equipment-item {
    width: 192%;
  }

  .table-image-Servies7 {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    left: 43vw;
    bottom: 16vw;
  }

  .table-image-Servies8 {
    width: 64%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    left: 39vw;
    bottom: 16vw;
  }

  .table-image-Servies9 {
    width: 36%;
    display: block;
    position: relative;
    left: 58vw;
    bottom: 15vw;
  }

  .table-image-Servies10 {
    width: 88%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    left: 62vw;
    bottom: 16vw;
  }

  .table-image-Servies11 {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    left: 35vw;
    bottom: 22vw;
  }

  .table-image-Servies12 {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    left: 36vw;
    bottom: 23vw;
  }

  .table-font-description {
    padding: 5px 0;
  }

  .adjust-bottom {
    margin-bottom: 20px;
    top: 21vw !important;
  }

  .table-font-description-bottom {
    width: 127%;
    font-size: 1rem;
    top: 3vw;
  }

  .services-explore-our-work-section {
    padding: 20px;
  }

  .schedule-consultation {
    padding: 10px;
  }

  .schedule-consultation h1 {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
  }

  .schedule-consultation h2 {
    font-size: 0.5em;
  }

  .schedule-consultation button {
    font-size: 0.6rem;
    padding: 7px 1px;
    margin: 0 auto;
    display: block;
    width: 42%;
    border-radius: 25px;
  }

  .break-line1 {
    border-bottom: 2px solid #000000;
    position: relative;
    top: 58vw;
  }

  .break-line2 {
    border-bottom: 2px solid #000000;
    position: relative;
    top: 185vw;
  }

  .break-line3 {
    border-bottom: 2px solid #000000;
    position: relative;
    top: 341vw;
  }
}

@media (max-width: 440px) {
  .break-line3 {
    display: none;
  }
  .break-line2 {
    display: none;
  }
  .break-line1 {
    display: none;
  }
  .break-lines {
    display: none;
  }

  .break-lines-section {
    display: none;
  }
  .min-height-footer {
    min-height: 18vh !important;
  }

  .iframe-height {
    width: 100%;
    height: 78vh;
    border: none;
  }
}

@media screen and (max-width: 380px) {
  .min-height-footer {
    min-height: 18vh !important;
  }

  .iframe-height {
    width: 100%;
    height: 78vh;
    border: none;
  }

  .explore-section {
    height: 18vh;
    margin-top: 60%;
  }

  .foundation-section {
    background-color: rgb(255, 255, 255);
    display: block;
    height: 66vh;
  }
}

@media screen and (max-width: 425px) {
  .Geospatial_section span {

    font-size: 0.8em;
  }


}
@media screen and (min-width: 769px) {
  .mobile-outer-container-section {
    display: none;
  }
}