* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
}
.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(images/import.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

nav {
  display: flex;
  background-color: #174b66;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
  height: 30px;
}

.navbar ul a:hover {
  background: white;
  color: black;
  border-radius: 5px;
}

nav img {
  width: 230px;
}

.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 10px 15px;
  position: relative;
  color: white;

}

.nav-links a {
  color: rgb(14, 11, 11);
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

.nav-links ul li::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #174b66;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

.text-box {
  width: 90%;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box h1 {
  font-size: 30px;
}

.text-box p {
  margin: 10px 70px 40px 70px;
  font-size: 20px;
  color: white;
  justify-content: center;
  display: block;
  width: 90%;
  font-weight: 700;
}

nav .fa {
  display: none;
  color: white;
}
 @media(max-width: 700px) {
  .navbar {
    padding: 0;
    height: 7vh;
  }
  
  nav img {
    width: 70px;
    margin-left: 5vw;
  }

  .nav-links {
    position: fixed;
    background: #174b66;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 4;
    transition: 1s;
    overflow-y: auto; /* Enable scrolling for smaller screens */
  }

  .nav-links ul {
    padding: 30px;
  }

  .nav-links ul li {
    display: block;
    padding: 15px 0;
  }

  .nav-links ul li a {
    font-size: 18px;
  }

  nav .fa {
    display: block;
    color: #fff;
    margin: 15px;
    font-size: 22px;
    cursor: pointer;
  }

  .text-box h1 {
    font-size: 24px;
  }

  .text-box p {
    margin: 10px 10px 40px;
    font-size: 16px;
  }
}



/* service section */
.Service {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 40px;

}

h1 {
  font-size: 36px;
  font-weight: 600;
  /* color: #174b66; */
}

p {
  color: #fbfafa;
  font-size: 14px;
  /* font-weight: bold; */
  line-height: 22px;
  padding: 10px;
}

.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

.service-col {
  flex-basis: 31%;
  color: white;

  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(4, 9, 30, 0.7));
  border-radius: 20px;
  margin-bottom: 5%;

  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}

h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}

