/* 1. Main Service Card (Home Page) */
.service-card-custom {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.service-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-container {
    flex-shrink: 0;
}

.service-card-custom ul li span {
    font-weight: bold;
}

/* 2. Service Detail Section */
.service-detail {
    background-color: #ffffff;
}

.service-content h2 {
    font-weight: 800;
    color: #1a2b48;
    margin-bottom: 20px;
}

.service-content p {
    color: #5a667d;
    line-height: 1.8;
    font-size: 16px;
}

/* 3. Service Points List (Checkmarks) */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 12px;
    color: #1a2b48;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.service-list li i {
    background-color: #1a2b48; /* Dark Blue icon background */
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 12px;
}

/* 4. Platforms Styling (Merged & Fixed) */
.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.platform-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    background-color: #f1f4f9; /* Light Blue-ish background */
    padding: 8px 18px;
    border-radius: 30px; /* Pills shape as per professional look */
    color: #1a2b48;
    border: 1px solid #ddd;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover Effect for Platforms */
.platform-link:hover {
    background-color: #003366; /* Deep Blue on hover */
    color: #ffffff !important;
    border-color: #003366;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.platform-link i {
    margin-right: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.platform-link:hover i {
    transform: scale(1.2);
}

/* 5. Quote Box / Inquiry Form (Right Side) */
.quote-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.quote-box h4 {
    font-weight: 700;
    color: #1a2b48;
    margin-bottom: 25px;
}

.quote-box .form-control {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
}

.quote-box .form-control:focus {
    box-shadow: none;
    border-color: #1a2b48;
}

.quote-btn {
    background-color: #003366; /* Deep Blue */
    color: #ffffff;
    font-weight: 700;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.quote-btn:hover {
    background-color: #002244;
    color: #fff;
}