.animated-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }

  .animated-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(50, 161, 230);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }

  .animated-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }


  .about-section {
    background: url(../img/about.jpg) no-repeat left;
    background-size: 55%;
    background-color: #d7d5d5;
    overflow: hidden;
    padding: 10px 0;
    animation: fadeIn 1s ease-out;
}

.inner-container {
    width: 55%;
    float: right;
    background-color: #00adee;
    padding: 90px;
    transform: translateX(100%); /* Start off-screen */
    animation: slideIn 1s ease-out forwards;
}

.inner-container h1 {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
}

.text {
    font-size: 13px;
    color: #ffffff;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    opacity: 0;
    animation: textFadeIn 1.5s 0.5s forwards; /* Fade-in effect with delay */
}

.read-more {
    background-color: #939697;
    width: 140px;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #00adee;
}




@media screen and (max-width:1200px) {
    .inner-container {
        padding: 80px;
    }
}

@media screen and (max-width:1000px) {
    .about-section {
        background-size: 100%;
        padding: 100px 40px;
    }
    .inner-container {
        width: 100%;
    }
}

@media screen and (max-width:600px) {
    .about-section {
        padding: 0;
    }
    .inner-container {
        padding: 60px;
    }
}

/* Animation Definitions */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(100%); /* Start from the right */
    }
    100% {
        transform: translateX(0); /* End in place */
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.download-section {
    text-align: center;
    position: relative;
    box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.1); /* Shadow only at the bottom */
    padding: 20px;
    border-radius: 10px;
    background: #f5f8fd; /* Ensures visibility */
}

  .download-box {
    border: 2px solid #00adee;
    margin-bottom: 50px;
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
  }

  .download-box:hover {
    transform: scale(1.05);
  }

  .download-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(0, 173, 238, 0.2);
    transition: left 0.5s;
    z-index: -1; /* Moves the animation effect behind the content */
  }

  .download-box:hover::before {
    left: 0;
  }

  .download-box a {
    position: relative;
    z-index: 1; /* Ensures the link remains clickable */
  }
  

  .download-box {
    border: 2px solid #00adee;
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); /* Add shadow below */
}

.download-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
}

.title {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 30px;
  color: #004080;
}

.budget-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-family: Arial, sans-serif;
}

.budget-table th,
.budget-table td {
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: top;
  text-align: left;
}

.budget-table th {
  background-color: #00a0df;
  color: #fff;
  font-weight: bold;
}



