.homepage {
    margin: 0;
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    border: 1px solid black; 
  }

  .contactus {
    margin: 0;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    /* border: 1px solid black;   */
  
  }
  .contactus-column {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
   box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
  }
  
  .topnav {
    background-color: #f4f4f4;
    overflow: hidden; 
  
  }
  
  .topnav img {
    max-width: 20px;
    max-height: 24px;
    margin-right: 10px;
  }
  
  .topnav a {
    float:left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    color: #000000;
    border-radius: 10px; /* Adjust the value as needed for the desired roundness */
  
  
  }
  .topnav a:hover {
    background-color:  #6573FF;
    color: rgb(255, 255, 255);
    border-radius: 10px; /* Adjust the value as needed for the desired roundness */
  }
  
  
  .topnav a.active {
    background-color: #000000;
    color: white;
  }

  /* Cards Section */
  .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two cards per row */
    gap: 20px;
    margin-top: 40px;
  }

  /* For two rows */
  .card {
    background-color: #000;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
    /* background-color:#1d1c1c ;
    color: #000000; */
}

  .card img {
    width: 50px;
    margin-bottom: 20px;
  }

  .card h3 {
    font-size: 20px;
    margin: 10px 0;
  }

  .card p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.5;
  }

  .card .divider {
    height: 4px;
    width: 50px;
    background-color: #6573FF;
    margin: 15px auto 0;
    border-radius: 2px;
  }
  


  /* Responsive Design */
  @media (max-width: 768px) {
    .cards {
      grid-template-columns: repeat(2, 1fr); /* Two cards per row on smaller screens */
    }
  }

  @media (max-width: 480px) {
    .cards {
      grid-template-columns: 1fr; /* One card per row on small screens */
    }
  }

  /* Footer styling */
  .footer {
    background-color: #000; /* Plain black background */
    color: #ffffff; 
    text-align: center; /* Center the text */
    padding: 15px 0; /* Reduce height of the footer */
    font-size: 18px; /* Font size */
    width: 100%; /* Take full width */
    margin-top: auto; /* Push the footer to the bottom when content is small */
    

}



.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.title-column {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
 /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);  */
}



.logo {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 50%;
  object-fit: cover;
}

.contactuslogo {
  width: 25px;  /* Reduce size for better alignment */
  height: 25px;
  margin-right: 8px; /* Add spacing between logo and text */
  vertical-align: middle; /* Align logos with text */
  border-radius: 50%;
  object-fit: cover;
}
.footerlogo {
  width: 40px;  /* Reduce size for better alignment */
  height: 40px;
  margin-right: 8px; /* Add spacing between logo and text */
  vertical-align: middle; /* Align logos with text */
  border-radius: 50%;
  object-fit: cover;
}
.centered-list {
  list-style:none;
  padding: 0;
  margin: 0;
  text-align: center; /* Horizontally center the text */
}

.centered-list li {
  padding: 10px 0; /* Add spacing between items */
  font-size: 16px;
  color: #000000;
}

.title {
  font-size: 1.2rem;
  color: #000000;
  margin: 0;
}
  
  body{
    font-family: 'Montserrat', sans-serif;
   }
  h1, h3 {
    text-align: center;
  }
  
  .green-button {
    text-decoration: dashed;
    display: inline-block; 
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    
  } 
  
  .green-button:hover {
    background-color: #6573FF; 
    color: #ffffff;
  }
  
  
  @media screen and (max-width: 600px) {
    .topnav a {
        float: none;
        width: 100%;
        text-align: left;
    }
  }
  
    img {
      max-width: 100%;
      height: auto; /* Ensures the aspect ratio is maintained */
      border-radius: 10px;
  }
  .social-media-column {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: #edf8f2; */
    padding: 10px;
  }
  
  .social-media-column a {
    margin-bottom: 10px;
  }
  
  .social-media-column img {
    width: 40px; /* Adjust the size of the social media icons */
    height: 40px;
    border-radius: 50%; /* Creates rounded icons */
    transition: transform 0.3s;
  }
  
  .social-media-column img:hover {
    transform: scale(1.2); /* Adds a zoom effect on hover */
  }
  
  
  

  
  @media screen and (min-width: 600px) {
    .testimonial-container {
        width: 48%; /* Adjust the width for medium-sized screens */
    }
  }
  
  @media screen and (min-width: 900px) {
    .testimonial-container {
        width: 30%; /* Adjust the width for larger screens */
    }
  }
  
  /* @media screen and (min-width: 600px) {
    .subscription-form {
        max-width: 600px; /* Adjust the maximum width for larger screens */
    /* } */
  /* } */
  
  /* @media screen and (min-width: 768px) {
    .subscription-form {
        max-width: 800px; /* Adjust the maximum width for larger screens */
    /* } */
  /* }  */
  .container {
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    margin: 60px;
  }
  
  #map-container {
    width: 50%;
    height: 400px;
    margin-bottom: 300px;
  }
  
  .employee-image{
    width: 100px;
    height: auto;
    border-radius: 50%;
    border: 2px solid #333
   
  }
  

  
  header {
    width: 100%;
    height: 200px; /* Adjust the height as needed */
    background-color: #333; /* Example background color */
    text-align: center;
    overflow: hidden; /* Hide any overflow if the image is larger than the header */
  }
  
 
  header img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  
  @media (max-width: 600px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
  
    #map-container {
        width: 100%;
    }
  
    
  }