html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}


a {
    text-decoration: none;
}

/* ----------------------------------------------------------------------- */

   /* Contact Us Icons */
   #whatsappIconLink, #telIconLink {
    position: fixed; 
    right: 20px; 
    z-index: 1000;
   }

  #whatsappIconLink {
    bottom: 70px; 
  }

   #telIconLink {
    bottom: 20px; 
   }

   #whatsappIcon, #telIcon {
    width: 40px;
    height: 40px;
    display: inline-block;
    object-fit: contain;
    vertical-align: middle;
   }

/* ----------------------------------------------------------------------- */

/* Scrolling Animation - Transition  */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.3s;
}

