.font-rubik,body {font-family: "Rubik", sans-serif;}
h1,h2,h3,h4,h5.font-primary {font-family: "Poppins","Cairo",'Rubik', sans-serif;}

.font-rubik-p * {font-family: "Rubik", sans-serif;}
.font-400{font-weight:400 !important}
.font-500{font-weight:500 !important}
.font-600{font-weight:600 !important}
.font-700,h1{font-weight:700 !important}
.font-800{font-weight:800 !important}
.fs-12{font-size: 12px !important;}
.fs-15{font-size: 15px !important;}
.fs-16{font-size: 16px !important;}
.fs-17{font-size: 17px !important;}
.lh-2{line-height: 2;}

.tool-card.card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 25px;
}
.tool-card.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}
.tool-card .tool-icon {
    font-size: 1.6rem;
    color: #7B68EE;
    margin-bottom: 15px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F0F2FF;
    border-radius: 50%;
    margin-left: -5px;
    position: relative;
    z-index: 2;
}
.tool-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    position: relative;
    z-index: 0;
}
.tool-card p {
    font-size: 0.95rem;
    color: #666;
    flex-grow: 1;
    margin-bottom: 20px; /* More space between description and bottom content */
    position: relative;
    z-index: 0;
}

.tool-card .card-title-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Make the link a block to contain h3 */
    line-height: 1.2; /* Adjust line height if needed */
}

.tool-card .card-title-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1; /* Make it clickable, but below content */
    border-radius: inherit; /* Inherit border-radius from parent tool-card */
}
.tool-card .card-title-link:hover h3 {
    text-decoration: underline;
}

.tool-card .open-text-style {
    color: #007bff;
    font-weight: 500;
    font-size: 0.9rem;
    position: absolute; /* Position relative to .tool-card */
    bottom: 25px;
    left: 25px;
    z-index: 2; /* Ensure it's visible and doesn't get hidden by ::after */
}

.category-group {
    margin-bottom: 60px;
    padding-top: 40px;
}
.category-group:first-child {
    padding-top: 0;
}
.category-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    position: relative;
}
.category-header-row .category-clickable-area {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}
.category-header-row .category-clickable-area:hover h3,
.category-header-row .category-clickable-area:hover .see-all-text {
    text-decoration: underline;
}
.category-header-row h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0;
    font-weight: 700;
    position: relative;
    z-index: 2;
}
.category-header-row .see-all-text {
    color: #7B68EE;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    display: none;
}
.tool-card i {
    font-size: 1.5rem !important;
    color: #007bff;
    margin-bottom: 0 !important;
}
