@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");


.homepage {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

@keyframes element-initialise {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  background-color: #e0e0e0;
}

.content {
  padding: 20px;
  background-color: #ffffff;
}

.background-image {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 75vh;
  background-image: url("images/home-banner.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  margin-top: 0px;
  margin-bottom: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5); /* Drop shadow properties */
}
.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  text-align: center;
  font-size: 60px;
  color: white;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  animation: element-initialise 3s forwards;
}

.subtitle {
  position: relative;
  text-align: left;
  font-size: 25px;
  color: rgb(92, 40, 214);
  white-space: nowrap;
  font-weight: bold;
}

.subsubtitle {
  position: relative;
  text-align: left;
  font-size: 25px;
  color: rgb(148, 144, 156);
  white-space: nowrap;
  font-weight: lighter;
  margin-left: 10px;
}

.subtitlebox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.bannertext {
  position: absolute;
  top: 90%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  font-size: 21px;
  color: white;
  font-family: "Poppins", sans-serif;
}

.typing-container {
  display: flex;
  align-items: center;
}

.typing-line {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.typing-line::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1em;
  margin-left: -2px;
  background-color: inherit;
  animation: typing 1.5s steps(60, end) forwards;
}

.cursor {
  display: inline-block;
  width: 7px;
  height: 1em;
  background-color: white;
  margin-left: 2px;
  opacity: 1;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes cursor-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.cursor-hidden {
  display: none;
}

.contactcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1vh;
  margin: 0;
}
.contact-button {
  display: block;
  padding: 6px 50px;
  background-image: linear-gradient(to right, #6754d3, #04cdff, #6754d3 100%);
  transition: 0.5s;
  color: #fff;
  background-size: 200% auto;
  text-decoration: none;
  margin-top: 150px;
  font-family: "Poppins", sans-serif;
  border-radius: 30px;
  justify-content: center;
  font-size: 30px;
}

.contact-button:hover {
  background-position: right center; /* change the direction of the change here */
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px 0px;
  margin-top: -240px;
  margin-bottom: 300px;
  margin-left: 15%;
  margin-right: 15%;
}

.item1 {
  grid-area: 1 / 1 / 3 / 2; /* Start at row 1, column 1, end at row 3, column 2 */
  /* Additional styles for the merged cell, if needed */
  max-height: 530px;
  min-height: 530px;
}

.item2 {
  grid-area: 1 / 2 / 2 / 3; /* Start at row 1, column 2, end at row 2, column 3 */
  max-height: 250px;
  min-height: 250px;
}

.item3 {
  grid-area: 1 / 3 / 2 / 5; /* Start at row 1, column 3, end at row 2, column 5 */
  max-height: 250px;
  min-height: 250px;
}

.item4 {
  grid-area: 2 / 2 / 3 / 4; /* Start at row 2, column 2, end at row 3, column 4 */
  max-height: 250px;
  min-height: 250px;
}
.item5 {
  grid-area: 2 / 4 / 3 / 5; /* Start at row 2, column 4, end at row 3, column 5 */
  max-height: 250px;
  min-height: 250px;
}

.container2 {
  display: flex;
  margin: 250px;
  align-items: center;
  justify-content: center;
  margin-top: -300px;
}

.box {
  flex: 0;
  background-color: #ffffff;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
  text-align: center;
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
  position: relative; /* Add this line to make the container relative */
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.6); /* Drop shadow properties */
}
.box2 {
  position: absolute; /* Add this line to position the text absolutely */
  top: 50%; /* Adjust the value as needed */
  left: 50%; /* Adjust the value as needed */
  transform: translate(
    -50%,
    -50%
  ); /* Center the text vertically and horizontally */
  background-color: #0000008c;
  color: #ffffff;
  text-align: center;
  font-size: 30px;
  opacity: 1;
  font-family: "Poppins", sans-serif;
  z-index: 1;
  font-weight: 600;
  pointer-events: none;
  border-radius: 10px;
  width: 80%; /* Set the width to 100% */
  animation: element-initialise 3s forwards;

}
.box3 {
  position: absolute; /* Add this line to position the text absolutely */
  top: 50%; /* Adjust the value as needed */
  left: 50%; /* Adjust the value as needed */
  transform: translate(
    -50%,
    -50%
  ); /* Center the text vertically and horizontally */
  background-color: #000000a6;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  z-index: 1;
  width: 100%; /* Set the width to 100% */
  height: 300px;
  border-radius: 10px;
  opacity: 0;
  z-index: 1;
  height: -1-px;
  transition: opacity 2s;
  word-wrap: break-word;
}

