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

html {
  font-size: 62.5%;

  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  color: #222;
}



.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  transition:
    transform 0.2s ease-out,
    opacity 0.2s ease-out;
  will-change: transform, opacity;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-title,
.hero-subtitle,
.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.hero-title.animate,
.hero-subtitle.animate,
.hero-buttons.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-size: 6rem;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4.8rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5rem;
}

.animated-btn {
  position: relative;
  padding: 15px 40px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  transition: color 0.4s ease;
  background: transparent;
}

/* Filling background animation */
.animated-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 0.4s ease;
  z-index: -1;
}

.animated-btn:hover::before {
  left: 0;
}

.animated-btn:hover {
  color: #111;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: 600;
  transition:
    transform 0.3s,
    background 0.3s,
    border 0.3s;
  border: none;
  text-decoration: none;
}

.primary {
  background: white;
  color: black;
  font-size: 1.5rem;
}

.primary:hover {
  background: #e5e5e5;
  transform: scale(1.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.mouse {
  width: 4rem;
  height: 6rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  display: flex;
  justify-content: center;
}
.wheel {
  width: 1rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  margin-top: 0.5rem;
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.5rem);
  }
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  letter-spacing: -0.5px;
}

.heading-tertiary {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  font-weight: 300;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
}

.grid {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 8rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;

  align-items: center;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.hidden {
  display: none !important;
}


/* contack button */
/* Contact Button Styles */
.contact-button {
  position: fixed;
  bottom: 12rem;
  right: 2rem;
  z-index: 1000;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.5);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-button:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.7);
  animation: none;
}

.contact-button:active {
  transform: scale(0.95);
}

.contact-button svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.contact-button:hover svg {
  transform: scale(1.2);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Bounce animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Add this for initial attention */
.contact-button.attention {
  animation: bounce 2s ease 3, pulse 2s infinite 6s;
}
