    body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }
		.t-red{
			color:red;
			font-weight: 700;
		}
        .container {
            width: 90%;
            margin: 20px auto;
        }
        .row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
		.content-center{
			text-align: center;
			justify-content: center;
		}
        .item {
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 15px;
			height:fit-content;
            width: calc(25% - 20px); /* 4 items per row */
            box-sizing: border-box;
            text-align: center;
        }
        .item img {
            max-width: 100%;
            border-radius: 5px;
            height: 80%;
            object-fit: cover;
        }
        .item h3 {
            font-size: 18px;
            margin: 10px 0;
        }
        .item .price {
            font-weight: bold;
            color: #007bff;
            margin: 10px 0;
        }
        .item p {
            color: #555;
            font-size: 14px;
        }
        /* Responsive Design */
        @media (max-width: 1024px) {
            .item {
                width: calc(33.33% - 20px); /* 3 items per row on tablets */
            }
        }
        @media (max-width: 768px) {
            .item {
                width: calc(50% - 20px); /* 2 items per row on small screens */
            }
        }
        @media (max-width: 470px) {
            .item {
                width: 100%; /* 1 item per row on phones */
            }
        }
.galleryframe {
	 font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color: #f4f4f4;
}

.carousel-container {
    position: relative;
    width: 95%;
    max-width: 600px;
    border: 2px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    transition: height 0.3s ease; /* Smooth height adjustment */
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform, height;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.slide img {
    width: 100%;
    height: auto; /* Ensure the image height adjusts dynamically */
    border-bottom: 1px solid #ccc;
}

.slide p {
    padding: 15px;
    background: #fff;
    margin: 0;
    font-size: 1.1rem;
}


/* Centering the arrows horizontally below the story */
.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 15px;
	margin-bottom:10px;
}

button {
    padding: 10px 20px;
    border: none;
    background: #333;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 10px;
}

button:hover {
    background: #555;
}

button:focus {
    outline: none;
}

button {
    padding: 10px 20px;
    border: none;
    background: #333;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 10px 10px 10px;
}

button:hover {
    background: #555;
}

button:focus {
    outline: none;
}

.content-container {
    border: 2px solid #333;
    padding: 15px;
    margin: 5px;  /* 5px margin around the container */
    border-radius: 10px;
    background-color: white;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
	
}
		.justify-center{
			justify-content: center;
		}

/* Styling for the title */
.title {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Styling for the paragraph */
.paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}
		.btt-ver-cent {
			align-content: center;
		}
		
/* Registration form IN MODAL*/
		
  .form-container {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            width: 100%;
        }
        input[type="text"], input[type="email"], input[type="tel"], select {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        button {
            padding: 10px 20px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        button:hover {
            background-color: #0056b3;
        }
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.4);
        }
        .modal-content {
            background-color: #fff;
            margin: 15% auto;
            padding: 20px;
            border-radius: 10px;
            width: 90%;
            max-width: 400px;
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
/* INDIVIDUAL PRODUCT BOX SECTION */
    .item-container-indiv {
            max-width: 640px;
            width: 100%;
            margin: auto;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-wrap: wrap; /* Enables responsiveness */
            gap: 20px;
        }
        .item-image-container-indiv {
            flex: 1; /* Takes up half of the space on larger screens */
            min-width: 300px; /* Minimum size for the image container */
            text-align: center;
        }
        .item-image {
            max-width: 100%; /* Ensures image adjusts to container */
            height: auto;
            border-radius: 8px;
        }
        .item-info {
            flex: 2; /* Takes up the rest of the space on larger screens */
            min-width: 300px; /* Minimum size for the info container */
        }
        .item-title {
            font-size: 24px;
            font-weight: bold;
            margin: 10px 0;
        }
        .item-description {
            margin: 10px 0;
            color: #555;
        }
        .item-price {
            margin: 20px 0;
            font-size: 20px;
            color: #2d2d2d;
        }
        .paypal-button {
            text-align: center;
            margin-top: 20px;
        }
        input[type="submit"] {
            background-color: #0070ba;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        input[type="submit"]:hover {
            background-color: #005c99;
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .item-container-indiv {
                flex-direction: column; /* Stack items vertically on small screens */
                align-items: center;
            }
            .item-info {
                text-align: center;
            }
        }

 .lightbox-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 300px; /* Ensures consistent height for the lightbox area */
        }

        .lightbox-image {
            max-height: 60vh;
            margin-bottom: 15px;
            /* Animation Styles */
            opacity: 0;
            transition: opacity 0.4s ease-in-out;
        }

        .lightbox-description {
            max-width: 100%;
            padding: 10px 20px;
            font-size: 1rem;
            /* Animation Styles */
            opacity: 0;
            transition: opacity 0.4s ease-in-out;
        }

        .fade-in {
            opacity: 1 !important;
        }

		/*spaces  */
			.w-space{
				width:10px;
				height:20px;
		}