body {
    background-color: rgb(248, 248, 248);
    background-size: 100%;
    background-position: center;
    font-family: Arial, Helvetica, sans-serif;    
    margin: 0%;    
    min-height: 10vh;
    padding: 0;
}
.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;
}
}
                                                                    /*  Main Body    */
.about-content-body {
    background: white;
    background-size: 100%;
    background-position: center;
    font-family: Arial, Helvetica, sans-serif;    
    margin-left: 1%;
    margin-right: 1%;    
    min-height: 100vh;
    padding: 0;
}
.title {
    color: rgb(6, 4, 121);
    display: block;
    font-size: 60px;
    font-family:Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 20px 0px 20px 20px;
}
.navbar-sep-line {
    border: 5px solid rgb(3, 3, 107);
    border-radius: 5px;
    width: 100%;
}

.image-overlay-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    margin-top: 150px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-overlay h1 {
    margin-left: 20%;
    font-size: 60px; /* 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 */
}

  

.features{
    background-image: url(Images/Blue\ Background\ option\ 3.jpeg);
    color: black;
    border: 2px solid rgb(255, 255, 255);
    box-shadow:rgb(2, 2, 2) 0 0 10px;
}
.projectfeatures {
    display: flex;
    flex-direction: row;    
    flex-wrap: wrap;
    margin: auto; 
}

.features figure{
    margin: auto;
    width: 40%;
    text-align: center;
    padding-bottom: 10px;
    padding-top: 50px;
}
.features figure a {
    color:white;
    font-size: 24px;
    text-decoration: none;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.3;
}
.projectfeatures a figcaption {
    margin-top: 30px;
    font-size: 24px;
    
}
.features figure img{

    width: 80%;
    height: 280px;
    object-fit: cover;
}

/*  For footer   */ 
*{
    margin: 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%;
    }
}