:root {
    --primary-color: #00d1b2;
    --secondary-color: #112040;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rowTop {
    padding: 120px 0 80px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.rowTop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 209, 178, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.rowTop .container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

.rowTop-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.rowTop-header h1 {
    font-family: "Inter", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.rowTop-header p {
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.rowTop .myrow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.rowTop .mycol {
    display: flex;
}

.rowTop .card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 12px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.rowTop .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 209, 178, 0.2);
}

.rowTop .card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.rowTop .card:hover .card-img-top {
    transform: scale(1.02);
}

.rowTop .card-body {
    padding: 12px 16px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rowTop .card-title {
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.rowTop .card-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.rowTop .card:hover .card-title::after {
    width: 60px;
}

.rowTop .card-text {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Feature Badge/Icon styling if we want to add them */
.rowTop .feature-icon {
    width: 54px;
    height: 54px;
    background: rgba(0, 209, 178, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 24px;
    transition: var(--transition);
}

.rowTop .feature-icon i {
    transition: var(--transition);
}

.rowTop .card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(-8deg) scale(1.1);
}

.rowTop .card:hover .feature-icon i {
    transform: rotate(8deg);
}

@media (max-width: 1024px) {
    .rowTop .myrow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rowTop {
        padding: 80px 0 60px;
    }

    .rowTop-header {
        margin-bottom: 50px;
    }

    .rowTop-header h1 {
        font-size: 2.2rem;
    }

    .rowTop .myrow {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rowTop .card {
        max-width: 450px;
        margin: 0 auto;
    }
}
