/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
    animation: bounce 0.5s ease infinite alternate;
}

@keyframes bounce {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}


.container-product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}


.parallax {
    /* The image used */
    background-image: url("../img/instruments1.jpg");
  
    /* Set a specific height */
    height: 95vh;
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
.glass{
    backdrop-filter: blur(10px);
    background-color: rgba(244, 242, 242, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.5s ease;
}

  .glowing-border {
    backdrop-filter: blur(5px);
    margin: 50px auto;
    border: 2px solid transparent;
    box-shadow: 0 0 10px rgba(255, 88, 58, 0.8),
                0 0 20px rgba(255, 88, 58, 0.8),
                0 0 30px rgba(255, 88, 58, 0.8),
                0 0 40px rgba(255, 88, 58, 0.8),
                0 0 50px rgba(255, 88, 58, 0.8);
    transition: box-shadow 0.5s ease;
}

.glowing-border:hover {
    box-shadow: 0 0 10px rgba(255, 88, 58, 1),
                0 0 20px rgba(255, 88, 58, 1),
                0 0 30px rgba(255, 88, 58, 1),
                0 0 40px rgba(255, 88, 58, 1),
                0 0 50px rgba(255, 88, 58, 1);
}



.contact-section {
    min-height: 400px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 40px 20px;
    position: relative;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-info {
    display: grid;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #007bff;
}

.details {
    flex-grow: 1;
}

.address {
    font-style: normal;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .contact-card {
        margin: 20px;
        padding: 20px;
    }
    
    .info-item {
        padding: 12px;
    }
}