@charset "utf-8";
/* CSS Document */

     
        .container {
            max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .tabs {
            display: flex;
            flex-wrap: wrap;
            border-bottom: 2px solid #e0e6ef;
            background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 100%);
        }
        
        .tab {
            padding: 18px 25px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            position: relative;
            flex: 1;
            min-width: 120px;
			animation: fadeIn 1s ease forwards;
        }
        
        .tab:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .tab.active {
            color: white;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 4px;
            background: white;
            border-radius: 4px 4px 0 0;
        }
        
        .tab i {
            font-size: 20px;
        }
        
        .tab-content {
            padding: 30px;
        }
        
        .content {
            display: none;
            animation: fadeIn 0.5s ease forwards;
        }
        
        .content.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
       .content h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 28px;
        }
        
       .content p {
            color: #34495e;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
       .content ul {
/*            list-style-type: none;*/
            padding: 0;
        }
        
       .content .withoutflex {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            text-align: left;
            align-items: left;
            gap: 10px;
        }
       .content .withflex {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        } 
       .content li i {
            color: var(--secondary-color);
        }
.intTitile{
	color: var(--primary-color);
		font-weight: bold

}
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .gallery-item {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .price-tag {
            font-size: 42px;
            color: #6a11cb;
            font-weight: 700;
            text-align: center;
            margin: 20px 0;
        }
        
        .price-details {
            display: flex;
            justify-content: space-between;
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            margin: 10px 0;
        }
        
        .book-btn {
            display: block;
            width: 100%;
            padding: 16px;
            background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .book-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Gallery Slider Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal.active {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .modal-image {
            width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 8px;
        }
        
        .close-btn {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .close-btn:hover {
            color: #ff5252;
        }
        
        .slider-controls {
            position: absolute;
            bottom: -60px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .slider-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 18px;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .slider-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .image-counter {
            color: white;
            font-size: 18px;
            margin-top: 10px;
            text-align: center;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .tabs {
                flex-direction: column;
            }
            
            .tab {
                justify-content: flex-start;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .tab.active::after {
                width: 4px;
                height: 100%;
                bottom: 0;
                left: 0;
                border-radius: 0;
            }
            
            .tab-content {
                padding: 20px;
            }
            
            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            
            .modal-content {
                max-width: 95%;
            }
            
            .slider-controls {
                bottom: -50px;
            }
            
            .slider-btn {
                padding: 10px 16px;
                font-size: 16px;
            }
        }