/* Step Process */

#our-process {
    background-color: #6E7191;
    color: white;
}

#our-process h2 {
    margin-bottom: 20px;
}

#our-process p {
    margin-bottom: 30px;
}

.process-step {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    cursor: pointer;
    background-color: white;
    color: black;
}

.step-header img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.step-header h3 {
    flex-grow: 1;
    text-align: left;
    margin: 0;
}

.step-header .toggle-icon {
    font-weight: bold;
    margin-left: 10px;
    transition: transform 0.3s;
}

.step-content {
    display: none;
    padding: 15px 20px;
    background-color: white;
    text-align: left;
    color: black;
}

.step-content p {
    margin: 0;
}

.step-content img {
    width: 100%;
    margin-top: 10px;
}

.step-header:hover {
    background-color: #14142b;
    color: white;
}

.green-checkmark{
    color: green;
    font-weight: bold; /* Optional */
}



/* VALUE PROP SLIDING TILES */
#value-props h2 {
    margin-bottom: 20px;
}

/* Scrollable Tile Container */
.tile-container {
    display: flex;
    gap: 20px; /* Space between tiles */
    overflow-x: auto; /* Enable horizontal scrolling */
    padding: 10px 0;
    scroll-behavior: smooth; /* Smooth scrolling effect */
}

.tile-container::-webkit-scrollbar {
    display: none;
}

/* Indicate dragging state */
.tile-container.dragging {
    cursor: grabbing;
}


/* Individual Tile Styling */
.tile {
    flex: 0 0 300px; /* Fixed width for tiles */
    height: 600px; /* Fixed height for tiles */
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Image in Tile */
.tile img {
    width: 100%; /* Fit the width of the tile */
    height: auto; /* Maintain aspect ratio */
    max-height: 40%; /* Ensure it doesn’t exceed 40% of the tile height */
    object-fit: cover; /* Prevent stretching */
    border-bottom: 1px solid #ddd; /* Visual separator */
}


/* Tile Header */
.tile h3 {
    padding: 20px 20px 10px; /* Reduce bottom padding */
    margin: 0; /* Ensure no extra margin is added */
}

/* Tile Description */
.tile p {
    color: #222;
    padding: 10px 20px 20px; /* Add some padding but reduce top padding */
    margin: 0; /* Ensure no extra margin is added */
}

.tile a{
    display: block; /* Ensure it occupies a full row */
    margin-top: auto; /* Push to the bottom of the tile */
    padding: 20px 20px; /* Add some padding but reduce top padding */
    text-decoration: none; /* Remove underline */
}


#faq {
    background-color: #d9dbe9;
    color: black;
}

#faq h2 {
    margin-bottom: 20px;
    color: #000;
}

.faq-step {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}



/* Reviews Section Styling */
#reviews {
    background-color: white;
}

#reviews h2 {
    margin-bottom: 20px;
    color: #000;
}

/* Review Container (Horizontal Scroll) */
.review-container {
    display: flex;
    gap: 20px; /* Space between reviews */
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-behavior: smooth; /* Smooth scroll animation */
    padding: 10px 0;
    margin-bottom: 20px;
}


/* Indicate dragging state */
.review-container.dragging {
    cursor: grabbing;
}

.review-container::-webkit-scrollbar {
    display: none;
}


/* Individual Review Item */
.review-item {
    flex: 0 0 300px; /* Fixed width for reviews */
    height: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Review Text */
.review-text {
    margin-bottom: 10px;
    color: #222;
    font-style: italic;
}


/* Review Author */
.review-author {
    font-weight: bold;
    color: #000;
}

/* Review Rating */
.review-rating {
    color: #007BFF;
    margin-top: 10px;
}

.review-image {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Circular image */
    margin-right: 15px;
    object-fit: cover;
}

.review-author-bio {
    display: flex;
    align-items: center;
}

.review-container.dragging {
    cursor: grabbing;
}


/* Responsive Styling */
@media (max-width: 768px) {
    .review-item {
        flex: 0 0 75%; /* Wider tiles on mobile */
    }
}



/* Scrollable Tile Container */
.industry-container {
    display: flex;
    gap: 20px; /* Space between tiles */
    overflow-x: auto; /* Enable horizontal scrolling */
    padding: 10px 0;
    scroll-behavior: smooth; /* Smooth scrolling effect */
}

.industry-container::-webkit-scrollbar {
    display: none;
}

/* Indicate dragging state */
.industry-container.dragging {
    cursor: grabbing;
}


/* General Styling */
#value-prop {
    margin: 0;
    padding: 0;
    background-color: white;
}

