/* ✅ General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #faf5eb;
}

/* ✅ Header Styling */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url('assets/images/headerBg.png');
    padding: 15px 20px;
    color: white;
    position: relative;
    z-index: 1000;
}

/* ✅ Logo */
.logo img {
    height: 80px;
}


/* ✅ Section Layout */
#company-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ✅ Flexbox Wrapper */
.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10rem;
    flex-wrap: wrap;
}

/* ✅ Left Column (Text) */
.text-column {
    flex: 1;
    max-width: 45%;
    text-align: left;
}

/* ✅ Right Column (Image) */
.image-column {
    flex: 1;
    max-width: 55%;
    text-align: center;
}

/* ✅ Text Styling */
.text-column h2 {
    color: #444;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.text-column p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* ✅ Image Styling */
.image-column img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        text-align: center;
        gap: 0rem;
    }

    .text-column,
    .image-column {
        max-width: 100%;
    }
}

/* Footer Styling */
.footer {
    padding-top: 40px;
    text-align: center;
     background-image: url('assets/images/headerBg.png');
}

/* Footer Container */
.footer-container {
    display: inline-flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

/* Footer Columns */
.footer-column {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    transition: 0.3s ease;
}

.footer-column ul li a:hover {
    color: #007bff;
}

/* Bottom Bar */
.bottom-bar {
    margin-top: 30px;
    padding: 15px;
    background-color: #e9f0f7;
    text-align: center;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers content horizontally */
    }

    .footer-column h4 {
        text-align: center; /* Center align heading */
    }

    .footer-column ul {
        text-align: center; /* Center align list */
        padding: 0;
    }

    .footer-column ul li {
        display: inline-block; /* Optional: Makes items inline */
        margin: 5px 10px; /* Adds spacing */
    }

    .social-icons {
        justify-content: center;
    }
}

