        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fff;
            color: #232a36;
            margin: 0;
            padding: 0;
        }

        /* Page Header */
        .services-title {
            margin-top: 100px;
            margin-bottom: 40px;
        }
        .services-title h2 {
            font-weight: 700;
            color: #232a36;
        }
        .hero {
  background: url('../images/bk.png') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
}
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }
    .hero p {
      font-size: 1.2rem;
      margin-top: 10px;
    }
    .hero-content {
  text-align: center;
  padding: 60px 20px;
  color: #4b2e14;
  font-family: 'Georgia', serif;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: bold;
  color:#fff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.2);
}
        .breadcrumb {
            background: transparent;
            justify-content: center;
        }
        .breadcrumb a {
            color: #36c4f0;
            text-decoration: none;
        }

        /* Services Section */
        .service-info {
            margin-bottom: 60px;
        }
        .service-images img {
            border-radius: 12px;
            width: 220px;
            height: 160px;
            object-fit: cover;
            margin-right: 15px;
            margin-bottom: 15px;
        }
        .service-img {
  max-width: 80%;   /* keep image smaller */
  height: auto;
}

@media (max-width: 768px) {
  .service-img {
    max-width: 60%; /* smaller on mobile */
    margin-bottom: 20px;
  }
  .service-info {
    text-align: center;
  }
}
.service-img {
  max-width: 80%;
  height: auto;
  opacity: 0;
  transform: translateX(-50px); /* start left */
  animation: swipeIn 1s ease-out forwards;
  animation-delay: 0.3s; /* small delay for smoothness */
}

@keyframes swipeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile: swipe up instead of left */
@media (max-width: 768px) {
  .service-img {
    max-width: 60%;
    margin-bottom: 20px;
    transform: translateY(30px);
    animation: swipeUp 1s ease-out forwards;
  }

  @keyframes swipeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

        .icon-list {
            list-style: none;
            padding-left: 0;
        }
        .icon-list li {
            margin-bottom: 10px;
            font-size: 1.05rem;
        }

        .list {
            list-style: disc;
        }

        .sizep{
            font-weight:900;
            font-size:25px; 
        }
        .sized{
            font-size:20px;
            margin-top:10px;
        }

        /* Service Cards */
        .service-card {
            background: linear-gradient(90deg, #f06b36ff, #f3a93bff, #ccb21fff);
            color: #fff;
            border-radius: 12px;
            padding: 2rem 1.5rem;
            position: relative;
            min-height: 260px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .service-card .service-icon img {
            height: 45px;
            margin-bottom: 15px;
            filter: grayscale(1) brightness(2) hue-rotate(180deg);  
        }
        .service-btn {
            background: none;
            border: 1px solid #fff;
            color: #fff;
            border-radius: 50px;
            padding: 5px 18px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }
        .service-btn:hover {
            background: #fff;
            color: #232a36;
            border-color: #fff;
        }
        
        .btn-bhakti {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, #cc5200, #f08740ff); /* Bhakti gradient */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.btn-bhakti:hover {
  background: linear-gradient(135deg, #e65c00, #e46816ff); /* brighter hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

        /* Modern Technology Section */
        .modern-tech-section {
            background: #f6f6f8;
            padding: 80px 0;
        }
        .modern-title {
            color: #232a36;
            font-weight: 700;
        }
        .modern-subtitle {
            color: #383838;
            font-weight: 400;
        }
        .modern-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(224, 133, 14, 0.05);
            display: flex;
            align-items: flex-start;
            padding: 20px;
            margin-bottom: 20px;
        }
        .modern-card img {
            width: 90px;
            height: 90px;
            border-radius: 12px;
            object-fit: cover;
        }
        .modern-card-text {
            margin-left: 18px;
        }
        .modern-list {
            color: #36c4f0;
            padding-left: 18px;
            margin-bottom: 0;
        }
        .accordion .card {
            background: #f08732ff;
            color: #fff;
            border: none;
            border-radius: 8px;
            margin-bottom: 10px;
            cursor: pointer;
        }
        .accordion .btn-link {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
        }

        @media (max-width: 991px) {
            .service-images {
                justify-content: center;
            }
            .modern-card {
                flex-direction: column;
                align-items: center;
            }
            .modern-card-text {
                margin-left: 0;
                margin-top: 10px;
                text-align: center;
            }
        }