#home {
  transition-delay: 0.1s;
}

#about {
  transition-delay: 0.1s;
}

#services {
  transition-delay: 0.1s;
}

#contact {
  transition-delay: 0.1s;
}

#services {
  padding-top: 10rem;
}

#contact {
  padding: 4rem 2rem;
  text-align: center;
}

.contact-details {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  padding: 1rem 0;
}

.contact-item {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-label {
  font-weight: 600;
  color: black;
  margin-right: 0.5rem;
}

.contact-value {
  color: var(--text-dark);
}

.contact-spacing {
  height: 2rem;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: -1.4rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.contact-btn svg {
  width: 24px;
  height: 24px;
  fill: black;

}

.contact-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-md);
}

.contact-btn.email:hover {
  background: #D44638;
  color: white;
}

.contact-btn.linkedin:hover {
  background: #0077B5;
  color: white;
}

.contact-btn.instagram:hover {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: white;
}

.contact-btn:hover svg {
  fill: white;
}

@media (max-width: 480px) {
  .contact-buttons {
    gap: 1rem;
  }

  .contact-btn {
    width: 45px;
    height: 45px;
  }

  .contact-btn svg {
    width: 20px;
    height: 20px;
  }
}


@media screen and (max-width: 1023px) {
  #home {
    display: none !important;
  }

  .intro-section h1 {
    margin-top: -7rem;
  }

  #products h1 {
    margin-top: -15rem;
  }

  #products h1 {
    margin-top: -12rem;
  }
}

.button-group {
  display: flex;
  gap: 3.4rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.liquid-btn {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  margin: 0 10px;
  color: var(--primary-blue);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary-blue);
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  z-index: 1;
  transition: color 0.3s ease;
}

.liquid-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-blue);
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform: scaleX(0);
  transform-origin: right;
}

.liquid-btn:hover {
  color: white;
}

.liquid-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.liquid-btn:active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}


@media (max-width: 768px) {
  .slide-nav {
    width: 40px;
    height: 40px;
  }
}


@media (max-width: 768px) {
  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .button-group a {
    width: 100%;
    text-align: center;
  }

}

section>* {
  animation: fadeInUp 0.6s ease forwards;
}

section>*:nth-child(1) {
  animation-delay: 0.1s;
}

section>*:nth-child(2) {
  animation-delay: 0.3s;
}

section>*:nth-child(3) {
  animation-delay: 0.5s;
}

.foot-main {
  background-color: #93defe;
  color: #2c3e50;
  padding: 40px 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
}

.foot-container {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.foot-left-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  padding-left: 60px;
}

.foot-logo-social {
  text-align: center;
  width: 100%;
}

.foot-logo {
  max-width: 225px;
  margin-bottom: 20px;
  width: 100%;
  height: auto;
}

.foot-social-btns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.foot-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease;
  padding: 0.5rem;
  color: black;
  text-decoration: none;
  font-size: 20px;
}

.foot-social-btn:hover {
  transform: scale(1.1);
  color: white;
}

.foot-social-btn:hover svg {
  fill: white;
}

.foot-social-btn.email:hover {
  background: #D44638;
}

.foot-social-btn.linkedin:hover {
  background: #0077B5;
}

.foot-social-btn.instagram:hover {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.foot-right-col {
  flex: 2;
  display: flex;
  justify-content: center;
}

.foot-links-container {
  display: flex;
  gap: 60px;
  padding: 0 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.foot-links-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-link {
  color: #2c3e50;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline;
}

.foot-link:hover {
  color: #0040ff;
}

.foot-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  width: 100%;
}

.foot-copyright {
  color: #7f8c8d;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.foot-firmname {
  color: #3498db;
  font-weight: 600;
  position: relative;
  display: inline;
}

.foot-firmname:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #3498db;
  max-width: calc(100% - 0.1em);
}

@media (max-width: 1024px) {
  .foot-container {
    padding: 0 30px;
  }

  .foot-left-col {
    padding-left: 40px;
  }

  .foot-logo {
    max-width: 200px;
  }

  .foot-links-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .foot-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 25px;
  }

  .foot-left-col {
    padding-left: 0;
    width: 100%;
  }

  .foot-logo {
    max-width: 180px;
  }

  .foot-links-container {
    justify-content: space-around;
    gap: 30px;
    padding: 0;
  }

  .foot-bottom {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .foot-main {
    padding: 30px 0 15px;
  }

  .foot-container {
    padding: 0 20px;
  }

  .foot-logo {
    max-width: 160px;
    margin-bottom: 15px;
  }

  .foot-social-btns {
    gap: 15px;
  }

  .foot-social-btn {
    font-size: 20px;
  }

  .foot-links-container {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }

  .foot-links-col {
    align-items: center;
    gap: 6px;
  }

  .foot-bottom {
    margin-top: 25px;
    padding-top: 0;
  }

  .foot-copyright {
    padding: 0 20px;
  }
}

@media (max-width: 360px) {
  .foot-social-btns {
    gap: 12px;
  }

  .foot-social-btn {
    font-size: 18px;
  }

  .foot-link {
    font-size: 14px;
  }

  .foot-copyright {
    font-size: 13px;
  }

  .foot-logo {
    max-width: 140px;
  }
}