@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.showcase
{
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}

.showcase video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4b9af0;
  mix-blend-mode: overlay;
}
.text
{
  position: relative;
  z-index: 10;
}

.text h2
{
  font-size: 5em;
  font-weight: 800;
  color: #213f7a;
  line-height: 1em;
  text-transform: uppercase;
}
.text h3
{
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text p
{
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}

.social
{
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social li
{
  list-style: none;
}
.social li a
{
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{
  transform: scale(0.5) translateY(-15px);
}
.menu
{
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu ul
{
  position: relative;
}
.menu ul li
{
  list-style: none;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 24px;
  color: #111;
}
.menu ul li a:hover
{
  color: #03a9f4; 
}

@media (max-width: 991px)
{
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}


/* Navigation */
.logo img {
  height: 60px; /* Adjust height of the logo */
  margin-left: 40px; /* Space between logo and links */
}

nav {
  background-color: #ffffff;
  color: rgb(3, 3, 3);
  padding: 10px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #BBBBBB;
}



nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  flex-grow: 1; /* Distribute remaining space */
}

nav ul li {
  display: inline;
  padding: 20px 0px;
  margin: 0px 20px;
  opacity: 0.75;
}

nav ul li a {
  color: rgb(33, 29, 243);
  text-decoration: none;
  opacity: 0.75;
}

/* nav hover */

.nav-link:hover {
  opacity: 1;
}

.nav-link::before {
  transition: 300ms;
  height: 5px;
  content: "";
  position: absolute;
  background-color: #1f15da;
}

.nav-link-ltr::before {
  width: 0%;
  bottom: 25px;
}

.nav-link-ltr:hover::before {
  width: 5%;
}

/* keep underlined when on section - change to pages when website is updated*/
.active-nav-link {
  opacity: 1;
}


/*SECTIONS */

.section {
  padding: 50px 20px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section:nth-child(odd) {
  background-color: #f1ededd9;
}

.section:nth-child(even) {
  background-color: #ffffff;
  
}



/* Buttons */
.btn {
  display: block;
    margin: 0 auto;
    padding: 10px 40px;
    background-color: #4c79f4;
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px; /* Set border-radius to half of the button's height */
    transition: background-color 0.3s;
    width: fit-content;
    transition: 0.2s;

}

.btn:hover {
  background-color: #3657b4;
  letter-spacing: 3px;
}

/* About Section  */
.AboutContainer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center; /* Center align the text */
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center; /* Center align the text */
}

/* Services Section */
#ServiceContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service {
  margin: 10px;
  position: relative;
}

.service img {
  width: 300px;
  height: 200px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.serviceoverlay {
  position: absolute;
  bottom: 7%;
  left: 2.5%;
  /* transform: translate(-50%, -50%); */
  background-color: rgba(0, 0, 255, 0.7);
  color: rgb(255, 255, 255);
  padding: 15px 10px;
  /* border-radius: 5px; */
  cursor: pointer;
}

/* Projects Section */
.Projcontainer {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.project {
  margin: 10px;
  position: relative;
}

.project img {
  width: 300px;
  height: 200px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.Projoverlay {
  position: absolute;
  bottom: 7%;
  left: 2.5%;
  /* transform: translate(-50%, -50%); */
  background-color: rgba(0, 0, 255, 0.7);
  color: rgb(255, 255, 255);
  padding: 15px 10px;
  /* border-radius: 5px; */
  cursor: pointer;
}

/* Clients */
.ClientContainer {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.client-logo {
  margin: 20px;
}

.client-logo img {
  width: 150px;
  height: auto;
}

/* Contact */
.ContactContainer {
  margin-top: 100px;
  /* margin-bottom: 300px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 10px 0;
}