
/* Custom CSS yahan add karein */
body {
    font-family: 'Poppins', sans-serif;
}

/* Header ke liye sticky behavior */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

/* Slider Animation ke liye CSS */
.slider-item {
    display: none;
    animation: fadeIn 1.5s ease-in-out;
}

.slider-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

/* Mobile menu ke liye animation */
.mobile-menu {
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.hidden {
    transform: translateX(-100%);
}

/* Content sections ke liye animation */
.content-section {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFadeIn 0.8s forwards;
}

@keyframes slideUpFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card hover effect */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Ashoka Chakra style */
.ashoka-chakra {
    height: 40px;
    width: 40px;
    margin: 0 15px;
    animation: rotateChakra 20s linear infinite;
}

@keyframes rotateChakra {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}