:root {
    --primary-purple: #880208;
    --mid-purple: #8B429A;
    --light-purple: #e92702;
    --accent-glow: #F3C4FB;
    --text-white: #ffffff;
    --glass-bg: rgba(45, 11, 73, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary-white);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Top Marquee */
.top-marquee {
    background: transparent;
    padding: 10px 0;
    border-bottom: none;
    box-shadow: none;
}

.top-marquee marquee {
    font-family: 'Righteous', cursive;
    color: var(--primary-purple); /* Deep purple for high visibility on light backgrounds */
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--light-purple), 0 0 2px rgba(45, 11, 73, 0.3);
    vertical-align: middle;
}

/* Navbar Vectors */
.custom-navbar {
    position: relative;
    overflow: hidden; /* To contain absolute vectors */
}

.nav-vectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.nav-shape {
    position: absolute;
    opacity: 0.15;
    border: 1px solid var(--light-purple);
}

.nav-shape.shape-1 {
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: rotate 20s linear infinite;
}

.nav-shape.shape-2 {
    bottom: -30px;
    right: 5%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px dashed var(--accent-glow);
    animation: rotate 30s linear infinite reverse;
}

.nav-star {
    position: absolute;
    color: var(--accent-glow);
    font-size: 1.5rem;
    opacity: 0.4;
    animation: pulse 2s infinite ease-in-out;
}

.star-left {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.star-right {
    bottom: 20%;
    right: 15%;
    animation-delay: 1s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* Navbar Customization */
.custom-navbar {
    background: linear-gradient(90deg, #880208 0%, #560775 100%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
}

.brand-text .accent {
    color: var(--light-purple);
}

.header-logo {
     width:10%;
     height:10%;
     object-fit:cover;
     border-radius: 100%;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.header-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(243, 196, 251, 0.8));
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.8) !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-purple);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--text-white) !important;
}

.navbar-nav .nav-link:hover::after, 
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.btn-price-list {
    background: linear-gradient(90deg, var(--mid-purple), var(--light-purple));
    color: var(--text-white) !important;
    border: none;
    white-space: nowrap;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 66, 154, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-price-list:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 66, 154, 0.6);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.accent-text {
    background: linear-gradient(90deg, var(--light-purple), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary-custom {
    background: linear-gradient(90deg, var(--mid-purple), var(--primary-purple));
    color: var(--text-white) !important;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(139, 66, 154, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: linear-gradient(90deg, var(--primary-purple), var(--mid-purple));
    color: var(--text-white) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(139, 66, 154, 0.6);
}

.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid var(--light-purple);
    padding: 10px 28px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--light-purple);
    color: var(--primary-purple);
}

.min-vh-75 {
    min-height: 75vh;
}

/* Welcome Section */
.welcome-section {
    background: #ffffff;
    color: #333;
}

.text-accent {
    color: var(--mid-purple);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight {
    color: var(--mid-purple);
    position: relative;
}

.text-light-muted {
    color: #666;
    line-height: 1.8;
}

/* Welcome Section Advanced Styling */
.welcome-section {
    position: relative;
    background: #ffffff;
    z-index: 5;
    overflow: visible;
}

.welcome-img-wrapper {
    position: relative;
    padding: 30px;
    z-index: 1;
}

.welcome-img-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--light-purple) 0%, transparent 70%);
    opacity: 0.15;
    z-index: -1;
    animation: pulse-glow 4s infinite ease-in-out;
}

.welcome-img {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    border: 4px solid var(--mid-purple);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                0 0 20px var(--mid-purple), 
                0 0 30px var(--primary-purple);
    animation: float-blob 6s infinite ease-in-out;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
    padding: 5px;
}

.welcome-img-wrapper:hover .welcome-img {
    transform: scale(1.05) rotate(3deg);
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%;
    box-shadow: 0 30px 60px rgba(139, 66, 154, 0.4);
}

@keyframes float-blob {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%;
    }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.1); }
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: linear-gradient(135deg, var(--mid-purple), var(--primary-purple));
    color: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 
                0 0 20px var(--mid-purple);
    z-index: 10;
    border: 2px solid var(--light-purple);
    animation: float-badge 5s infinite ease-in-out;
}

