   :root {
      --primary: #6a1b9a;
      --secondary: #4a148c;
      --accent: #ffab00;
      --light: #fff8e1;
      --dark: #3e2723;
      --text-light: #f5f5f5;
      --whatsapp: #25D366;
    }
    
    body {
      margin: 0;
      font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
      background: var(--light);
      color: var(--dark);
      line-height: 1.6;
    }
    
    header {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--text-light);
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 10px;
      background: var(--accent);
    }
    
    header h1 {
      margin: 0;
      font-size: 2.8rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    header p {
      font-size: 1.2rem;
      margin-top: 10px;
    }
    
/* Blog Main Page Styles */
.blog-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.blog-main-title {
  color: var(--primary);
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.blog-intro {
  text-align: center;
  color: var(--dark);
  margin-bottom: 40px;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Blog Post */
.featured-blog-post {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.featured-image {
  height: 350px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h2 {
  font-size: 1.8rem;
  margin: 15px 0;
  color: var(--primary);
}

.featured-content h2 a {
  color: inherit;
  text-decoration: none;
}

.featured-content h2 a:hover {
  color: var(--secondary);
}

/* Regular Blog Posts */
.blog-post {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 20px;
}

.post-content h3 {
  color: var(--primary);
  margin: 10px 0;
  font-size: 1.2rem;
}

.post-content h3 a {
  color: inherit;
  text-decoration: none;
}

.post-content h3 a:hover {
  color: var(--secondary);
}

/* Blog Meta */
.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #666;
}

.blog-meta i {
  margin-right: 5px;
}

.blog-date, .blog-category {
  display: flex;
  align-items: center;
}

/* Read More Link */
.read-more {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(3px);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.pagination a {
  color: var(--dark);
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
  margin: 0 4px;
  border-radius: 4px;
}

.pagination a.active {
  background-color: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}

.pagination a:hover:not(.active) {
  background-color: #ddd;
}

/* Single Blog Post Page Styles */
.blog-post-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.single-blog-post {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 30px;
}

.post-header {
  margin-bottom: 30px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.single-blog-post h1 {
  color: var(--primary);
  font-size: 2rem;
  margin: 15px 0;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  font-size: 0.9rem;
  color: #666;
}

.post-meta i {
  margin-right: 5px;
}

.featured-image {
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  line-height: 1.8;
}

.post-content h2 {
  color: var(--secondary);
  margin: 25px 0 15px;
  font-size: 1.5rem;
}

.post-content p {
  margin-bottom: 15px;
}

.content-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 15px auto;
  display: block;
  border-radius: 8px;
}

.tips-section {
  background: #f9f5ff;
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
}

.tips-section h3 {
  margin-top: 0;
  color: var(--primary);
}

.tips-section ul {
  padding-left: 20px;
}

.tips-section li {
  margin-bottom: 8px;
}

.cta-section {
  background: #e8f5e9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin: 30px 0;
}

.cta-section p {
  margin-bottom: 15px;
  font-weight: bold;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.post-tags span {
  font-weight: bold;
  color: var(--dark);
}

.post-tags a {
  color: var(--primary);
  text-decoration: none;
  padding: 5px 10px;
  background: #f3e5f5;
  border-radius: 20px;
  font-size: 0.85rem;
}

.post-tags a:hover {
  background: var(--primary);
  color: white;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.prev-post, .next-post {
  display: flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  max-width: 45%;
}

.prev-post:hover, .next-post:hover {
  text-decoration: underline;
}

.prev-post i {
  margin-right: 10px;
}

.next-post i {
  margin-left: 10px;
}

.related-posts {
  margin: 50px 0;
}

.related-posts h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.related-post {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.related-post:hover {
  transform: translateY(-5px);
}

.related-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-post h3 {
  padding: 15px;
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary);
}

.related-post a {
  color: inherit;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .featured-blog-post {
    grid-template-columns: 1fr;
  }
  
  .featured-image {
    height: 250px;
  }
  
  .blog-main-title {
    font-size: 1.8rem;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 20px;
  }
  
  .prev-post, .next-post {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .post-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .single-blog-post h1 {
    font-size: 1.6rem;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
}
   
   nav {
      background-color: var(--secondary);
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0;
      flex-wrap: wrap;
    }
    
    nav li {
      margin: 0 15px;
    }
    
    nav a {
      color: var(--text-light);
      text-decoration: none;
      font-weight: 500;
      font-size: 1.1rem;
      transition: color 0.3s;
      padding: 5px 10px;
      border-radius: 4px;
      display: flex;
      align-items: center;
    }
    
    nav a i {
      margin-right: 8px;
    }
    
    nav a:hover {
      color: var(--accent);
      background: rgba(255,255,255,0.1);
    }
    
    section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 30px;
      color: var(--primary);
      position: relative;
    }
    
    .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--accent);
      margin: 10px auto;
    }
    
    .highlight {
      font-weight: bold;
      color: var(--primary);
    }
    
    .services {
      background: #fff3e0;
      padding: 30px;
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    
    .service-card {
      background: white;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      position: relative;
    }
    
    .service-card:hover {
      transform: translateY(-5px);
    }
    
    .service-card i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .service-card h3 {
      color: var(--secondary);
      margin-top: 0;
    }
    
    .gallery {
      margin: 50px 0;
    }
    
    .image-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
    }
    
    .image-item {
      height: 250px;
      overflow: hidden;
      border-radius: 8px;
      position: relative;
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }
    
    .image-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .image-item:hover img {
      transform: scale(1.1);
    }
    
    .image-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(106, 27, 154, 0.8);
      color: white;
      padding: 10px;
      transform: translateY(100%);
      transition: transform 0.3s;
    }
    
    .image-item:hover .image-caption {
      transform: translateY(0);
    }
    
    .order-btn {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: var(--whatsapp);
      color: white;
      border: none;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 2;
    }
    
    .image-item:hover .order-btn {
      opacity: 1;
    }
    
    .order-btn i {
      margin-right: 5px;
    }
    
    .contact {
      background: #fce4ec;
      padding: 40px;
      border-radius: 10px;
      margin: 40px auto;
      max-width: 800px;
    }
    
    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    
    .contact-card {
      background: white;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .contact-card i {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .btn {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 20px;
      transition: all 0.3s;
      border: 2px solid var(--primary);
      cursor: pointer;
    }
    
    .btn:hover {
      background: transparent;
      color: var(--primary);
    }
    
    .btn-whatsapp {
      background: var(--whatsapp);
      border-color: var(--whatsapp);
    }
    
    .btn-whatsapp:hover {
      background: transparent;
      color: var(--whatsapp);
    }
    
    .whatsapp-btn {
      background: var(--whatsapp);
      border-color: var(--whatsapp);
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 99;
      display: flex;
      align-items: center;
      padding: 12px 20px;
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
      animation: pulse 2s infinite;
    }
    
    .whatsapp-btn:hover {
      background: white;
      color: var(--whatsapp);
    }
    
    .whatsapp-btn i {
      margin-right: 8px;
      font-size: 1.2rem;
    }
    
    footer {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--text-light);
      text-align: center;
      padding: 30px 20px;
      margin-top: 50px;
    }
    
    .social-links {
      margin: 20px 0;
    }
    
    .social-links a {
      color: var(--text-light);
      font-size: 1.5rem;
      margin: 0 10px;
      transition: color 0.3s;
    }
    
    .social-links a:hover {
      color: var(--accent);
    }
    
    #gallery .product-grid {
      justify-items: center;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
 
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      margin: 30px auto;
      justify-items: center;
      max-width: 1200px;
    }
    
    .product-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      position: relative;
    }
    
    .product-card:hover {
      transform: translateY(-5px);
    }
    
    .product-image {
      height: 200px;
      overflow: hidden;
    }
    
    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .product-card:hover .product-image img {
      transform: scale(1.05);
    }
    
    .product-details {
      padding: 15px;
    }
    
    .product-title {
      font-weight: bold;
      margin: 0 0 5px 0;
      color: var(--secondary);
    }
    
    .product-description {
      font-size: 0.9rem;
      color: #555;
      margin: 5px 0 10px 0;
    }
    
    .product-order-btn {
      display: block;
      width: 100%;
      background: var(--whatsapp);
      color: white;
      text-align: center;
      padding: 8px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s;
    }
    
    .product-order-btn:hover {
      background: #128C7E;
    }
    
    .product-order-btn i {
      margin-right: 5px;
    }
    
    .testimonials {
      background: #f3e5f5;
      padding: 40px;
      border-radius: 10px;
      margin: 40px 0;
    }
    
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    
    .testimonial-card {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 15px;
    }
    
    .testimonial-author {
      font-weight: bold;
      color: var(--primary);
    }
    
    .opening-hours {
      background: #e8f5e9;
      padding: 20px;
      border-radius: 8px;
      margin-top: 30px;
    }
    
    .hours-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 15px;
    }
    
    .hours-table tr:nth-child(even) {
      background: rgba(255,255,255,0.5);
    }
    
    .hours-table td {
      padding: 8px;
      border-bottom: 1px solid #ddd;
    }
    
    .hours-table td:last-child {
      font-weight: bold;
      color: var(--primary);
    }
    
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }
 
    .menu-toggle {
      display: none;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
        background: var(--primary);
        color: white;
        border: none;
        font-size: 1.2rem;
        padding: 10px 15px;
        cursor: pointer;
        width: 100%;
        text-align: center;
      }
      
      nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
      }
      
      nav ul.show {
        display: flex;
      }
      
      nav li {
        margin: 5px 0;
        text-align: center;
      }
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.9);
      overflow: auto;
    }
    
    .modal-content {
      margin: auto;
      display: block;
      width: 80%;
      max-width: 700px;
      animation: zoom 0.6s;
    }
    
    @keyframes zoom {
      from {transform: scale(0.1)}
      to {transform: scale(1)}
    }
    
    .close {
      position: absolute;
      top: 15px;
      right: 35px;
      color: #f1f1f1;
      font-size: 40px;
      font-weight: bold;
      transition: 0.3s;
      cursor: pointer;
    }
    
    .close:hover {
      color: var(--accent);
    }
    
    .gallery-category {
      display: none;
    }
    
    .gallery-category.active {
      display: grid;
    }
    
    .category-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    
    .category-tab {
      padding: 10px 20px;
      margin: 0 10px;
      background: var(--primary);
      color: white;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s;
      border: 2px solid var(--primary);
    }
    
    .category-tab:hover, .category-tab.active {
      background: transparent;
      color: var(--primary);
    }
    
    .gallery-nav {
      display: flex;
      justify-content: space-between;
      width: 100%;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1001;
    }
    
    .gallery-nav-btn {
      color: white;
      font-size: 2rem;
      padding: 10px 20px;
      cursor: pointer;
      background: rgba(0,0,0,0.5);
      border: none;
    }
    
    .gallery-nav-btn:hover {
      color: var(--accent);
    }
    
    .prev-btn {
      border-radius: 0 5px 5px 0;
    }
    
    .next-btn {
      border-radius: 5px 0 0 5px;
    }
    
    .caption {
      text-align: center;
      color: white;
      padding: 10px 0;
      font-size: 1.2rem;
    }
    
    .thumbnail-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 15px;
    }
    
    .thumbnail {
      width: 60px;
      height: 60px;
      margin: 5px;
      cursor: pointer;
      opacity: 0.6;
      transition: opacity 0.3s;
    }
    
    .thumbnail:hover, .thumbnail.active {
      opacity: 1;
    }

    /* NEW: Blog Section */
    .blog-section {
      background: #f5f5f5;
      padding: 40px 20px;
    }
    
    .blog-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }
    
    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    
    .blog-content {
      padding: 20px;
    }
    
    .blog-title {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: var(--primary);
    }
    
    .blog-date {
      font-size: 0.8rem;
      color: #777;
      margin-bottom: 10px;
    }
    
    .blog-excerpt {
      margin-bottom: 15px;
    }
    
    .read-more {
      color: var(--primary);
      text-decoration: none;
      font-weight: bold;
    }
    
    /* NEW: Size Guide Section */
    .size-guide {
      background: #e3f2fd;
      padding: 30px;
      border-radius: 8px;
      margin: 30px 0;
    }
    
    .size-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }
    
    .size-table th, .size-table td {
      border: 1px solid #ddd;
      padding: 8px;
      text-align: center;
    }
    
    .size-table th {
      background-color: var(--primary);
      color: white;
    }
    
    /* NEW: Privacy Policy Section */
    .privacy-policy {
      background: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      margin: 30px 0;
    }
    
    .policy-section {
      margin-bottom: 20px;
    }
    
    .policy-title {
      font-size: 1.2rem;
      color: var(--primary);
      margin-bottom: 10px;
    }
	/* Blog Section Styles */
.blog-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-title {
  color: var(--primary);
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #666;
}

.blog-meta i {
  margin-right: 5px;
}

.blog-excerpt {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(3px);
}

