/* Solution Page Styles */
* {
  margin: 0;
  padding: 0;
}

html,
body {
  background: #ffffff !important;
  padding-top: calc(30px + 1rem) !important;
}

/* Banner Section */
.solution_banner {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.solution_banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Page Container */
.solution_page {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

.solution_container {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
}

/* Header Section */
.solution_header {
    text-align: center;
    margin-bottom: 60px;
}

.solution_title {
    font-family: DM_Sans_bold;
    font-weight: 700;
    font-size: 36px;
    color: #333333;
    line-height: 70px;
    text-align: center;
    margin: 0 0 20px 0;
}

.solution_desc {
    font-family: DM_Sans_regular;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 28px;
    text-align: center;
    max-width: 986px;
    margin: 0 auto;
}

/* Grid Layout */
.solution_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styles */
.solution_card {
    background: #ffffff;
    border-radius: 8px;
    height: auto !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.solution_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.solution_card_img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.solution_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solution_card:hover .solution_card_img img {
    transform: scale(1.05);
}

.solution_card_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
}

.solution_card_title {
    font-family: DM_Sans_bold;
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    line-height: 20px;
    text-align: left;
    margin: 0;
}

.solution_card_btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #06ADA9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.solution_card_btn:hover {
    background: #06ADA9;
    transform: scale(1.1);
}

.solution_card_btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    
}
.solution_card_btn img:hover {
    filter: brightness(0) invert(1);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .solution_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution_card_img {
        height: 240px;
    }

    .solution_title {
        font-size: 30px;
        line-height: 60px;
    }
}

@media screen and (max-width: 768px) {
    .solution_page {
        padding: 50px 0;
    }

    .solution_grid {
        grid-template-columns: 1fr;
    }

    .solution_card_img {
        height: 260px;
    }

    .solution_title {
        font-size: 24px;
        line-height: 44px;
    }

    .solution_desc {
        font-size: 14px;
        line-height: 24px;
    }

    .solution_card_title {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .solution_page {
        padding: 30px 0;
    }

    .solution_container {
        width: 94%;
    }

    .solution_header {
        margin-bottom: 30px;
    }

    .solution_title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 12px;
    }

    .solution_desc {
        font-size: 13px;
        line-height: 22px;
    }

    .solution_grid {
        gap: 15px;
    }

    .solution_card {
        height: auto !important;
    }

    .solution_card_img {
        height: 180px;
    }

    .solution_card_info {
        padding: 12px 15px;
    }

    .solution_card_title {
        font-size: 15px;
        line-height: 20px;
    }

    .solution_card_btn {
        width: 32px;
        height: 32px;
    }

    .solution_card_btn img {
        width: 14px;
        height: 14px;
    }
}
