/* CSS Variables for Dark Mode */
        :root {
            --bg-primary: #f4f4f4;
            --bg-secondary: #ffffff;
            --text-primary: #333;
            --text-secondary: #666;
            --border-color: #e0e0e0;
            --header-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        html[data-theme="dark"] {
            --bg-primary: #1a1a1a;
            --bg-secondary: #2d2d2d;
            --text-primary: #e0e0e0;
            --text-secondary: #b0b0b0;
            --border-color: #404040;
            --header-bg: linear-gradient(135deg, #2d1b4e 0%, #1a0f2e 100%);
        }

        html {
            height: 100%;
        }

        body{
            margin: 0;
            padding: 0;
            font-family: 'Poppins', Arial, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            transition: background-color 0.3s ease, color 0.3s ease;
            min-height: 100vh;
        }


        @keyframes fadeOut {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }


        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loader-text {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        

        /* QUICK CHECKOUT MODAL */
        .checkout-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .checkout-modal.show {
            display: flex;
        }

        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            animation: slideUp 0.3s ease;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 15px;
        }

        

        .modal-header h2 {
            color: #667eea;
            font-size: 1.5rem;
            margin: 0;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #999;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            color: #e74c3c;
            transform: rotate(90deg);
        }

        .product-details-modal {
            margin-bottom: 25px;
        }

        .product-name-modal {
            font-size: 1.3rem;
            font-weight: 700;
            color: #8e44ad;
            margin-bottom: 10px;
        }

        .product-price-modal {
            font-size: 1.8rem;
            color: #e74c3c;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .quantity-form {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .quantity-form label {
            font-weight: 600;
            color: #333;
        }

        .quantity-form input {
            width: 80px;
            padding: 10px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
        }

        .total-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .total-price span:first-child {
            color: #666;
        }

        .total-price span:last-child {
            color: #e74c3c;
            font-size: 1.4rem;
        }

        .modal-buttons {
            display: flex;
            gap: 15px;
        }

        .modal-btn {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .modal-btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .modal-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
        }

        .modal-btn-secondary {
            background: #f0f0f0;
            color: #333;
        }

        .modal-btn-secondary:hover {
            background: #e0e0e0;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* CART WIDGET */
        /* Removed cart widget styles as cart system was deleted */

        /* Navbar cart buttons removed as cart system was deleted */

        .cart-float-btn {
            position: fixed;
            right: 24px;
            bottom: 100px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            background: linear-gradient(135deg, #e83e8c 0%, #d63384 100%);
            box-shadow: 0 12px 30px rgba(216, 51, 132, 0.2);
            z-index: 2500;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cart-float-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 34px rgba(216, 51, 132, 0.28);
        }

        .cart-badge,
        .navbar-cart-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 18px;
            height: 18px;
            border-radius: 999px;
            background: white;
            color: #e83e8c;
            font-size: 11px;
            margin-left: 6px;
            padding: 0 5px;
        }

        .navbar-cart-buttons {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-left: 16px;
        }

        .navbar-cart-btn,
        .navbar-orders-btn {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.25);
            color: white;
            padding: 8px 12px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .navbar-cart-btn:hover,
        .navbar-orders-btn:hover {
            background: rgba(255,255,255,0.1);
        }

        .cart-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .cart-modal-overlay.show {
            display: flex;
        }

        .cart-modal-panel {
            background: white;
            width: min(640px, 100%);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.18);
            animation: slideUp 0.3s ease;
        }

        .cart-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding: 24px;
            border-bottom: 1px solid #f0f0f0;
        }

        .cart-subtitle {
            margin: 0;
            color: #666;
            font-size: 0.95rem;
        }

        .cart-items {
            padding: 24px;
            display: grid;
            gap: 18px;
        }

        .cart-item-card {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 15px;
            align-items: center;
            background: #fff;
            border: 1px solid #ececec;
            border-radius: 15px;
            padding: 18px;
        }

        .cart-item-left {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 15px;
            align-items: center;
        }

        .cart-item-image {
            width: 72px;
            height: 72px;
            border-radius: 16px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .cart-item-title {
            font-weight: 700;
            color: #333;
        }

        .cart-item-price {
            color: #777;
            font-size: 0.95rem;
            margin-top: 6px;
        }

        .cart-remove {
            border: none;
            background: transparent;
            color: #e83e8c;
            cursor: pointer;
            font-size: 18px;
        }

        .cart-footer {
            padding: 20px 24px 24px;
            display: flex;
            justify-content: flex-end;
        }

        .btn-cart-secondary {
            background: #f0f0f0;
            color: #333;
            border: none;
            border-radius: 12px;
            padding: 12px 18px;
            cursor: pointer;
            transition: background 0.25s ease;
        }

        .btn-cart-secondary:hover {
            background: #e4e4e4;
        }

        .cart-toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: rgba(0,0,0,0.85);
            color: white;
            padding: 14px 18px;
            border-radius: 14px;
            box-shadow: 0 14px 40px rgba(0,0,0,0.25);
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.2s ease, transform 0.2s ease;
            z-index: 4000;
        }

        .cart-toast.show {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Ratti Modal Styles */
        .ratti-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .ratti-modal.show {
            display: flex;
        }

        .ratti-modal-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            animation: slideUp 0.3s ease;
        }

        .ratti-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            border-bottom: 2px solid #667eea;
            padding-bottom: 15px;
        }

        .ratti-modal-header h2 {
            color: #667eea;
            font-size: 1.5rem;
            margin: 0;
        }

        .ratti-modal-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #999;
            transition: all 0.3s ease;
        }

        .ratti-modal-close:hover {
            color: #e74c3c;
            transform: rotate(90deg);
        }

        .ratti-product-details {
            margin-bottom: 25px;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 10px;
            border-left: 4px solid #667eea;
        }

        .ratti-product-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #8e44ad;
            margin-bottom: 10px;
        }

        .ratti-price-info {
            font-size: 1.2rem;
            color: #128C7E;
            font-weight: 600;
        }

        .ratti-unit {
            font-size: 0.9rem;
            color: #666;
        }

        .ratti-quantity-section {
            margin-bottom: 25px;
        }

        .ratti-quantity-section label {
            display: block;
            margin-bottom: 12px;
            font-weight: 600;
            color: #333;
        }

        .ratti-input-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ratti-btn-minus, .ratti-btn-plus {
            background: #667eea;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 700;
        }

        .ratti-btn-minus:hover, .ratti-btn-plus:hover {
            background: #764ba2;
            transform: scale(1.05);
        }

        .ratti-input-group input {
            flex: 1;
            padding: 12px;
            border: 2px solid #667eea;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-align: center;
        }

        .ratti-input-group input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
        }

        .ratti-calculation {
            background: linear-gradient(135deg, #f5f5f5, #efefef);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
            border: 1px solid #ddd;
        }

        .ratti-calc-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            color: #333;
        }

        .ratti-modal-buttons {
            display: flex;
            gap: 15px;
        }

        .ratti-btn-proceed {
            flex: 1;
            padding: 14px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .ratti-btn-proceed:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
        }

        .ratti-btn-cancel {
            flex: 1;
            padding: 14px;
            background: #f0f0f0;
            color: #333;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .ratti-btn-cancel:hover {
            background: #e0e0e0;
            border-color: #667eea;
            color: #667eea;
        }

        .ratti-variant-section {
            margin-bottom: 12px;
            padding: 10px;
            background: #f9f9f9;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }

        .ratti-variant-section label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.85rem;
            color: #333;
        }

        .ratti-variant-options {
            display: flex;
            flex-direction: row;
            gap: 8px;
            flex-wrap: wrap;
        }

        .ratti-variant-option {
            display: flex;
            align-items: center;
            padding: 6px 10px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 0.85rem;
        }

        .ratti-variant-option:hover {
            border-color: #667eea;
            background: #f5f7ff;
        }

        .ratti-variant-option input[type="radio"] {
            margin-right: 6px;
            cursor: pointer;
            width: 16px;
            height: 16px;
        }

        .ratti-variant-option label {
            margin: 0;
            cursor: pointer;
            font-size: 0.85rem;
        }

        /* Stylish enhancements for Ratti modal */
        .ratti-modal-content {
            background: linear-gradient(180deg, #ffffff, #fbfbff);
            padding: 30px;
            border-radius: 16px;
            max-width: 520px;
            width: 92%;
            box-shadow: 0 20px 50px rgba(14,30,60,0.18);
            border: 1px solid rgba(134, 84, 204, 0.06);
            transform-origin: center top;
            transition: transform 220ms cubic-bezier(.2,.8,.2,1), opacity 180ms ease;
        }

        .ratti-modal.show .ratti-modal-content { transform: translateY(0); opacity: 1; }

        .ratti-modal-header h2 { font-size: 1.4rem; color: #5b2fa6; }

        .ratti-price-info { font-size: 1.15rem; color: #0b8457; font-weight: 700; }

        /* Styled select to match the UI */
        select#rattiQtySelect, select#rattiSelect {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            padding: 12px 40px 12px 14px;
            border-radius: 10px;
            border: 1px solid rgba(102,126,234,0.18);
            background: linear-gradient(180deg,#fff,#fbfdff);
            font-weight: 700;
            cursor: pointer;
            min-width: 160px;
            transition: box-shadow 160ms ease, transform 160ms ease;
            background-image: linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.08) 50%), linear-gradient(135deg, rgba(0,0,0,0.04) 50%, transparent 50%);
            background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
            background-size: 8px 8px, 8px 8px;
            background-repeat: no-repeat;
        }

        select#rattiQtySelect:focus, select#rattiSelect:focus {
            box-shadow: 0 8px 30px rgba(102,126,234,0.12);
            outline: none;
            transform: translateY(-2px);
        }

        .ratti-btn-minus, .ratti-btn-plus {
            background: linear-gradient(135deg,#6b5ef8,#8e44ad);
            color: white;
            border-radius: 10px;
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(102,126,234,0.14);
        }

        .ratti-btn-minus:hover, .ratti-btn-plus:hover {
            transform: scale(1.06) translateY(-2px);
        }

        .ratti-calculation {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .ratti-calculation #rattiTotal {
            font-size: 1.25rem;
            font-weight: 800;
            color: #e74c3c;
            background: linear-gradient(90deg, rgba(231,76,60,0.06), rgba(0,0,0,0));
            padding: 10px 14px;
            border-radius: 8px;
        }

        .ratti-btn-proceed {
            background: linear-gradient(135deg, #ff8a65 0%, #ff7043 100%);
            box-shadow: 0 12px 30px rgba(255,112,67,0.18);
        }

        .ratti-btn-cancel {
            border: 1px solid rgba(134, 84, 204, 0.12);
            background: white;
        }

        @media (max-width: 600px) {
            .ratti-modal-content { padding: 20px; }
            select#rattiQtySelect { min-width: 120px; }
        }


        /* PARALLAX SECTION */
        .parallax-section {
            position: relative;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .parallax-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        /* COUNTER ANIMATION */
        .stat-item .number {
            color: #f39c12;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .stat-item .number.counter {
            counter-reset: num;
        }

        /* LAZY LOADING */
        img[data-lazy] {
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        img[data-lazy].loaded {
            opacity: 1;
        }

        /* SCROLL REVEAL ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

       .header{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            padding: 40px 20px;
            min-height: 400px;
            box-shadow: 
                0 15px 50px rgba(0, 0, 0, 0.5),
                inset 0 0 150px rgba(243, 156, 18, 0.1),
                inset 0 0 50px rgba(102, 126, 234, 0.1);
            position: relative;
            overflow: hidden;
        }

        /* Particle effects */
        .header .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .header .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #f39c12;
            border-radius: 50%;
            opacity: 0;
            animation: particleFloat 8s infinite;
        }

        .header .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .header .particle:nth-child(2) { left: 20%; animation-delay: 1s; background: #667eea; }
        .header .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
        .header .particle:nth-child(4) { left: 40%; animation-delay: 3s; background: #764ba2; }
        .header .particle:nth-child(5) { left: 50%; animation-delay: 4s; }
        .header .particle:nth-child(6) { left: 60%; animation-delay: 0.5s; background: #667eea; }
        .header .particle:nth-child(7) { left: 70%; animation-delay: 1.5s; }
        .header .particle:nth-child(8) { left: 80%; animation-delay: 2.5s; background: #764ba2; }
        .header .particle:nth-child(9) { left: 90%; animation-delay: 3.5s; }

        @keyframes particleFloat {
            0% { opacity: 0; transform: translateY(100px) scale(0); }
            20% { opacity: 1; transform: translateY(50px) scale(1); }
            80% { opacity: 1; transform: translateY(-50px) scale(1); }
            100% { opacity: 0; transform: translateY(-100px) scale(0); }
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 80%, rgba(243, 156, 18, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
            animation: floatGlow 6s ease-in-out infinite;
        }

        .header::after {
            content: '🕉️';
            position: absolute;
            font-size: 12rem;
            opacity: 0.08;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: rotateSlow 30s linear infinite;
            filter: blur(1px);
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            25% { background-position: 100% 50%; }
            50% { background-position: 100% 100%; }
            75% { background-position: 0% 100%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes floatGlow {
            0%, 100% { opacity: 0.6; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
        }

        @keyframes rotateSlow {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

       .header img{
            height: 180px;
            width: 150px;
            border-radius: 50%;
            border: 2px solid #f39c12;
            position: relative;
            z-index: 2;
            object-fit: cover;
            transition: all 0.3s ease;
            box-shadow: 
                0 0 20px rgba(243, 156, 18, 0.6),
                0 0 40px rgba(243, 156, 18, 0.4),
                0 4px 15px rgba(0,0,0,0.5);
        }

        .header img:hover {
            transform: scale(1.1);
            box-shadow: 
                0 0 30px rgba(243, 156, 18, 0.8),
                0 0 60px rgba(243, 156, 18, 0.6),
                0 6px 20px rgba(0,0,0,0.6);
        }

        .header h1{
            font-family: 'Rozha One', serif;
            font-size: 3.2rem;
            color: white;
            text-shadow: 
                0 0 15px rgba(243, 156, 18, 0.6),
                0 0 30px rgba(243, 156, 18, 0.4),
                0 0 45px rgba(243, 156, 18, 0.2),
                4px 4px 8px rgba(0,0,0,0.6);
            text-align: center;
            position: relative;
            z-index: 2;
            animation: fadeSlideIn 1.2s ease;
            letter-spacing: 3px;
            line-height: 1.4;
        }

        @keyframes fadeSlideIn {
            from { opacity: 0; transform: translateY(-40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .header h1 span {
            color: #f39c12;
            display: inline-block;
            background: linear-gradient(135deg, #f39c12, #e67e22, #f39c12);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientText 3s ease infinite;
            text-shadow: none;
            filter: drop-shadow(0 0 10px rgba(243, 156, 18, 0.8));
        }

        @keyframes gradientText {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Decorative elements */
        .header .deco-left, .header .deco-right {
            position: relative;
            z-index: 2;
            font-size: 2.5rem;
            animation: float 3s ease-in-out infinite;
        }

        .header .deco-left { animation-delay: 0s; }
        .header .deco-right { animation-delay: 1.5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(-5deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }

        /* Sparkle effects */
        .header .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
            animation: sparkle 2s ease-in-out infinite;
        }

        .header .sparkle:nth-child(odd) { animation-delay: 0.5s; }

        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        /* Tagline */
        .header .tagline {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-style: italic;
            animation: fadeIn 2s ease 1s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }


        .Navbar{
            background-color: #2c3e50;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding: 15px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .Navbar a{
            color: white;
            text-decoration: none;
            padding: 12px 18px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .Navbar a:hover{
            background-color: #f39c12;
            color: #2c3e50;
            border-radius: 25px;
            transform: translateY(-2px);
        }

        .Navbar a.active {
            background-color: #e74c3c;
            border-radius: 25px;
        }

        .Product-container{
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            padding: 60px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .Products{
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
            border: 2px solid #e8e8f0;
            padding: 25px;
            text-align: center;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
            position: relative;
            animation: slideUp 0.6s ease;
            cursor: pointer;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .Products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .Products:hover::before {
            opacity: 1;
        }

        .Products img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 18px;
            margin-bottom: 20px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            image-rendering: high-quality;
            filter: brightness(1) contrast(1.05) saturate(1);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border: 3px solid #ffffff;
        }

        .Products:hover img {
            transform: scale(1.05);
            box-shadow: 0 12px 25px rgba(243, 156, 18, 0.2);
            filter: brightness(1.05) contrast(1.1) saturate(1.05);
        }    

        .Products:hover {
            transform: translateY(-20px) scale(1.02);
            box-shadow: 0 30px 60px rgba(243, 156, 18, 0.3);
            border-color: #f39c12;
            background: linear-gradient(135deg, #ffffff 0%, #fff5e6 100%);
        }

        .Product-name{
            color: #8e44ad;
            font-size: 1.3rem;
            margin: 15px 0 8px 0;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            line-height: 1.4;
        }

        .Products:hover .Product-name {
            color: #f39c12;
        }

        .Products h3 {
            color: #666;
            font-size: 1.1rem;
            margin: 10px 0;
            font-weight: 500;
        }
        

        .Products button{
            background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
            color: white;
            border: none;
            padding: 14px 35px;
            border-radius: 30px;
            cursor: pointer;
            margin-top: 25px;
            font-size: 16px;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            z-index: 10;
        }

        .Products button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.4s ease;
            z-index: 0;
        }

        .Products button:hover::before {
            left: 100%;
        }

        .Products button:hover{
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(230, 124, 18, 0.5);
        }

        .Products button span {
            position: relative;
            z-index: 1;
        }

        .iframe{
            text-align: center;
            margin: 40px 0;
            padding: 20px;
        }

        .iframe iframe{
            width: 100%;
            max-width: 800px;
            height: 350px;
            border-radius: 15px;
            border: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .footer {
            background: linear-gradient(135deg, #0f1419 0%, #1a252f 50%, #0f1419 100%);
            color: white;
            padding: 80px 0 0;
            margin-top: 100px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(243, 156, 18, 0.2);
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #f39c12, transparent);
        }

        .footer::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            max-width: 1500px;
            margin: 0 auto;
            padding: 60px 30px 80px;
            position: relative;
        }

        .footer-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 5%;
            right: 5%;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.5), transparent);
            opacity: 0.5;
        }

        .footer-box {
            margin: 0;
            animation: fadeInUp 0.8s ease;
            padding: 25px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px solid rgba(243, 156, 18, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
            transition: left 0.6s ease;
            z-index: 0;
        }

        .footer-box:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(243, 156, 18, 0.05) 100%);
            border-color: rgba(243, 156, 18, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(243, 156, 18, 0.15);
        }

        .footer-box:hover::before {
            left: 100%;
        }

        .footer-box > * {
            position: relative;
            z-index: 1;
        }

        .footer-box h3 {
            margin-bottom: 28px;
            color: #f39c12;
            font-size: 1.4rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            padding-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-box h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, #f39c12, #e67e22);
            border-radius: 2px;
            animation: slideRight 0.8s ease;
        }

        @keyframes slideRight {
            from { width: 0; }
            to { width: 50px; }
        }

        .footer-box h3 i {
            font-size: 1.8rem;
            animation: rotate 0.8s ease;
            text-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
        }

        @keyframes rotate {
            from { transform: rotate(-180deg); opacity: 0; }
            to { transform: rotate(0); opacity: 1; }
        }

        .footer-box p {
            color: #ccc;
            line-height: 1.9;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .footer-box a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #bdc3c7;
            text-decoration: none;
            margin: 12px 0;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 6px;
            position: relative;
            font-weight: 500;
        }

        .footer-box a::before {
            content: '';
            position: absolute;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(243, 156, 18, 0.12);
            border-radius: 6px;
            transition: width 0.3s ease;
            z-index: -1;
        }

        .footer-box a:hover::before {
            width: 100%;
        }

        .footer-box a:hover {
            color: #f39c12;
            transform: translateX(8px);
            padding-left: 16px;
        }

        .footer-box a i {
            color: #f39c12;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .footer-box a:hover i {
            transform: scale(1.25) rotate(5deg);
            text-shadow: 0 0 10px rgba(243, 156, 18, 0.6);
        }

        .footer-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 20px 0;
        }

        .stat-item {
            background: rgba(243, 156, 18, 0.08);
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid #f39c12;
            text-align: center;
        }

        .stat-item .number {
            color: #f39c12;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .stat-item .label {
            color: #95a5a6;
            font-size: 0.85rem;
            margin-top: 5px;
        }

        .footer-newsletter {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-input-group {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .newsletter-input-group input {
            flex: 1;
            padding: 13px 16px;
            border: 2px solid #34495e;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .newsletter-input-group input::placeholder {
            color: #7f8c8d;
        }

        .newsletter-input-group input:focus {
            outline: none;
            border-color: #f39c12;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 15px rgba(243, 156, 18, 0.25);
        }

        .newsletter-btn {
            padding: 13px 22px;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 14px;
            min-width: 50px;
        }

        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
        }

        .newsletter-success {
            color: #2ecc71;
            font-size: 0.9rem;
            display: none;
        }

        .footer-contact-item {
            display: flex;
            gap: 14px;
            margin: 16px 0;
            padding: 12px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            border-left: 3px solid #f39c12;
            transition: all 0.3s ease;
        }

        .footer-contact-item:hover {
            background: rgba(243, 156, 18, 0.1);
            transform: translateX(5px);
        }

        .footer-contact-item i {
            color: #f39c12;
            font-size: 1.5rem;
            flex-shrink: 0;
            width: 32px;
            text-align: center;
            transition: all 0.3s ease;
            text-shadow: 0 0 12px rgba(243, 156, 18, 0.3);
        }

        .footer-contact-item:hover i {
            transform: scale(1.3) rotate(-5deg);
            text-shadow: 0 0 18px rgba(243, 156, 18, 0.6);
        }

        .footer-contact-text {
            display: flex;
            flex-direction: column;
        }

        .footer-contact-text small {
            color: #7f8c8d;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-contact-text a, .footer-contact-text span {
            color: #ccc;
            text-decoration: none;
            margin: 3px 0;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .footer-contact-text a:hover {
            color: #f39c12;
        }

        .social-icons {
            display: flex;
            gap: 16px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(243, 156, 18, 0.15), rgba(243, 156, 18, 0.02));
            border: 2px solid #f39c12;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 1.6rem;
            animation: zoomIn 0.6s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            transition: left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 0;
            border-radius: 50%;
        }

        .social-icon:hover::before {
            left: 0;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, #4d0b0b, #e67e22);
            color: white;
            transform: translateY(-12px) scale(1.15);
            box-shadow: 0 20px 40px rgba(243, 156, 18, 0.7);
            border-color: #e67e22;
        }

        .social-icon i {
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 2;
        }

        .social-icon:hover i {
            transform: scale(1.2) rotate(8deg);
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
            margin: 50px 0;
        }

        .footer-bottom {
            background: linear-gradient(90deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1), rgba(0,0,0,0.3));
            text-align: center;
            padding: 40px 30px;
            border-top: 1px solid rgba(243, 156, 18, 0.25);
            color: #95a5a6;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 20px;
            align-items: center;
            max-width: 1500px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease;
        }

        .footer-bottom-section {
            text-align: center;
        }

        .footer-bottom-section p, .footer-bottom-section span {
            margin: 0;
            font-size: 0.95rem;
            color: #bdc3c7;
            transition: all 0.3s ease;
        }

        .footer-bottom-section p:hover, .footer-bottom-section span:hover {
            color: #f39c12;
        }

        .footer-bottom-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.9s ease;
        }

        .footer-bottom-links a {
            color: #95a5a6;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 4px;
            position: relative;
            font-weight: 500;
        }

        .footer-bottom-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #f39c12, #e67e22);
            transition: width 0.3s ease;
        }

        .footer-bottom-links a:hover::before {
            width: 100%;
        }

        .footer-bottom-links a:hover {
            color: #f39c12;
        }

        .footer-bottom-links span {
            color: #555;
        }

        .award-badges {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .badge {
            padding: 8px 14px;
            background: rgba(243, 156, 18, 0.1);
            border: 1px solid #f39c12;
            border-radius: 20px;
            color: #f39c12;
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .badge i {
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .footer {
                padding-top: 60px;
                margin-top: 80px;
            }

            .footer-container {
                gap: 40px;
                padding: 40px 20px 60px;
            }

            .footer-bottom {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 30px 20px;
            }

            .footer-bottom-links {
                gap: 8px;
            }

            .social-icons {
                justify-content: center;
            }

            .newsletter-input-group {
                flex-direction: column;
            }

            .newsletter-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px 15px 50px;
            }

            .footer-box h3 {
                font-size: 1.2rem;
            }

            .footer-stats {
                grid-template-columns: 1fr;
            }
        }

        .footer-bottom-section {
            text-align: center;
            align-content: center;
        }

        .footer-bottom-section p {
            margin: 0;
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: #95a5a6;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #f39c12;
        }

        .payment-methods {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .payment-method {
            padding: 8px 12px;
            background: rgba(243, 156, 18, 0.15);
            border: 1px solid #f39c12;
            border-radius: 6px;
            color: #f39c12;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .payment-method i {
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .footer {
                padding-top: 40px;
                margin-top: 60px;
            }

            .footer-container {
                gap: 30px;
                padding: 30px 15px 40px;
            }

            .footer-bottom {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 20px 15px;
            }

            .newsletter-input-group {
                flex-direction: column;
            }

            .social-icons {
                justify-content: center;
            }

            .back-to-top {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .footer-box h3 {
                font-size: 1.1rem;
            }

            .footer-bottom-links {
                gap: 10px;
            }
        }

        /* Dropdown */
        .dropdown {
            position: relative;
            display: flex;          
            align-items: center;
        }

        .dropdown-content.active {
            display: block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #273545;
            min-width: 260px;
            top: 55px;
            right: 0;
            z-index: 9999;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 14px 40px rgba(0,0,0,0.25);
            border: 1px solid rgba(255,255,255,0.08);
        }

        /* Show dropdown on hover */
        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            color: #f5f7fa;
            text-align: left;
            transition: background-color 0.25s ease, transform 0.25s ease;
        }

        .dropdown-content a i {
            width: 24px;
            text-align: center;
            color: #f39c12;
            font-size: 1.05rem;
        }

        .dropdown-content a:hover {
            background-color: #f39c12;
            color: #ffffff;
            transform: translateX(3px);
        }

        .dropdown > a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 10px;
            transition: background-color 0.3s ease;
        }

        .dropdown:hover > a {
            background-color: #f39c12;
        }

        /* Show dropdown on hover */
        .dropdown:hover .dropdown-content {
            display: block;
        }

        .mobile-menu-toggle {
            display: none;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 12px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
        }

        .mobile-menu-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
        }

        .mobile-menu-toggle.active {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            transform: rotate(90deg);
        }

        .navbar-mobile {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            flex-direction: column;
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            z-index: 999;
            max-height: calc(100vh - 60px);
            overflow-y: auto;
        }

        .navbar-mobile.active {
            display: flex;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .navbar-mobile a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            border-bottom: 1px solid rgba(243, 156, 18, 0.2);
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .navbar-mobile a:hover {
            background: rgba(243, 156, 18, 0.2);
            padding-left: 25px;
            color: #f39c12;
        }

        .navbar-mobile .dropdown-mobile {
            position: relative;
        }

        .navbar-mobile .dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-mobile .dropdown-menu {
            display: none;
            background: rgba(0,0,0,0.3);
            padding: 10px;
            margin-top: 5px;
        }

        .navbar-mobile .dropdown-menu.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .navbar-mobile.active {
            display: flex;
        }

        .navbar-mobile a {
            color: white;
            text-decoration: none;
            padding: 15px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 5px 0;
            touch-action: manipulation;
        }

        .navbar-mobile a:hover {
            background-color: #f39c12;
            color: #2c3e50;
            padding-left: 20px;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 1024px) {
            .Product-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
                padding: 40px 20px;
            }
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                text-align: center;
                padding: 20px 15px;
                gap: 15px;
                min-height: auto;
            }

            .header .logo-om {
                width: 100px;
                height: 100px;
            }

            .header .logo-om::before {
                font-size: 3rem;
            }

            .header img {
                height: 80px;
                width: 80px;
                border-width: 3px;
            }

            .header h1 {
                font-size: 1.4rem;
                letter-spacing: 1px;
                line-height: 1.3;
            }

            .header .deco-left,
            .header .deco-right {
                font-size: 1.2rem;
            }

            .header .tagline {
                font-size: 0.9rem;
                padding: 8px 15px;
            }

            .Navbar {
                justify-content: space-between;
                padding: 12px 15px;
                flex-wrap: nowrap;
                background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
                position: sticky;
                top: 0;
                z-index: 1000;
                box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            }

            .Navbar a {
                padding: 10px 12px;
                font-size: 13px;
                flex: 0.9;
                text-align: center;
                display: none;
            }

            .Navbar a.active {
                display: block;
            }

            .Navbar .dropdown,
            .Navbar .dropdown a {
                flex: 1;
            }

            .dropdown-content {
                top: 40px;
                min-width: 180px;
                font-size: 13px;
            }

            .dropdown-content a {
                padding: 10px 12px;
                font-size: 13px;
            }

            .Product-container {
                grid-template-columns: repeat(2, 1fr);
                padding: 30px 15px;
                gap: 20px;
                max-width: 100%;
            }

            .Products {
                padding: 20px;
            }

            .Products img {
                height: 150px;
            }

            .Product-name {
                font-size: 1rem;
            }

            .Products button {
                padding: 12px 20px;
                font-size: 14px;
                min-height: 48px;
            }

            .iframe iframe {
                height: 250px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 30px 15px 40px;
            }

            .hero-content h2 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-cta-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .hero-btn {
                width: 100%;
                padding: 15px 20px;
                min-height: 48px;
                font-size: 15px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .service-card,
            .testimonial-card {
                padding: 20px;
            }
        }

        @media (max-width: 600px) {
            .mobile-menu-toggle {
                display: block;
            }

            .Navbar {
                justify-content: space-between;
                padding: 10px;
                position: relative;
                background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
                box-shadow: 0 4px 25px rgba(243, 156, 18, 0.2);
            }

            .Navbar a,
            .Navbar .dropdown {
                display: none;
            }

            .Navbar a.active,
            .mobile-menu-toggle {
                display: block;
            }

            .header {
                padding: 15px 10px;
                gap: 10px;
            }

            .header .logo-om {
                width: 80px;
                height: 80px;
            }

            .header .logo-om::before {
                font-size: 2.5rem;
            }

            .header img {
                height: 70px;
                width: 70px;
                border-width: 2px;
            }

            .header h1 {
                font-size: 1.1rem;
                letter-spacing: 0.5px;
            }

            .header .deco-left,
            .header .deco-right {
                font-size: 1rem;
            }

            .header .tagline {
                font-size: 0.8rem;
                padding: 6px 12px;
            }

            .Product-container {
                grid-template-columns: 1fr;
                padding: 20px 10px;
                gap: 15px;
            }

            .Products {
                padding: 15px;
            }

            .Products img {
                height: 180px;
            }

            .Product-name {
                font-size: 0.95rem;
                margin: 12px 0 8px 0;
            }

            .Products h3 {
                font-size: 1rem;
                margin: 8px 0;
            }

            .Products button {
                padding: 12px 15px;
                font-size: 13px;
                margin-top: 15px;
                min-height: 45px;
            }

            .hero-content h2 {
                font-size: 1.5rem;
            }

            .hero-content p {
                font-size: 0.95rem;
            }

            .hero-banner {
                padding: 50px 15px;
            }

            .section-title {
                font-size: 1.5rem;
                margin-bottom: 40px;
            }

            .services-showcase {
                padding: 40px 15px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                padding: 25px;
            }

            .service-card i {
                font-size: 2.5rem;
            }

            .service-card h3 {
                font-size: 1.2rem;
            }

            .service-card p {
                font-size: 0.9rem;
            }

            .testimonials-showcase {
                padding: 40px 15px;
            }

            .testimonial-card {
                padding: 20px;
            }

            .testimonial-card p {
                font-size: 0.9rem;
            }

            .checkout-form {
                padding: 15px;
            }

            .form-group {
                margin-bottom: 15px;
            }

            .form-group input,
            .form-group select {
                padding: 12px;
                font-size: 16px;
                min-height: 48px;
            }

            /* Hero Mobile */
            .hero-banner {
                padding: 60px 15px;
                margin-top: -5px;
            }

            .hero-content h2 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

            .hero-content p {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }

            .hero-cta-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .hero-btn {
                width: 100%;
                padding: 14px 20px;
                min-height: 50px;
                font-size: 15px;
            }

            /* Touch-friendly adjustments */
            button {
                min-height: 48px;
                min-width: 48px;
            }

            a {
                min-height: 48px;
                padding: 12px 15px;
            }

            .footer-box {
                padding: 20px;
                margin: 0 10px;
            }

            .footer-box h3 {
                font-size: 1.1rem;
            }

            .social-icons {
                justify-content: center;
                gap: 10px;
            }

            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .back-to-top {
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.3rem;
            }

            .header img {
                height: 45px;
                width: 45px;
            }

            .Products {
                padding: 15px;
            }

            .Product-name {
                font-size: 0.9rem;
            }

            .Products button {
                padding: 10px 15px;
                font-size: 12px;
            }

            .hero-content h2 {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .navbar-mobile {
                top: 70px;
                background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
                box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            }

            .navbar-mobile a {
                padding: 15px;
                font-size: 15px;
                border-bottom: 1px solid rgba(243, 156, 18, 0.3);
            }

            .navbar-mobile a:hover {
                background: rgba(243, 156, 18, 0.3);
                padding-left: 20px;
            }

            .mobile-menu-toggle {
                display: block;
                padding: 10px 12px;
                font-size: 1.3rem;
            }
        }

        /* Unified Booking Modal Styles */
        .unified-booking-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            animation: backdropFadeIn 0.4s ease;
        }

        .unified-booking-modal.show {
            display: flex;
            animation: backdropFadeIn 0.5s ease;
        }

        .booking-modal-content {
            background: white;
            border-radius: 25px;
            max-width: 600px;
            width: 95%;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 100px rgba(102, 126, 234, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
            animation: modalSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .booking-modal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
        }

        .booking-modal-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            text-align: center;
            border-radius: 25px 25px 0 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .booking-modal-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: particleMove 20s linear infinite;
        }

        .booking-modal-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
            animation: shimmer 3s infinite;
        }

        .booking-modal-header h2 {
            margin: 0;
            font-size: 1.8rem;
            font-family: 'Rozha One', serif;
            position: relative;
            z-index: 2;
            animation: slideInDown 0.6s ease;
        }

        .booking-modal-header p {
            margin: 10px 0 0 0;
            opacity: 0.95;
            position: relative;
            z-index: 2;
            animation: slideInDown 0.8s ease;
        }

        .booking-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 10;
            animation: slideInDown 0.5s ease;
        }

        .booking-close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .booking-close-btn:active {
            transform: rotate(90deg) scale(0.95);
        }

        .booking-modal-body {
            padding: 40px;
            animation: fadeIn 0.6s ease 0.2s both;
        }

        .booking-step {
            display: none;
            opacity: 0;
            animation: fadeIn 0.4s ease forwards;
        }

        .booking-step.active {
            display: block;
            animation: stepFadeIn 0.5s ease;
        }

        .category-buttons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }

        .category-btn {
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            color: white;
            border: none;
            padding: 20px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: scaleInUp 0.5s ease backwards;
        }

        .category-btn:nth-child(1) { animation-delay: 0.1s; }
        .category-btn:nth-child(2) { animation-delay: 0.2s; }
        .category-btn:nth-child(3) { animation-delay: 0.3s; }

        .category-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .category-btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4);
        }

        .category-btn:hover::before {
            left: 100%;
        }

        .services-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin-bottom: 20px;
        }

        .service-option {
            background: #f8f9fa;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: slideInLeft 0.4s ease backwards;
        }

        .service-option::before {
            content: '';
            position: absolute;
            left: -100%;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102,126,234,0.1), transparent);
            transition: left 0.6s ease;
        }

        .service-option:hover {
            border-color: #667eea;
            background: linear-gradient(135deg, #f0f4ff, #f8f9fa);
            transform: translateX(8px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
        }

        .service-option:hover::before {
            left: 100%;
        }

        .service-option input[type="radio"] {
            display: none;
        }

        .service-option label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            margin: 0;
        }

        .service-name {
            font-weight: 600;
            color: #333;
        }

        .service-price {
            background: #667eea;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 14px;
        }

        .service-option input[type="radio"]:checked + label .service-name {
            color: #667eea;
        }

        .service-option input[type="radio"]:checked ~ .booking-next-btn,
        .service-option input[type="radio"]:checked + label {
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 20px;
            animation: slideInUp 0.5s ease backwards;
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }
        .form-group:nth-child(5) { animation-delay: 0.5s; }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            transition: all 0.3s ease;
        }

        .form-group input:focus ~ label,
        .form-group textarea:focus ~ label {
            color: #667eea;
            transform: translateX(5px);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-sizing: border-box;
            position: relative;
            background: linear-gradient(135deg, #f9f9f9, #fafafa);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #ccc;
            transition: color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            background: linear-gradient(135deg, #f0f4ff, #f5f7ff);
            box-shadow: 
                0 0 0 4px rgba(102, 126, 234, 0.15),
                inset 0 0 10px rgba(102, 126, 234, 0.05);
            transform: translateY(-2px);
        }

        .time-slots {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin: 20px 0;
            animation: fadeIn 0.5s ease;
        }

        .time-slot {
            padding: 12px;
            border: 2px solid #e0e0e0;
            background: linear-gradient(135deg, #f8f8f8, #ffffff);
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            color: #333;
            position: relative;
            overflow: hidden;
            animation: popIn 0.3s ease backwards;
        }

        .time-slot:nth-child(1) { animation-delay: 0.05s; }
        .time-slot:nth-child(2) { animation-delay: 0.10s; }
        .time-slot:nth-child(3) { animation-delay: 0.15s; }
        .time-slot:nth-child(4) { animation-delay: 0.20s; }
        .time-slot:nth-child(5) { animation-delay: 0.25s; }
        .time-slot:nth-child(6) { animation-delay: 0.30s; }
        .time-slot:nth-child(7) { animation-delay: 0.35s; }
        .time-slot:nth-child(8) { animation-delay: 0.40s; }

        .time-slot::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(102,126,234,0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .time-slot:hover {
            border-color: #667eea;
            background: linear-gradient(135deg, #f0f4ff, #f5f7ff);
            transform: scale(1.08);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
        }

        .time-slot:hover::before {
            opacity: 1;
        }

        .time-slot.selected {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: #667eea;
            box-shadow: 
                0 8px 25px rgba(102, 126, 234, 0.4),
                inset 0 0 10px rgba(255,255,255,0.2);
            animation: pulse 0.6s ease;
        }

        .confirmation-section {
            display: none;
            background: linear-gradient(135deg, #f0f4ff 0%, #f5f7ff 100%);
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            border: 2px solid #e0e0ff;
            animation: slideInUp 0.4s ease;
        }

        .confirmation-section.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        .confirmation-section h4 {
            color: #667eea;
            margin-top: 0;
            animation: slideInDown 0.4s ease;
        }

        .confirmation-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
            animation: fadeInUp 0.4s ease backwards;
            transition: all 0.3s ease;
        }

        .confirmation-item:hover {
            background: rgba(102, 126, 234, 0.05);
            padding: 12px 8px;
            border-radius: 6px;
            margin: 0 -8px;
        }

        .confirmation-item:last-child {
            border-bottom: none;
        }

        .confirmation-item strong {
            color: #667eea;
            font-weight: 700;
        }

        .modal-buttons {
            display: flex;
            gap: 12px;
            margin-top: 25px;
            animation: slideInUp 0.6s ease 0.3s both;
        }

        .modal-btn {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 15px;
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.5s ease backwards;
        }

        .modal-btn:nth-child(1) { animation-delay: 0.1s; }
        .modal-btn:nth-child(2) { animation-delay: 0.2s; }

        .modal-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .modal-btn:active::before {
            width: 300px;
            height: 300px;
        }

        .modal-btn.primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 
                0 5px 15px rgba(102, 126, 234, 0.3),
                inset 0 1px 0 rgba(255,255,255,0.2);
        }

        .modal-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 10px 35px rgba(102, 126, 234, 0.4),
                inset 0 1px 0 rgba(255,255,255,0.3);
        }

        .modal-btn.primary:active {
            transform: translateY(-1px);
        }

        .modal-btn.secondary {
            background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
            color: #333;
            border: 2px solid #e0e0e0;
        }

        .modal-btn.secondary:hover {
            background: linear-gradient(135deg, #e8e8e8, #e0e0e0);
            border-color: #667eea;
            color: #667eea;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
        }

        /* Service Card Booking Styles */
        .service-card-booking {
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: cardScaleIn 0.5s ease backwards;
            position: relative;
            overflow: hidden;
        }

        .service-card-booking:nth-child(1) { animation-delay: 0.05s; }
        .service-card-booking:nth-child(2) { animation-delay: 0.10s; }
        .service-card-booking:nth-child(3) { animation-delay: 0.15s; }
        .service-card-booking:nth-child(4) { animation-delay: 0.20s; }
        .service-card-booking:nth-child(5) { animation-delay: 0.25s; }
        .service-card-booking:nth-child(6) { animation-delay: 0.30s; }
        .service-card-booking:nth-child(7) { animation-delay: 0.35s; }
        .service-card-booking:nth-child(8) { animation-delay: 0.40s; }
        .service-card-booking:nth-child(9) { animation-delay: 0.45s; }
        .service-card-booking:nth-child(10) { animation-delay: 0.50s; }
        .service-card-booking:nth-child(11) { animation-delay: 0.55s; }
        .service-card-booking:nth-child(12) { animation-delay: 0.60s; }

        .service-card-booking::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102,126,234,0) 0%, rgba(102,126,234,0.1) 100%);
            border-radius: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }

        .service-card-booking::after {
            content: '';
            position: absolute;
            left: -100%;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
            z-index: 2;
        }

        .service-card-booking:hover {
            background: linear-gradient(135deg, #f0f4ff, #ffffff) !important;
            border-color: #667eea !important;
            box-shadow: 
                0 10px 40px rgba(102, 126, 234, 0.2),
                0 0 30px rgba(102, 126, 234, 0.1) !important;
            transform: translateY(-6px) scale(1.02) !important;
        }

        .service-card-booking:hover::before {
            opacity: 1;
        }

        .service-card-booking:hover::after {
            left: 100%;
        }

        .service-card-booking h4 {
            font-weight: 700;
            transition: all 0.3s ease;
            position: relative;
            z-index: 3;
        }

        .service-card-booking:hover h4 {
            color: #667eea;
            transform: translateX(4px);
        }

        .service-card-booking:hover p {
            color: #555;
        }

        .booking-success {
            display: none;
            text-align: center;
            padding: 40px 20px;
            animation: fadeIn 0.5s ease;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #25d366 0%, #667eea 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            margin: 0 auto 20px;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }

        .success-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            animation: pulse 2s ease-in-out infinite;
        }

        .booking-success h3 {
            color: #667eea;
            font-size: 1.5rem;
            margin-bottom: 10px;
            animation: slideInDown 0.5s ease 0.2s both;
        }

        .booking-success p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
            animation: slideInUp 0.5s ease 0.3s both;
        }

        h4 {
            animation: slideInLeft 0.4s ease;
        }

        /* Service Card Booking Styles */
        .service-card-booking:hover {
            background: #f0f0f0 !important;
            border-color: #667eea !important;
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
            transform: translateY(-2px);
        }

        .service-card-booking h4 {
            font-weight: 600;
        }

        /* Form Group Styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #333;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Poppins', Arial, sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            background: #f8f9ff;
        }

        .form-group textarea {
            resize: vertical;
        }

        /* Time Slots Styles */
        .time-slots {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 25px;
        }

        .time-slot {
            padding: 12px;
            background: #f0f0f0;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            color: #333;
            transition: all 0.3s ease;
            font-family: 'Poppins', Arial, sans-serif;
        }

        .time-slot:hover {
            border-color: #667eea;
            background: #f5f7ff;
        }

        .time-slot.selected {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: #667eea;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Advanced Animations for Booking Modal */
        @keyframes backdropFadeIn {
            from {
                background-color: rgba(0, 0, 0, 0);
                backdrop-filter: blur(0px);
            }
            to {
                background-color: rgba(0, 0, 0, 0.7);
                backdrop-filter: blur(8px);
            }
        }

        @keyframes modalSlideUp {
            from {
                opacity: 0;
                transform: translateY(100px) scale(0.95);
                filter: blur(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        @keyframes stepFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleInUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes cardScaleIn {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes particleMove {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(50px, 50px);
            }
        }

        @keyframes shimmer {
            0% {
                opacity: 0;
                transform: translateX(-100%);
            }
            50% {
                opacity: 0.5;
            }
            100% {
                opacity: 0;
                transform: translateX(100%);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 600px) {
            .booking-modal-content {
                width: 100%;
                border-radius: 20px 20px 0 0;
                max-height: 90vh;
            }

            .booking-modal-body {
                padding: 25px;
            }

            .category-buttons {
                grid-template-columns: 1fr;
            }

            .time-slots {
                grid-template-columns: repeat(2, 1fr);
            }

            .modal-buttons {
                flex-direction: column;
            }
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @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 zoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Hero Banner Section */
        .hero-banner {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            background-size: 300% 300%;
            animation: gradientShift 15s ease infinite;
            padding: 100px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: -10px;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-banner::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 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"></path></svg>');
            background-repeat: repeat-x;
            animation: wave 15s linear infinite;
            opacity: 0.2;
        }

        @keyframes wave {
            0% { transform: translateX(0); }
            100% { transform: translateX(1200px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInDown 1s ease;
        }

        .hero-content h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 20px;
            font-family: 'Rozha One', serif;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .hero-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 15px 40px;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            animation: slideInUp 1s ease;
        }

        .hero-btn.primary {
            background: white;
            color: #667eea;
        }

        .hero-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
  
        .hero-btn.secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .hero-btn.secondary:hover {
            background: white;
            color: #667eea;
            transform: translateY(-3px);
        }

        /* Services Showcase */
        .services-showcase {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            margin: 60px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 60px;
            font-family: 'Rozha One', serif;
            animation: fadeInDown 1s ease;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: fadeInUp 0.8s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(243, 156, 18, 0.15), transparent);
            transition: left 0.5s ease;
            z-index: 0;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(243, 156, 18, 0.35);
            border: 2px solid #f39c12;
        }

        .service-card:hover .service-icon {
            transform: scale(1.2) rotate(10deg);
            filter: drop-shadow(0 0 10px rgba(243, 156, 18, 0.5));
        }

        .service-card:hover h3 {
            color: #f39c12;
        }

        .service-icon {
            font-size: 3.5rem;
            color: #f39c12;
            margin-bottom: 20px;
            animation: float 3s ease-in-out infinite;
            transition: all 0.4s ease;
        }

        .service-card h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .service-card a {
            color: #f39c12;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .service-card a:hover {
            transform: translateX(5px);
            color: #e67e22;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            margin: 60px 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 0.8s ease;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 2px solid transparent;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 4rem;
            color: #f39c12;
            opacity: 0.3;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(243, 156, 18, 0.25);
            border: 2px solid #f39c12;
        }

        .testimonial-card:hover::before {
            top: -25px;
            left: 25px;
            font-size: 4.5rem;
            opacity: 0.6;
            color: #f39c12;
        }

        .testimonial-card:hover .testimonial-text {
            color: #2c3e50;
        }

        .testimonial-card:hover .testimonial-author {
            border-top-color: #f39c12;
        }

        .testimonial-text {
            color: #555;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #ecf0f1;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
        }

        .author-info h4 {
            margin: 0;
            color: #2c3e50;
            font-size: 1rem;
            font-weight: 700;
        }

        .author-info p {
            margin: 5px 0 0;
            color: #f39c12;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .stars {
            color: #f39c12;
            font-size: 1rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        /* Global Animation Classes */
        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }

        .fade-in-slow {
            animation: fadeInUp 1.2s ease forwards;
        }

        @media (max-width: 768px) {
            .hero-banner {
                padding: 60px 15px;
            }

            .hero-content h2 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-btn {
                width: 100%;
                max-width: 300px;
            }

            .services-showcase,
            .testimonials-section {
                padding: 60px 15px;
            }

            .section-title {
                font-size: 2rem;
            }

            .service-card,
            .testimonial-card {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h2 {
                font-size: 1.5rem;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .service-icon {
                font-size: 2.5rem;
            }
        }

        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }