Digishop - Digital Products Store * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { background: #0f172a; color: white; } /* HERO SECTION */ .hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: #007BFF; /* BLUE BACKGROUND */ } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; z-index: 2; position: relative; } .hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; } .hero-text { padding: 20px 0; } .hero-badge { display: inline-block; background: #ffffff; color: #007BFF; padding: 8px 16px; border-radius: 30px; font-size: 14px; font-weight: 600; margin-bottom: 20px; } .hero-text h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: #ffffff; } .hero-text h1 span { color: #ffd700; } .hero-text p { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; max-width: 90%; } /* BUTTONS */ .hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; justify-content: flex-start; } .btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: 1rem; color: #ffffff; transition: all 0.3s ease; } .btn-primary { background: #ff6b6b; } .btn-primary:hover { background: #ff4c4c; } .btn-secondary { background: #4cd964; } .btn-secondary:hover { background: #3ac755; } .hero-image img { width: 100%; max-width: 650px; filter: drop-shadow(0 10px 25px rgba(0,0,0,0.3)); } /* FLOATING ELEMENTS */ .floating-elements { position: absolute; inset: 0; z-index: 1; overflow: hidden; } .floating-element { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.15); animation: floatAround 15s infinite linear; } .element-1 { width: 80px; height: 80px; top: 10%; left: 5%; } .element-2 { width: 120px; height: 120px; top: 70%; left: 10%; } .element-3 { width: 60px; height: 60px; top: 40%; left: 80%; } .element-4 { width: 100px; height: 100px; top: 20%; left: 60%; } @keyframes floatAround { 0% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(120px,-120px) rotate(180deg); } 100% { transform: translate(0,0) rotate(360deg); } } /* BACKGROUND GRID */ .bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 50px 50px; z-index: 0; } /* RESPONSIVE */ @media (max-width: 992px) { .hero-content { grid-template-columns: 1fr; text-align: center; } .hero-text p { max-width: 100%; } .hero-buttons { justify-content: center; } } @media (max-width: 576px) { .hero-text h1 { font-size: 2.5rem; } .hero-buttons { flex-direction: column; align-items: center; } .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; } }
Digishop

Elevate Your Digital Experience with Rohan Brand Store

Discover premium digital products, templates, and resources designed to boost your creativity and productivity.

Digital Products
W4 New Media - Premium Features *{ margin:0; padding:0; box-sizing:border-box; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body{ background:#f8f9fa; } /* SECTION */ .modern-features-section{ width:100%; padding:80px 20px; background:#eaf6f3; display:flex; justify-content:center; position:relative; overflow:hidden; } .features-container{ max-width:1200px; width:100%; z-index:1; } /* HEADER */ .section-header{ text-align:center; margin-bottom:60px; } .section-title{ font-size:2.8rem; font-weight:800; margin-bottom:1rem; color:#03846d; } .section-title span{ color:#025f50; } .section-subtitle{ font-size:1.3rem; color:#555; max-width:700px; margin:auto; } /* GRID */ .features-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; } /* CARD BASE */ .feature-box{ padding:40px 30px; border-radius:20px; text-align:center; transition:all 0.4s ease; color:#fff; position:relative; overflow:hidden; } /* 🎨 DIFFERENT BACKGROUND COLORS */ .feature-box:nth-child(1){ background:#ec4899; /* Pink */ box-shadow:0 15px 35px rgba(236,72,153,0.4); } .feature-box:nth-child(2){ background:#ef4444; /* Red */ box-shadow:0 15px 35px rgba(239,68,68,0.4); } .feature-box:nth-child(3){ background:#8b5cf6; /* Purple */ box-shadow:0 15px 35px rgba(139,92,246,0.4); } .feature-box:nth-child(4){ background:#facc15; /* Yellow */ color:#ffffff; /* ❌ changed to white */ box-shadow:0 15px 35px rgba(250,204,21,0.45); } /* Hover */ .feature-box:hover{ transform:translateY(-10px); } /* ICON */ .feature-icon{ width:90px; height:90px; margin:0 auto 25px; border-radius:22px; display:flex; align-items:center; justify-content:center; font-size:2.5rem; background:rgba(255,255,255,0.2); color:#fff; } .feature-box:nth-child(4) .feature-icon{ color:#fff; /* ❌ changed icon to white */ } /* TEXT */ .feature-title{ font-size:1.5rem; font-weight:700; margin-bottom:15px; color:inherit; } .feature-description{ font-size:1.05rem; line-height:1.7; color:inherit; } /* BACKGROUND FLOAT */ .bg-elements{ position:absolute; inset:0; z-index:0; } .bg-element{ position:absolute; border-radius:50%; background:rgba(3,132,109,0.08); animation:float 15s infinite linear; } .element-1{width:200px;height:200px;top:10%;left:5%;} .element-2{width:150px;height:150px;top:70%;left:10%;} .element-3{width:100px;height:100px;top:40%;left:80%;} .element-4{width:180px;height:180px;top:20%;left:60%;} @keyframes float{ from{transform:translate(0,0) rotate(0deg);} to{transform:translate(40px,60px) rotate(360deg);} } /* RESPONSIVE */ @media(max-width:1024px){ .features-grid{grid-template-columns:repeat(2,1fr);} } @media(max-width:768px){ .features-grid{grid-template-columns:1fr;} .section-title{font-size:2.2rem;} } @media(max-width:480px){ .section-title{font-size:1.8rem;} .feature-icon{width:70px;height:70px;font-size:2rem;} }

Why Choose Rohan Brand Store

Experience the difference with our premium digital products and exceptional service

Instant Access

Immediate download after purchase.

Secure & Safe

Encrypted payments with trusted gateways.

Premium Quality

High-quality professional digital assets.

24/7 Support

Always available to help you.

Shop by Category

@keyframes rainbowText { 0% { color: #FF3CAC; } 20% { color: #784BA0; } 40% { color: #2B86C5; } 60% { color: #20E3B2; } 80% { color: #F9D423; } 100% { color: #FF3CAC; } } .animated-heading span { display: inline-block; margin: 0 5px; animation: rainbowText 3s infinite linear; } .animated-heading span:nth-child(1) { animation-delay: 0s; } .animated-heading span:nth-child(2) { animation-delay: 0.2s; } .animated-heading span:nth-child(3) { animation-delay: 0.4s; } @media (max-width: 768px) { section div { text-align: center !important; } }

Explore Our Collection of Digital Products – Find What You Need Instantly

आकर्षक गोल श्रेणी अनुभाग * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); padding: 20px 0; min-height: 100vh; } .category-container { max-width: 100%; margin: 0 auto; padding: 0 15px; } .categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; } .category-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); transition: all 0.4s ease; position: relative; cursor: pointer; text-align: center; padding: 25px 10px; opacity: 0; animation: fadeInUp 0.6s ease forwards; } .category-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); } .image-container { width: 120px; height: 120px; margin: 0 auto 15px; border-radius: 50%; overflow: hidden; border: 5px solid #f0f0f0; transition: all 0.4s ease; } .category-card:hover .image-container { border-color: #ff7e5f; transform: scale(1.1); } .category-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .category-card:hover .category-image { transform: scale(1.1); } .category-name { font-size: 1rem; font-weight: 600; color: #2c3e50; transition: color 0.3s ease; } .category-card:hover .category-name { color: #ff7e5f; } .category-link { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .category-card:nth-child(1) { animation-delay: 0.1s; } .category-card:nth-child(2) { animation-delay: 0.2s; } .category-card:nth-child(3) { animation-delay: 0.3s; } .category-card:nth-child(4) { animation-delay: 0.4s; } .category-card:nth-child(5) { animation-delay: 0.5s; } .category-card:nth-child(6) { animation-delay: 0.6s; } @media (max-width: 1200px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 768px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } .image-container { width: 100px; height: 100px; } } @media (max-width: 480px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } .image-container { width: 85px; height: 85px; } } @media (max-width: 360px) { .image-container { width: 70px; height: 70px; } }

Best Seller

Course

Digital Bundle

Graphics

Reels

Templates

🚀 Trending Digital Product

@keyframes rainbowTextBorder { 0% { color: #FF3CAC; border-color: #FF3CAC; } 20% { color: #784BA0; border-color: #784BA0; } 40% { color: #2B86C5; border-color: #2B86C5; } 60% { color: #20E3B2; border-color: #20E3B2; } 80% { color: #F9D423; border-color: #F9D423; } 100% { color: #FF3CAC; border-color: #FF3CAC; } } .full-border { display: inline-block; padding: 20px 40px; border: 3px solid; border-radius: 25px; animation: rainbowTextBorder 3s infinite linear; } .animated-heading { font-size: 32px; font-weight: 700; margin: 0; /* remove default h2 margin */ } @media (max-width: 768px) { .animated-heading { font-size: 24px; white-space: nowrap; /* Prevent line break */ } .full-border { padding: 15px 30px; font-size: 22px; } section div { text-align: center !important; } }
Product Cards *{ margin:0; padding:0; box-sizing:border-box; font-family:Arial, Helvetica, sans-serif; } body{ background:#f8f9fa; padding:30px 0; } /* WRAPPER */ .trending-wrapper{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:30px; width:100%; padding:0 15px; } /* PRODUCT CARD */ .product-box{ flex:1 1 calc(25% - 22.5px); min-width:250px; background:#fff; border-radius:10px; overflow:hidden; display:flex; flex-direction:column; text-align:center; border:2px solid #000; box-shadow:0 3px 10px rgba(0,0,0,0.08); } /* IMAGE */ .product-box img{ width:100%; display:block; } /* TITLE */ .product-title{ font-size:18px; font-weight:600; margin:10px 0 6px; color:#000; line-height:1.4; padding:0 10px; } /* BUTTON */ .buy-btn{ display:block; width:calc(100% - 20px); padding:12px 0; border-radius:6px; background:#3498db; color:#fff; font-weight:bold; text-decoration:none; margin:0 auto 10px; font-size:16px; } .buy-btn:hover{ background:#2980b9; } /* META — TEXT PURE BLACK */ .meta{ display:flex; justify-content:space-between; padding:10px; border-top:1px solid #eee; font-size:14px; font-weight:600; color:#000; } .meta span{ color:#000; } /* RESPONSIVE */ @media (max-width:992px){ .product-box{ flex:1 1 calc(50% - 15px); } } @media (max-width:600px){ .product-box{ flex:1 1 100%; } }

🌟 Featured Product

@keyframes rainbowTextBorder { 0% { color: #FF3CAC; border-color: #FF3CAC; } 20% { color: #784BA0; border-color: #784BA0; } 40% { color: #2B86C5; border-color: #2B86C5; } 60% { color: #20E3B2; border-color: #20E3B2; } 80% { color: #F9D423; border-color: #F9D423; } 100% { color: #FF3CAC; border-color: #FF3CAC; } } .full-border { display: inline-block; padding: 20px 40px; border: 3px solid; border-radius: 25px; animation: rainbowTextBorder 3s infinite linear; } .animated-heading { font-size: 32px; font-weight: 700; margin: 0; /* remove default h2 margin */ } @media (max-width: 768px) { /* Responsive adjustments */ .animated-heading { font-size: 24px; white-space: nowrap; /* Prevent line break */ } .full-border { padding: 15px 30px; font-size: 22px; } section div { text-align: center !important; } }
Featured Products /* RESET */ *{ margin:0; padding:0; box-sizing:border-box; font-family:Arial, Helvetica, sans-serif; } /* BODY – NO TOP SPACE */ body{ background:#f8f9fa; margin:0 !important; padding:0 !important; } /* REMOVE WP HEADER GAP IF ANY */ .site, .site-content, #page, #content{ margin:0 !important; padding:0 !important; } /* HEADING */ .featured-heading{ text-align:center; font-size:30px; margin:20px 0 30px; font-weight:700; } /* WRAPPER – FULL WIDTH */ .trending-wrapper{ display:flex; flex-wrap:wrap; gap:30px; width:100%; padding:0 15px 30px; margin:0; } /* PRODUCT CARD */ .product-box{ flex:1 1 calc(25% - 22.5px); min-width:250px; background:#fff; border-radius:10px; overflow:hidden; display:flex; flex-direction:column; text-align:center; border:2px solid #000; } /* IMAGE */ .product-box img{ width:100%; display:block; } /* TITLE – TIGHT */ .product-title{ font-size:17px; font-weight:600; margin:8px 10px 6px; line-height:1.2; } /* BUTTON – TITLE KE PASS */ .buy-btn{ display:block; width:calc(100% - 20px); margin:0 auto 4px; padding:13px 0; background:#3498db; color:#fff; text-decoration:none; font-weight:bold; border-radius:6px; } .buy-btn:hover{ background:#2980b9; color:#fff; } /* SOLD INFO – BUTTON KE NICHE */ .sold-info{ font-size:13px; color:#e74c3c; margin:0 0 10px; line-height:1.1; font-weight:600; } /* META – BLACK TEXT */ .meta{ display:flex; justify-content:space-between; padding:10px; font-size:14px; font-weight:600; border-top:1px solid #eee; color:#000; } .meta span{color:#000;} /* RESPONSIVE */ @media (max-width:992px){ .product-box{flex:1 1 calc(50% - 15px);} } @media (max-width:600px){ .product-box{flex:1 1 100%;} }
Customer Reviews *{ margin:0; padding:0; box-sizing:border-box; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } /* BODY */ body{ background:#ffffff; } /* ================= FULL WIDTH REVIEW SECTION ================= */ .review-section{ width:100%; padding:80px 0; background:#eaf6f3; position:relative; overflow:hidden; } /* BACKGROUND FLOATING ELEMENTS */ .bg-elements{ position:absolute; inset:0; z-index:0; } .bg-element{ position:absolute; border-radius:50%; background:rgba(3,132,109,0.08); animation:float 15s infinite linear; } .element-1{width:200px;height:200px;top:10%;left:5%;} .element-2{width:150px;height:150px;top:70%;left:10%;} .element-3{width:100px;height:100px;top:40%;left:80%;} .element-4{width:180px;height:180px;top:20%;left:60%;} @keyframes float{ from{transform:translate(0,0) rotate(0deg);} to{transform:translate(40px,60px) rotate(360deg);} } /* FULL WIDTH CONTAINER */ .review-wrapper{ width:100%; max-width:1200px; padding:0 40px; margin:auto; position:relative; z-index:1; } /* Title */ .review-title{ text-align:center; font-size:3.5rem; font-weight:800; color:#ff2a2a; margin-bottom:15px; text-shadow:0 0 15px rgba(255,42,42,0.5); } .review-subtitle{ text-align:center; color:#2bdcff; font-size:1.3rem; margin-bottom:60px; } /* GRID – FULL WIDTH */ .review-grid{ width:100%; display:grid; grid-template-columns:repeat(4,1fr); gap:25px; } /* CARD */ .review-card{ padding:30px; border-radius:20px; position:relative; overflow:hidden; box-shadow:0 15px 35px rgba(0,0,0,0.3); transition:0.4s ease; color:#fff; } .review-card:hover{ transform:translateY(-12px) scale(1.02); } /* GLOW EFFECT */ .review-card::before{ content:""; position:absolute; inset:-120%; background:conic-gradient( transparent, rgba(255,255,255,0.15), transparent 30% ); animation:rotate 6s linear infinite; } .review-card > *{ position:relative; z-index:2; } @keyframes rotate{ to{transform:rotate(360deg);} } /* CARD COLORS */ .review-card:nth-child(1){ background:linear-gradient(135deg,#ff6b9d,#ff2a2a); } .review-card:nth-child(2){ background:linear-gradient(135deg,#6366f1,#2bdcff); } .review-card:nth-child(3){ background:linear-gradient(135deg,#10b981,#059669); } .review-card:nth-child(4){ background:linear-gradient(135deg,#f59e0b,#fbbf24); } /* CONTENT */ .stars{ color:#FFD700; font-size:1.8rem; margin-bottom:20px; } .review-text{ color:#ffffff; font-size:1.1rem; line-height:1.8; margin-bottom:25px; font-style:italic; min-height:120px; } .review-name{ color:#ffffff; font-size:1.2rem; font-weight:700; } /* RATING BADGE */ .review-rating{ position:absolute; top:20px; right:20px; background:rgba(255,255,255,0.2); padding:8px 15px; border-radius:50px; font-weight:700; color:#ffffff; } /* ================= RESPONSIVE ================= */ @media (max-width:1200px){ .review-grid{ grid-template-columns:repeat(2,1fr); } } @media (max-width:768px){ .review-wrapper{ padding:0 20px; } .review-grid{ grid-template-columns:1fr; } .review-title{ font-size:2.5rem; } } @media (max-width:480px){ .review-title{ font-size:2.2rem; } }

Customer Reviews

Trusted by digital product buyers worldwide

5.0
★★★★★
This digital product helped me launch my project faster and easier than I ever imagined.
Rahul Sharma
5.0
★★★★★
Professional quality and smooth experience. Highly recommended!
Priya Patel
4.5
★★★★☆
Worth every rupee. Saved me a lot of time and effort.
Amit Verma
5.0
★★★★★
Clean design and easy to use. Support is excellent!
Neha Gupta

Shopping cart

0
image/svg+xml

No products in the cart.

Continue Shopping