.box3:hover {
  opacity: 1;
}

.image-container {
  width: 100%; /* Set the container width to fill the grid cell */
  height: 100%; /* Set the container height to fill the grid cell */
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-container img {
  width: 100%; /* Set the image width to fill the container */
  height: 100%; /* Set the image height to fill the container */
  object-fit: cover; /* Ensure the image covers the container while maintaining aspect ratio */
  transition: transform 1s, filter 1s;
  scale: 1.1;
  filter: blur(2px);
  box-sizing: border-box; /* Add this line to include the border in the element's dimensions */
}

.image-container img:hover {
  transform: scale(1.2);
  filter: blur(0px);
}
.read-more {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #6754d3;;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  z-index: 1;
  width: 50%;
  padding: 8px 0;
  border-radius: 2px;
  opacity: 1;
  transition: opacity 0.3s;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.6); /* Drop shadow properties */
}
.item1 .read-more {
  top: 90%; /* Adjust the value as needed */
}

.item2 .read-more {
  top: 80%; /* Adjust the value as needed */
}

.item3 .read-more {
  top: 80%; /* Adjust the value as needed */
  width: 30%;
}

.item4 .read-more {
  top: 80%; /* Adjust the value as needed */
  width: 30%;
}

.item5 .read-more {
  top: 80%; /* Adjust the value as needed */
}

/* Add the following CSS to make the "Read more" text clickable like a button */
.read-more a {
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.8; /* Adjust this value to vertically center the text */
  font-weight: bold;
  border-radius: 10px;
}

.read-more:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.heading {
  flex: 0;
  background-color: #ffffff00;
  text-align: center;
  font-size: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  border-radius: 4px;
  position: relative;
  text-align: left;
  font-size: 70px;
  color: rgb(67, 69, 197);
  white-space: nowrap;
  font-weight: bold;
  margin-left: 150px;
  top: 555px;
  margin-bottom: 0px; /* Increase the margin-bottom value to create more space above the footer */
  z-index: 6; /* Add a higher z-index to keep the container above the footer */
}
.banner-container {
  flex: 0;
  background-color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  border-radius: 4px;
  position: relative;
  margin-top: 130px;
  margin-bottom: 350px; /* Increase the margin-bottom value to create more space above the footer */
  z-index: 2; /* Add a higher z-index to keep the container above the footer */
}

.banner-container2 {
  flex: 0;
  background-color: #ffffff;
  text-align: left;
  font-size: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  border-radius: 4px;
  position: absolute;
  top: -240px; /* Adjust the top position value to position the banner container */
  left: 0;
  width: 100%;
  z-index: 3; /* Increase the z-index to keep the container above the footer */
  padding: 0 20%;
  padding-top: 60px;
  padding-bottom: 40px;
  box-sizing: border-box;
}

.aboutus-text {
  flex: 0;
  background-color: #ffffff00;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  border-radius: 4px;
  position: relative;
  top: -190px;
  left: -410px;
  text-align: left;
  font-size: 70px;
  color: rgb(67, 69, 197);
  white-space: nowrap;
  font-weight: bold;
  margin-left: 0px;
  z-index: 0;
}

.aboutus-subtext {
  flex: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  position: relative;
  text-align: left;
  font-size: 25px;
  border-radius: 0px 20px 20px 0px;
  color: rgb(58, 52, 52);
  font-weight: lighter;
  margin-left: 10px;
  /* background-color: #fff; */
  padding-left: 15px;
  padding: 20px;
  overflow-wrap: break-word;
  white-space: normal;
  z-index: 10;
  margin-left: 120px;
  grid-column: 1/2;
  grid-row: 1;
  border-left: 12px solid #3e159c;
}
.aboutus-subtext_large {
  background-color: #ffffff00;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  position: relative;
  font-size: 40px;
  color: rgb(67, 69, 197);
  display: inline;
  position: relative;
  font-weight: bold;
  margin-left: 0px;
  /* background-color: #fff; */
  padding-left: 0px;
  padding: 0px;
}
.aboutus-subtext_large2 {
  background-color: #ffffff00;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  position: relative;
  font-size: 29px;
  color: rgb(67, 69, 197);
  display: inline;
  position: relative;
  font-weight: bold;
  margin-left: 0px;
  /* background-color: #fff; */
  padding-left: 0px;
  padding: 0px;
}
.aboutus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: stretch;
  width: 100%;
  margin-top: 100px;
  padding-bottom: 100px;
  padding-top: 200px;
  z-index: 1;
  position: relative;
  background-image: url("images/layered-waves.png");
  background-size: cover;
  background-position: center;
}

