.highlights-section {
        margin-bottom: 7rem;
    }

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight-card {
    background: rgba(31, 165, 253, 0.05);
    border: 1px solid rgba(31, 165, 253, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.highlight-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100%;
background: linear-gradient(180deg,
    rgba(31, 165, 253, 0.1) 0%,
    transparent 100%);
opacity: 0;
transition: opacity 0.4s ease;
}

.highlight-icon {
width: 80px;
height: 80px;
background: rgba(31, 165, 253, 0.1);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 0 25px;
transition: all 0.3s ease;
}

.highlight-icon i {
font-size: 32px;
color: #c1d1e9;
transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
background: rgba(31, 165, 253, 0.2);
transform: translateY(-5px);
}

.highlight-card:hover .highlight-icon i {
transform: scale(1.1);
}
.highlight-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    background: linear-gradient(90deg, #fff, #c1d1e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
@media (max-width: 1200px) {
.highlights-grid {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
    .highlights-section {
        padding: 40px 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-card {
        padding: 20px;
    }

    .highlight-card h3 {
        font-size: 1.1rem;
    }
}
.highlight-card--image {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.highlight-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.highlight-card--cta {
 background: linear-gradient(145deg, 
    rgba(31, 165, 253, 0.3),
    rgba(13, 202, 240, 0.3)
);
border: 2px solid rgba(31, 165, 253, 0.5);
position: relative;
overflow: hidden;
cursor: pointer;
transition: all 0.3s ease;
min-height: 200px;
display: flex;
align-items: center;
justify-content: center;
}

.highlight-card--cta::before {
 content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg,
    rgba(31, 165, 253, 0.2),
    rgba(13, 202, 240, 0.2)
);
transform: translateX(-100%);
transition: transform 0.6s ease;
}

.highlight-card--cta:hover {
 transform: translateY(-5px);
border-color: #1fa5fd;
box-shadow: 
    0 10px 30px rgba(31, 165, 253, 0.3),
    inset 0 0 20px rgba(31, 165, 253, 0.2);
}

.highlight-card--cta:hover::before {
transform: translateX(0);
}

.highlight-card--cta h3 {
font-size: 1.5rem;
font-weight: 700;
text-align: center;
background: linear-gradient(90deg, #ffffff, #1fa5fd);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-transform: uppercase;
letter-spacing: 0.5px;
position: relative;
z-index: 1;
margin-bottom: 15px;
animation: pulse 3s infinite;
}
@keyframes pulse {
0% {
    transform: scale(1);

}
50% {
    transform: scale(1.05);

}
100% {
    transform: scale(1);

}
}
.highlight-card--cta .arrow {
position: relative;
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
}

.highlight-card--cta .arrow::before {
content: '';
width: 15px;
height: 15px;
border-right: 3px solid #1fa5fd;
border-bottom: 3px solid #1fa5fd;
transform: rotate(313deg);
}

.highlight-card--cta a{
  text-decoration: none;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.catalog_sec{
margin-bottom: 60px;
}

@media (max-width: 768px) {
.catalog_sec{
margin-bottom: 40px;
}
}