#mob-1{
    display: none;
}

.last::after {
    content: '';
    display: block;
    width: 0;
    height: 2.5px;
    background: #ffff;
    transition: width .3s;
}

.last:hover::after {
    width: 100%;
}

.animation-text {
    display: block;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  
  .left {
    animation-name: slideFromLeft;
  }
  
  .right {
    animation-name: slideFromRight;
  }
  
  .top {
    animation-name: slideFromTop;
  }
  
  .bottom {
    animation-name: slideFromBottom;
  }
  
  @keyframes slideFromLeft {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes slideFromRight {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes slideFromTop {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  @keyframes slideFromBottom {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

@media(max-width: 1000px){
    #mob-1{
        display: block;
        row-gap: 100px;
    }

    #dek-1{
        display: none;
    }

    .t-1{
        margin: 5vw;
    }
}

@media(min-width: 1648px){
    #hedimg{
        margin-left: 160px;
    }
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
  }

  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
  }


  .marquee-container {
    width: 90%;
    overflow: hidden;
    white-space: nowrap;
    background-color: #005014; /* Greenish background for a notification feel */
    color: #ffffff; /* White text */
    font-size: 1.5rem;
    padding: 15px 20px;
    margin: 20px auto; /* Center with space around */
    border-radius: 12px; /* Rounded border */
    border: 2px solid #00a357; /* Slightly lighter green border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
    position: relative;
  }
  
  .marquee {
    display: inline-block;
    animation: scroll 19s linear infinite; /* Adjust speed for better readability */
    white-space: nowrap;
  }
  
  .marquee-container:hover .marquee {
    animation-play-state: paused; /* Pause scrolling on hover */
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(100%); /* Start in the middle */
    }
    100% {
      transform: translateX(-100%); /* Scroll to the left */
    }
  }
  

  .dropdown {
    position: relative;
    display: inline-block;
  }
  /* Dropdown menu */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    color: black;
    min-width: 160px;
    border: 1px solid #ddd;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }
  /* Dropdown menu items */
  .dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
  }
  .dropdown-menu a:hover {
    background-color: #f5f5f5;
  }
  /* Show dropdown on hover */
  .dropdown:hover .dropdown-menu {
    display: block;
  }