
/* Design Process */

.design-process-section {
    border-radius: 10px;
    padding: 50px 30px;
}

/* Static Title Styling */
.concept-column {
    display: flex;
    align-items: center;
}

.concept-column h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

/* Process Slide Styling */
.process-slide {
    background-color: #fff;
    border-radius: 10px;
    padding: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.carousel-item.active .process-slide {
    background-color: #2cdd9b;
    color: #fff;
}

.process-slide h3 {
    font-size: 24px;
    color: #2cdd9b;
}

.carousel-item.active h3 {
    color: #fff;
}

.process-slide h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.carousel-item.active h2 {
    color: #fff;
}

.process-slide p {
    font-size: 18px;
    color: #666;
}

.carousel-item.active p {
    color: #fff;
}

/* Carousel Controls */
.carousel-control-prev, .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #212529;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}


/* Why Us Section*/
.why-us-section{
 padding: 15px;
 margin: 10px 0;

}

.why-us-card{
border: 1px solid #e0e0e0;
background-color: #fff;
border-radius: 10px;
padding: 10px;
margin: 20px 20px 0 0;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-ms-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
}

.why-us-card:hover {
    box-shadow: var(--shadow-4);
    color: #fff;
    background: #2cdd9b;
    border:1px solid #2cdd9b;
    transform: translateY(-5px);
  }

.why-card-title{
    font-weight: 700;
    font-size: 24px;
    text-align: center;
}

.why-card-text{
    text-align: center;
}

/* Team Section */

.team-section{
padding-top: 50px;
}

.team-card {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #f4f4f4;
}

.team-img-wrapper {
    position: relative;
}

.team-img-wrapper img {
    width: 100%;
    background-size: cover;
    height: auto;
    border-radius:10px;
    display: block;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0.5, 0, 0, 0) 0%, rgba(0, 0, 0, 5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    border-radius:10px;
    align-items: center;
    text-align: center;
}

.team-card:hover{
    transform: translateY(-5px);
    -webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-ms-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
}
.team-card:hover .team-overlay {
    opacity: 1;
}

.team-details {
    color: #fff;
}

.team-details h5 {
    font-size: 20px;
    font-weight: 500;
}

.team-details p {
    margin-bottom: 20px;
    font-size:14px;
}

.social-icons a {
    color: #fff;
    background-color: #2cdd9b;
    padding: 8px 10px;
    border-radius:50px;
    font-size: 18px;
    margin: 0 10px;
}

.social-icons a:hover {
    color: #212529;
    background-color:#f1c40f;
}

/* Service Page */

.service-carousel {
    margin: 50px 0;
}

.service-card {
    height: 250px;
    border: 1px solid #f4f4f4;
    transition: transform 0.3s ease;
    border-radius: 10px;
    position: relative;
    color: #333;
}

.service-card-body {
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 30px;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card-text {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Responsive styling for single-item display on mobile */
@media (max-width: 768px) {
    .carousel-inner .carousel-item .row {
        display: flex;
        flex-wrap: nowrap;
    }
    .carousel-inner .carousel-item .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.process-section{
    padding: 15px
}

.process-step {
    background-color: #fff; /* Light background for steps */
    border-radius: 10px;
    padding: 40px;
    margin: 15px;
    transition: box-shadow 0.3s;
}

.process-step:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow on hover */
}

.step-icon {
    margin-bottom: 15px;
    color: #2cdd9b; /* Bootstrap primary color */
}
.step-icon:hover {
    margin-bottom: 15px;
    color: #f1c40f /* Bootstrap primary color */
}

@media (max-width: 768px) {
    .process-step {
        margin: 10px 0; /* Reduce margin for smaller screens */
    }
}

/* FAQs */

.faqs-section {
    margin-top: 50px; /* Padding for the FAQ section */
}

.faq-title{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.client-title{
    margin-left:15px;
    font-size: 2rem;
    font-weight: 700;
}
