/* DevStack Hub specific styles */

/*not used */
.hero {
    background: linear-gradient(135deg, #0061f2 0%, #00ba94 100%);
    padding: 8rem 0;
    color: white;
}

/* Product Cards */
.solution-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
    transition: transform 0.2s ease-in-out;
    margin-bottom: 2rem;
    padding: 2rem;
    text-align: center;
    background: white;
}

.solution-card:hover {
    transform: translateY(-0.5rem);
}

.solution-icon {
    font-size: 2.5rem;
    color: #0061f2;
    margin-bottom: 1rem;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

/* Pricing Section */
.pricing-card {
    border: none;
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.2s;
    background: white;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
}

.pricing-card.featured {
    border: 2px solid #0061f2;
    transform: scale(1.05);
}

/* Team Section */
.team-member {
    margin-bottom: 3rem;
    text-align: center;
}

.team-member img {
    width: 14rem;
    height: 14rem;
    border: 0.5rem solid rgba(0, 0, 0, 0.1);
    border-radius: 100%;
}

.team-member h4 {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Stats Section */
.stats-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
    margin-bottom: 2rem;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0061f2;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
    margin-bottom: 2rem;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 1rem;
}

/* Integration Partners */
.partner-logo {
    height: 5rem;
    margin: 2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(45deg, #1a1f71 0%, #0061f2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background-color: #212529;
    color: white;
}

.social-buttons {
    margin-bottom: 0;
}

.social-buttons li a {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    font-size: 1.25rem;
    line-height: 2.5rem;
    color: white;
    background-color: #0061f2;
    transition: all 0.3s;
}

.social-buttons li a:hover {
    background-color: #00ba94;
}

/* Responsive Carousel */
.carousel-inner img {
    max-width: 100%;
    height: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    color: #0061f2;
    font-size: 2rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
}

.form-control {
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

/* Modal Styles */
.modal-content {
    border-radius: 1rem;
    border: none;
}

.modal-header {
    border-radius: 1rem 1rem 0 0;
    background: #0061f2;
    color: white;
}

/* Custom Buttons */
.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

/* Navigation Customization */
#techoralNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: white !important;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
}

.navbar-brand {
    font-weight: 700;
    color: #0061f2 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

    .solution-card {
        margin-bottom: 1.5rem;
    }

    .stats-card {
        margin-bottom: 1.5rem;
    }

    .team-member img {
        width: 10rem;
        height: 10rem;
    }
}