/* Import main mobile fixes */
@import url('mobile-fix.css');

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* Products Page Styles */

/* Hero Section */
.products-hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    animation: slideInLeft 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c5aa0;
}

.hero-content .highlight {
    color: #ff6b35;
    position: relative;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-right {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 90, 160, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image:hover .hero-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.play-button:hover {
    background: rgba(255, 107, 53, 1);
    transform: scale(1.1);
}

.play-button i {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.2rem;
}

.card-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.card-1 i {
    color: #2c5aa0;
}

.card-2 {
    bottom: 100px;
    left: -30px;
    animation-delay: 1s;
}

.card-2 i {
    color: #ff6b35;
}

.card-3 {
    top: 50%;
    right: -40px;
    animation-delay: 2s;
}

.card-3 i {
    color: #2c5aa0;
}

/* Products Section Header */
.products-section-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.products-section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%232c5aa0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

.products-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.section-badge i {
    font-size: 1.1rem;
}

.products-main-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.products-main-title .highlight {
    color: #ff6b35;
    position: relative;
}

.products-main-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 1s both;
}

.products-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.products-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
}

.filter-header {
    text-align: center;
    margin-bottom: 30px;
}

.filter-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.filter-header p {
    color: #666;
    font-size: 1rem;
}

/* Search Section */
.search-section {
    margin-bottom: 35px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-container:focus-within::before {
    opacity: 1;
}

.search-container input {
    width: 100%;
    padding: 18px 60px 18px 25px;
    border: 2px solid #e9ecef;
    border-radius: 28px;
    font-size: 1.05rem;
    background: white;
    transition: all 0.4s ease;
    outline: none;
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-container input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-container input:focus {
    border-color: transparent;
    background: white;
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.15);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #2c5aa0;
    font-size: 1.2rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.search-container:focus-within .search-icon {
    color: #ff6b35;
    transform: translateY(-50%) scale(1.1);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 140px;
    justify-content: center;
}

.filter-btn:hover {
    background: #e3f2fd;
    border-color: #2c5aa0;
    color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-color: #2c5aa0;
    color: white;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.filter-btn i {
    font-size: 1.1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #2c5aa0;
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 15px;
}

/* 3D Model Viewer Styles */
.model-3d-viewer {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000000;
    border-radius: 10px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image:hover .model-3d-badge,
.product-image:hover .images-badge {
    opacity: 1;
    transform: scale(1.1);
}

.product-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
    z-index: 3;
}

.model-3d-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35, #2c5aa0);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 3;
    animation: pulse 2s infinite;
}

.model-3d-badge:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.images-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.images-badge:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-composition {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.product-strength {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.view-details {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-card-link:hover .view-details {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* Product Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.close:hover {
    color: #ff6b35;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Modal Content Styles */
.modal-product-content {
    padding: 30px;
}

.modal-product-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.modal-product-image {
    flex-shrink: 0;
}

.modal-product-image img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.modal-product-info {
    flex: 1;
}

.modal-product-category {
    background: #2c5aa0;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.modal-product-info h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 700;
}

.modal-product-composition {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.modal-product-strength {
    background: #f8f9fa;
    color: #2c5aa0;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.modal-product-description h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-product-description p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}

.product-specifications {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-item {
    display: flex;
    gap: 10px;
}

.spec-item strong {
    color: #333;
    min-width: 100px;
}

.spec-item span {
    color: #666;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-container {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 80px 0 40px;
        min-height: 70vh;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .products-section-header {
        padding: 60px 0;
    }
    
    .products-main-title {
        font-size: 2.5rem;
    }
    
    .products-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .products-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filter-section {
        padding: 30px 20px;
        margin: 0 15px 30px;
        border-radius: 15px;
    }
    
    .filter-header h3 {
        font-size: 1.5rem;
    }
    
    .category-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .product-card {
        height: 350px;
    }
    
    .product-image {
        height: 200px;
        padding: 10px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-composition {
        font-size: 0.85rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .modal-product-content {
        padding: 20px;
    }
    
    .modal-product-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .modal-product-image img {
        max-width: 150px;
    }
    
    .modal-product-info h2 {
        font-size: 1.5rem;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .products-hero {
        padding: 60px 0 30px;
        min-height: 60vh;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .hero-image {
        max-width: 280px;
        margin-top: 20px;
    }
    
    .hero-image img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
    
    .products-section-header {
        padding: 40px 0;
    }
    
    .products-main-title {
        font-size: 2rem;
    }
    
    .products-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .products-stats {
        flex-direction: row;
        gap: 15px;
        justify-content: space-around;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .filter-section {
        padding: 20px 15px;
        margin: 0 10px 20px;
    }
    
    .filter-header h3 {
        font-size: 1.3rem;
    }
    
    .filter-header p {
        font-size: 0.9rem;
    }
    
    .search-section {
        padding: 20px 15px;
        margin: 0 15px 25px;
        border-radius: 15px;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .search-container input {
        padding: 15px 50px 15px 20px;
        font-size: 0.95rem;
        border-radius: 25px;
    }
    
    .search-icon {
        right: 20px;
        font-size: 1.1rem;
    }
    
    .category-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
        min-width: 100px;
        flex-direction: column;
        gap: 5px;
    }
    
    .filter-btn span {
        font-size: 0.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        height: 380px;
        margin: 0 10px;
    }
    
    .modal-content {
        width: 98%;
        margin: 2% auto;
        border-radius: 15px;
    }
    
    .modal-body {
        padding: 15px !important;
    }
    
    .modal-body > div {
        padding: 15px !important;
    }
    
    .modal-body div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .modal-body div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .modal-body img {
        max-width: 150px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .modal-body h2 {
        font-size: 1.5rem !important;
        text-align: center !important;
    }
    
    .modal-body h3 {
        font-size: 1.2rem !important;
    }
}

/* Search Results and No Results Styles */
.search-results-count {
    text-align: center;
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-icon i {
    font-size: 2rem;
    color: #ccc;
}

.no-results-message h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.no-results-message p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.clear-search-btn {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.clear-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* PDF Download Section Styles */
.pdf-download-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-top: 60px;
}

.pdf-download-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pdf-header {
    margin-bottom: 40px;
}

.pdf-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.pdf-icon i {
    font-size: 2.5rem;
    color: white;
}

.pdf-header h2 {
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.pdf-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pdf-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pdf-feature {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pdf-feature:hover {
    transform: translateY(-5px);
}

.pdf-feature i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 15px;
    display: block;
}

.pdf-feature span {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

.pdf-download-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pdf-download-btn {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.pdf-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
}

.pdf-download-btn i {
    font-size: 1.3rem;
}

.pdf-info {
    display: flex;
    gap: 30px;
    color: #666;
    font-size: 0.9rem;
}

.pdf-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pdf-info span::before {
    content: '•';
    color: #2c5aa0;
    font-weight: bold;
}

/* PDF Download Responsive Design */
@media (max-width: 768px) {
    .pdf-download-section {
        padding: 60px 0;
    }
    
    .pdf-header h2 {
        font-size: 2rem;
    }
    
    .pdf-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .pdf-download-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .pdf-info {
        flex-direction: column;
        gap: 10px;
    }
}