

.container-fluid {
    width: 100%;
    padding: 0;
    margin: 0;
}

.container {
    margin-top: 50px;

}

.header {
    background-color: #3366cc;
    color: white;
    text-align: center;
    padding: 2px 5px;
    margin-bottom: 30px;
}

.header h1 {
    font-family: 'Inria Serif', serif;
    font-size: 2.5rem;
    /* margin-bottom: 20px; */
    margin-top: -2%;

}

.header-desc {
    font-family: 'Inria Serif', serif;
    font-size: 1.3rem
}



.product {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}



.card-title {
    font-family: poppins;
    color: #000000;
    /* font-size: 1.5rem; */
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.card-text {
    color: #000000;
    font-size: 1rem;
    font-family: poppins;
    text-align: center;
}

/* Divider */
.divider {
    height: 2px;
    background-color: #3366cc;
    width: 80%;
    margin: 20px auto;
    opacity: 0.3;
}

.product-container {
    position: relative;
    padding-bottom: 100%;
    /* 1:1 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.square-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 0px 7.4px 0px #00000040;
}

.square-card .card-img-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4% 15% 0% 15%;
    overflow: hidden;

}

.square-card .card-img-top {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.square-card .card-body {
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 15px;
}

.square-card .card-title {
    font-family: poppins;
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.square-card .card-text {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 0;
    font-family: poppins;
}

.square-card .card {

    min-height: 330px;

}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header {
        padding: 30px 15px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header-desc {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .header-desc {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

@media (max-width: 400px) {
    .header-desc {
        font-size: 0.7rem;
        padding: 0 8px;
    }

}



.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .modal-content {
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
  }
  
  .modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .modal-info {
    margin-top: 15px;
  }
  
  .modal-info p:first-child {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .close {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 28px;
    color: #333;
    cursor: pointer;
  }
  