@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
}


/* Technologies Section */

.technologies-section {
    position: relative;
    min-height: 100vh;
}

.technologies-section .overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), transparent, rgba(255, 255, 255, 0.95));
    z-index: 10;
}

.technologies-section .content {
    width: 100%;
    padding: 4rem 0;
    background-image: url('images/back2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 20;
}

.technologies-section .container {
    max-width: 70rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.technologies-section h1 {
    color: #2563eb;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 3rem;
    font-family: serif;
    text-align: center;
    animation: fadeIn 1s;
}

@media (min-width: 768px) {
    .technologies-section h1 {
        font-size: 3.5rem;
    }
}

.technologies-section .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.technologies-section .ai-block,
.technologies-section .agile-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    animation: slideUp 1s;
}

@media (min-width: 1024px) {
    .technologies-section .ai-block,
    .technologies-section .agile-block {
        flex-direction: row;
    }
}

.technologies-section .text-block {
    width: 100%;
}

@media (min-width: 1024px) {
    .technologies-section .text-block {
        width: 50%;
    }
}

.technologies-section .text-content {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.5s;
    transform: translateY(0);
}

.technologies-section .text-content:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-0.5rem);
}

@media (min-width: 1024px) {
    .technologies-section .text-content {
        padding: 2rem;
    }
}

.technologies-section .text-content .icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.technologies-section .text-content svg {
    font-size: 3rem;
    color: #2563eb;
}

.technologies-section .text-content h2 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

.technologies-section .text-content p {
    color: #4b5563;
    line-height: 1.5;
    font-size: 1rem;
    text-align: center;
}

.technologies-section .image-block {
    width: 100%;
}

@media (min-width: 1024px) {
    .technologies-section .image-block {
        width: 50%;
    }
}

.technologies-section .image-wrapper {
    overflow: hidden;
    border-radius: 1rem;
    width: 80%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.technologies-section .image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s;
}

.technologies-section .image-wrapper:hover img {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(2rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}