.aboutus-img {
  width: 90%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 auto; /* Center the image container */
  grid-column: 2/3;
  grid-row: 1;
}
.aboutus-img img {
  max-width: 100%;
  margin-left: 100px;
  margin-top: 40px;
  max-height: 100%;
  object-fit: contain;
}
.mapcontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  height: 700px;
  width: 100%;
  margin-top: 75px;
  flex-direction: column;
}
.mapcontainer2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  width: 100%;
  margin-top: 0px;
  flex-direction: row;
}

iframe {
  width: 70%;
  height: 500px;
  border: 0;
}
.map-title {
  display: flex;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bolder;
  justify-content: center;
  color: #6754d3;
  font-size: 130px;
  font-weight: bold;
}
.map-title2 {
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  justify-content: center;
  padding: 20px;
  color: #6754d3;
  font-size: 50px;
  font-weight: bold;
}
.criteria-container {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;

  background-color: #2e2a4e;
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
  justify-items: center;
  align-items: center;
  margin-top: 0px;
  padding-left: 300px;
  padding-right: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.6); /* Drop shadow properties */
  grid-template-areas:
    "check1 check2 check3 check4 check5"
    "txt1 txt2 txt3 txt4 txt5";
}
.criteria-container {
  grid-template-rows: 1fr 0.5fr;
}
.checkmark-img {
  width: 100%;
  height: 100%;
  align-content: center;
  position: relative;
  scale: 0.5;
  overflow: visible;
  object-fit: cover;
  padding: 0;
  border-radius: 10px;
  text-align: center;
  margin: 0 auto; /* Center the image container */
  z-index: 1;
}

.checkmark-txt {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  margin: 0 auto; /* Center the image container */
  z-index: 1;
}

.checkmark-img:nth-child(1) {
  grid-area: check1;
}

.checkmark-img:nth-child(2) {
  grid-area: check2;
}

.checkmark-img:nth-child(3) {
  grid-area: check3;
}

.checkmark-img:nth-child(4) {
  grid-area: check4;
}

.checkmark-img:nth-child(5) {
  grid-area: check5;
}

.checkmark-txt:nth-child(1) {
  grid-area: txt1;
}

.checkmark-txt:nth-child(2) {
  grid-area: txt2;
}

.checkmark-txt:nth-child(3) {
  grid-area: txt3;
}

.checkmark-txt:nth-child(4) {
  grid-area: txt4;
}
.checkmark-txt:nth-child(5) {
  grid-area: txt5;
}

.socialmedia-container {
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.6);
  margin-top: 0;
  margin-bottom: 30px;
}
.socialmedia-container .overlay .text {
  color: white; /* Text color */
  font-size: 120px; /* Adjust the font size as needed */
  text-align: left; /* Align the text in the center */
  padding: 20px; /* Add padding around the text */
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  white-space: normal;
  overflow: hidden;
}
.socialmedia-container .overlay {
  position: absolute;
  top: 0;
  left: 50%;
  width: 45%; /* Set the width to 50% for the left half */
  height: 90%;
  background-color: #2e2a4ece; /* Blue semi-transparent background */
  margin: 30px; /* Adjust the margin value as needed */
  box-sizing: border-box;
}

.socialmedia-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 1s;
  box-sizing: border-box;
}
.social-media-links {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.social-media-links li {
  margin-top: 50px;
  margin-right: 20px;
}

.social-media-links a {
  display: flex;
  align-items: center;
  background-color: #2e2a4e;
  padding: 12px 24px;
  font-size: 40px;
  color: white;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  position: relative; /* Add relative positioning */
  transition: background-color 1.7s, color 1.7s;
}

.social-media-icon {
  margin-right: 10px;
}

.social-media-label {
  white-space: nowrap;
}

.social-media-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  transition: opacity 1.3s, background-color 1.3s; /* Add transition properties */
  z-index: -1; /* Move the pseudo-element behind the link */
}

.social-media-links a:hover {
  background-color: white;
  color: blue; /* Set text color to blue when hovering */
}

.social-media-links a:hover::before {
  opacity: 1;
  background-color: blue;
}

.services-container {
  display: flex;
  width: 100%;
  height: 600px;
  
}

