* {
    Margin: 0;
    Padding: 0;
    box-sizing: border-box; 
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: Poppins, Arial, sans-serif;
  background-color: #f4f4f4;
  color: #202020;
  display: flex;
  flex-direction: column;
}



.container {
  flex: 1;
  padding-bottom: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

html, body {
  min-height: 100svh;
  min-height: 100vh;
}

body::after { content: ''; display: block; height: 10vh; }



.header {
  position: fixed;
  background-color: #202020;
  height: 10vh;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 0 0 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.links {
  color: white;
  font-size: 4.5vh;
  font-weight: 600;
}

.link-section {
  margin-top: 12vh;
  margin-bottom: 12vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
}

.link-box {
  width: 80vw;
  max-width: 500px;
  height: 8vh; /* ✅ fix height */
  background-color: #ffffff;
  border: 2px solid #202020;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2vh;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.link-box a {
  text-decoration: none;
  color: #202020;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link-box:hover {
  background-color: #202020;
}

.link-box:hover a {
  color: #ffffff;
}


.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #202020;
  z-index: 9999;
  padding: 1.5vh 0;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-info a {
  width: 7vh;
  height: 7vh;
  border-radius: 10px;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  color: #202020;
  text-decoration: none;
}

.contact-info a svg {
  width: 4vh;
  height: 4vh;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-info a:hover {
  background-color: #cecece;
  color: #000000;
}

@keyframes slideLeftRight {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

/* Right Side Icon */
.gt-icon-right {
  position: fixed;
  right: 5vw;
  top: 50%;
  z-index: 9999;
  animation: slideLeftRight 1.5s ease-in-out infinite;
}

.gt-icon-right a {
  color: #202020;
  font-size: 5vw;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Left Side Icon */
.gt-icon-left {
  position: fixed;
  left: 5vw;
  top: 50%;
  z-index: 9999;
  animation: slideLeftRight 1.5s ease-in-out infinite;
}

.gt-icon-left a {
  color: #202020;
  font-size: 5vw;
  text-decoration: none;
  transition: all 0.3s ease;
}

