
        body {
            font-family: Arial, sans-serif;
            background: #fff;
        }

        .po-container {
            width: 90%;
            max-width: 1100px;
            margin: 40px auto;
        }

        .po-heading {
            text-align: center;
            color: #444;
            margin-bottom: 20px;
        }

        .po-print-box {
            background: #fff8e7;
            padding: 20px;
            border-radius: 6px;
        }

        .po-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .po-field {
            flex: 1;
        }

        .po-field label {
            display: block;
            font-size: 13px;
            margin-bottom: 5px;
            color: #333;
        }

        .po-field input,
        .po-field select {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .po-btn-area {
            text-align: center;
            margin-top: 15px;
        }

        .po-btn {
            background: #193153;
            color: #fff;
            border: none;
            padding: 10px 25px;
            font-size: 15px;
            border-radius: 4px;
            cursor: pointer;
        }

        .po-btn:hover {
            background: #f78a21;
        }
   
       
        .hero {
            position: relative;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .hero-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 2;
        }

        .hero-dots span {
            width: 12px;
            height: 12px;
            background: #fff;
            border-radius: 50%;
            cursor: pointer;
        }

        .hero-dots span.active {
            background: #193153;
        }

        /* =================== Kids Section =================== */
        .kids-section {
            text-align: center;
            padding: 40px 20px;
        }

        .collage {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 20px;
            padding: 10px;
            box-sizing: border-box;
        }

        .collage-item {
            border: 3px solid #193153;
            border-radius: 12px;
            padding: 5px;
            background-color: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-sizing: border-box;
            overflow: hidden;
        }

        .collage-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .collage-item img.imgs {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            display: block;
        }

        .caption {
            margin-top: 8px;
            font-weight: 600;
            color: #193153;
            font-size: 1rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .see-more-btn {
            background: #193153;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            transition: 0.3s;
            margin-top: 15px;
        }

        .see-more-btn:hover {
            background: #f78a21;
            color: #193153;
            transform: scale(1.05);
        }

        /* =================== Books Section =================== */
        .books-section {
            text-align: center;
            padding: 40px 20px;
        }

        .books {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin: 0 auto;
            max-width: 1200px;
        }

        .book {
            width: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #fff;
            border-radius: 10px;
            padding: 10px;
            box-sizing: border-box;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .book img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 8px;
        }

        .para-shopbystore {
            margin-top: 10px;
            font-weight: 600;
            color: #333;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
            text-align: center;
        }

        /* =================== Stationery Section =================== */
        .stationery-section {
            text-align: center;
            padding: 40px 20px;
        }

        .stationery-items {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .stationery-items .item {
            width: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #fff;
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .stationery-items img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 8px;
        }

        /* =================== Library Section =================== */
        .library {
            text-align: center;
            padding: 60px 20px;
            background: #f8f8f8;
        }

        .library-content h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .library-content .btn {
            padding: 10px 25px;
            background: #193153;
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }

        .library-content .btn:hover {
            background: #f78a21;
            color: #193153;
        }

        /* =================== Responsive =================== */
        @media (max-width: 1024px) {
            .collage {
                grid-template-columns: repeat(4, 1fr);
                gap: 15px;
            }

            .book {
                width: 200px;
            }
        }

        @media (max-width: 768px) {
            .collage {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .collage-item {
                padding: 8px;
            }

            .book {
                width: 48%;
            }

            .books {
                justify-content: space-between;
            }
        }

        @media (max-width: 480px) {
            .collage {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .collage-item {
                padding: 10px;
            }

            .book {
                width: 100%;
            }
        }



     
