/* .gradient-background {
  background: linear-gradient(90deg, #00008b, #1e90ff);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
}

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

.container{
  padding-bottom: 0px;
}
  

.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}

.profile-img {
  height: 100px;
  border-radius: 50%;
}

.container-testimonial{
  text-align: center;
}

.dog{
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-top: 50px;
}

#testimonial{
  background-color: #E9ECEF;
  padding-top: 100px;
  padding-bottom: 100px;
}

.testimonial-image{
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}



.nav-link{
  color: black;
}




 */



 /* Gradient Background */
.gradient-background {
  background: linear-gradient(90deg, #00008b, #1e90ff);
  background-size: 180% 180%;
  animation: gradient-animation 5s ease infinite;
}

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

/* General Container */
.container {
  padding-bottom: 0px;
  padding-left: 10px;
  padding-right: 10px;
}

/* Icon Square */
.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}

/* Profile Image */
.profile-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

/* Testimonial Section */
.container-testimonial {
  text-align: center;
  padding: 20px;
}

.dog {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-top: 50px;
}

#testimonial {
  background-color: #E9ECEF;
  padding-top: 50px;
  padding-bottom: 50px;
}

.testimonial-image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Navigation Link */
.nav-link {
  color: white;
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .gradient-background {
    background-size: 200% 200%;
  }

  .icon-square {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 768px) {
  .profile-img {
    height: 80px;
    width: 80px;
  }

  .dog {
    height: 80px;
    width: 80px;
    margin-top: 30px;
  }

  #testimonial {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .testimonial-image {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .icon-square {
    width: 2rem;
    height: 2rem;
  }

  .container {
    padding-left: 5px;
    padding-right: 5px;
  }

  .container-testimonial {
    padding: 10px;
  }

  .nav-link {
    font-size: 14px;
  }
}









/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #00008b;
opacity: 90px;
}

.navbar .logo {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.navbar-links {
  display: flex;
  gap: 15px;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.navbar-links a:hover {
  text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background-color: white;
  height: 3px;
  width: 25px;
  margin: 4px 0;
}

/* Hidden Menu for Mobile */
.navbar-links {
  display: flex;
}

.navbar-links.mobile {
  display: none;
  flex-direction: column;
  background-color: #00008b;
  position: absolute;
  top: 50px;
  right: 10px;
  width: 150px;
  padding: 10px;
  border-radius: 5px;
}

.navbar-links.mobile a {
  padding: 10px 0;
  text-align: center;
}

/* Show Menu when Active */
.navbar-links.mobile.active {
  display: flex;
}

/* Responsive Design for Navbar */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}





.navbar {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px); /* Optional: Adds a blur effect */
}


