Best Service Industry
Global producers of machinery have learned to deliver a wide range of capital goods and services across global and cyclical end...Environment First
We are a pioneer in manufacturing biscuits with environmental responsibility, proudly serving quality products to major brands like Britannia.Tasty & Hygiene
Our product is tasty and hygienic.we follow strict food-safety standards.
/* WordPress Slider CSS */
/* Add this to your theme's style.css or Custom CSS section */
/* Slider Container */
.pn-slider-container {
position: relative;
max-width: 100%;
margin: 0 auto;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* Slider Wrapper */
.pn-slider {
position: relative;
width: 100%;
height: 400px;
overflow: hidden;
}
/* Individual Slides */
.pn-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.8s ease-in-out;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 40px;
text-align: center;
}
.pn-slide.active {
opacity: 1;
}
/* Slide Content */
.pn-slide-content {
max-width: 800px;
z-index: 2;
}
.pn-slide h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
letter-spacing: 1px;
}
.pn-slide p {
font-size: 1.2rem;
line-height: 1.6;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
margin: 0;
}
/* Navigation Dots */
.pn-slider-nav {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 3;
}
.pn-nav-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255,255,255,0.5);
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid transparent;
}
.pn-nav-dot.active {
background: white;
transform: scale(1.2);
border-color: rgba(255,255,255,0.8);
}
.pn-nav-dot:hover {
background: rgba(255,255,255,0.8);
}
/* Arrow Navigation */
.pn-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255,255,255,0.2);
color: white;
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
font-size: 20px;
transition: all 0.3s ease;
z-index: 3;
backdrop-filter: blur(10px);
}
.pn-arrow:hover {
background: rgba(255,255,255,0.3);
transform: translateY(-50%) scale(1.1);
}
.pn-arrow.prev {
left: 20px;
}
.pn-arrow.next {
right: 20px;
}
/* Auto-play indicator */
.pn-autoplay-indicator {
position: absolute;
top: 20px;
right: 20px;
background: rgba(0,0,0,0.3);
color: white;
padding: 5px 10px;
border-radius: 15px;
font-size: 12px;
z-index: 3;
}
/* Responsive Design */
@media (max-width: 768px) {
.pn-slider {
height: 350px;
}
.pn-slide {
padding: 20px;
}
.pn-slide h2 {
font-size: 2rem;
}
.pn-slide p {
font-size: 1.1rem;
}
.pn-arrow {
width: 40px;
height: 40px;
font-size: 16px;
}
.pn-arrow.prev {
left: 10px;
}
.pn-arrow.next {
right: 10px;
}
}
@media (max-width: 480px) {
.pn-slider {
height: 300px;
}
.pn-slide h2 {
font-size: 1.5rem;
}
.pn-slide p {
font-size: 1rem;
}
.pn-slide {
padding: 15px;
}
}
/* WordPress Slider JavaScript */
/* Add this to your theme's footer.php before