.value-prop-container {
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
    align-items: center;
}

/* Image Styling */
.value-prop-container img {
    width: 100%; /* Full width like the hero image */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image covers the area */
}

/* Content Styling */
.value-prop-content {
    padding: 20px; /* Add spacing for the text section */
}

.value-prop-content h2 {
    color: #000;
    margin-bottom: 20px;
}

.value-prop-content p {
    color: #222;
    margin-bottom: 20px;
    line-height: 1.5;
}


/*  Desktop Responsive Design */
@media (min-width: 768px) {
    .value-prop-container {
        flex-direction: row; /* Align items side by side on desktop */
        align-items: center;
    }

    .value-prop-container img {
        flex: 1; /* Image takes up 50% width */
        max-width: 50%;
    }

    .value-prop-content {
        flex: 1; /* Content takes up 50% width */
        padding: 0 40px;
    }
}


/* Contact Section Styling */
#contact {
    background-color: #f9f9f9;
}

#contact h2 {
    margin-bottom: 20px;
    color: #000;
}

#contact p {
    margin-bottom: 30px;
    color: #222;
}

/* Form Styling */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

#contact-form label {
    color: #000;
    margin-bottom: 8px;
    display: block;
}

#contact-form input,
#contact-form textarea,
#contact-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #000;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
}


/* Responsive Design */
@media (min-width: 768px) {
    #contact {
        text-align: center;
    }

    #contact-form .btn {
        display: inline-block;
    }
}


.grid-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns by default */
    gap: 16px; /* Space between items */
}

.grid-item {
    text-align: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.grid-item img {
    margin: 0;
}

@media (max-width: 768px) {
    .grid-block {
        grid-template-columns: repeat(2, 1fr); /* 3 columns on tablets */
    }
    .grid-item img {
        margin: 0;
        height: 75px;
        width: auto;
    }
}

@media (min-width: 1200px) {
    .grid-block {
        grid-template-columns: repeat(6, 1fr); /* 6 columns on desktops */
    }

}



.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-tile {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex; /* Enable Flexbox */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Horizontally center items */
}


.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.team-tile h3 {
    color: #007bff;
    margin: 10px 0 5px;
    text-align: center;
}

.title {
    color: #555;
    margin-bottom: 15px;
    text-align: center;

}

.bio {
    margin-bottom: 10px;
    color: black;
}

.experience {
    font-size: 0.9em;
    color: black;
}


#industries {
    background: #f9f9f9;
}

#why-us {
    background: #fff;
}

@media (max-width: 768px) {
    #desktop-why-us-img {
        display: none; 
    }
    
#why-us {
 margin: 0;
 padding: 0;
}

}

@media (min-width: 768px) {
    
    #mobile-why-us-img {
        display: none; 
    }

}


#case-studies {
    background-color: #f9f9f9;
    color: #333;
}

#case-studies h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Filters Section */
.search-filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

#multi-service-filter,
#multi-industry-filter {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 300px;
}

#multi-service-filter label,
#multi-industry-filter label {
    display: flex;
    align-items: center;
    gap: 5px;
}

#search-bar {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.case-study-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    text-align: center;
    transition: transform 0.3s;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.case-study-card h3 {
    margin-bottom: 10px;
}

.case-study-card p {
    margin-bottom: 15px;
    color: #555;
}

.case-study-card a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

#meet-the-founders {
    background-color: #6E7191;
    color: white;
}