.custom-card {
  position: relative;
  background-color: #fff;
  border: 1px solid gray;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
  max-width: 350px;
  transition: transform 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
  background-color: #cbedffd9;
}


.card-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.card-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more .arrow {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 8px;
  font-size: 18px;
}

.read-more:hover {
  color: #ff4c60;
}

.card-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    opacity: 0.15;
    z-index: 0;
}

.card-icon img {
  width: 90px;
  height: auto;
}


.equal-height-cards-row > .col-class {
  display: flex;
}

.equal-height-cards-row > .col-class > .custom-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* makes all cards same height as tallest */
}




.uptime-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: start;
}


.cards-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.content-card{
    color: #64748b;
}


.icon-wrapper {
    margin-bottom: 16px;
    width: 60px;
    height: 60px;
    background: #f39c12; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.uptime-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 8px 0;
}

.uptime-card p {
  font-weight: 400;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}




.triangle-card {
  padding: 30px;
  border-radius: 30px 0 30px 0;
  background: rgba(178, 224, 235, 0.057);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: start;
  margin: 10px 0px;
}

/* .triangle-card .card-img img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 16px;
} */

.card-img {
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-img img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}













/* Wrapper Card */
.odoo-service-card {
    /* background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); */
    padding: 2rem;
    border-radius: 15px;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05); */
    transition: transform 0.3s ease;
}

.odoo-service-card:hover {
    transform: translateY(-5px);
}

/* Paragraph */
.odoo-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    max-width: 650px;
    margin: 0 auto;
}

/* Custom List Styling */
.odoo-service-list {
    list-style: none;
    padding-left: 0;
    max-width: 650px;
    margin: 1.5rem auto 0;
}

.odoo-service-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #444;
}

.odoo-service-list li::before {
    content: "🛠️"; /* You can use a different emoji or an icon font */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
    color: #7c4dff; /* Purple accent for Odoo */
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .odoo-service-card {
        flex-direction: column;
        text-align: center;
    }

    .odoo-description,
    .odoo-service-list {
        text-align: center;
    }

    .odoo-service-list li {
        padding-left: 1.5rem;
    }
}




/* Main wrapper */
.zoho-service-card {
    /* background: linear-gradient(135deg, #f4f9ff, #ffffff); */
    padding: 2rem;
    border-radius: 12px;
    /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08); */
}

/* Paragraph styling */
.zoho-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

/* Service list styling */
.service-list {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
    color: #444;
}

.service-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.service-list li::before {
    content: "🔧"; /* You can replace with ✅ or 💡 */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: #0077b5; /* Zoho-style blue */
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .zoho-service-card {
        text-align: center;
    }

    .zoho-paragraph,
    .service-list {
        text-align: center;
    }

    .service-list li {
        padding-left: 1.5rem;
        text-align: left;
    }
}
/* Main wrapper */
.zoho-service-card {
    /* background: linear-gradient(135deg, #f4f9ff, #ffffff); */
    padding: 2rem;
    border-radius: 12px;
    /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08); */
}

/* Paragraph styling */
.zoho-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

/* Service list styling */
.service-list {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
    color: #444;
}

.service-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.service-list li::before {
    content: "🔧"; /* You can replace with ✅ or 💡 */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: #0077b5; /* Zoho-style blue */
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .zoho-service-card {
        text-align: center;
    }

    .zoho-paragraph,
    .service-list {
        text-align: center;
    }

    .service-list li {
        padding-left: 1.5rem;
        text-align: left;
    }
}






/* Wrapper Card */
.salesforce-service-card {
    /* background: linear-gradient(135deg, #f3f6fb, #ffffff); */
    padding: 2rem;
    border-radius: 15px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06); */
    transition: all 0.3s ease;
}

.salesforce-service-card:hover {
    transform: translateY(-4px);
}

/* Paragraph Styling */
.salesforce-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
}

/* List Styling */
.salesforce-service-list {
    list-style: none;
    font-size: 1rem;
    color: #444;
    padding-left: 0;
}

.salesforce-service-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.salesforce-service-list li::before {
    content: "⚙️"; /* or use ✅, 📊, etc. */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
    color: #00A1E0; /* Salesforce blue */
}

/* Responsive Support */
@media (max-width: 768px) {
    .salesforce-service-card {
        text-align: center;
    }

    .salesforce-paragraph,
    .salesforce-service-list {
        text-align: center;
    }

    .salesforce-service-list li {
        padding-left: 1.5rem;
        text-align: left;
    }
}
