
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #fffdf6;
    color: #222;
    width: 100%;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    background: #3f51b5;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 1em;
    z-index: 1000;
}

.main-nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

/* Hero */
.hero {
    text-align: center;
    padding: 1em 1em;
    border-radius: 0;
    background: linear-gradient(to right, #ffcc80, #ffe0b2);
}

    .hero h1 {
        font-size: 2em;
    }

    .hero .btn {
        background: #ff5722;
        color: white;
        padding: 10px 40px;
        text-decoration: none;
        box-shadow: 2px 0 5px rgba(0,0,0,0.2);
        border-radius: 20px;
    }

/* Features */
.features {
    display: flex;
    justify-content: space-around;
    padding: 2em 1em;
}

.feature-box {
    width: auto;
    background: #fff;
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 1em;
    border-radius: 20px;
    background: #eee;
}

/* Site Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #3f51b5;
    color: white;
    padding: 0.5em;
    display: flex;
    justify-content: space-between;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    align-items: center;
}

    .site-header .logo {
        font-size: 1em;
        font-weight: bold;
    }

.main-nav {
    display: none;
}

.menu-toggle {
    background: none;
    color: white;
    font-size: 1.5em;
    border: none;
    cursor: pointer;
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    border-radius: 20px;
    width: 80%;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    padding: 1.5em 1em;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
}

    .sidebar-menu.active {
        left: 0;
    }

    .sidebar-menu a {
        margin-bottom: 1em;
        text-decoration: none;
        color: #333;
        font-size: 1em;
    }

    .sidebar-menu .close-btn {
        font-size: 2em;
        margin-bottom: 1em;
        text-align: right;
        display: block;
    }

/* Desktop */
@media (min-width: 768px) {
    .main-nav {
        display: flex;
        gap: 15px;
    }

    .menu-toggle, .sidebar-menu {
        display: none;
    }
}

/* Animated Boxes */
.animated-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    padding: 2em 1em;
    gap: 1em;
}

.box {
    background: #fefefe;
    border-radius: 12px;
    padding: 1em;
    min-width: 220px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(40px);
    animation: slideInUp 0.8s forwards;
}

    .box h3 {
        margin-bottom: 0.5em;
    }

.slide-up {
    animation-delay: 0.3s;
}

.delay-1 {
    animation-delay: 0.6s;
}

.delay-2 {
    animation-delay: 0.9s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 150px;
    right: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
}

    .whatsapp-float img {
        width: 100%;
        height: auto;
        animation: bounce 1s infinite;
    }

@keyframes bounce {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Footer Hidden */
.footer-hidden {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #ff197a;
    color: white;
    padding: 0em;
    text-align: center;
    transition: bottom 0.4s ease;
    z-index: 998;
}

    .footer-hidden.visible {
        bottom: 40px;
    }

.footer-links a {
    color: #19000b;
    margin: 0 8px;
    text-decoration: none;
}

.show-footer-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    background: #ff197a;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Floating Nav Styles */
.floating-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    padding: 5px 0;
    z-index: 9999;
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease;
}

    .floating-nav.hidden {
        transform: translateY(100%);
    }

    .floating-nav a {
        text-decoration: none;
        color: #333;
        font-size: 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.2s, color 0.2s;
    }

        .floating-nav a:hover {
            color: #007bff;
            transform: scale(1.2);
        }

    .floating-nav img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-bottom: 3px;
    }

    .floating-nav h6 {
        margin: 2px 0 0 0;
        font-size: 12px;
    }

/* Popup */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

    .popup-modal.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

.popup-content {
    background: #fff;
    padding: 2em;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
    animation: scaleIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2em;
    cursor: pointer;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.7);
    }

    to {
        transform: scale(1);
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    animation: fade 2s ease;
}

    .slide img, .slide video {
        width: 100%;
        display: block;
    }

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* Mini Slider */
.mini-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 5px;
}

    .mini-slider img {
        width: 150px;
        height: 150px;
        border-radius: 10px;
        object-fit: cover;
        scroll-snap-align: center;
    }

/* Enquiry Form */
.enquiry-form {
    max-width: 600px;
    margin: 80px auto;
    padding: 2rem;
    background: #fefefe;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .enquiry-form h2 {
        text-align: center;
        margin-bottom: 1rem;
    }

    .enquiry-form label {
        display: block;
        margin-top: 1rem;
        font-weight: 600;
    }

    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form textarea {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .enquiry-form button {
        margin-top: 1.5rem;
        padding: 12px;
        background: #008080;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        width: 100%;
        font-size: 1.1rem;
    }

        .enquiry-form button:hover {
            background: #ee0979;
        }

/* Accordion */
.accordion {
    background-color: #00FFFF;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 12px;
    transition: 0.4s;
}

    .active, .accordion:hover {
        background-color: #eee;
        border-radius: 20px;
    }

.panel {
    padding: 0 18px;
    display: none;
}

/* Notification Bar */
#notification-bar {
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    color: white;
    padding: 12px 0px;
    text-align: center;
    font-weight: bold;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    animation: slideDown 0.5s ease-in-out;
}

    #notification-bar a {
        color: #fff700;
        margin-left: 10px;
    }

@keyframes slideDown {
    from {
        top: -60px;
    }

    to {
        top: 0;
    }
}

/* Review */
.stars {
    color: gold;
    font-size: 20px;
}

.review-box {
    max-width: 500px;
    margin: auto;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.stars input {
    display: none;
}

.stars label {
    float: right;
    padding: 10px;
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}

    .stars input:checked ~ label,
    .stars label:hover,
    .stars label:hover ~ label {
        color: gold;
    }

/* MSME Badge */
.msme-badge {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #007bff;
    border-radius: 12px;
    padding: 15px;
    max-width: 480px;
}

    .msme-badge img {
        width: 100px;
        margin-right: 10px;
    }

.msme-text h3 {
    margin: 0;
    color: #007bff;
}

.msme-text p {
    margin: 2px 0;
    font-size: 10px;
}

/* Video Grid */
.video-grid {
    display: grid;
    gap: 2px;
    grid-template-columns: 1fr;
}

@media (min-width:640px) {
    .video-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width:1024px) {
    .video-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

.video {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 10px;
}

    .video iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

/* Buttons */
.btn-link, .vcard-btn {
    display: inline-block;
    padding: 10px 100px;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin: 0px 0;
}

.btn-link {
    background: #ff4c4c;
}

    .btn-link:hover {
        background: #cc0000;
    }

.vcard-btn {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3f51b5;
    color: white;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    white-space: nowrap;
    z-index: 9999;
    transition: opacity 0.5s ease, bottom 0.5s ease;
}

    .vcard-btn.hide {
        opacity: 0;
        bottom: -60px;
        pointer-events: none;
    }

    .vcard-btn:hover {
        background: #005999;
    }

a {
    text-decoration: none;
    color: inherit;
}

    a:hover {
        text-decoration: underline;
    }

/* Live */
.live-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.live-iframe {
    width: 100%;
    max-width: 1000px;
    height: 550px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 40px rgba(12,22,28,0.06);
}

.live-note {
    font-size: 14px;
    color: #666;
}
.marquee-container {
    width: auto;
    overflow: hidden; /* scrolling ke bahar text hide ho jaye */
    background: #;
    color: white;
    padding: 5px 0;
    box-sizing: border-box;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: auto; /* start from right */
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Optional: Responsive speed adjustment */
@media (max-width: 768px) {
    .marquee-content {
        animation-duration: 10s;
    }
}