@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

a {
    text-decoration: none !important;
}

li {
    list-style-type: none !important;
}

.heading1 {
    font-size: 2.5rem;
}

.heading2 {
    font-size: 2rem;
}

.heading3 {
    font-size: 1.75rem;
}

.heading4 {
    font-size: 1.5rem;
}

.heading5 {
    font-size: 1.25rem;
}

.heading6 {
    font-size: 1rem;
}

.pad {
    padding: 90px 0;
}

.wrdbrk {
    white-space: pre;
}

.fullpad {
    padding: 0 !important;
    margin: 0 !important;
}

/* -------------------------------------------------------------------------
   AK Pyro Crackers - Modern high-quality Header & Marquee Styles
------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&family=Jost:wght@400;600;700;800&family=Outfit:wght@400;600;800&display=swap');

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    position: relative;
}

body {
    background: #ffffff;
    background-image: 
        radial-gradient(at 0% 0%, rgba(46, 0, 62, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 107, 0, 0.03) 0px, transparent 50%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Jost', sans-serif;
    color: #2e003e; /* Deep Purple text */
}

/* Ensure main content pushes footer down */
.flex-grow-1 {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

.marquee {
    width: 100%;
    overflow: hidden;
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #ffbe0b !important;
    /* background: #2e003e !important; */
    border-bottom: 2px solid #ff6b00;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Gradient Glow Background */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(131, 56, 236, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Navbar Styles */
.sirippu-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, #2e003e, #4d004d);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #ff6b00;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-img {
    height: 65px;
    width: 100px;
    border-radius: 8px; /* Slightly rounded for a modern look */
    border: 2px solid #ffbe0b; /* Add a thin yellow border to make it pop */
    box-shadow: 0 0 10px rgba(255, 190, 11, 0.4);
    transition: all 0.3s ease;
}

.logo-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffbe0b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 190, 11, 0.6);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-logo:hover .logo-img {
    transform: rotate(-5deg) scale(1.1);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.navbar-logo:hover .logo-text {
    color: #fff;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: #fff !important;
    text-decoration: none !important;
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.nav-link.active {
    color: #ff6b00 !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #ff6b00;
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    border-radius: 10px;
}

.nav-link:hover {
    color: #ff6b00;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link.pricelist-btn {
    background: #ff6b00;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    border: 2px solid #ffbe0b;
}

.nav-link.pricelist-btn:hover {
    background: #ffbe0b;
    color: #2e003e !important;
    transform: translateY(-3px) scale(1.05);
}

.nav-link.pricelist-btn:after {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background: #ff6b00;
    color: #ffffff;
    transform: translateY(-3px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b00;
    color: #ffffff;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 20px;
    font-weight: 800;
    border: 2px solid #2e0033;
}

/* Marquee Styles */
.marquee-section {
    background: #2e003e;
    border-bottom: 4px solid #ff6b00;
    overflow: hidden;
    padding: 12px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.marquee-container {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
}

.marquee-item {
    display: flex;
    align-items: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 60px;
}

.marquee-item span.emoji {
    font-size: 26px;
    margin-left: 10px;
    animation: bounce-wiggle 2s infinite ease-in-out;
    display: inline-block;
}

.topbg {
	background: linear-gradient(135deg, #240046 0%, #5A189A 50%, #3C096C 100%);
	color: white;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes bounce-wiggle {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    25% {
        transform: translateY(-5px) rotate(-10deg);
    }

    75% {
        transform: translateY(-5px) rotate(10deg);
    }
}

@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 190, 11, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 190, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 190, 11, 0);
    }
}

/* Mobile Menu Toggle (Simplified) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}






.w0 {
    width: 0%;
}

.fixed {
	position: fixed;
	z-index: 9999;
}

.priceicn {
    width: 50px;
}

.priceicn2 {
    width: 120px;
}

.point {
    bottom: 10px;
    left: 10px;
}

.point1 {
    bottom: 70px;
    left: 10px;
}

.point2 {
    bottom: 15px;
    right: 10px;
}

.blink {
    -webkit-animation: blink 1s;
    animation: blink 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@media (min-width:1px) and (max-width:767.98px) {
    .pad {
        padding: 40px 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, #2e003e, #4d004d);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        gap: 15px;
        z-index: 1001;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
     .logo-img {
        height: 55px;
    }

    .logo-text {
        font-size: 22px;
    }
    

    .marquee-item {
        font-size: 16px;
        margin-right: 40px;
    }
    
}

@media (min-width:768px) and (max-width:991.98px) {
    .pad {
        padding: 40px 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, #2e003e, #4d004d);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        gap: 15px;
        z-index: 1001;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .logo-img {
        height: 50px;
    }

    .logo-text {
        font-size: 24px;
    }

    .marquee-item {
        font-size: 16px;
        margin-right: 40px;
    }
}

#notfound {
    position: relative;
    height: 100vh;
}

#notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.notfound {
    max-width: 410px;
    width: 100%;
    text-align: center;
}

.oopslogo {
    width: 350px;
}

.notfound h2 {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
}

.notfound p {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 5px;
}

.notfound a {
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    background: #0046d5;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 40px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0px 4px 15px -5px #0046d5;
}

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 {
        height: 142px;
    }
}

.time-of-year {
	margin: 100px 75px 10px 0px;
	position: relative;
	display: inline-block;
	/* Ensure span takes up space of floated child */
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

.time-of-year .tooltip {
	background: #db2a1b;
	border-radius: 3px;
	bottom: -49px;
	font-size: 20px;
	display: block;
	left: 60px;
	/* Shift it right to avoid being off-screen */
	padding: 15px;
	pointer-events: none;
	position: absolute;
	width: 320px;
	height: 100px;
	opacity: 0;
	/* Hidden by default */
	visibility: hidden;
	/* Hidden by default */
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all .7s ease-out;
	transition: all .7s ease-out;
	z-index: 999;
}

@media (min-width: 992px) {
    .time-of-year:hover .tooltip {
        opacity: 1;
        /* Show on hover */
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.time-of-year .tooltip::after {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #db2a1b;
	bottom: 40px;
	content: " ";
	position: absolute;
	left: -19px;
	/* Position arrow on the left side of the tooltip */
	transform: rotate(90deg);
}


/* -------------------------------------------------------------------------
   AK Pyro Crackers - Welcome Section Styles
------------------------------------------------------------------------- */

.welcome-section {
    position: relative;
    padding: 120px 0 180px;
    background: #ffffff;
    background-image: 
        radial-gradient(circle at 20% 40%, rgba(255, 107, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(46, 0, 62, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 190, 11, 0.05) 0%, transparent 60%);
    overflow: hidden;
    color: #2e003e;
    border-bottom: 0;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232e0033' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Background Particles/Sparks */
.welcome-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.spark {
    position: absolute;
    background: radial-gradient(circle, #fff 0%, #ffbe0b 50%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    animation: spark-animation 3s infinite linear;
}

@keyframes spark-animation {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Container & Layout */
.welcome-container {
    position: relative;
    z-index: 2;
}

.welcome-content-col {
    padding-left: 50px;
}

/* Typography & Text Effects */
.welcome-heading {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2e003e;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.05);
    animation: fadeInUp 1s ease-out both;
}

.text-glow {
    color: #4d004d;
    text-shadow: 2px 2px 0px rgba(255, 107, 0, 0.2);
}

.welcome-subheading {
    font-family: 'Jost', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #ff6b00;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome-shortline {
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
    color: #4d004d;
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.welcome-desc {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 1.8;
    color: #2e0033;
    opacity: 0.85;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Welcome Section Cards Layout */
.welcome-cards-row {
    margin-top: 20px;
}

.welcome-card {
    position: relative;
    background: #ffffff;
    border-radius: 80px 40px;
    padding: 80px 35px 50px;
    text-align: center;
    height: 100%;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
    display: flex;
    flex-direction: column;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.03);
    margin-top: 50px;
}

.welcome-card:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(5deg) translateY(-40px);
    background: #ffffff;
    border-radius: 40px 100px 40px 100px;
    box-shadow: 0 50px 100px rgba(46, 0, 62, 0.12);
    border-color: #ff6b00;
}


.card-icon {
    font-size: 5rem;
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    width: 130px;
    height: 130px;
    line-height: 130px;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 8px solid #fdfdfd;
    z-index: 5;
}

.welcome-card:hover .card-icon {
    transform: translateX(-50%) translateY(-25px) scale(1.1) rotate(360deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff6b00;
}

.card-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2e003e;
    margin-top: 40px;
}

.card-text {
    font-size: 1.1rem;
    color: #4d004d;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.9;
}

.card-link {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none !important;
    transition: all 0.4s;
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #2e003e, #4d004d);
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(46, 0, 62, 0.3);
    margin-top: auto;
}

.card-link:hover {
    background: linear-gradient(135deg, #ff6b00, #ffbe0b);
    color: #ffffff;
    transform: scale(1.05);
    letter-spacing: 3px;
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
}

/* Staggered Row Effect */
@media (min-width: 992px) {
    .welcome-cards-row > div:nth-child(even) {
        transform: translateY(60px);
    }
}


.card-kids { box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15); }
.card-family { box-shadow: 0 20px 60px rgba(255, 190, 11, 0.15); }
.card-deluxe { box-shadow: 0 20px 60px rgba(46, 0, 62, 0.15); }

.card-kids:hover, .card-family:hover, .card-deluxe:hover { 
    box-shadow: 0 40px 80px rgba(46, 0, 62, 0.12); 
}

.card-kids { border-top: 8px solid #ff6b00; }
.card-family { border-top: 8px solid #ffbe0b; }
.card-deluxe { border-top: 8px solid #2e003e; }

/* CTA Button */
.welcome-cta {
    background: linear-gradient(45deg, #001d3d, #003566);
    border: none;
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff !important;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 15px 40px rgba(0, 53, 102, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.welcome-cta:hover {
    transform: scale(1.1) rotate(-1deg);
    box-shadow: 0 25px 60px rgba(0, 29, 61, 0.3);
    color: #00a8e8 !important;
}

/* Mobile Responsiveness for Welcome */
@media (max-width: 991.98px) {
    .welcome-heading { font-size: 2.8rem; }
    .welcome-subheading { font-size: 1.2rem; }
    .welcome-card { padding: 30px 20px; margin-bottom: 20px; }
}

@media (max-width: 575.98px) {
    .welcome-heading {
        font-size: 2.2rem;
    }
    .welcome-subheading {
        font-size: 1.1rem;
    }
}

/* -------------------------------------------------------------------------
   AK Pyro Crackers - Unique Fun Products Styles
------------------------------------------------------------------------- */

.fun-products-section {
    background: #2e003e;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(77, 0, 77, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-45c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm26 18c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm16 18c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.fun-products-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(46, 0, 62, 1), transparent);
    pointer-events: none;
}

.fun-text-gradient {
    background: linear-gradient(to right, #ffffff, #ffbe0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.fun-p-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.fun-p-card:hover {
    transform: translateY(-20px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff6b00;
    box-shadow: 0 30px 60px rgba(255, 107, 0, 0.2);
}

/* Speech Bubble */
.speech-bubble {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #240046;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: 0.3s;
    z-index: 10;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

.fun-p-card:hover .speech-bubble {
    opacity: 1;
    top: -65px;
}

.fun-p-img-wrapper {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(131, 56, 236, 0.3));
}

.fun-p-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.fun-p-card:hover .fun-p-img {
    transform: scale(1.1) rotate(-5deg);
}

.fun-p-info h3 {
    font-family: 'Fredoka', sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.p-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffbe0b;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blast-btn {
    display: block;
    background: linear-gradient(45deg, #ff6b00, #4d004d);
    color: #fff !important;
    text-decoration: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.2);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.blast-btn:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: #ff6b00;
    color: #2e003e !important;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.fun-placeholder-box {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.02);
    border: 3px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
}

.blast-btn.disabled {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: none;
    cursor: default;
}

/* -------------------------------------------------------------------------
   AK Pyro Crackers - Dhamaka Features Styles
------------------------------------------------------------------------- */

.dhamaka-features-section {
    background: #ffffff;
    background-image: radial-gradient(circle at 50% 10%, rgba(255, 107, 0, 0.05), transparent 70%);
    position: relative;
    border-top: 1px solid rgba(46, 0, 62, 0.05);
    padding: 80px 0;
}

.feature-header-gradient {
    background: linear-gradient(90deg, #2e003e, #ff6b00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-circle-wrapper {
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #003566;
}

/* Feature Colors with Variables */
.fc-noise {
    --clr: #ff003c;
    border-color: var(--clr);
    background: rgba(255, 0, 60, 0.1);
    color: var(--clr);
}

.fc-budget {
    --clr: #ffbe0b;
    border-color: var(--clr);
    background: rgba(255, 190, 11, 0.1);
    color: var(--clr);
}

.fc-safe {
    --clr: #4cc9f0;
    border-color: var(--clr);
    background: rgba(76, 201, 240, 0.1);
    color: var(--clr);
}

.fc-roots {
    --clr: #8338ec;
    border-color: var(--clr);
    background: rgba(131, 56, 236, 0.1);
    color: var(--clr);
}

.fc-shipping {
    --clr: #ff003c;
    border-color: var(--clr);
    background: rgba(255, 0, 60, 0.1);
    color: var(--clr);
}

.fc-fun {
    --clr: #ffbe0b;
    border-color: var(--clr);
    background: rgba(255, 190, 11, 0.1);
    color: var(--clr);
}

/* Standardize the icon prefix and refine hover state */
.feature-circle i {
    color: var(--clr);
    transition: 0.3s;
}

.feature-circle-wrapper:hover .feature-circle {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px var(--clr);
    background-color: var(--clr) !important;
    color: #fff !important;
}

.feature-circle-wrapper:hover .feature-circle i {
    color: #fff !important;
}

.feature-circle-wrapper h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    color: #001d3d;
    margin-bottom: 5px;
    transition: 0.3s;
}

.feature-circle-wrapper:hover h3 {
    color: #003566;
}

.feature-tag {
    font-size: 0.7rem;
    color: #4d004d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .feature-circle {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
}


/* -------------------------------------------------------------------------
   AK Pyro Crackers - Funny Footer Styles
------------------------------------------------------------------------- */

.funny-footer {
    background: #11001a;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(77, 0, 77, 0.2), transparent 40%),
        url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    color: #fff;
    position: relative;
    padding: 80px 0 40px;
    overflow: hidden;
}

.footer-neon-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2e003e, #4d004d, #ff6b00, #2e003e);
    background-size: 200% 100%;
    animation: neon-flow 3s linear infinite;
}

@keyframes neon-flow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.footer-brand h3 {
    font-family: 'Fredoka', sans-serif;
    color: #ffbe0b;
    font-weight: 700;
}

.footer-badge {
    display: inline-flex;
    flex-direction: column;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid #ffbe0b;
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.badge-text {
    font-weight: 800;
    font-size: 0.9rem;
    color: #ffffff;
}

.badge-sub {
    font-size: 0.7rem;
    color: #fff;
}

.footer-links {
    list-style: none !important;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc !important;
    text-decoration: none !important;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffbe0b !important;
    padding-left: 10px;
}

.footer-social .social-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    margin-right: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-icon:hover {
    background: #ff6b00;
    border-color: #ffbe0b;
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
}

.footer-hr {
    border-color: rgba(255, 255, 255, 0.1) !important;
    opacity: 0.1;
}

.funny-disclaimer {
    color: #ffbe0b;
    font-style: italic;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Peeking Sticker Animation */
.footer-peeker {
    position: absolute;
    bottom: -150px;
    right: 20px;
    width: 150px;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.funny-footer:hover .footer-peeker {
    bottom: -10px;
}

.peeker-img {
    max-width: 100%;
    filter: drop-shadow(0 0 15px rgba(131, 56, 236, 0.5));
}

@media (max-width: 767.98px) {
    .footer-peeker {
        width: 100px;
        right: 10px;
    }
}

/* Ambient Spark Particles ✨ */
#global-sparks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.ambient-spark {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: spark-float linear infinite;
    filter: blur(1px);
}

@keyframes spark-float {
    0% { transform: translate(0, 0) scale(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(var(--dx), var(--dy)) scale(1.5); opacity: 0; }
}

/* -------------------------------------------------------------------------
   AK Pyro Crackers - Contact Page Styles
------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------
   AK Pyro Crackers - Premium Contact Page Revamp 🧨✨
------------------------------------------------------------------------- */

.contact-hero {
    background: #060010;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 107, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(131, 56, 236, 0.1) 0%, transparent 40%);
}

.contact-title-gradient {
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #ffbe0b 50%, #ff6b00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.contact-info-section {
    background: #ffffff;
    padding: 100px 0;
}

.contact-card-glass {
    background: #0d001a;
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    color: #fff !important;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.contact-card-glass:hover {
    transform: translateY(-15px);
    box-shadow: 0 60px 120px rgba(46, 0, 62, 0.25);
}

.border-gradient {
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #ff6b00, #ffbe0b) 1;
}

.contact-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffbe0b;
    transition: all 0.4s ease;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.icon-phone { color: #4cc9f0; }
.icon-email { color: #f72585; }

.contact-item {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 20px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.contact-item:hover .contact-icon-box {
    transform: scale(1.15) rotate(10deg);
    background: #ff6b00;
    color: #fff !important;
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.4);
}

.highlighted-item {
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.tiny-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 5px;
    color: #ff6b00;
}

/* AK Pyro - Specific Contact Title (Matching Order Now Gradient) ✨ */
.contact-header-gradient {
    background: linear-gradient(to right, #ffffff, #ffbe0b, #ff6b00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(255, 107, 0, 0.4);
    font-weight: 900;
}

.contact-card-glass h2,
.contact-card-glass h3,
.contact-card-glass h4 {
    color: #ffffff !important;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    font-weight: 800;
}

.contact-card-glass p {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Contact Map Section 🌍 */
.contact-map-section {
    padding-bottom: 100px;
}

.map-wrapper {
    background: #fff;
    padding: 15px;
    border-radius: 40px;
    border: 2px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map-wrapper:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: #ff6b00;
    box-shadow: 0 50px 120px rgba(255, 107, 0, 0.5);
}

.map-wrapper iframe {
    border-radius: 30px;
}

/* -------------------------------------------------------------------------
   Animations & Responsiveness
------------------------------------------------------------------------- */
@keyframes floating-img {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@media (max-width: 991.98px) {
    .speech-bubble-contact {
        position: relative;
        top: 0;
        right: 0;
        margin: 30px auto 0;
        display: inline-block;
    }
    .contact-hero .display-3 { font-size: 2.8rem; }
}

/* -------------------------------------------------------------------------
   AK Pyro Crackers - Safety Cinema (Legendary Meme Edition)
------------------------------------------------------------------------- */

.safety-cinema-section {
    background: #fdfdfd;
    background-image: linear-gradient(to bottom, #fdfdfd, #f9f0f9);
    position: relative;
    padding: 100px 0 120px;
}

.film-strip-wrapper {
    width: 100%;
    background: #0d0014;
    border-top: 8px solid #ff6b00;
    border-bottom: 8px solid #ff6b00;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.film-strip {
    display: flex;
    width: max-content;
    animation: scroll-film 30s linear infinite;
}

@keyframes scroll-film {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.film-frame {
    width: 400px;
    height: 300px;
    background: #111;
    margin: 0 20px;
    position: relative;
    border: 4px solid #222;
    box-shadow: 0 0 20px rgba(255, 209, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.film-holes-top,
.film-holes-bottom {
    height: 25px;
    background-image: radial-gradient(circle, #ffffff 40%, transparent 40%);
    background-size: 30px 25px;
    opacity: 0.3;
}

.frame-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.frame-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Full size, no crop */
    filter: brightness(0.8) contrast(1.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Iconic Meme Text Style 🏷️ */
.frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0; /* Remove padding so black bars hit the edges */
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
}

.meme-top-text,
.meme-bottom-text {
    width: 100%;
    padding: 10px 15px;
    color: #fff;
    font-family: 'Jost', sans-serif; /* Cleaner, more modern font */
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.75); /* Dark cinematic bar for readability */
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10;
}

.meme-top-text {
    font-size: 1.1rem;
    color: #ffbe0b; /* Theme Gold */
    transform: translateY(-50px);
    border-bottom: 2px solid rgba(255, 190, 11, 0.3);
}

.meme-bottom-text {
    font-size: 1.4rem;
    color: #ffffff;
    transform: translateY(50px);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.film-frame:hover .frame-img {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.15); /* Pronounced zoom on hover */
}

.film-frame:hover .meme-top-text {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.film-frame:hover .meme-bottom-text {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

@media (max-width: 767.98px) {
    .film-frame {
        width: 270px;
        height: 195px;
        margin: 0 10px;
    }

    .meme-top-text {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .meme-bottom-text {
        font-size: 0.95rem;
        padding: 8px 10px;
    }
}

/* Common Decorative Elements */
.section-badge {
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.15), rgba(255, 190, 11, 0.15));
    color: #ffbe0b;
    border: 1px solid rgba(255, 190, 11, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Order Now Section - Premium Fireworks Theme 🚀 */
.order-now-section {
    padding: 120px 0;
    position: relative;
    background: #060010;
    background-image: url('../images/order_now_bg_fireworks.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.order-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(10, 0, 25, 0.95) 0%, 
        rgba(30, 0, 50, 0.7) 50%, 
        rgba(10, 0, 25, 0.95) 100%
    );
    z-index: 1;
}

.order-now-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 80px 100px;
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 0 50px rgba(255, 107, 0, 0.05);
    position: relative;
    z-index: 2;
    overflow: visible;
}

/* Moving Decorative Elements */
.order-decoration {
    position: absolute;
    font-size: 2.5rem;
    pointer-events: none;
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
}

.deco-1 { top: 10%; left: 5%; animation: float-around 6s ease-in-out infinite; }
.deco-2 { bottom: 15%; right: 10%; animation: float-around 8s ease-in-out infinite reverse; }
.deco-3 { top: 20%; right: 5%; animation: float-around 7s ease-in-out infinite 1s; }
.deco-4 { bottom: 10%; left: 15%; animation: float-around 9s ease-in-out infinite 0.5s; }

@keyframes float-around {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -20px) rotate(15deg); }
    50% { transform: translate(-10px, -35px) rotate(-15deg); }
    75% { transform: translate(-20px, -15px) rotate(10deg); }
}

.order-content-left {
    flex: 1.3;
    position: relative;
    z-index: 4;
}

.order-content-left h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff, #ffbe0b, #ff6b00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Fredoka', sans-serif;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.order-content-left p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 550px;
}

.order-cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(45deg, #ff6b00, #ffbe0b);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 100px;
    box-shadow: 0 15px 45px rgba(255, 107, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 2.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.order-cta-btn:hover {
    background: #ffffff;
    color: #2e003e;
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 30px 80px rgba(255, 107, 0, 0.7);
    letter-spacing: 5px;
    border-color: #ff6b00;
}

.order-img-right {
    flex: 0.7;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-glow-wrapper {
    position: relative;
    padding: 40px;
}

.img-glow-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.order-main-img {
    max-width: 140%;
    margin-left: -20%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    animation: floatingBoxEnhanced 6s ease-in-out infinite;
    position: relative;
    z-index: 5;
}

@keyframes floatingBoxEnhanced {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-30px) rotate(3deg) scale(1.02); }
    66% { transform: translateY(-15px) rotate(-2deg) scale(0.98); }
}

@media (max-width: 1199px) {
    .order-now-container {
        padding: 50px 40px;
    }
    .order-content-left h2 {
        font-size: 3rem;
    }
    .order-main-img {
        max-width: 110%;
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .order-now-container {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
        border-radius: 40px;
    }
    .order-content-left h2 {
        font-size: 2.5rem;
    }
    .order-content-left p {
        margin: 0 auto 30px;
    }
    .order-main-img {
        max-width: 80%;
        margin-top: 30px;
    }
    .img-glow-wrapper::before {
        width: 200px;
        height: 200px;
    }
    .order-decoration {
        display: none; /* Hide for cleaner mobile view */
    }
}

@media (max-width: 575px) {
    .order-content-left h2 {
        font-size: 2rem;
    }
    .order-cta-btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}

/* -------------------------------------------------------------------------
   AK Pyro Crackers - Safety Tips Page (Dos & Don'ts) 🛡️🧨
------------------------------------------------------------------------- */

.safety-hero {
    background: #060010;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 107, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(43, 172, 107, 0.1) 0%, transparent 40%);
}

.safety-hero-gradient {
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #ffbe0b 50%, #ff6b00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.safety-split-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Common Card Style */
.safety-card {
    border-radius: 45px;
    padding: 60px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.safety-card h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.safety-list {
    list-style: none;
    padding: 0;
}

.safety-list li {
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-left: 55px;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
}

.safety-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.safety-list li:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* The Dos Style - Safe Spark ❇️ */
.do-card {
    background: rgba(43, 172, 107, 0.03);
    border-color: rgba(43, 172, 107, 0.1);
}

.do-card h2 { color: #2bac6b; }
.do-card .safety-list li i { color: #2bac6b; }

.do-card:hover {
    background: #fff;
    border-color: #2bac6b;
    transform: translateY(-20px) rotate(-1deg);
    box-shadow: 0 60px 120px rgba(43, 172, 107, 0.15);
}

/* The Don'ts Style - Danger Zone 🛑 */
.dont-card {
    background: rgba(255, 60, 60, 0.03);
    border-color: rgba(255, 60, 60, 0.1);
}

.dont-card h2 { color: #ff3c3c; }
.dont-card .safety-list li i { color: #ff3c3c; }

.dont-card:hover {
    background: #fff;
    border-color: #ff3c3c;
    transform: translateY(-20px) rotate(1deg);
    box-shadow: 0 60px 120px rgba(255, 60, 60, 0.15);
}

/* Safety Awareness Banner */
.safety-banner-dark {
    background: #0d001a;
    border-radius: 50px;
    padding: 80px 40px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 190, 11, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

@media (max-width: 991px) {
    .safety-card { padding: 40px 30px; }
    .safety-card h2 { font-size: 2.5rem; }
    .safety-list li { font-size: 1.1rem; }
}

/* -------------------------------------------------------------------------
   AK Pyro Crackers - Premium About Page (Our Story) 🏮📜
------------------------------------------------------------------------- */

.about-hero-section {
    position: relative;
    padding: 120px 0;
    background: #060010;
    overflow: hidden;
}

.about-title-glow {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #ffbe0b 50%, #ff6b00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(255, 107, 0, 0.3);
}

/* Section 1: Heritage/Legacy */
.heritage-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.legacy-img-wrapper {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

.legacy-img {
    width: 100%;
    transition: transform 0.6s ease;
}

.legacy-img-wrapper:hover .legacy-img {
    transform: scale(1.05);
}

.heritage-text h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    color: #2e003e;
    margin-bottom: 25px;
}

.heritage-p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4d004d;
    opacity: 0.85;
}

/* Section 2: The Dhamaka Mission */
.mission-section {
    background: #0d001a;
    padding: 120px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.mission-card h2 {
    font-family: 'Fredoka', sans-serif;
    color: #ffbe0b;
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.mission-card p {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section 3: USP Features Grid */
.usp-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.usp-box {
    background: #fff;
    border-radius: 40px;
    padding: 45px;
    height: 100%;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.02);
}

.usp-box:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(46, 0, 62, 0.1);
    border-color: #ff6b00;
}

.usp-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.2));
}

.usp-box h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: #2e0033;
    margin-bottom: 15px;
}

.usp-box p {
    color: #4d004d;
    opacity: 0.7;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-title-glow { font-size: 3rem; }
    .heritage-text h2 { font-size: 2.2rem; }
    .mission-card { padding: 40px 30px; }
    .mission-card h2 { font-size: 2.5rem; }
    .mission-card p { font-size: 1.2rem; }
}

@media (max-width: 767px) {
    .about-hero-section { padding: 80px 0; }
    .about-title-glow { font-size: 2.2rem; }
    .heritage-section { padding: 60px 0; }
    .mission-section { padding: 80px 0; }
    .mission-card { padding: 30px 20px; border-radius: 40px; }
    .mission-card h2 { font-size: 2rem; }
    .mission-card p { font-size: 1rem; }
    .mission-section .gap-4 { gap: 1rem !important; }
    .mission-section .border-start, 
    .mission-section .border-end { border: none !important; border-top: 1px solid rgba(255,255,255,0.1) !important; padding: 15px 0 !important; }
    .usp-section { padding: 60px 0; }
    .usp-box { padding: 30px 20px; }
}

/* Brand Section Styling 🏭 */
.brand-section {
    position: relative;
    background: #0d001a; /* Dark Dhamaka Theme Base */
    /* Vibrant Theme-Colored Overlay with Custom Festive Pattern */
    background-image: 
        linear-gradient(165deg, rgba(13, 0, 26, 0.94) 0%, rgba(46, 0, 62, 0.85) 50%, rgba(255, 107, 0, 0.1) 100%),
        url('../images/festive_cracker_pattern.jpg');
    background-size: cover, 500px;
    background-repeat: no-repeat, repeat;
    background-attachment: local, fixed;
    padding: 110px 0;
    border-top: 2px solid rgba(255, 107, 0, 0.3);
    border-bottom: 2px solid rgba(255, 107, 0, 0.3);
}

.brandbrd {
    background: #fff;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.brandbrd:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 107, 0, 0.3);
    border-color: #ffbe0b;
}

#owl-demo2 {
    padding: 40px 10px;
    margin: -40px -10px;
    overflow: visible !important;
}

#owl-demo2 .owl-stage-outer {
    overflow: visible !important;
    padding: 60px 0;
    margin: -60px 0;
}

.brand-section .title {
    color: #ffffff !important; /* Force white for dark theme */
    text-shadow: 0 0 20px rgba(255, 190, 11, 0.4);
    margin-bottom: 70px;
    font-weight: 900;
}

/* Mission Peeker Image Styling 🖼️ */
.mission-peeker {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 200px;
    z-index: 5;
    border: 6px solid #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: rotate(5deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mission-peeker:hover {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 30px 70px rgba(0,0,0,0.7);
    z-index: 10;
}

@media (max-width: 1199px) {
    .mission-peeker { width: 150px; bottom: -20px; right: 0; }
}

@media (max-width: 991px) {
    .mission-peeker {
        position: relative;
        display: block;
        margin: 40px auto 0;
        bottom: 0;
        right: 0;
        transform: rotate(0deg);
        width: 220px;
    }
}