@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  margin: 0;
  background-color: #f4f4f4;
  font-family: Poppins;
}
:root {
  --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
  --item1-filter: blur(30px);
  --item1-zIndex: 11;
  --item1-opacity: 0;

  --item2-transform: translateX(0);
  --item2-filter: blur(0px);
  --item2-zIndex: 10;
  --item2-opacity: 1;

  --item3-transform: translate(50%, 10%) scale(0.8);
  --item3-filter: blur(10px);
  --item3-zIndex: 9;
  --item3-opacity: 1;

  --item4-transform: translate(90%, 20%) scale(0.5);
  --item4-filter: blur(30px);
  --item4-zIndex: 8;
  --item4-opacity: 1;

  --item5-transform: translate(120%, 30%) scale(0.3);
  --item5-filter: blur(40px);
  --item5-zIndex: 7;
  --item5-opacity: 0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
nav.navbar {
  font-size: 16px; /* Adjust this value as needed */
}

nav.navbar .nav-link {
  font-size: 16px; /* Adjust this value as needed */
}

nav.navbar .navbar-brand {
  font-size: 18px; /* Adjust this value as needed */
}
.container-fluid {
  background-color: white;
}
.head {
  background-color: #33db6d;
  font-size: 30px;
  font-weight: 600;
}
.nav-logo {
  height: 50px;
  width: 50px;
  border-radius: 8px;
  margin-right: 10px;
}
.navbar {
  background-color: #ffffff !important;
  padding: 0;
  height: 60px;
  position: sticky;
  top: 0;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); */
  z-index: 2;
}
.navbar-brand img {
  margin-right: 200px;
}
.brand-name {
  color: #63c4507e;
  font-weight: 700;
}

.nav-link {
  font-weight: 600 !important;
  margin-left: 10px;
}

.nav-link:hover {
  color: #33db6d !important;
  transition: background-color 0.3s;
  transform: scale(1.1);
}

.navbar-brand:hover {
  color: #48eb86 !important;
  transition: background-color 0.3s;
  transform: scale(1.1);
}
.offcanvas {
  border-radius: 25px; /* Adjust the value as needed */
  background-color: white;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* footer */
footer {
  background-image: linear-gradient(to right, #222, #444, #222);
  background-size: 200% 100%;
  animation: gradientAnimation 10s ease-in-out infinite;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  flex-wrap: nowrap;
  gap: 20px;
}

.footer-content div {
  flex: 1;
}

.footer-content h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

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

.footer-content li {
  margin-bottom: 5px;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-content a:hover {
  color: #ff9900;
}

.copyright {
  font-size: 14px;
  margin-top: 20px;
}

/* Make sure content remains in one row */
@media (max-width: 1024px) {
  .footer-content {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-content div {
    flex: none;
    min-width: 250px;
  }
}
