.description-impact {
    text-align: center;
    width: 853px;
}

.image-icon {
    float: right;
    width: 36px;
    margin-top: 3%;
    margin-right: -6%;
}

.web-height {
    height: 120px;
}

.ui-index {
    margin-right: 14%;
    width: 50px;
    height: 50px;
}

.image-height-display {
    height: 600px;
}

.client-space {
    text-align: center;
    font-size: 39px;
    margin-bottom: 40px;
}

.animated-image {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-in-out;
}

.animated-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.nav-pills .nav-link {
    border-radius: 20px;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
    color: #555;
    background: #f1f1f1;
}

.nav-pills .nav-link.active {
    background: #00c3ff;
    color: white;
    font-weight: bold;
    box-shadow: 0px 0px 5px rgba(0, 170, 255, 0.5);
}

.tab-content {
    padding: 20px;
    font-size: 16px;
    background: #fff;
    border-radius: 10px;
}

.nav-pills {
    margin: 0px;
    border: 1px solid #d2dbe8;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    -webkit-border-radius: 45px;
}

.tab-display {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.tab-pane {
    display: none !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: auto !important;
}

.tab-pane.active {
    display: flex !important;
    gap: 70px;
    margin-top: 35px;
}

.tab-content {
    margin: 0 !important;
    padding: 0 !important;
}

.image-width-techno {
    margin-bottom: 5px;
    height: 54px;
    width: 54px;
}

.techno-flex {
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    gap: 10px;
}
.text-color{
    color: 
    color-mix(in srgb, var(--accent-color), transparent 25%);
        font-weight: 800;
}
.nav-item a:hover{
    background: #00c3ff;
    color: #fff;
    font-weight: 600;
    box-shadow: 8px 8px 18px 0px rgba(42, 67, 113, 0.3);
    -webkit-box-shadow: 8px 8px 18px 0px rgba(42, 67, 113, 0.3);
    -moz-box-shadow: 8px 8px 18px 0px rgba(42, 67, 113, 0.3);
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    white-space: nowrap;
  }

  .marquee {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: black;
    animation: marquee-scroll 10s linear infinite;
  }
  .connect-btn {
    display: flex;
    align-items: center;
    background: #ff5b5b;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(255, 91, 91, 0.3);
    transition: all 0.3s ease-in-out;
    margin-top: 4%;
    margin-left: 44%;
}
.connect-btn a{
    color: white;
}
.connect-btn:hover {
    background: #ff3b3b;
    box-shadow: 7px 7px 15px rgba(255, 59, 59, 0.4);
}

.connect-btn span {
    margin-right: 10px;
}

.arrow {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5b5b;
    font-size: 25px;
    font-weight: bold;
}
.text-footer{
    width: 547px;
    text-align: center;
}
.image-height-market{
    height: 676px;
}
.testimonial-img{
    width: 90px;
    height: 90px;
}
.animate-check {
    opacity: 0;
    transform: translateX(-10px);
    animation: fadeInLeft 0.8s ease-in-out forwards;
  }

  .internship-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  .internship-card:hover {
    background: #00c3ff;
    color: white;
    transform: translateY(-5px);
  }
  
  .internship-card .icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
    transition: 0.3s;
  }
  
  .internship-card:hover .icon {
    color: white;
  }
  
  .apply-btn {
    padding: 10px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
  }
  
  .apply-btn:hover {
    background-color: #0056b3;
  }
  .image-certificate{
    width: 100%;
    height: 500px;
  }
  /* Keyframe Animation */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-10px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes marquee-scroll {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }