@font-face {
    font-family: 'PixeloidSans';
    src: url('./assets/fonts/pixeloid-font/PixeloidSansBold-PKnYd.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav {
    background-color: #fff;
    /* Updated to white background */
    color: #000;
    /* Updated to black text */
    padding-bottom: 5px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    /* Added a thin material line at the bottom */
}

nav h1 {
    color: #000;
    /* Updated to black text */
    font-size: 2.3em;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 10px 10px 0px 10px;
    /* 10px for top, right, left; 5px for bottom */
}


nav img {
    max-height: 35px;
}

nav a {
    min-height: var(--height);
    position: relative;
    color: var(--color);
    text-decoration: none;
    width: 100%;
    align-items: center;
    margin-right: 10px;
}


section {
    padding: 20px;
    text-align: center;
    flex: 1;
    /* Grow to fill available space */
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.content h1 {
    font-size: 1.7em;
}

.technologies img {
    max-width: 85px;
    margin: 10px;
}

.contact-label {
    font-size: 1.5em;
    margin-top: 20px;
}

/* New styles for the footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin-top: auto;
    font-size: 0.9em;
    /* Push the footer to the bottom */
}

/* Style for Font Awesome icons */
footer i {
    font-size: 1.5em;
    margin: 0 2px;
    color: #fff;
    cursor: pointer;
}

/* pricing iframe */

/* Add styles for the modal overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000; /* Set a high z-index to ensure it appears on top */
}

/* Add styles for the modal content */
.modal-content {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    width: 60%;
    height: 60%;
    overflow: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1001; /* Ensure modal content appears on top of overlay */
}

/* Add styles to close the modal */
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #333;
    font-size: 1.5em;
}

/* Remove border from iframe */
.modal-content iframe {
    border: none;
    width: 100%;
    height: 100%;
}
/* Add styles for the team section */
.team-section {
    text-align: center;
    padding: 40px 0;
    position: relative; /* Ensure proper stacking context */
    z-index: 999; /* Set a z-index lower than modal to keep it below */
}

/* Add styles for the team container */
.team-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 75%; /* Adjusted width */
    margin: 0 auto; /* Center the container */
}


/* Add styles for the team cards */
.team-card {
    background: linear-gradient(45deg, #ffffff, #f4f4f4);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin: 20px; /* Add margin between cards */
    transition: transform 0.3s ease-in-out;
}

/* Hover effect for the team cards */
.team-card:hover {
    transform: scale(1.05);
}

.team-photo {
    border-radius: 50%;
    max-width: 100px;
}

/* Media Query for smaller screens */
/* Media Query for smaller screens */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center; /* Center items horizontally */
        justify-content: center; /* Center items vertically */
    }

    .team-card {
        width: 80%;
        margin: 10px 0;
    }
}

