
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background:#667eea;
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }

       .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #f0f0f0;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #fff;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

       
        /* Products Section */
        .section-title{
            margin-top: 80px;
            text-align: center;
            font-size: 2.5rem;
        }
        

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .product-image img{
            width: 80%;
            height: 200px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: auto;
            font-size: 4rem;
            color: white;
        }

        .product-info {
            padding: 25px;
        }

        .product-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #333;
        }

        .product-info p {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff6b6b;
            margin-bottom: 15px;
        }

        .product-button {
            background: #ff6b6b;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-weight: bold;
        }

        .product-button:hover {
            background: #ff5252;
            transform: scale(1.02);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: #f8f9fa;
        }
    

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }

        .about-image img{
            width: 100%;
            height: 400px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            color: white;
        }
        .logoimage{
            width: 15px;
        }
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: #333;
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 40px;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #667eea;
        }

        .contact-info p {
            width: fit-content;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .cotainer{
            max-width: 100%;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: rgba(255,255,255,0.9);
            color: #333;
            font-size: 1rem;
        }
        .package-container{
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;

        }
        .package-container img{
            width: 70%; 
            margin-bottom: 30px;
            border-radius: 20px;
            align-items: center;

        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-button {
            background: #667eea;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            font-weight: bold;
        }

        .submit-button:hover {
            background: #5a67d8;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #222;
            color: white;
            text-align: center;
            padding: 40px 0;
            width: 100%;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .logo{
                font-size: medium;
                text-align: center;
                width: 100%;
                display: none;
            }
            .paybillimage{
                max-width: 100%;
            }


            
            .package-container img{
                width: 100%;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .contact-info{
                text-align: center;
            }
            .contact-info p{
                text-align: center;
                margin: auto;
            }
            footer .container{
                width: 100%;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
        
            
            .about-content {
                grid-template-columns: 1fr;
            }
            .contact{
                padding: 30px 0;
            }
            .section-title{
                margin-top: 40px;
            }

            
            .contact-content {
                grid-template-columns: 1fr;
                margin-top: 15px;
            }
        }

        /* Cart */
        .cart {
            position: fixed;
            top: 80px;
            right: 20px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            min-width: 300px;
            max-height: 400px;
            overflow-y: auto;
            z-index: 1000;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .cart.active {
            transform: translateX(0);
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .cart-total {
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 20px;
            text-align: center;
        }

        .cart-toggle {
            background: #ff6b6b;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cart-toggle:hover {
            background: #ff5252;
        }


            /* Search box styling */
    .search-container {
      margin: 20px 0;
      display: flex;
      gap: 10px;
      width: fit-content;
      margin: auto;
    }
    .search-container input {
      padding: 10px;
      width: 250px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    .search-container button {
      padding: 10px 15px;
      background-color: #28a745;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    .search-container button:hover {
      background-color: #218838;
    }
    .product-card.hide {
      display: none;
    }
