body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: #e10072;
    color: white;
    font-size: 1rem;
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: bold;
}

.scrolling-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-text 15s linear infinite;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-80%);
    }
}

.contact-number {
    font-weight: bold;
    color: #ffd700;
}

/* ===== LOGO & CONTACT BUTTONS ===== */
.logo {
    max-height: 70px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-btn {
    background: linear-gradient(90deg, #28a745, #20c997);
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 6px 14px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 128, 0, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(90deg, #ff8800, #ff0080);
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 6px 14px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(255, 0, 128, 0.4);
}

/* ===== NAVIGATION BAR ===== */
.main-nav {
    background-color: #e10072;
}

.main-nav .nav-link {
    color: white !important;
    font-weight: bold;
    padding: 10px 30px; /* Increased padding for more space */
    position: relative;
    transition: background 0.3s, color 0.3s;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.main-nav .nav-link:hover::after {
    width: 60%;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    background-color: #ff007f;
    border-radius: 4px;
}

/* Center align links in phone view */
@media (max-width: 768px) {
    .main-nav .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .main-nav .nav-link {
        padding: 10px 15px; /* Adjusted padding for mobile */
    }
}

/* Move hamburger to the right */
.main-nav .navbar-toggler {
    margin-left: auto;
}

/* ===== CAROUSEL ===== */
.carousel-item img {
    max-height: 550px;
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
    filter: invert(1);
}

.carousel-indicators button {
    background-color: #fff;
}

.carousel-indicators .active {
    background-color: #ff007f;
}

/* ===== FOOTER ===== */
footer {
    background-color: #111;
    color: #ccc;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}


/* === Stats Section Styling === */
.stats-section {
    background: #ff007f;
    padding: 60px 0;
    color: white;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px 40px;
    flex: 1 1 200px;
    max-width: 250px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #ff9800;
}

/* Icon Style */
.stat-box i {
    font-size: 50px;
    margin-bottom: 15px;
    color: #ff9800;
    transition: color 0.3s ease;
}

.stat-box:hover i {
    color: #ffd54f;
}

/* Number Style */
.counter {
    font-size: 40px;
    font-weight: 800;
    margin: 10px 0;
    color: #fff;
    letter-spacing: 1px;
}

/* Description Style */
.stat-box p {
    font-size: 16px;
    font-weight: 600;
    color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-container {
        gap: 20px;
    }

    .stat-box {
        padding: 20px;
    }
}

/* welcome css */

/* Welcome Section */
.welcome-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 80px 10%;
    min-height: 50vh;
}

/* Left Image */
.welcome-left img {
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(255, 183, 0, 0.8);
    transition: transform 0.3s ease;
}
.welcome-left img:hover {
    transform: scale(1.05);
}

/* Right Content */
.welcome-right {
    max-width: 600px;
}

.welcome-right h4 {
    font-size: 20px;
    font-style: italic;
    color: #ffcc33;
    margin-bottom: 10px;
}

.welcome-right h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.welcome-right h1 span {
    color: #ffcc33;
    text-shadow: 0 0 10px #ffcc33, 0 0 20px #ff9900;
}

.welcome-right p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Explore Button */
.explore-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(90deg, #ff6600, #ffcc00);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
    transition: 0.3s ease;
}
.explore-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 204, 0, 1);
}

/* Footer Bar */
.footer-bar {
    position: fixed;
    bottom: 20px;
    background-color: transparent;
    left: 0;
    right: 0;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Social Media Links */
.footer-left a {
    color: #ffcc33;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-left a:hover {
    color: #ff6600;
    transform: scale(1.2);
}

/* Order Now Button */
.order-now-btn {
    background: #ff0000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    transition: 0.3s ease;
}
.order-now-btn:hover {
    background: #ff4d4d;
    box-shadow: 0 0 25px rgba(255, 0, 0, 1);
}

/* Responsive Design */
@media (max-width: 900px) {
    .welcome-section {
        flex-direction: column;
        text-align: center;
    }
    .welcome-left img {
        max-width: 90%;
    }
    .welcome-right {
        max-width: 100%;
    }
}


/* close welcome */


/* delivery */

.features-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    justify-content: center;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #ccc;
    padding: 15px 20px;
    width: 280px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.feature-box i {
    font-size: 30px;
    color: red;
    min-width: 40px;
}

.feature-box h4 {
    color: red;
    font-weight: bold;
    margin-bottom: 4px;
}

.feature-box p {
    margin: 0;
    color: #000;
}

.feature-box:hover {
    border-color: red;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    transform: translateY(-3px);
}


/* product-our*/

.section-header {
    text-align: center;
    margin-top: 90px;
    font-style: italic;
    font-size: 2.2rem;
    color: #ff007f;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.product-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.product-card {
    background-color: #fff3e0;
    border: 2px solid #ff007f;
    border-radius: 15px;
    width: 260px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.order-btn {
    background-color: #ff007f;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease-in-out;
}

.order-btn:hover {
    background-color: #e64a19;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .section-header {
        margin-top: 50px;
        font-size: 1.8rem;
    }

    .product-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .product-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .product-card img {
        height: 150px;
    }

    .order-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-top: 30px;
        font-size: 1.5rem;
    }

    .product-card {
        max-width: 250px;
    }

    .product-card img {
        height: 120px;
    }

    .order-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
/* close product */ 


/* price */

.price-list-section {
    background: url('/static/images/firework-2025.gif') no-repeat center center/cover;
    padding: 40px 20px;
    text-align: center;
    border: 2px solid #ff007f;
    border-radius: 15px;
    margin: 20px 0;
}

.price-list-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    color: white;
}

.price-list-header {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-list-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.input-field {
    padding: 10px;
    width: 200px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
}

.download-btn {
    background-color: #ff007f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.download-btn:hover {
    background-color: #e64a19;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .price-list-header {
        font-size: 1.5rem;
    }

    .input-field {
        width: 100%;
        max-width: 250px;
        margin-bottom: 10px;
    }

    .price-list-form {
        flex-direction: column;
        gap: 10px;
    }

    .download-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .price-list-section {
        padding: 20px 10px;
    }

    .price-list-header {
        font-size: 1.2rem;
    }

    .input-field {
        max-width: 200px;
    }

    .download-btn {
        max-width: 200px;
    }
}
/* close price */


/* footer */


.footer-section {
    background: linear-gradient(to bottom, #ff007f, #b3005e);
    color: white;
    padding: 40px 20px;
    border-top: 2px solid #ff007f;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo-img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
    font-family: 'Verdana', sans-serif;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li, .footer-contact ul li {
    margin: 10px 0;
    font-size: 1.1rem;
    font-family: 'Helvetica', sans-serif;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-contact ul li span {
    display: block;
    font-size: 1.1rem;
    font-family: 'Helvetica', sans-serif;
}

.social-icon {
    color: white;
    font-size: 1.8rem;
    margin: 0 12px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.social-icon:hover {
    color: #e64a19;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    font-family: 'Georgia', serif;
}

.footer-bottom p {
    margin: 5px 0;
    font-weight: 500;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo, .footer-links, .footer-contact {
        margin-bottom: 20px;
    }

    .footer-logo-img {
        width: 120px;
    }

    .footer-links h3, .footer-contact h3 {
        font-size: 1.2rem;
    }

    .footer-links ul li, .footer-contact ul li {
        font-size: 1rem;
    }

    .social-icon {
        font-size: 1.5rem;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        width: 100px;
    }

    .footer-links h3, .footer-contact h3 {
        font-size: 1rem;
    }

    .footer-links ul li, .footer-contact ul li {
        font-size: 0.9rem;
    }

    .social-icon {
        font-size: 1.2rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* close footer */

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets (portrait & landscape) */
@media (max-width: 1024px) {
    .contact-buttons {
        flex-direction: row;
        gap: 10px;
    }
    .contact-btn, .whatsapp-btn {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    .logo {
        max-height: 60px;
    }
    .carousel-item img {
        max-height: 450px;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.85rem;
        text-align: center;
    }
    .container.py-2.d-flex {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
    .contact-btn, .whatsapp-btn {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    .logo {
        max-height: 50px;
    }
    .main-nav .nav-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    .carousel-item img {
        max-height: 350px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 4px 0;
    }
    .contact-btn, .whatsapp-btn {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    .main-nav .nav-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    .carousel-item img {
        max-height: 250px;
    }
}
