/* 3D Printers Page Styles */

/* Hero Slider Section styles removed (now using banner-slider-component) */

/* Brand Introduction Section */
.brand-intro-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.brand-intro-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.brand-intro-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.brand-description {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.brand-description p {
    margin-bottom: 20px;
}

.brand-description strong {
    color: #0071ce;
}

/* Product Categories Section */
.product-categories-section {
    padding: 60px 0;
    background: #fff;
}

/* Tabs Container - Common Styles */
.tabs-container {
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.tab-link {
    background: #f5f5f5;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.tab-link:hover {
    background: #e0e0e0;
    color: #333;
}

.tab-link.active {
    background: #0071ce;
    color: #fff;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0071ce;
}

.tab-content-wrapper {
    min-height: 200px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0071ce;
}

.tab-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}



/* Scanner Section */


/* Product Browser Section */
.product-browser-section {
    padding: 60px 0;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-grid p {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    padding: 40px 0;
}

/* Education Needs Section */
.education-needs-section {
    padding: 60px 0;
    background: #fff;
    color: #333;
}

.education-needs-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.education-needs-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
    opacity: 1;
}

.education-needs-section .tabs-nav {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.education-needs-section .tab-link {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.education-needs-section .tab-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.education-needs-section .tab-link.active {
    background: rgba(255, 255, 255, 0.3);
}

/* Schools & Learning Institutions Section */
/* Schools & Learning Institutions Section */
.schools-institutions-section {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}

.parent-container {
    position: relative;
    z-index: 2;
}

.schools-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    z-index: 1;
}

.schools-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.schools-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.schools-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f0f0f0;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.schools-text .btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #0071ce;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.schools-text .btn-primary:hover {
    background: transparent;
    border-color: #fff;
    transform: translateY(-3px);
}

/* CTA Banner */
.cta-banner-3d {
    background: #ffcd1c;
    padding: 80px 20px;
    text-align: center;
}

.cta-banner-3d h2 {
    color: #000;
    font-size: 3rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Form Section */
.form-section-3d {
    padding: 60px 0;
    background: #f8f9fa;
}

.presentation-form {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 30px;
}

.form-header span {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-footer {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .brand-intro-section h2 {
        font-size: 1.5rem;
    }
    
    .planning-to-print-section h2,
    .scanner-section h2,
    .education-needs-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-banner-3d h2 {
        font-size: 2rem;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-link {
        width: 100%;
        text-align: left;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .category-cards {
        grid-template-columns: 1fr;
    }
    
    .presentation-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-swiper .swiper-slide img {
        max-height: 300px;
    }
    
    .brand-intro-section,
    .product-categories-section,
    .planning-to-print-section,
    .scanner-section,
    .product-browser-section,
    .education-needs-section,
    .form-section-3d {
        padding: 40px 0;
    }
    
    .cta-banner-3d {
        padding: 50px 20px;
    }
}



/* Responsive Schools Section */
@media (max-width: 768px) {
    .schools-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .schools-text h2 {
        font-size: 2rem;
    }
    
    .schools-text {
        padding: 0 10px;
    }
}
