body {
    background-color: rgb(248, 248, 248);
    background-size: 100%;
    background-position: center;
  
    margin: 0;    
    min-height: 100vh;
    padding: 0;
}
/* Style the navigation bar */
.primary-logo {
    height: 100px;
} 
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .6s;
    padding: 40px 100px;
    z-index: 100000;
  }
  header.sticky {
    padding: 20px 100px;
    background: #fff;
  }
  header ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header ul li {
    position: relative;
    list-style: none;
  }
  header ul li a {
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    color: rgb(2, 3, 92);
    letter-spacing: 2px;
    font-weight: 500px;
    transition: .6s;
    font-size: 24px;
  }
  header.sticky .logo,
  header.sticky ul li a {
    color: rgb(2, 3, 92);
  }

@media all and (max-width: 800px) {
.navbar {
    flex-direction: column;
    position: relative;
}
.menu {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
}
.nav-list {
    list-style-type: none;
    width: 100%;
    text-align: center;
    padding-top: 10px;
    display: none;
}
.nav-list .list-items{
    display: block;
    border-top: 1px solid white;
}
.primary-logo {
    margin-top: 10px;
    margin-left: 10px;
}
.active {
    display: block;
}
}
  
  /* Slideshow container */
#slide-container {
    position: relative;
    max-width: 100%; /* responsiveness */
    height: 1000px; /* Set the fixed height */
   }
   /* First element to be in block mode for responsiveness */
   #slide-first-element {
    display: block; /* to get the dimensions set */
    width: 100%;
    height: 100%;
   }
   /* Other element to be in absolute position */
   #slide-element-2,
   #slide-element-3 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
   }
   /* Style images */
   .slide-image {
    width: 100%;
    height: 100%;
   }
   /* Style text */
   .slide-text {
    position: absolute;
    bottom: 10px;
    background-color: #0042b1bb;
    color: white;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
   }
   /* Animation settings for individual elements */
   /* For more images the animations have to be adjusted */
   #slide-first-element {
    animation: fade-1 10s infinite;
    -webkit-animation: fade-1 10s infinite;
   }
   #slide-element-2 {
    animation: fade-2 10s infinite;
    -webkit-animation: fade-2 10s infinite;
   }
   #slide-element-3 {
    animation: fade-3 10s infinite;
    -webkit-animation: fade-3 10s infinite;
   }
   /* and more if there are more slides to show */
   @keyframes fade-1 {
    0% { opacity: 1; }
    33% { opacity: 0; }
    66% { opacity: 0; }
    100% { opacity: 1; }
   }
   @keyframes fade-2 {
    0% { opacity: 0; }
    33% { opacity: 1; }
    66% { opacity: 0; }
    100% { opacity: 0; }
   }
   @keyframes fade-3 {
    0% { opacity: 0; }
    33% { opacity: 0; }
    66% { opacity: 1; }
    100% { opacity: 0; }
   }
   /* example for a 4th slide */
   @keyframes fade-4 {
    0% { opacity: 0; }
    25% { opacity: 0; }
    50% { opacity: 0; }
    75% { opacity: 1; }
    100% { opacity: 0; }
   }

.ServiceDescriptionSection {
    padding: 60px 0;
    margin-top: 50px;
    margin-bottom: 50px;
    
}
.ServicesTextContainer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0px;
}
.ServicesTextContent{
    text-align: center;
}
.ServicesTextContent h2 {
    font-size: 38px;
}
.image-overlay-section {
    position: relative;
    width: 100%;
    height: 500px; /* Adjust height as needed */
    right: 3%;
    margin-left: 0px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0px 0px 300px 0px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-overlay h1 {
    margin-left: 20%;
    font-size: 40px; /* Adjust font size as needed */
    word-spacing: 10px;
    line-height: 1.3;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optional: Add text shadow */
}
.image-overlay-section-two {
    position: relative;
    width: 100%;
    height: 500px; /* Adjust height as needed */
    margin-bottom: 100px;
}

.image-container-two {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 300px 0px 300px 0px;
}

.image-container-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-overlay-two {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-overlay-two h1 {
    margin-left: 20%;
    font-size: 40px; /* Adjust font size as needed */
    word-spacing: 10px;
    line-height: 1.3;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optional: Add text shadow */
}

/* Our Services Section*/
.ServicesOfferedcontainer {
    display: flex;
    width: 100%;
    margin-top: 200px;
    margin-bottom: 200px;
    align-items: center;
  }
  
  .image {
    width: 50%;
    height: 90%;

    margin-left: 2%;
  }
  
  .services {

    background-color: rgb(1, 2, 56); /* Background color for the services section */
    padding: 20px; /* Add padding for spacing */
    margin-left: 50px;
    margin-right: 2%;
    width: 50%;
    height: 100%;
  }
  
  .services h2 {
    font-size: 50px;
    color: white;
    align-content: center;
    margin-left: 10%;
    margin-bottom: 4%;
    margin-top: 2%;
    text-decoration: underline;
  }
  
  .services ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin-left: 10%;
    margin-bottom: 10px;
  }
  
  .services li {
    margin-bottom: 10px;
    color: white;
    font-size: 26px;
  }
  
  .image img {
    width: 100%; /* Ensure the image takes up the full width of its container */
    height: 90%;
  }
.features{
    background-color: rgb(1, 2, 56);;
    color: black;
    display: flex;
    flex-direction: row;    
    flex-wrap: wrap;
    margin: auto;
    padding: 20px;   
}

.features figure{
    margin: auto;
    width: 450px;
    text-align: center;
    padding-bottom: 100px;
    padding-top: 100px;
}

.features figure img{
    border: 1px solid rgb(255, 255, 255);
    box-shadow:rgb(221, 221, 221) 0 0 10px;
    width: 400px;
    height: 300px;
    object-fit: cover;
}
.features figure a {
    color:white;
    font-size: x-large;
    text-decoration: none;
    text-align: center;
    text-transform: capitalize;
}
.services-offered {
    display: flex; /* Use flexbox */
    align-items: center; /* Align items vertically */
}

.services-offered figure {
    margin-right: 20px; /* Adjust spacing between image and text */
}

.services-offered img {
    max-width: 100%; /* Ensure image does not exceed its container */
    width: 400px;
    height: 300px;
}

.services-offered h3 {
    margin: 0; /* Remove default margin for heading */
}

  /* Footer*/
*{
    margin-top: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.container{
    max-width: 1170px;
    margin: auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
ul {
    list-style: none;
}
.footer{
    background-color: rgb(1, 2, 56);
    color: white;
    padding: 70px 0;
}
.footer-col{
    width: 25%;
    padding: 0 15px;
}
.footer-col h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}
.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #fdfdfd;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}
.footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
}
.footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
}
.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #646161;
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
}

.footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
}

@media(max-width: 767px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media(max-width: 574px){
    .footer-col{
        width: 100%;
    }
}