@media (max-width: 991px) {
    .welcome-img-wrapper {
        padding: 10px;
        margin-bottom: 50px;
    }
    
    .welcome-img-wrapper::before {
        display: none; /* Hide glow on mobile to prevent overlay issues */
    }
    
    .welcome-img {
        animation: float-blob-mobile 5s infinite ease-in-out;
        border-radius: 25px !important;
        max-width: 80%; /* Scale down slightly on mobile */
        margin: 0 auto;
        display: block;
    }
    
    .experience-badge {
        bottom: 10px; /* Move inside the image container */
        right: 15%;
        padding: 8px 12px;
        transform: scale(0.9);
    }
    
    .experience-badge .number {
        font-size: 1.3rem;
    }
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-blob-mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.experience-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.feature-list {
    padding: 0;
    list-style: none;
}

.feature-list li {
    margin-bottom: 15px;
    font-weight: 600;
    color: #444;
}

.feature-list li i {
    color: var(--mid-purple);
    font-size: 1.2rem;
}

/* Section Dividers */
.section-divider {
    line-height: 0;
    width: 100%;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

.section-divider.invert {
    transform: rotate(180deg);
}

/* Background Decorative Text */
.bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(45, 11, 73, 0.03);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Floating Sparks Animation */
.sparks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--light-purple);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: spark-float 10s infinite ease-in-out;
}

.s1 { top: 20%; left: 10%; animation-duration: 8s; }
.s2 { top: 60%; right: 5%; animation-delay: 2s; }
.s3 { top: 40%; left: 40%; animation-duration: 12s; }

@keyframes spark-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    50% { transform: translate(50px, -100px) scale(1.5); opacity: 0.6; }
}

/* Enhanced Categories */
.categories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfbff 0%, #f3e8ff 100%);
    overflow: hidden;
}

.cat-item {
    background: rgba(139, 66, 154, 0.05); /* Subtle purple tint */
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 66, 154, 0.1);
    margin-bottom: 20px;
}

.cat-item:hover {
    transform: translateX(15px) scale(1.02);
    background: #fff;
    box-shadow: 0 20px 40px rgba(139, 66, 154, 0.15);
    border-color: var(--mid-purple);
}

.cat-item:hover .cat-icon {
    transform: rotate(15deg) scale(1.1);
    background: var(--primary-purple);
}

.cat-text h5 {
    color: var(--primary-purple);
    font-weight: 700;
}

.cat-text small {
    color: #666;
    font-weight: 500;
}

.cat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--mid-purple), var(--primary-purple));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(139, 66, 154, 0.2);
    transition: all 0.4s ease;
}

.asymmetric-grid {
    position: relative;
    padding: 50px 0;
}

.main-img img {
    border-radius: 40px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.main-img:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-box {
    position: absolute;
    bottom: 20px;
    left: -10%;
    width: 280px;
    z-index: 5;
}

@media (max-width: 991px) {
    .floating-box {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: 20px; /* Removed negative margin to prevent overlap */
        margin-bottom: 20px;
    }
    
    .main-img img {
        transform: none !important; /* Remove perspective on mobile */
    }
    
    .bg-text {
        font-size: 5rem; /* Smaller background text for mobile */
    }

    .custom-wave-divider {
        height: 40px; /* Smaller wave on mobile to prevent overlap */
    }
    
    .stats-parallax {
        padding-top: 80px; /* Added padding to clear the wave */
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Stats Parallax Section */
.stats-parallax {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.stats-parallax .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(249, 104, 0), rgba(139, 66, 154, 0.7));
}

/* Custom Integrated Wave Divider - Top */
.custom-wave-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.custom-wave-divider-top svg {
    display: block;
    width: 100%;
    height: 100px;
}

@media (max-width: 991px) {
    .custom-wave-divider-top {
        height: 60px;
    }
    
    .custom-wave-divider-top svg {
        height: 60px;
    }
    
    .stats-parallax {
        padding-top: 100px !important;
        padding-bottom: 50px;
        overflow: hidden; /* Prevent horizontal scroll from large gutters */
    }

    .stats-parallax .row {
        --bs-gutter-x: 1rem; /* Reduce horizontal gutter on mobile */
        --bs-gutter-y: 2rem; /* Vertical spacing between cards */
    }
    
    .stat-card.glass-card {
        padding: 35px 20px;
        margin-bottom: 0; /* Handled by gutter-y */
    }
    
    .stat-card h2 {
        font-size: 2.8rem;
    }
}

/* Stats Parallax Section Enhanced */
.stat-card h2 {
    color: #FFD700; /* Festive Gold */
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    margin-bottom: 10px;
    font-size: 3.5rem;
    font-weight: 800;
}

.stat-card p {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.stat-card.glass-card {
    padding: 50px 20px; /* Increased padding */
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

/* Side Decorations */
.side-decoration {
    position: absolute;
    color: var(--light-purple);
    font-size: 3rem;
    opacity: 0.1;
    z-index: 0;
    filter: blur(1px);
    animation: float-side 8s infinite ease-in-out;
}

.rocket-1 {
    top: -20px;
    right: 10%;
    transform: rotate(-45deg);
}

.rocket-2 {
    bottom: -10px;
    right: 30%;
    font-size: 4rem;
    animation-delay: 2s;
    transform: rotate(15deg);
}

@keyframes float-side {
    0%, 100% { transform: translateY(0) rotate(-10deg); opacity: 0.1; }
    50% { transform: translateY(-30px) rotate(10deg); opacity: 0.2; }
}

.bg-purple {
    background: var(--mid-purple);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

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;}




.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;}
}	

@media (min-width:768px) and (max-width:991.98px){
.pad{padding:40px 0;}
}

#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;
}

.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);
}

