ul.single-service li.service-content {
    background-color: #f2feeb;
  }

  ul.single-service {
    flex-wrap: wrap;
  }
  .slider-category-template {
      padding: 10px 0;
    }

    .category-card {
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.1);
      height: 100%;
      display: flex;
      flex-direction: column;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
    }

    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    }

    .img-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
      background: #f8f9fa;
      border-radius: 8px;
      margin: 15px;
      height: 180px;
    }

    .img-icon {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .img-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: all 0.3s ease;
    }

    .category-card:hover .img-icon img {
      transform: scale(1.1);
    }

    .category-name {
      font-size: 1.2rem;
      font-weight: 600;
      margin-top: auto;
      padding: 15px;
      color: #333;
      text-align: center;
    }

    @media (max-width: 768px) {
      .category-card {
        min-height: auto;
        padding: 10px;
      }
      .img-wrapper {
        height: 140px;
        margin: 10px;
      }
    }

    @media (max-width: 480px) {
      .category-card {
        min-height: auto;
      }
      .img-wrapper {
        height: 120px;
        margin: 8px;
      }
      .img-icon img {
        max-width: 100%;
        max-height: 100%;
      }
      .category-name {
        font-size: 1rem;
        padding: 10px;
      }
    }

  .slider-content {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .home-slider .item {
    height: 100vh;
    position: relative;
  }

  .slide-image {
    position: relative;
    height: 100%;
    width: 100%;
  }

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

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

  .slider-info-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 2;
  }

  .slider-text-info {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
  }

  .slider-text-info .sub-title {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .slider-text-info h2 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
    z-index: 1;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 3;
  }

  .owl-prev, .owl-next {
    position: absolute;
    font-size: 3rem !important;
    color: #fff !important;
    background: rgba(0,0,0,0.3) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .owl-prev:hover, .owl-next:hover {
    background: rgba(0,0,0,0.6) !important;
  }

  .owl-prev {
    left: 20px;
  }

  .owl-next {
    right: 20px;
  }

  .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 3;
  }

  .owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255,255,255,0.5) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .owl-dot.active {
    background: #fff !important;
    transform: scale(1.2);
  }

  @media (max-width: 768px) {
    .slider-text-info .sub-title {
      font-size: 1.2rem;
    }
    
    .slider-text-info h2 {
      font-size: 2.5rem;
    }
  }

  /* Hero Section Styles */
  .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
  }

  .hero-slider {
    height: 100vh;
    width: 100%;
  }

  .hero-slide {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transform: scale(1.1); */
    /* transition: transform 1.5s ease; */
  }

  .hero-slide:hover .hero-image img {
    transform: scale(1);
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(75, 67, 67, 0.85), rgba(0,0,0,0.65));
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    color: #507E02;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #fff;
  }

  .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.9s forwards;
  }

  .hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }

  .hero-btn-primary {
    background: #507E02;
    color: #fff;
    border: 2px solid #507E02;
    box-shadow: 0 4px 15pxrgb(88, 128, 21);
  }

  .hero-btn-primary:hover {
    background: transparent;
    color: #507E02;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
  }

  .hero-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
  }

  .hero-btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
  }

  .hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 4;
  }

  .hero-prev,
  .hero-next {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }

  .hero-prev:hover,
  .hero-next:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
  }

  .hero-prev {
    left: 30px;
  }

  .hero-next {
    right: 30px;
  }

  .hero-dots {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 4;
  }

  .hero-dot {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .hero-dot.active {
    background: #ff6b6b;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255,107,107,0.5);
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.8rem;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
    
    .hero-description {
      font-size: 1rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      gap: 1rem;
    }
    
    .hero-btn {
      width: 100%;
    }

    .hero-prev,
    .hero-next {
      width: 45px;
      height: 45px;
    }

    .hero-prev {
      left: 15px;
    }

    .hero-next {
      right: 15px;
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .gram-value {
      font-size: 13px;
      font-weight: 500;
      background: #f3f4f1;
      color: #626f47;
      border: 1px solid #e0e0e0;
      min-width: 38px;
      text-align: center;
  }
  .price-box img[alt="delivery"] {
      margin-top: -2px;
  }

  .single-product-wrap {
      background: #fff;
      border: 1px solid #f0f0f0;
      transition: box-shadow 0.2s, transform 0.2s;
      min-height: 370px;
  }
  .single-product-wrap:hover {
      box-shadow: 0 8px 32px rgba(98,111,71,0.13);
      transform: translateY(-6px) scale(1.03);
  }
  .badge.bg-success {
      font-size: 12px;
      font-weight: 600;
      padding: 4px 8px;
      display: inline-block;
      align-items: center;
      vertical-align: middle;
      margin-top: 2px !important;
  }

  .delivery-badge {
      background-color: #f5bb0d40;
      color: #222;
      padding: 2px 14px 2px 8px;
      border-radius: 100px;
      margin-top: 10px !important;
      font-weight: 600;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid #f5bb0d;
      box-shadow: 0 2px 8px #f5bb0d22;
      letter-spacing: 0.5px;
      transition: box-shadow 0.2s;
  }
  .delivery-badge img {
      margin-right: 4px;
      margin-top: 0;
      width: 20px;
      height: 20px;
  }

  .insta-sec {
    padding: 60px 0 40px 0;
    background: #f9f9f9;
  }
  .insta-card-modern {
    position: relative;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px 0 rgba(98,111,71,0.13);
    z-index: 1;
  }
  .insta-card-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 22px;
    padding: 0;
    background: linear-gradient(135deg, #e0b973 0%, #626f47 100%);
    /* 3px border effect */
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
  .insta-card-modern > * {
    position: relative;
    z-index: 1;
  }
  .insta-card-modern:hover {
    box-shadow: 0 16px 48px 0 rgba(224,185,115,0.18), 0 4px 16px 0 rgba(0,0,0,0.12);
    transform: translateY(-6px) scale(1.03);
    border-color: #e0b973;
  }
  .insta-image-modern {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(120deg, #f8f8f8 60%, #eaf3e6 100%);
    position: relative;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .insta-img-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(.4,2,.3,1), filter 0.3s;
    will-change: transform;
    background: #f8f8f8;
    display: block;
  }
  .insta-card-modern:hover .insta-img-zoom {
    transform: scale(1.08) rotate(-1deg);
    filter: brightness(0.92) saturate(1.1);
  }
  .insta-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,rgba(224,185,115,0.7) 0%,rgba(0,0,0,0.25) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .insta-card-modern:hover .insta-hover-overlay {
    opacity: 1;
  }
  .insta-hover-overlay i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 4px 16px rgba(98,111,71,0.18);
  }
  .insta-content-modern {
    background: #fff;
    border-top: 1px solid #f3e6c7;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 0 22px 22px;
    padding: 1.2rem 1rem 1rem 1rem;
    text-align: center;
  }
  .insta-content-modern h6 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #626f47;
    margin-bottom: 0.25rem;
    text-align: center;
    letter-spacing: 0.5px;
  }
  .insta-likes {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0.25rem;
  }
  .insta-likes i {
    font-size: 1.2rem;
  }
  .insta-caption {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 0.97rem;
    color: #888;
    text-align: center;
  }
  @media (max-width: 991px) {
    .insta-card-modern {
      min-height: 220px;
      border-radius: 14px;
    }
    .insta-image-modern {
      border-radius: 14px 14px 0 0;
    }
    .insta-content-modern {
      border-radius: 0 0 14px 14px;
      padding: 0.75rem 0.5rem;
    }
  }
  .service-card-modern {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 6px 32px 0 rgba(130,161,78,0.10);
    transition: box-shadow 0.22s, transform 0.18s;
    position: relative;
    overflow: hidden;
    padding-top: 44px; /* Add space for icon to float above */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .service-card-modern:hover {
    box-shadow: 0 12px 40px 0 rgba(130,161,78,0.18);
    transform: translateY(-4px) scale(1.03);
  }
  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e9f5e1 60%, #fff 100%);
    box-shadow: 0 2px 12px 0 rgba(130,161,78,0.10);
    font-size: 2.2rem;
    color: #a7965c;
    border: 2.5px solid #a7965c22;
    margin-top: 0; /* Remove negative margin */
    margin-bottom: 18px;
    transition: background 0.18s, color 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
  }
  .service-area-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.01em;
  }
  .service-area-title p {
    font-size: 1.15rem;
    color: #6b8c3e;
  }
  .service-bg-shape {
    position: absolute;
    right: -120px; bottom: -80px;
    width: 340px; height: 340px;
    background: radial-gradient(circle at 40% 60%, #a7965c33 0%, #fff0 80%);
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
    animation: serviceShapeMove 8s infinite alternate ease-in-out;
  }
  @keyframes serviceShapeMove {
    0% { transform: scale(1) translate(0,0); }
    100% { transform: scale(1.08) translate(-30px, 40px); }
  }
  @media (max-width: 991px) {
    .service-card-modern { border-radius: 14px; }
    .service-icon { width: 54px; height: 54px; font-size: 1.5rem; }
    .service-area-title h2 { font-size: 1.4rem; }
  }
  @media (max-width: 575px) {
    .service-card-modern { border-radius: 8px; }
    .service-icon { width: 38px; height: 38px; font-size: 1.1rem; }
    .service-area-title h2 { font-size: 1.1rem; }
  }