/* Header Styles and campany history css code*/
    .company-history {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    position: relative; /* For pseudo-element positioning */
    overflow: hidden; /* To contain the pseudo-element */
}

.company-history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.1); /* Light blue overlay */
    border-radius: 10px;
    z-index: 0; /* Behind the content */
    transition: opacity 0.5s;
}

.company-history:hover::before {
    opacity: 0.5; /* Fade effect on hover */
}

.company-history h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #007bff; /* Accent color */
    margin-bottom: 20px;
    position: relative; /* For text shadow */
    z-index: 1; /* Bring text above pseudo-element */
}

.company-history p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 10px 0;
    text-align: justify;
    color: #333; /* Dark text for readability */
    position: relative; /* For text shadow */
    z-index: 1; /* Bring text above pseudo-element */
}

/* Adding a subtle animation for the text */
.company-history p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
    text-align: center;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation delay for each paragraph */
.company-history p:nth-child(2) {
    animation-delay: 0.2s;
}

.company-history p:nth-child(3) {
    animation-delay: 0.4s;
}

/*The following is the social media code icon*/

.social-links {
    text-align: center; /* Center the social media section */
    margin: 4px; /* Space between sections */
}
.social-icon {
    margin: 0 4px; /* Space between icons */
}

.social-icon img {
    width: 31px; /* Set width for the icons */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s; /* Smooth hover effect */
}

.social-icon:hover img {
    transform: scale(1.1); /* Slightly enlarge icon on hover */
}