/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */
/* Container style */
.container {
  width: 95%;
  max-width: 95%;
  /* padding-inline: 15px; */
  margin-inline: auto;

  @media (min-width: 1580px) {
    /* .container { */
    width: 90%;
    max-width: 90%;
    /* } */
  }
}

/* Padding */
.padding {
  padding: 68px 0;
}

.text-pry {
  color: var(--primary-color);
}

.btn {
  padding: 0.8rem 2.5rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--quaternary-color);
  transform: translateY(-2px);
}

/* Hover effects for buttons */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--quaternary-color);
  margin-bottom: 1rem;
  width: fit-content;
  margin-inline: auto;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: var(--primary-color);
  margin-top: 1rem;
  border-radius: 2px;
  margin-inline: auto;
}

.section-header.white h2 {
  color: #fff;
}

/* .header-underline {
  width: 100px;
  height: 4px;
  background: var(--primary-color);
  margin: 0 auto;
  border-radius: 2px;
} */

.o-hidden {
  overflow: hidden;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--dark-divider);
}

@keyframes pulse-sun {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 30px #e67e22, 0 0 60px #e67e22, 0 0 90px #e67e22;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px #e67e22, 0 0 80px #e67e22, 0 0 120px #e67e22;
  }
}

@keyframes rotate-orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fade-in-out {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes loading-animation {
  0% {
    width: 0%;
    background-position: 0% 0%;
  }
  50% {
    width: 70%;
    background-position: 100% 0%;
  }
  100% {
    width: 100%;
    background-position: 0% 0%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
