/* -------------------- GLOBAL -------------------- */
/* Animated Linear Gradient Background */
* {
  margin: 0;
  padding: 0;
}
body {
  background: linear-gradient(135deg, #565e02, #840303, #077b30);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  color: white;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}


@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

p {
  line-height: 1.7;
}

/* -------------------- NAVBAR -------------------- */
.navbar {
  background: rgba(0, 0, 0, 0.9);
  padding: 10px 0;
}
 .navbar:hover {
      background: rgba(0, 0, 0, 0.9);
    }

.navbar .nav-link {
  margin-left: 20px;
  transition: 0.3s;
}

.navbar .nav-link:hover {
  color: #ffc107 !important;
}

.navbar-brand span {
  font-size: 1.2rem;
  font-weight: bold;
}

/* -------------------- HERO SECTION -------------------- */
.page-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./images/background.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pelli {
  color: #ffc107;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* -------------------- ABOUT SECTION -------------------- */
.about-container {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 15px;
}

/* -------------------- SERVICES -------------------- */
.services-container h2 {
  margin-bottom: 40px;
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  border-radius: 15px 15px 0 0;
}

/* -------------------- CONTACT FORM -------------------- */
form {
  background: rgba(0, 0, 0, 0.8);
}

form input,
form textarea {
  border-radius: 10px;
  border: 1px solid #444;
  background: #222;
  color: #fff;
}

form input:focus,
form textarea:focus {
  border-color: #ffc107;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

.btn-warning {
  border-radius: 8px;
  font-weight: 600;
}

/* -------------------- FOOTER -------------------- */
.foot {
  background: rgba(0, 0, 0, 0.9);
  border-top: 2px solid #ffc107;

}

.footer {
  margin-top: 40px;
}

.footer a {
  color: #ffc107;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.2rem;
}

/* --------------------------------------------------------------------------------------------------------------------- */




/* Card Hover Animation */
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.4);
  transition: 0.4s ease-in-out;
}

/* Footer Icon Bounce */
.footer a:hover i {
  animation: bounce 1s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Custom Navbar Styling */
.custom-navbar {
  background: rgba(0, 0, 0, 0.7);
  transition: background 0.4s ease-in-out;
}

.custom-navbar:hover {
  background: rgba(0, 0, 0, 0.9);
}

.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffc107 !important; /* golden yellow */
}

/* Highlight active page */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus {
  color: #ffc107 !important;
}