body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}


/* Global Styles */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f4f4f4;
}

h1,
h2 {
  color: #333;
  font-weight: 600;
}

p {
  color: #666;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Header Section */
header1 {
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

.header1-container h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.header1-container p {
  font-size: 18px;
}

/* About Section */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 20px;
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text {
  width: 50%;
}

.about-image {
  width: 40%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* Animations */
.fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.fadeInRight {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .about-section {
    width: 100%;
    padding: 0;
  }

  .about-text {
    width: 100%;
    padding: 20px;
  }

  .about-image {
    display: none;
  }
}

/* Footer Top Section */
.footer {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-top {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid gray;
}

.footer-top h3 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 15px;
}

.footer-top h3 i {
  font-style: italic;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.footer-links a:hover {
  border-color: gray;
}

/* Footer Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 20px;
}

.footer-column {
  flex: 1;
  padding: 10px;
  min-width: 200px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li:first-child {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: gray;
}

.footer-column small {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  color: gray;
}

.footer-column p {
  margin-top: 10px;
  font-size: 14px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 15px;
}

/* Building Icon */
.building {
  width: 50px;
  height: 100px;
  background-image: url('building-icon.png');
  /* Replace with actual building image */
  background-size: cover;
  margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    /* text-align: center; */
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-column {
    margin-bottom: 20px;
  }
}