@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
.navbar {
  position: fixed; 
  top: 0;
  height: 50px; 
}

.title {
    margin-top: 2em; 
    color: #304530;
    position: relative;
    text-align: center;
    font-size: 3.5vw;
    font-weight: bold;
    margin-bottom: 1%;
    text-align: left;
    width: 100%;
    padding-left: 10px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.title::after {
    content: '';
    position: absolute;
    height: 3px;
    background-color: #304530;
    bottom: -4px;
    left: 1%;
    width: 0%;
    animation: expandBar 0.75s ease-in-out forwards;
}

@keyframes expandBar {
    0% {
        left: 1%;
        width: 0%;
    }
    100% {
        width: 44%;
    }
}

.subheading {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2%;
    text-align: left;
    width: 100%;
    padding-left: 10px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #304530;
}

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

        .container {
            max-width: none;
            margin: 1% 0%;
            padding: 1% 0%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding-left: 10px;
            padding-right: 10px;
            box-sizing: border-box;
        }

        .card {
            background-color: #000000;
            border-radius: 5px;
            margin-bottom: 25px;
            overflow: hidden;
            transition: transform 0.3s ease-in-out;
            text-decoration: none;
            width: calc(33.33% - 20px);
            margin-right: 20px;
            margin-left: 0;
            box-sizing: border-box;
            transition: box-shadow 0.5s ease transform 0.5s ease;
        }

        .card:last-child {
            margin-right: 0;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 16px rgba(180, 255, 190, 0.7);
        }

        .card img {
            width: 100%;
            height: auto;
            display: block;
        }

        .card-content {
            padding: 5%;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 2.5%;
            padding: 0px;
            border-radius: 5px;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
        }

        .card-info {
            font-size: 0.8rem;
            color: #bab9b9;
            margin-bottom: 2.5%;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
        }

        .card-text {
            font-size: 0.9rem;
            color: #b4b3b3;
            margin-bottom: 10px;
            font-family: "Poppins", sans-serif;
            font-weight: 300;
        }

        .progress-container {
            width: 100%;
            height: 6px;
            background-color: #f3f3f3;
            position: fixed;
            bottom: 0;
            left: 0;
            z-index: 1000;
          }
          
          .progress-bar {
            height: 100%;
            background-color: #4caf50;
            width: 0;
          }