/* Basic reset for styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

/* Company section styling */
.company-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    /* background: linear-gradient(135deg, #f06, #4a90e2); */
    background: linear-gradient(135deg, #1955b0, #007bff, #004494);
    position: relative;
    overflow: hidden;
}

/* Animated background */
.company-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%), 
                radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
    background-size: 100px 100px;
    animation: moveBackground 20s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}

/* Container styling */
.company-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

/* Image styling */
.company-image {
    flex: 1 1 40%;
    min-width: 300px;
    overflow: hidden;
    align-content: center;
}

.company-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Text styling */
.company-text {
    flex: 1 1 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.company-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}
.whatsapp-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    z-index: 1;
}

.whatsapp-contact a {
    text-decoration: none;
    color: #25D366; /* WhatsApp green */
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.whatsapp-contact img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}
div.mybtn{
    color: #25D366;
    display: block;
}
.whatsapp-contact a:hover img {
    transform: scale(1.1); /* Slight zoom on hover */
    cursor: pointer;
}

.whatsapp-contact a:hover {
    color: #128C7E; /* Darker green on hover */
}
button.back{
    background-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-container {
        flex-direction: column;
    }
    
    .company-image, .company-text {
        flex: 1 1 100%;
    }
    
    .company-text {
        padding: 20px;
    }
}