.service-col:hover {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media(max-width: 700px) {
  .row {
    flex-direction: column;
  }
}

.about-us {
  width: 80%;
  margin: auto;
  margin-bottom: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
  /* display: flex; */
  /* Add flex display */
  justify-content: center;
  /* Center align the flex items */
}
.about-us h1{
  margin-bottom: 100px;
}

.heading-about{
  text-align: center;
  float: top;
}

.about-col {
  flex: 1;
  /* Set flex-grow to allow each column to grow equally */
  padding: 30px 2px;
  margin-top: -10%;
}

.about-col h1 {
  padding-top: 0;
  /* color: #174b66; */
}

.about-col p {
  display: flex;
  padding: 15px 0;
  color: black;
  justify-content: center;
  text-align: justify;

}

.about-col img {
  margin-left: 50px;
  max-width: 100%;
  margin-top: 5%;
  filter: drop-shadow(12px 12px);
  color: rgb(203, 197, 197);
  height: 80%;
  width: 80%;
}

@media (max-width: 700px) {
  .about-col {
    width: 100%;
    margin-bottom: 30px;
  }
  .heading-about{
    margin-bottom: 0;
  }
  .about-col p{
    margin-top:0 ;
  }
  .about-us h1{
    margin: 0;
  }
  .about-us{
    margin-bottom:30px;
  }
}


/* start */
.contact-form {
  background-color: #06437b;
  padding: 20px;
  border-radius: 8px;
  width: 70vw;
  margin: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  /* Adjust width as needed */
  width: 100%;
}

.row {
  display: flex;
  justify-content: space-between;
}

.col-md-6 {
  width: 48%; /* Adjust width as needed */
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-group textarea {
  height: 120px;
}

.form-group button {
  background-color: #06437b;
  color: #faf4f4;
  border: none;
  padding: 10px 20px;
  display: block; /* Change display to block to enable margin auto */
  margin: 0 auto; /* Center horizontally within its container */
  border: 2px solid #f9fcf8;
  cursor: pointer;
  border-radius: 5px;
  /* width: 10vw;
  font-weight: bold;
  font-size: 15px; */
}

.form-group button:hover {
  background-color: #f2f4f1;
  color: black;  
}
/* end */
.contact{
    background-color: white; /* Background color similar to service section */
    padding: 50px 0;
    background-size: cover; /* Cover the entire container */
    background-repeat: no-repeat; /* Prevent repeating the image */
    background-position: center; /* Center the image */
    margin-top: 2vh ;
    display: flex;
  }
  .contact-section{
    background-color: #29e0bb; /* Background color similar to service section */
    padding: 50px 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7),rgba(4,9,30,0.7)),url(images/Contact\ Us.jpg);
    background-size: cover; /* Cover the entire container */
    background-repeat: no-repeat; /* Prevent repeating the image */
    background-position: center;
    margin-top: 1vh ;
    margin-bottom: 50px;
  }

  
  .container {
    width: 80%;
    margin: auto;
    align-items: center;
  }
  
  .heading-contact {
    text-align: center;
    float: top;
  }
  .heading-form{
    margin-top: 4px;
    margin-bottom: 2vh;
    text-align: center;
  }
  .contact-info {
    display: flex;
    justify-content: space-around;
    }
  
  .contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    width: 30%;
    margin: 9px;
  }
  .contact-mobile{
    text-align:start ;
  }
  
  .contact-mobile p{
    display:block ;
    font-size: 0.7rem;
  }
  .contact-mobile p span{
    font-size: 1rem;
    color: black;
  }
  
  .contact-card i {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .contact-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
    
  }
  
  .contact-card p {
    font-size: 1rem;
    color: #777;
    font-weight: 700;
  }
  .contact-card .contact-email p{
    font-size: 1rem;
  }
  @media (width <= 417px){
    .contact-card .contact-email p{
      font-size: 0.8rem;
    }
    .contact-mobile p{
      font-size: 0.8rem;
    }
    .contact-mobile p span{
      font-size: 1rem;
      color: black;
    }
    .Address p{
      font-size: 0.9rem;
    }
    
  }
  @media (max-width: 700px) {
    .contact-info {
      flex-direction: column;
      align-items: center;
    }
    .form-group input
    {
      width: 200%;
  }
    .contact-card {
      width: 80%;
      margin-bottom: 20px;
    }
    .contact-email p{
      font-size: 0.9rem
    }
  }
  /* Footer section started */
  footer {
    background-color: #174b66;
    color: #fff;
    padding: -25px 0;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    position: relative;
  }
  
  .container {
    width: 80%;
    margin: auto;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Add space between footer sections */
  }
  
  .footer-section {
    flex: 1;
    padding: 20px;
    margin-bottom: 20px; /* Add margin between footer sections */
  }
  
  .footer-section h2 {
    color: #fff;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
  }
  
  .error-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #f44336;
    color: white;
    border-radius: 5px;
    z-index: 999;
  }
  
  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    color: #fff;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
   
    color: #ccc;
  }
  
  /* add this in your code socialmedia css */
  .social-icons {
    display: flex;
    background: #174b66;

  }
  
  .social-icons a {
    color: #ccc;
    text-decoration: none;
    font-size: 24px;
    margin-right: 20px;
  }
  
  
  .social-icons a:hover {
    color: #ffffff;
    border-color:#feffff; /* Change border color on hover */
  }

  .fa-facebook {
    margin-right: 2px;
    width: 40px;
    height: 40px;
    border: 2px solid #f8fdf7; /* Change the color and width as needed */
    border-radius: 50%; /* This will make the border a circle */
    transition: border-color 0.3s ease;
    text-align: center;
    align-content: center;
  }

  

  
  .fa-linkedin {
    margin-right: 10%;
    color: white;
    width: 40px;
    height: 40px;
    border: 2px solid #f9fcf8; /* Change the color and width as needed */
    border-radius: 50%; /* This will make the border a circle */
    transition: border-color 0.3s ease;
    text-align: center;
    align-content: center;
  }
  .top {
    place-self:end;
    position: absolute;
  bottom: 10px;
  right: 10px;
  
    /* margin: 100vh 0 0 90vw; */
    /* visual styling */
    text-decoration: none;
    padding: 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #174b66;
    background: #f5f6ee;
    font-weight: 1000px;
    height: 20px;
    width: 18px;
    border-radius: 10px;
    z-index: 0px;
    font-size: 30px;
    background: rgb(245, 245, 250) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='currentColor' d='M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z'%3E%3C/path%3E%3C/svg%3E") center no-repeat;
  }
  
  
  