.page-container {
    transition: transform 0.5s ease-in-out;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #f1eaea;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 10px 20px 22px 20px; */
}

.logo img{
    height: 80px; /* Adjust the height of your logo */
    width: 100px;
    /* margin-right: 20px; */
}

.navbar a {
    color: white;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.navbar-left, .navbar-right {
    display: flex;
}

.navbar-left a {
    margin-left: 20px; /* Adjust the spacing between categories */
}

.navbar-right a {
    margin-left: 20px; /* Adjust the spacing between categories */
}

/* Style for colorful boxes */
.navbar a {
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.navbar-left a {
    background-color: #e74c3c;
}

.navbar-right a {
    background-color: #e74c3c;
}

.navbar a:hover {
    background-color: #633a99;
}

/* Adjust the spacing between the logo and the first box */
.navbar-left a:first-child {
    margin-left: 20px;
}
/*contact banner*/

/*footer*/

.footer-banner {
    background-color: #001f3f; /* Dark Blue Background */
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 10px 20px 40px 20px;
}

.footer-column {
    flex: 1;
    margin-right: 20px; /* Adjust the margin between columns */
}

.company-logo img {
    max-width: 100%; /* Adjust the size of the company logo */
    height: auto;
    padding-top: 30px;
}

.connect-section,
.quick-links,
.support-links,
.legal-section,
.animation-section {
    text-align: left;
}

.connect-section h3,
.quick-links h3,
.support-links h3,
.legal-section h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.connect-section p,
.connect-section a,
.quick-links ul,
.support-links ul,
.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.connect-section p,
.quick-links li,
.support-links li,
.legal-section li {
    margin-bottom: 6px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.map-container {
    width: 300px; /* Set the desired width */
    height: 200px; /* Set the desired height */
    margin-left: 20px; /* Adjust the spacing between the map and other content */
    padding-top: 30px;
}

.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  
  .service-row {
    display: flex;
    width: 80%;
    margin: 20px 0;
  }
  
  .service-box {
    position: relative;
    border: 2px solid #ddd;
    padding: 20px;
    text-align: left;
    transition: box-shadow 0.3s;
    border-radius: 15px; /* Add border-radius for rounded corners */
    margin: 10px; /* Add margin for spacing between boxes */
    width: calc(100% - 20px); /* Take up the entire row with margin */
  }
  
  .service-box:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .service-box img {
    max-width: 40%; /* Adjust the width of the image as needed */
    position: absolute;
    top: 50%; /* Center the image vertically */
    right: -20px;
    transform: translateY(-50%); /*Adjust for vertical centering */
    border-radius: 10px; /* Optional: Add border-radius for rounded image corners */
  }

/* .service-box:hover img {
    transform: scale(1.1); /* Optional: Add a scaling effect on hover 
  } */




