/* DevStack Hub specific styles */
.hero {
    background: linear-gradient(135deg, #0061f2 0%, #00ba94 100%);
    padding: 8rem 0;
    color: white;
}

/* Product Hero Section */
.product-hero {
    background: linear-gradient(135deg, #2962ff 0%, #0091ea 100%);
    padding: 120px 0 6rem;
    color: white;
    position: relative;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern-dots.png') repeat;
    opacity: 0.1;
}

/* 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;
}

/* Hero Buttons */
.hero-buttons {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.hero-buttons .btn-light {
    background-color: #ffffff;
    color: #2962ff;
    border: none;
}

.hero-buttons .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-buttons .btn-outline-light {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.hero-buttons .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

/* Cards */
.benefit-card,
.pricing-card,
.contact-form {
    transition: transform 0.3s ease;
}

.benefit-card:hover,
.pricing-card:hover:not(.featured),
.contact-form:hover {
    transform: translateY(-5px);
}

.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;
}

/* Smooth Scroll */
html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

/* 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;
}

/* Form Elements */
.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;
}

/* 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;
    }
}

