.service-inner{ padding: 30px 50px;background-clip: border-box;}

/* Flexbox for the card and description */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
  	background-color:#f2f2f2;
}

/* Adjust for larger screens */
@media(min-width: 768px) {
    .content {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px; 
		
    }
}

/* Styling for the card */
.card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
    padding: 20px;
    margin-bottom: 20px; 
}
@media(max-width: 480px) {
    .card {
        padding: 20px; 
    }
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px; 
}

.card h2 {
    margin: 10px 0; 
   // color:#ee5b24;
  	font-size:35px;
}

.card p {
    color: #000;
    margin: 0;
}
/* Styling for the LinkedIn button */
.linkedin-button {
    display: inline-block;
    background-color: #6b6e6f; 
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font: 2em sans-serif;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px; /* Space above the LinkedIn button */
}

.linkedin-button:hover {
    background-color:#353535 ; 
    transform: translateY(-2px);
    color: #fff; 
	 text-decoration:none;
}

.linkedin-button:active,  .linkedin-button:visited{
    background-color:#353535 ; 
   // transform: translateY(-2px);
    color: #fff; 
	  text-decoration:none;
}



/* Styling for the detailed paragraph */
.description {
    max-width: 600px;
    width: 100%;
    color: #000;
    text-align: left;
    padding: 20px; 
	Background-color:#f2f2f2;
}

/* Add space above and below the paragraph content */
.description p {
    margin-bottom: 0;
	font-size: 1rem;
    line-height: 28px;
}

.description h2 {
    color:#ee5b24;
	font-size:35px;
}