footer {
  background: linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%), 
              linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  padding: 40px 20px;
  color: white;
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
 
}

.footer-top {
  text-align: center;
  margin-bottom: 20px;
  
}

.footer-top p {
  font-size: 14px;
  color: #d0f5f2;
}

.footer-top h2 {
  font-size: 24px;
  margin: 10px 0;
  color: white;
}

.footer-btn {
  background-color: #00c6b1;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.footer-btn:hover {
  background-color: #009c8e;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
}

.footer-left {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-left h1 {
  font-size: 48px;
  margin: 20px 0;
  color: white;
}

.footer-small {
  font-size: 14px;
  color: #d0f5f2;
}

.footer-or {
  margin: 10px 0;
  font-weight: bold;
}

.footer-links {
  display: flex;
  flex: 2;
  justify-content: space-around;
  min-width: 300px;
  padding: 1px;
  min-height: 100%;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column a {
  font-size: large;
  color: white;
  text-decoration: none;
  margin: 22px 0;
  border-bottom: 1px solid white;
  padding-bottom: 1px;
}

.footer-column a:hover {
  color: #d0f5f2;
}

.footer-column a:nth-last-child(1) {
  margin-bottom: 20px;
}

.footer-social {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.social-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 32px;
  color: #00c6b1;
  margin-bottom: -16px;
  margin-top: 112px;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(2, 50px);
  grid-gap: 10px;
  justify-content: center;
  margin-top: -146px;
  margin-left: 90px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  padding: 8px;
  object-fit: contain;
  transition: transform 0.3s ease;
}


.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright-line {
  width: 40px;
  height: 2px;
  background-color: white;
}

.copyright-container {
  padding: 5px 20px;
  border: 2px solid white;
  border-radius: 30px;
  background-color: #000;
  font-size: 14px;
  white-space: nowrap;
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-left, .footer-links, .footer-social {
    min-width: 100%;
    margin-bottom: 20px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    align-items: center;
    margin-bottom: 20px;
  }

  .social-title {
    writing-mode: horizontal-tb;
    transform: none;
    margin: 20px 0;
  }

  .social-icons {
    margin: 20px auto;
    grid-template-columns: repeat(4, 50px);
  }
}

@media (max-width: 600px) {
  .footer-left h1 {
    font-size: 36px;
  }

  .footer-top h2 {
    font-size: 20px;
  }

  .footer-btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .footer-column a {
    font-size: medium;
    margin: 15px 0;
  }

  .social-icons {
    grid-template-columns: repeat(2, 40px);
    grid-gap: 8px;
  }

  .social-icons a img {
    width: 35px;
    height: 35px;
    padding: 6px;
  }

  .social-title {
    font-size: 24px;
  }

  .copyright-container {
    font-size: 12px;
    padding: 4px 16px;
  }
}
.social-icons {
  display: grid;
  grid-template-columns: repeat(2, 50px);
  grid-gap: 10px;
  justify-content: center;
}

.social-icons a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  padding: 8px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
}