@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.eot');
    src: local('Gilroy Regular'), local('Gilroy-Regular'),
        url('../fonts/Gilroy-Regular-1.eot') format('embedded-opentype'),
        url('../fonts/Gilroy-Regular.woff') format('woff'),
        url('../fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.eot');
    src: local('Gilroy Medium'), local('Gilroy-Medium'),
        url('../fonts/Gilroy-Medium-1.eot') format('embedded-opentype'),
        url('../fonts/Gilroy-Medium.woff') format('woff'),
        url('../fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBold.eot');
    src: local('Gilroy SemiBold'), local('Gilroy-SemiBold'),
        url('../fonts/Gilroy-SemiBold-1.eot') format('embedded-opentype'),
        url('../fonts/Gilroy-SemiBold.woff') format('woff'),
        url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.eot');
    src: local('Gilroy Bold'), local('Gilroy-Bold'),
        url('../fonts/Gilroy-Bold-1.eot') format('embedded-opentype'),
        url('../fonts/Gilroy-Bold.woff') format('woff'),
        url('../fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Customer Transformations Section */
.customer-transformations {
    background: #f8f9fa;
    text-align: center;
}

.transformations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.transformations-header {
    margin-bottom: 50px;
}

.transformations-title {
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.transformations-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.transformation-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.transformation-image-wrapper {
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.transformation-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.transformation-card:hover .transformation-image {
    transform: scale(1.05);
}

.transformation-content {
    text-align: center;
}

.transformation-name {
    font-size: 18px !important;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.transformation-description {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .transformations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .transformation-card {
        padding: 20px;
    }
}