.time-of-year:hover .tooltip {
	opacity: 1;
	visibility: visible !important;
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	z-index: 10000;
}

    
/* Premium Products Section */
.premium-products-section {
    background-image: url('../images/fireworks_bg_light.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.premium-products-section .section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(248, 151, 2) 0%, rgba(190, 130, 220, 0.75) 100%);
    z-index: 1;
}

.premium-products-section .text-light-muted {
    color: rgba(45, 11, 73, 0.7);
}

.premium-products-section .heading2 {
    color: var(--primary-purple) !important;
}

.highlight-glow {
    color: var(--mid-purple);
    text-shadow: 0 0 10px rgba(139, 66, 154, 0.3);
}

.product-glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(139, 66, 154, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 20px rgba(139, 66, 154, 0.2);
}

.product-img-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.1); /* Slightly bright background for images */
}

.product-img-wrapper img {
    transition: transform 0.5s ease;
    border-radius: 15px;
}

.product-glass-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-info h5 {
    color: var(--primary-purple);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

/* Custom View Button */
.custom-view-btn {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(90deg, var(--mid-purple), var(--primary-purple));
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 66, 154, 0.3);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.product-glass-card:hover .custom-view-btn {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 66, 154, 0.6);
    background: linear-gradient(90deg, var(--primary-purple), var(--mid-purple));
}

/* Footer Styles */
.footer-wave-divider {
    line-height: 0;
    width: 100%;
}
.footer-wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}
.main-footer {
    background: var(--primary-purple);
    padding: 60px 0 30px;
    color: #fff;
    overflow: hidden;
}
.main-footer .text-light-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}
.footer-heading {
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--light-purple);
    border-radius: 5px;
    transition: width 0.3s ease;
}
.main-footer:hover .footer-heading::after {
    width: 60px;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}
.footer-links a::before {
    content: '\2605'; /* Star symbol */
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--light-purple);
    transition: all 0.3s ease;
    font-size: 0.8rem;
}
.footer-links a:hover {
    color: var(--light-purple) !important;
    padding-left: 15px;
    transform: translateX(5px);
}
.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon:hover {
    background: var(--light-purple);
    color: var(--primary-purple) !important;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(212, 147, 217, 0.4);
}
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 147, 217, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(139, 66, 154, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Safety Tips Section */
.safety-tips-section {
    background: #ffffff;
    color: #333;
}

.safety-tips-section .text-light-muted {
    color: #666 !important;
}

.safety-card {
    border-radius: 25px;
    background: var(--primary-purple);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.safety-card:hover {
    transform: translateY(-5px);
}

.do-card:hover {
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.15), 0 0 20px rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
}

.dont-card:hover {
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.15), 0 0 20px rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
}

