* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bs-teal);
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  transition: all 300ms;
  will-change: background;
  overflow-x: hidden;
}

.min-h-screen {
  min-height: 100vh;
}

.scroll-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.light-text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.video-background-holder {
  position: relative;
  background-color: #cbf5aa;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.video-background-holder video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
  position: relative;
  z-index: 2;
}

.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /*background-color: rgba(203,245,170,0.31);*/
  opacity: 0.5;
  z-index: 1;
}

.lotydd {
  position: fixed;
  bottom: 6px;
  left: 0;
  z-index: 1550;
  width: 100%;
  height: 75px;
  cursor: pointer;
  pointer-events: none;
}

.lotylnk {
  position: absolute;
  bottom: 6px;
  left: 50%;
  z-index: 1560;
  transform: translateX(-50%);
  width: 50px !important;
  height: 50px !important;
  pointer-events: all;
  cursor: pointer;
}

.lotytop {
  position: fixed;
  bottom: 6px;
  left: 0;
  z-index: 1550;
  width: 100%;
  height: 75px;
  cursor: pointer;
  pointer-events: none;
  display: none;
}

.lotylnktop {
  position: absolute;
  bottom: 6px;
  left: 50%;
  z-index: 1560;
  transform: translateX(-50%);
  width: 50px !important;
  height: 50px !important;
  pointer-events: all;
  cursor: pointer;
}

.px-15rem {
  padding-left: 15rem;
  padding-right: 15rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Responsive padding adjustments */

@media (max-width: 1200px) {
  .px-15rem {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (max-width: 768px) {
  .px-15rem {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 768px) {
  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 576px) {
  .px-15rem {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 576px) {
  .py-20 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.video-bg {
  /*position: fixed;*/
  /*top: 39px;*/
  max-width: 100%;
}

.gmap {
  border-radius: 20px;
}

.card {
  max-width: 800px;
  max-height: 250px;
}

/* Font Awesome icon sizing */

.fafa1 {
  font-size: 1.2rem;
}

.fafa2 {
  font-size: 2rem;
}

/* Contact Links Styling */

.contact-link-wrapper {
  min-width: 283px;
  max-width: 600px;
  width: 100%;
}

.contact-link {
  display: block;
  width: 100%;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-link:hover {
  transform: translateY(-3px);
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #f8f9fa;
  border-radius: 57px;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 60px;
}

.contact-link:hover .contact-box {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 3rem;
  color: #212529;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.contact-text {
  font-family: 'ADLaM Display', serif;
  font-size: 1.8rem;
  color: #212529;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s ease;
}

/* Specific hover colors for each contact type */

.contact-link:hover .fa-phone-square-alt {
  color: #0d6efd;
}

.contact-link:hover .fa-whatsapp-square {
  color: #25d366;
}

.contact-link:hover .fa-at {
  color: #dc3545;
}

@media (max-width: 768px) {
  .fafa1 {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .fafa2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-link-wrapper {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .contact-box {
    padding: 0.8rem 1.5rem;
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {
  .contact-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-box {
    padding: 0.6rem 1rem;
    gap: 0.6rem;
    border-radius: 40px;
  }
}

@media (max-width: 576px) {
  .contact-icon {
    font-size: 2.3rem;
  }
}

@media (max-width: 576px) {
  .contact-text {
    font-size: 1.5rem;
  }
}

/* Smooth scroll snap for better UX (optional) */

.scroll-container {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}

.scroll-section {
  scroll-snap-align: start;
}

/* Custom scrollbar styling (optional) */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

