:root {
  --primary: #FF5722;
  --secondary: #2196F3;
  --accent: #4CAF50;
  --dark: #333;
  --light: #f8f9fa;
  --white: #ffffff;
}

* {
  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%);
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

div.scroll-container {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}

div.scroll-container img {
  padding: 10px;
}

header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 20px 0;
  text-align: center;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.print-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.print-type {
  background: var(--white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.print-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.print-type:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.print-type a {
  display: block;
  text-decoration: none;
  color: var(--dark);
  font-weight: bold;
  font-size: 1.3rem;
  padding: 15px;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--light), var(--white));
  transition: all 0.3s ease;
}

.print-type a:hover {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--white);
}

.price-table {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

th {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

tr:nth-child(even) {
  background-color: rgba(0,0,0,0.02);
}

tr:hover {
  background-color: rgba(33, 150, 243, 0.1);
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(45deg, var(--accent), #8BC34A);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  background: linear-gradient(45deg, #8BC34A, var(--accent));
}

.buy-btn {
  background: linear-gradient(45deg, var(--primary), #FF9800);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.buy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  background: linear-gradient(45deg, #FF9800, var(--primary));
}

.contact {
  margin-top: 40px;
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact p {
  margin: 10px 0;
  font-size: 1.1rem;
}

.contact i {
  margin-right: 10px;
  color: var(--secondary);
}

footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  color: var(--dark);
  font-size: 0.9rem;
}

/* Payment Page Styles */
.payment-container {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 800px;
}

.payment-header {
  text-align: center;
  margin-bottom: 30px;
}

.payment-header h2 {
  color: var(--primary);
  margin-bottom: 10px;
}

.order-summary {
  background: var(--light);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.order-summary h3 {
  color: var(--secondary);
  margin-bottom: 15px;
}

.order-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.order-details div {
  display: flex;
  justify-content: space-between;
}

.payment-methods {
  margin: 30px 0;
}

.payment-methods h3 {
  color: var(--secondary);
  margin-bottom: 20px;
  text-align: center;
}

.qr-code {
  text-align: center;
  margin: 30px 0;
}

.qr-code img {
  max-width: 200px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
}

.upi-details {
  background: var(--light);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.steps {
  counter-reset: step;
  margin: 30px 0;
}

.steps h3 {
  color: var(--secondary);
  margin-bottom: 20px;
  text-align: center;
}

.step {
  position: relative;
  padding-left: 60px;
  margin-bottom: 25px;
  min-height: 50px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .print-types {
    grid-template-columns: 1fr;
  }
  
  .order-details {
    grid-template-columns: 1fr;
  }
  
  header h1 {
    font-size: 2rem;
  }
}
