/* Custom styles for Invntiv website */

/* Tech Stack Styles */
.tech-category {
    padding: 20px;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
}

.tech-category:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.tech-category h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

.tech-category ul li {
    margin-bottom: 10px;
}

.tech-category i {
    color: #ff497c;
    margin-right: 8px;
    font-size: 18px;
}

.tech-caption {
    font-style: italic;
    color: #666;
}

/* FAQ Accordion Styles */
.accordion-container .card {
    margin-bottom: 10px;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-container .card-header {
    background-color: #f8f9fa;
    padding: 0;
    border-bottom: none;
}

.accordion-container .btn-link {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    position: relative;
}

.accordion-container .btn-link:hover {
    color: #ff497c;
}

.accordion-container .btn-link:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.accordion-container .btn-link.collapsed:after {
    transform: translateY(-50%) rotate(-90deg);
}

.accordion-container .card-body {
    padding: 15px 20px;
    color: #666;
}

/* Case Study Styles */
.case-study-item {
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.case-study-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.case-study-image {
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.case-study-item:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-study-content h5 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.case-study-highlight {
    color: #ff497c; /* Main color */
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.case-study-content p {
    margin-bottom: 20px;
}

.case-study-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Social Proof Bar */
.social-proof-bar {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Problem Solution Section */
.circle-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.circle-badge i {
    font-size: 32px;
    color: #7f7f7f; /* Main color */
}

/* Pricing Plans */
.pricing-plan {
    height: 100%;
}

.popular-badge {
    background-color: #ff497c;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
    margin-top: 5px;
    display: inline-block;
}

.blog2 {
    margin-top: 80px;
}

.blog2 .post-thumb a img {
    object-fit: cover;
}
