/* Custom CSS for changing navbar color on scroll */
.navbar-scrolled {
    background-color: #fff !important;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .navbar-scrolled.navbar-dark .navbar-brand,
  .navbar-scrolled.navbar-dark .navbar-nav .nav-link {
    color: #333 !important;
  }


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

  .animated-header-old {
    animation: fadeInUp 1s ease-in-out;
  }

  .animated.fadeIn {
    animation: fadeIn 1s ease-in-out;
  }

  .hover-effect:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
  }

  .animated.rotateIn {
    animation: rotateIn 1s;
  }

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

  .header-title {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.animated-header.active .header-title {
    opacity: 1;
    transform: translateY(0);
}

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

  .roll-in {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.roll-in.active {
    opacity: 1;
    transform: translateX(0);
}


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

  .scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: 24px;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 50%;
    padding: 10px;
    transition: background-color 0.3s ease-in-out;
  }

  .scroll-to-top:hover {
    background-color: #0056b3;
  }

  /* Custom styles for the rounded button */
.meine-rounded-btn-orange {
    border-radius: 50px; /* Increase the value for more rounding */
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }

  .meine-rounded-btn-orange:hover {
    background-color: #fc923c; /* Change to the desired hover color */
    color: #fff; /* Change to the desired text color */
  }


.meine-rounded-btn-red {
    border-radius: 50px; /* Increase the value for more rounding */
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }

  .meine-rounded-btn-red:hover {
    background-color: #910606; /* Change to the desired hover color */
    color: #fff; /* Change to the desired text color */
  }


/* for team spirit Color Scheme */
  .meine-team-color {
    color: #001F3F; /* Navy Blue */
  }

  .meine-team-color:hover {
    color: #003366; /* Slightly darker shade for hover */
  }

  /* Silver-Bird Color Scheme */
/* Replace the "#C0C0C0" color with your chosen Silver-Bird shade */
.meine-silver-bird {
    color: #C0C0C0; /* White text for contrast */
  }

  .meine-silver-bird:hover {
    background-color: #A9A9A9; /* Slightly darker shade for hover */
  }


  /* Button styles */
.meine-violet {
    color: #8A2BE2; /* Violet */
  }

  .meine-violet:hover {
    color: #6A1BBE; /* Slightly darker shade for hover */
  }





  /* --------------------------------------- */
  /* Custom CSS for subtle animations */
  .fade-in {
    opacity: 0;
    animation: fadeInAnimation 1s ease forwards;
  }

  @keyframes fadeInAnimation {
    to { opacity: 1; }
  }

  .slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpAnimation 0.8s ease forwards;
  }

  @keyframes slideUpAnimation {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .slide-right {
    transform: translateX(-100%);
    animation: slideRightAnimation 0.5s forwards;
  }

  @keyframes slideRightAnimation {
    to {
      transform: translateX(0);
    }
  }

  .slide-left {
    transform: translateX(100%);
    animation: slideLeftAnimation 0.5s forwards;
  }

  @keyframes slideLeftAnimation {
    to {
      transform: translateX(0);
    }
  }

  .rotate-infinite {
    animation: rotateAnimation 0.9s infinite linear;
  }

  .rotate {
    animation: rotateAnimation 0.5s 1s linear;
  }

  @keyframes rotateAnimation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  /* -------------------------- */

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

.rotate-seconds {
    width: 100px;
    height: 100px;
    background-color: #3498db;
    animation: rotateAnimationSeconds 5s linear infinite;
}


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

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

/* Apply the bounce animation to the element */
.bounce {
    animation: bounce 2s infinite;
}

.bounce-once {
    animation: bounce 2s ;
}

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

@keyframes burstAnimation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    25% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    50% {
        transform: scale(0);
        opacity: 0;
    }
}

.burst {
    animation: burstAnimation 1s ease-out;
}


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

/* Define the keyframes for the slide-in animation */
@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply the slide-in animation to the element */
.slide-in {
    animation: slideIn 1s ease-in-out;
}


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


  /* Portfolio Section */
#portfolio {
    background-color: #f8f8f8;
    padding: 80px 0;
  }

  .portfolio-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
  }

  .portfolio-card img {
    width: 100%;
    height: 290px;
    display: block;
  }

  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

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

  .portfolio-card:hover .overlay {
    opacity: 1;
  }


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


  /* Custom CSS for modern effects */
  .myheaderImg {
    /* background: url("../app_images/never-stop-learning-gada593e2b_1280.jpg") center center / cover no-repeat; */
    background:
        linear-gradient(
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.8)
        ),
        url("../../../img/slider/binary-globe.jpg") center center / cover no-repeat;
    /* background-repeat: no-repeat;
    /* background-attachment: fixed; */
    /* background-size: cover;
    background-position:left;  */

    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 200px 0; /* Adjust the padding to fit your content */
  }

  .myheaderImg h1 {
    font-size: 3.5rem;
  }

  .myheaderImg p {
    font-size: 1.25rem;
  }

  .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }

  .card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
