.banner {
    height: 400px;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    text-align: center;
}

.product-section img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 30px 0;
}

.footer a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}


.carousel-item iframe {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
}

.carousel-item .row {
    display: flex;
    justify-content: space-between;
}

.carousel-item .col-md-4 {
    padding: 5px;
}

.item-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-image {
    width: 100%; /* Ensure the image takes the full width of the box */
    height: 250px; /* Define the height */
    object-fit: cover; /* Keep the image in the correct aspect ratio */
    transition: transform 0.3s ease; /* Transition for image zoom on hover */
}

/* Hover effect on the box */
.item-box:hover {
    transform: scale(1.05); /* Scale the box on hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Box shadow on hover */
}

/* Hover effect on the image */
.item-box:hover .item-image {
    transform: scale(1.1); /* Zoom the image on hover */
}

.item-name {
    padding: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}


.about-us-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.company-info {
    padding: 60px 0;
}

.company-info .row {
    align-items: center;
}

.company-info img {
    max-width: 100%;
    height: auto;
}

.team-member {
    text-align: center;
    padding: 30px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member h5 {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.team-member p {
    color: #6c757d;
}

.company-info p {
    font-size: 1.2rem;
    color: #555;
}


/* General Section Styles */
.wel-panel {
    padding: 60px 0;
    background-color: #fff;
}

.wel-panel h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.wel-panel p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.panel-about {
    padding: 60px 0;
    background-color: #fff;
}

/* Director Box Styles */
.director-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.director-box:hover {
    transform: scale(1.05);
}

.director-header h5 {
    background-color: #ffd54c;
    padding: 10px 15px;
    text-align: left;
    font-weight: bold;
    color: #333;
    margin: 0;
    font-size: 1.25rem;
}

.director-content {
    display: flex;
    margin-top: 20px;
}

.director-image {
    flex: 0 0 150px;
    margin-right: 20px;
}

.director-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.director-text {
    flex: 1;
}

.director-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    .director-content {
        flex-direction: column;
    }

    .director-image {
        margin-bottom: 20px;
    }
}

.dropdown-item:hover {
    background-color: #f0f0f0; /* Light grey background */
    color: #000; /* Optional: Change text color on hover */
  }