/* Left side styles */
.services-left-side {
  flex: 1;
  background-color: #2e2a4e;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: white;
  font-size: 100px;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.services-left-side:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 10%;
  width: 10px;
  margin-left: 30px;
  height: 80%;
  background-color: white;
}

@keyframes text-animation {
  0% {
    width: 0%;
    left: 100%; /* Change '0%' to '100%' */
  }
  100% {
    width: 100%;
    left: 0; /* Change '100%' to '0' */
  }
}

.services-left-side h1 {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  line-height: 170px;
  margin-left: 70px;
  animation-direction: normal;
  animation: text-animation 1s ease-in-out;
}

.services-left-side2 {
  color: rgb(4, 255, 255);
}
.services-left-side3 {
  color: rgb(4, 255, 255);
}

/* Right side styles */
.services-right-side {
  flex: 1;
}

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slideshow-image {
  position: absolute;
  top: 0;
  scale: 1.02;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
  opacity: 1;
}

.icon {
  color: white;
}

.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  color: white;
  background-color: #2e2a4e;
  text-align: center; /* Align the text in the center */
  min-height: 10vh; /* Adjust the height to fit your needs */
  
}

.services-section:nth-child(even) {
  background-color: #1b192e;

}

.section-title {
  margin: 0;
  font-size: 100px;
  animation: element-initialise 3s forwards;
  font-family: "Poppins", sans-serif;
  color: white;
  margin-bottom: 20px;
  text-align: center;
  font-weight:lighter
}

.section-description {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the cards horizontally */
  align-items: center; /* Center the cards vertically */
  gap: 20px;
  font-family: "Poppins", sans-serif;
  color: white;
  padding-left: 100px;
  padding-right: 30px;
  font-size: 22px;
  animation: element-initialise 3s forwards;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.card {
  width: 400px;
  min-height: 250px;
  background-color: white;
  color: #2e2a4e;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  max-height: 300px;
  transition: transform 0.5s, width 0.5s; /* Add transition property for transform and width */
}

.card:hover {
  transform: translateY(-10px); /* Move the card up by 10px on hover */
  width: 410px; /* Increase the width of the card on hover */
}

.card-title {
  font-weight: bold;
  font-size: 27px;
}


.card:nth-child(1) .card-title {
  background: linear-gradient(to right, #003366, #0055AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card:nth-child(2) .card-title {
  background: linear-gradient(to right, #0055AA, #0077CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card:nth-child(3) .card-title {
  background: linear-gradient(to right, #0077CC, #0099FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card:nth-child(4) .card-title {
  background: linear-gradient(to right, #0099FF, #33BBFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card:nth-child(5) .card-title {
  background: linear-gradient(to right, #33BBFF, #66CCFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card:nth-child(6) .card-title {
  background: linear-gradient(to right, #66CCFF, #99DDFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




.card-description {
  font-size: 20px;
}



/* Reset default margin and padding */
.contactus_page-body,
.contactus_page-h1,
.contactus_page-h2,
.contactus_page-h3,
.contactus_page-p,
.contactus_page-ul,
.contactus_page-li,
.contactus_page-form {
  margin: 0;
  padding: 0;
}

.contactus_page-body {
  font-family: Arial, sans-serif;
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark gray text color */
}

.contactus_page-main {
  padding: 20px 0;
}

.contactus_page-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contactus_page-contact-heading {
  color: #001f3f; /* Dark navy blue heading color */
  font-size: 70px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.contactus_page-contact-intro {
  font-size: 30px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
}

.contactus_page-contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contactus_page-form-group {
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
}

.contactus_page-label {
  color: #333333; /* Dark gray label color */
  display: block;
  margin-bottom: 5px;
}

.contactus_page-input,
.contactus_page-textarea {
  width: 100%;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  border: 1px solid #cccccc; /* Light gray border */
  border-radius: 5px 5px 0px 0px;
  border-bottom: 2px solid #38383f;
}

.contactus_page-textarea {
  resize: vertical;
}

.contactus_page-submit-button {
  display: block;
  padding: 6px 50px;
  background-image: linear-gradient(to right, #6754d3, #04cdff, #6754d3 100%);
  transition: 0.5s;
  color: #fff;
  background-size: 200% auto;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  border-radius: 30px;
  justify-content: center;
  border: none;
  font-size: 20px;
}


.contactus_page-submit-button:hover {
  background-position: right center; /* change the direction of the change here */
}