.card-header-custom {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.do-header h3 { color: #28a745; }
.dont-header h3 { color: #dc3545; }

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.do-icon-wrapper { background: linear-gradient(135deg, #28a745, #20c997); }
.dont-icon-wrapper { background: linear-gradient(135deg, #dc3545, #c82333); color: #fff;}

.pulse-green {
    animation: pulse-g 2s infinite;
}
@keyframes pulse-g {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

.pulse-red {
    animation: pulse-r 2s infinite;
}
@keyframes pulse-r {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

.card-body-custom {
    padding: 30px;
}

.safety-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.safety-list li i {
    font-size: 1.5rem;
    margin-top: -2px;
}

.do-card .safety-list li:hover {
    background: rgba(40, 167, 69, 0.05);
    border-color: rgba(40, 167, 69, 0.2);
    transform: translateX(10px);
}

.dont-card .safety-list li:hover {
    background: rgba(220, 53, 69, 0.05);
    border-color: rgba(220, 53, 69, 0.2);
    transform: translateX(10px);
}

/* Background Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    animation: float-orb 10s infinite alternate ease-in-out;
}

.orb-green {
    width: 400px;
    height: 400px;
    background: #28a745;
    top: -100px;
    left: -100px;
}

.orb-red {
    width: 400px;
    height: 400px;
    background: #dc3545;
    bottom: -100px;
    right: -100px;
    animation-direction: alternate-reverse;
}

@keyframes float-orb {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Decorative Vectors */
.safety-vector {
    position: absolute;
    font-size: 15rem;
    color: rgba(45, 11, 73, 0.06);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.v-top-left {
    top: 50px;
    left: 50px;
    transform: rotate(-15deg);
}

.v-bottom-right {
    bottom: 50px;
    right: 50px;
    transform: rotate(15deg);
}

@media (max-width: 991px) {
    .orb { display: none; }
    .safety-vector { font-size: 8rem; }
    .safety-list li { font-size: 1rem; }
}

/* Contact Section Styles */
.contact-section {
    position: relative;
    z-index: 1;
}

.contact-glass-card, .map-glass-card {
    background: var(--primary-purple);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.contact-glass-card:hover, .map-glass-card:hover {
    border-color: var(--light-purple);
    transform: translateY(-5px);
}

.map-glass-card {
    padding: 10px; /* less padding to maximize map area */
    min-height: 400px;
}

.map-glass-card iframe {
    border-radius: 20px;
    filter: invert(90%) hue-rotate(180deg) brightness(105%) contrast(105%);
    transition: filter 0.5s ease;
}

.map-glass-card:hover iframe {
    filter: invert(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-purple), var(--mid-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-purple);
    box-shadow: 0 0 15px rgba(212, 147, 217, 0.4);
    transition: transform 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.pulse-purple {
    animation: pulse-p 2s infinite;
}
@keyframes pulse-p {
    0% { box-shadow: 0 0 0 0 rgba(212, 147, 217, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(212, 147, 217, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 147, 217, 0); }
}

.custom-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--light-purple) !important;
    box-shadow: 0 0 10px rgba(212, 147, 217, 0.3) !important;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.custom-submit-btn {
    background: linear-gradient(90deg, var(--mid-purple), var(--primary-purple));
    color: #fff !important;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.custom-submit-btn:hover {
    background: transparent;
    border-color: var(--light-purple);
    color: var(--light-purple) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 147, 217, 0.3);
}

/* Background Orbs for Contact */
.orb-purple-light {
    width: 300px;
    height: 300px;
    background: var(--light-purple);
    top: 10%;
    left: -50px;
    animation-delay: 1s;
}

.orb-purple-dark {
    width: 400px;
    height: 400px;
    background: var(--mid-purple);
    bottom: -100px;
    right: -100px;
    animation-direction: alternate-reverse;
}

/* Floating Background Icons */
.floating-icon {
    position: absolute;
    pointer-events: none;
    font-size: 8rem;
    animation: float-random 15s infinite alternate ease-in-out;
}

.f-icon-1 { top: 5%; right: 10%; font-size: 7rem; animation-duration: 14s; z-index: 1; color: rgba(45, 11, 73, 0.08); }
.f-icon-2 { top: 40%; left: 35%; font-size: 8rem; animation-duration: 16s; z-index: 10; color: rgba(212, 147, 217, 0.2); animation-direction: alternate-reverse; }
.f-icon-3 { bottom: 10%; left: 5%; font-size: 9rem; animation-duration: 18s; z-index: 1; color: rgba(45, 11, 73, 0.08); }

@keyframes float-random {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(15deg); }
    66% { transform: translate(-20px, 20px) rotate(-10deg); }
    100% { transform: translate(40px, 40px) rotate(20deg); }
}

/* Mega Festival Combo Deal */
.bg-glass-dark {
    background: linear-gradient(135deg, #1a0b2e 0%, #311054 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.bg-clip-text {
    background-clip: text;
    -webkit-background-clip: text;
}
.drop-shadow-2xl {
    filter: drop-shadow(0 25px 25px rgba(0,0,0,0.5));
}

/* Custom Simple Footer for Contact Page */
.topbg {
    background: linear-gradient(90deg, #1A0B2E 0%, var(--primary-purple) 100%);
    padding: 15px 0;
    color: var(--text-white);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.topbg .smallfnt {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.topbg .head-clr {
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.topbg .head-clr:hover {
    color: var(--light-purple);
}