 body {
     background-color: #f0f2f5;
}
/* Header Animation */
 .section-title {
     color: #222;
     font-weight: 700;
     margin-bottom: 30px;
     position: relative;
     display: inline-block;
     font-size: 2rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     transform: translateY(20px);
     transition: all 0.8s ease;
}
 .section-title.animate-in {
     opacity: 1;
     transform: translateY(0);
}

 .section-title::after {
     content: '';
     position: absolute;
     bottom: -8px;
     left: 0;
     width: 100%;
     height: 3px;
     background: linear-gradient(90deg, #00c8ff, #7b00ff);
     transform: scaleX(1);
     transform-origin: left;
     transition: transform 1s ease 0.3s;
}
 .section-title.animate-in::after {
     transform: scaleX(1);
}
        .banner {
            height: 500px;
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .banner::before {
            content: "";
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
            transform: rotate(30deg);
            animation: shine 3s infinite linear;
        }
        
        @keyframes shine {
            0% { transform: rotate(30deg) translateX(-50%); }
            100% { transform: rotate(30deg) translateX(50%); }
        }
        

/* Cyber Glow Effect */
 .cyber-glow {
     position: relative;
     z-index: 1;
}
 .cyber-glow::before {
     content: '';
     position: absolute;
     top: -2px;
     left: -2px;
     right: -2px;
     bottom: -2px;
     z-index: -1;
     background: #f9f9f9;
     background-size: 200% 200%;
     animation: gradientShift 4s ease infinite;
     filter: blur(5px);
     transition: opacity 0.3s ease;
     border-radius: 8px;
}
 .cyber-glow:hover::before {
     opacity: 0.7;
	 background: rgba(0, 200, 255, 0.2);
}

/* Card Styles */
 .tech-card {
     background: white;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
     height: 100%;
     overflow: hidden;
     border: none;
     transform: translateY(30px) rotateX(15deg);
     perspective: 1000px;
}
 .tech-card.animate-in {
     opacity: 1;
     transform: translateY(0) rotateX(0);
}
 .tech-card:hover {
     transform: translateY(-10px) scale(1.02) !important;
     box-shadow: 0 15px 30px rgba(0, 200, 255, 0.3);
	 background: linear-gradient(45deg, #00c8ff, #7b00ff, #ff00aa);
            background-size: 200% 200%;
            animation: gradientShift 4s ease infinite;

}
 .card-img-container {
     overflow: hidden;
     position: relative;
	 padding: 30px;
	 background: #fff;
}
 .tech-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all 0.8s ease;
}
 .tech-card:hover .tech-img {
     transform: scale(1.1) rotate(1deg);
}
 .index-container .card-body {
     padding: 20px;
     position: relative;
	 background: #fff;
	     border-top: 1px solid #f2f2f2;
}
 .card-title {
     color: #222;
     font-weight: 600;
     font-size: 18px;
    height: 40px;
    overflow: hidden;
     margin-bottom: 10px;
     transition: all 0.3s ease;
}
 .tech-card:hover .card-title {
     color: #007bff;
     text-shadow: 0 0 8px rgba(0, 200, 255, 0.3);
}
 .card-text {
     color: #666;
     font-size: 0.95rem;
     margin-bottom: 0;
}
.blog-smtxt{overflow: hidden;height: 70px;color:#777}
 .price {
     color: #007bff;
     font-size: 26px;
     font-weight: 600;
     display: inline-block;
     background: linear-gradient(45deg, #00c8ff, #7b00ff);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-size: 200% 200%;
     animation: gradientShift 3s ease infinite;
	 margin: 15px 0;
	 
}
 .original-price {
	 background:auto;
text-decoration: line-through;
    margin-left: 10px;
	     -webkit-text-fill-color: initial;
    font-weight: 400;
    color: #999;
	 font-size: 20px;
	 
}
/* Cyber Button */
 .cyber-btn {
     background: white;
     color: #3b82f6;
     border: 1px solid #3b82f6;
     padding: 8px 20px;
     font-weight: 500;
     font-size: 0.9rem;
     border-radius: 6px;
     position: relative;
     overflow: hidden;
     transition: all 0.4s ease;
     z-index: 1;
	 text-align: center;
}
 .cyber-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(123, 0, 255, 0.5);
     color: white;
}
 .cyber-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, #7b00ff, #00c8ff);
     transition: all 0.4s ease;
     z-index: -1;
}
 .cyber-btn:hover::before {
     left: 0;
}
/* Badge */
 .cyber-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff00aa, #7b00ff);
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(255, 0, 170, 0.5);
    animation: pulse 2s infinite;
}
  .index-services-container {
    text-align: center;
    background: #fffffb;
    border-radius: 20px;
    padding: 30px 0;
    margin: 60px 0 30px 0;
}
.index-service-item{
  padding: 8px 0;
}
.index-service-icon .icon{
  width: 60px;
  height: 60px;
}

.index-service-title {
    font-size: 20px;
    font-weight: bold;
    padding: 15px 0;
}

.index-service-sub-title {
    color: #999;
    line-height: 1.25;
    font-size: 14px;
    padding: 0 5px;
}
        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 170, 0.7); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 0, 170, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 170, 0); }
        }
 
 @media (max-width: 767.98px) {
	 .index-container{padding:0 30px;}
	 .py-5{padding-top:0 !important;}
     .section-title {
         font-size: 1.8rem;
    }
}
 @media (min-width: 1200px) {
     .index-container{
        max-width: 1280px;
         margin: 0 auto;padding:0 15px;
    }
}
