﻿




/*this datalist form about page*/
p{
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    margin: 10px 0; /* Space around the paragraph */
    padding: 5px;
    word-wrap: break-word;
    max-width: 600px;
    margin: 0 auto;
}




.carousel-item img {
    width: 100%;
    height: 300px;
}
.card img {
    min-width: 50%;
    height: 200px;
    object-fit: cover;
}
.card-body {
    object-fit: cover;
}
/* Basic styling for the dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
  
    max-height:400px;
    overflow-y:auto;
    overflow-x:auto;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

/* Show the dropdown when hovering */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

/* Button styles */
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

    .dropbtn:hover {
        background-color: #45a049;
    }

