/* Basic layout */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.content-row {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

/* Flip card styles */
.flip-card {
    perspective: 1000px;
    width: 100%;
    cursor: pointer;
    display: inline-block;
    position: relative;
    height: auto;
    padding: 20px; /* Add padding */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    display: flex;
    flex-direction: column; /* Ensure it grows based on content */
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Ensure content is stacked vertically */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.flip-card-front {
    transform: rotateY(0deg);
    background-color: #fff;
    text-align: center;
    border: 1px solid #ff7d00; /* Adjust border color to match design */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.flip-card-back {
    transform: rotateY(180deg);
    background-color: #1c1c1c; /* Dark background color */
    color: #fff; /* White text color */
    text-align: center;
    border-radius: 10px; /* Match border radius */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    text-align: left;
}

.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* Ensure images are displayed as block elements and have appropriate dimensions */
.flip-card img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Industries Icon styles */
.industriesIcon {
    display: flex;
    flex-wrap: nowrap; /* No wrapping */
    justify-content: center; /* Center the icons horizontally */
    gap: 10px; /* Add some space between the icons */
    margin-top: 40px; /* Add margin to the top */
}

.industriesIcon img {
    max-width: 50px; /* Adjust the size of the icons as needed */
    height: auto;
}

img.icongn {
    width: 100px;
    height: 100px;
    margin-bottom: 40px; /* Add some space below the icon */
    margin-top: 40px;
}

/* LinkedIn Icon */
.linkedIn {
    margin-top: 50px; /* Add margin to the top */
    text-align: center; /* Center align */
}

.linkedIn a img {
    width: 40px; /* Adjust the size of the LinkedIn icon */
    height: auto;
    transition: transform 0.3s ease; /* Add a hover effect */
}

.linkedIn a img:hover {
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

/* Additional styles for text on flip card back */
.flip-card-back p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.5;
}