@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");
html,
body,
h1,
h2,
h3,
h4,
h5,
p,
a,
span {
    font-family: "Noto Sans Georgian", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
/* Section spacing */
.our_services {
    background: #f9fafc;
    padding: 60px 20px;
}

/* Equal height fix */
.columns.is-multiline {
    align-items: stretch;
}

/* Card styling */
.service-card {
    height: 100%;
    border-radius: 16px;
    padding: 25px 20px;
    background: #fff;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

/* Gradient hover effect */
.service-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    top: 0;
    left: -100%;
    opacity: 0.08;
    transition: 0.4s;
}

.service-card:hover::before {
    left: 0;
}

/* Hover animation */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Icon styling */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: 0.3s;
}

/* Icon hover effect */
.service-card:hover .icon-box {
    transform: scale(1.1) rotate(8deg);
}

/* Text spacing */
.card-content p {
    margin-top: 10px;
}
