@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   GLOBAL RESET & FESTIVE VARIABLES
   ========================================================================== */
:root {
    --primary: #E53935;
    /* Premium Red */
    --secondary: #FFC107;
    /* Golden Yellow */
    --accent-orange: #FF6D00;
    --accent-purple: #673AB7;
    --accent-sky: #03A9F4;
    --cream-bg: #FFF8EA;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: var(--font-body);
    background-color: var(--cream-bg);
    color: #4A3E3D;
    overflow-x: hidden;
    position: relative;
}

/* Playful Cartoon Selection */
::selection {
    background-color: var(--secondary);
    color: var(--primary);
}

a {
    text-decoration: none !important;
    transition: var(--transition);
}

li {
    list-style-type: none !important;
}

/* ==========================================================================
   ANIMATED FESTIVE BACKGROUND DECORATIONS
   ========================================================================== */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255, 193, 7, 0.05) 10%, transparent 11%),
        radial-gradient(circle, rgba(229, 57, 53, 0.05) 10%, transparent 11%);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* Sparkles, Fireworks and Twinkles Animation */
@keyframes floatBalloon {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes chakraRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fireworkGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(229, 57, 53, 0.8));
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.heading1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
}

.heading2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.heading3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--accent-orange);
}

.heading4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.heading5 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
}

.heading6 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

.pad {
    padding: 90px 0;
    position: relative;
}

.wrdbrk {
    white-space: pre;
}

.fullpad {
    padding: 0 !important;
    margin: 0 !important;
}

.smallfnt {
    font-size: 14px;
}

/* Custom Taglines & Divider Lines */
.line {
    border-bottom: 3px dashed var(--secondary);
    margin: 30px 0;
    position: relative;
}

.line::after {
    content: "⚡";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cream-bg);
    padding: 0 10px;
    font-size: 16px;
}

/* ==========================================================================
   HEADER & NAVIGATION BAR
   ========================================================================== */
.marqueebg {
    background: linear-gradient(90deg, var(--accent-orange), var(--primary));
    color: #fff;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-top-bg {
    background: linear-gradient(135deg, #FFF, var(--cream-bg));
    border-bottom: 2px solid rgba(229, 57, 53, 0.1);
}

.logo {
    width: 320px;
    filter: drop-shadow(0 4px 8px rgba(229, 57, 53, 0.1));
    transition: var(--transition);
    animation: floatBalloon 4s ease-in-out infinite;
}

.logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

.top-icn-fnt {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.clr1 {
    color: var(--primary) !important;
}

.clr-blue {
    color: var(--accent-purple) !important;
}

/* Sticky & Cartoon Navbar */
.nav-bar {
    padding: 0 60px;
    position: relative;
    top: -25px;
    z-index: 1000;
}

.navbg {
    background: linear-gradient(135deg, var(--primary) 0%, #D32F2F 100%) !important;
    border: 3px solid var(--secondary);
    border-radius: 50px !important;
    padding: 8px 30px !important;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.25) !important;
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link {
    font-family: var(--font-heading);
    color: #FFF !important;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 18px !important;
    border-radius: 30px;
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active>.nav-link {
    color: var(--secondary) !important;
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.08);
}

.nav-sticky {
    position: fixed;
    top: 15px;
    left: 5%;
    width: 90%;
    padding: 0 !important;
    z-index: 1050;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

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

/* ==========================================================================
   CAROUSEL & HERO BANNER
   ========================================================================== */
.carousel-top-banner {
    margin-top: -45px;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 6px solid var(--secondary);
}

/* ==========================================================================
   WELCOME & GENERAL CONTENT
   ========================================================================== */
.welcome-sec {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    border: 4px solid var(--secondary);
    box-shadow: 0 12px 0 rgba(255, 193, 7, 0.15);
}

.welcome-img {
    animation: floatBalloon 5s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* ==========================================================================
   FEATURED & TRENDING PRODUCTS (CARTOON PORTFOLIO)
   ========================================================================== */
.nio-dia-portfolio-img-text {
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 24px;
    border: 4px solid var(--secondary);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.15);
    transition: var(--transition);
}

.nio-dia-portfolio-img-text:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(229, 57, 53, 0.25);
    border-color: var(--primary);
}

.nio-dia-portfolio-img img {
    transition: transform 0.6s ease;
    width: 100%;
}

.nio-dia-portfolio-img-text:hover .nio-dia-portfolio-img img {
    transform: scale(1.08);
}

.nio-dia-portfolio-img-text::before {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    opacity: 0;
    position: absolute;
    transition: all 0.4s ease;
    background: linear-gradient(to top, rgba(229, 57, 53, 0.9) 0%, rgba(255, 193, 7, 0.4) 100%);
    z-index: 1;
}

.nio-dia-portfolio-img-text:hover::before {
    opacity: 1;
}

.nio-dia-portfolio-img-text .nio-dia-portfolio-text {
    left: 0;
    width: 100%;
    opacity: 0;
    color: #fff;
    bottom: -20px;
    position: absolute;
    text-align: center;
    padding: 20px;
    transition: all 0.4s ease;
    z-index: 2;
}

.nio-dia-portfolio-img-text:hover .nio-dia-portfolio-text {
    opacity: 1;
    bottom: 0px;
}

.nio-dia-portfolio-img-text .nio-dia-portfolio-text h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   SPECIALTIES & COUNTER SECTION
   ========================================================================== */
.speciality {
    background: linear-gradient(rgba(103, 58, 183, 0.85), rgba(229, 57, 53, 0.85)), url("../images/newparallax.jpg") fixed center/cover no-repeat;
    position: relative;
    border-radius: 40px;
    margin: 40px 15px;
    overflow: hidden;
    border: 4px solid var(--secondary);
}

.speciality::before {
    display: none;
    /* overrides legacy dark overlay */
}

.count-box {
    padding: 30px 20px;
    border-radius: 24px;
    background: #FFF;
    border: 3px solid var(--secondary);
    box-shadow: 0 8px 0 rgba(255, 193, 7, 0.2);
    transition: var(--transition);
}

.count-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.2);
}

.count-box i {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 26px;
    background: linear-gradient(135deg, var(--primary), var(--accent-orange));
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 54px;
    border: 3px solid var(--secondary);
    color: #FFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.counttext {
    color: var(--primary) !important;
    font-size: 42px;
    font-weight: 700;
}

.bannerhead {
    color: var(--accent-orange) !important;
    font-size: 36px;
    font-weight: 700;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.bg-light {
    background-color: #FFF !important;
    border-top: 4px dashed var(--secondary);
    border-bottom: 4px dashed var(--secondary);
}

.iconr i {
    color: #FFF;
    font-size: 32px;
    background: linear-gradient(135deg, var(--accent-purple), var(--primary));
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
    border: 3px solid var(--secondary);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
    transition: var(--transition);
}

.iconr:hover i {
    transform: rotate(20deg) scale(1.1);
}

/* ==========================================================================
   PARALLAX / MIDDLE BANNER
   ========================================================================== */
.parallax {
    background: linear-gradient(rgba(229, 57, 53, 0.7), rgba(255, 193, 7, 0.7)), url("../images/parallax.webp") fixed center/cover no-repeat;
    border-radius: 40px;
    margin: 40px 15px;
    border: 4px solid var(--secondary);
}

.parallax::before {
    display: none;
}

.headfnt {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   BUTTONS & CARDS DESIGN (CARTOON / PREMIUM STYLE)
   ========================================================================== */
.btn1,
.shop_btn1 {
    font-family: var(--font-heading);
    padding: 14px 35px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
    color: #FFF !important;
    border: 3px solid var(--secondary) !important;
    border-radius: 50px;
    box-shadow: 0 6px 0 rgba(255, 193, 7, 0.6), 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
}

.btn1:hover,
.shop_btn1:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 0 rgba(255, 193, 7, 0.6), 0 5px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent-orange) 100%);
    color: #FFF !important;
}

.btn1:active,
.shop_btn1:active {
    transform: translateY(2px);
    box-shadow: none;
}

/* Do & Don'ts Safety Cards */
.docard,
.dontcard {
    border-radius: 28px;
    overflow: hidden;
    background-color: #FFF;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.docard {
    border: 4px solid #4CAF50;
}

.dontcard {
    border: 4px solid #F44336;
}

.docard:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
}

.dontcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(244, 67, 54, 0.2);
}

.docardheading,
.dontcardheading {
    font-family: var(--font-heading);
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px 0;
    font-size: 24px;
}

.docardheading {
    background: linear-gradient(135deg, #4CAF50, #81C784);
}

.dontcardheading {
    background: linear-gradient(135deg, #F44336, #E57373);
}

.docardheadingbottom,
.dontcardheadingbottom {
    padding: 10px 0;
    height: 12px;
}

.docardheadingbottom {
    background: #4CAF50;
}

.dontcardheadingbottom {
    background: #F44336;
}

.greenclr1 {
    color: #388E3C !important;
    font-family: var(--font-heading);
    font-weight: 700;
}

.greenclr2 {
    color: #4CAF50 !important;
}

.redclr1 {
    color: #D32F2F !important;
    font-family: var(--font-heading);
    font-weight: 700;
}

.redclr2 {
    color: #F44336 !important;
}

/* ==========================================================================
   ABOUT US, SAFETY TIPS & CONTACT US SECTIONS
   ========================================================================== */
.aboutus {
    background-color: var(--cream-bg);
    background-image: radial-gradient(circle, rgba(255, 193, 7, 0.04) 10%, transparent 11%);
    background-size: 30px 30px;
}

/* ==========================================================================
   FOOTER (CARTOON FIREWORKS ATMOSPHERE)
   ========================================================================== */
.footer {
    background: linear-gradient(to bottom, #111 0%, #1c0e35 100%);
    color: #EEE;
    border-top: 6px solid var(--secondary);
    border-radius: 40px 40px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, #ff0 2px, transparent 40px),
        radial-gradient(circle, #f00 3px, transparent 60px),
        radial-gradient(circle, #0f0 2px, transparent 50px);
    background-size: 200px 200px, 350px 350px, 280px 280px;
    background-position: 10px 10px, 80px 120px, 200px 30px;
    opacity: 0.15;
    pointer-events: none;
}

.footclr1 {
    color: var(--secondary) !important;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer p,
.footer li {
    font-size: 15px;
    line-height: 1.8;
}

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 8px;
    padding: 0;
    margin: 0;
}

.tagcloud a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--secondary);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #FFF;
    transition: var(--transition);
}

.tagcloud a:hover {
    background: var(--secondary);
    color: var(--primary) !important;
    transform: scale(1.08);
}

.topclr1 {
    background: #0d061c;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.brdtop {
    border-top: 2px solid var(--secondary);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & CALL)
   ========================================================================== */
.fixed {
    position: fixed;
    z-index: 1000;
}

.point {
    bottom: 20px;
    left: 20px;
}

.point1 {
    bottom: 80px;
    left: 20px;
}

.point2 {
    bottom: 20px;
    right: 20px;
}

.priceicn {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
    transition: var(--transition);
}

.priceicn2 {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
    transition: var(--transition);
}

.priceicn:hover,
.priceicn2:hover {
    transform: scale(1.15) rotate(5deg);
}

/* Custom Tooltip styling */
.time-of-year .tooltip {
    background: var(--primary);
    border: 3px solid var(--secondary);
    border-radius: 18px;
    color: #FFF;
    padding: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   REDESIGNED HERO SECTION (PREMIUM MODERN LAYOUT)
   ========================================================================== */
.hero-section {
    position: relative;
    overflow: visible;
    z-index: 5;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 30%, rgba(255, 109, 0, 0.05), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(229, 57, 53, 0.06), transparent 50%),
        linear-gradient(135deg, #FFFDF9 0%, #FFF5E5 100%);
    margin-top: -25px;
    padding: 80px 0 100px 0;
    border-bottom: 5px solid var(--secondary);
}

/* Festive Pattern Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255, 193, 7, 0.08) 12%, transparent 13%),
        radial-gradient(circle, rgba(229, 57, 53, 0.06) 12%, transparent 13%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    width: 92% !important;
    max-width: 1400px !important;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content-col {
    padding-right: 40px;
}

.hero-badge {
    background: rgba(229, 57, 53, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 14px;
    padding: 6px 18px;
    display: inline-block;
    margin-bottom: 20px;
    border: 2px solid rgba(229, 57, 53, 0.15);
    box-shadow: 0 3px 10px rgba(229, 57, 53, 0.05);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 1px 1px 0px #FFF, 3px 3px 0px rgba(255, 193, 7, 0.5);
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #5A4E4D;
    margin-bottom: 25px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.hero-feature-item {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #4A3E3D;
    display: flex;
    align-items: center;
}

.check-icon {
    background: var(--secondary);
    color: var(--primary);
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    font-weight: 900;
    border: 2px solid #FFF;
    box-shadow: 0 3px 8px rgba(255, 193, 7, 0.3);
}

.hero-cta-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
    color: #FFF !important;
    border: 3px solid var(--secondary) !important;
    box-shadow: 0 6px 0 rgba(255, 193, 7, 0.8), 0 8px 15px rgba(229, 57, 53, 0.2);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 0 rgba(255, 193, 7, 0.8), 0 4px 8px rgba(229, 57, 53, 0.15);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent-orange) 100%);
}

.hero-btn-secondary {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    background: #FFF;
    color: var(--primary) !important;
    border: 3px solid var(--primary) !important;
    box-shadow: 0 6px 0 rgba(229, 57, 53, 0.2), 0 8px 15px rgba(0, 0, 0, 0.05);
}

.hero-btn-secondary:hover {
    background: var(--primary);
    color: #FFF !important;
    transform: translateY(-4px);
    box-shadow: 0 2px 0 rgba(229, 57, 53, 0.2), 0 4px 8px rgba(229, 57, 53, 0.15);
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.glow-effect {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.45) 0%, transparent 65%);
    filter: blur(40px);
    z-index: 1;
    animation: twinkle 4s ease-in-out infinite;
}

.hero-img {
    animation: floatBalloon 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(229, 57, 53, 0.18));
    max-height: 520px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    margin-bottom: -110px;
    /* Slight overlap for modern SaaS layout */
}

.hero-img:hover {
    transform: scale(1.04) rotate(1deg);
}

/* Hero Background Decorations */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-decor {
    position: absolute;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes floatRocket {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(15px, -15px) rotate(6deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.decor-rocket {
    top: 15%;
    right: 8%;
    animation: floatRocket 5s ease-in-out infinite;
    font-size: 45px;
}

.decor-sparkle-1 {
    top: 18%;
    left: 4%;
    animation: twinkle 3s infinite;
    font-size: 32px;
}

.decor-sparkle-2 {
    bottom: 15%;
    left: 6%;
    animation: twinkle 4s infinite 1s;
    font-size: 26px;
}

.decor-sparkle-3 {
    top: 8%;
    left: 45%;
    animation: twinkle 2.5s infinite 0.5s;
    font-size: 28px;
}

.decor-wheel {
    bottom: 12%;
    right: 6%;
    animation: chakraRotate 9s linear infinite;
    font-size: 42px;
}

.decor-balloon {
    top: 40%;
    left: 48%;
    animation: floatBalloon 6s ease-in-out infinite;
    font-size: 36px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991.98px) {
    .nav-bar {
        padding: 0 15px;
        top: -10px;
    }

    .navbg {
        border-radius: 20px !important;
        padding: 10px 20px !important;
    }

    .logo {
        width: 240px;
    }

    .heading1 {
        font-size: 2.2rem;
    }

    .heading2 {
        font-size: 1.8rem;
    }

    .heading3 {
        font-size: 1.5rem;
    }

    /* Hero Section Responsive */
    .hero-section {
        min-height: auto;
        padding: 60px 0 80px 0;
        margin-top: -10px;
        overflow: hidden;
    }

    .hero-container {
        width: 100% !important;
        padding: 0 24px;
    }

    .hero-content-col {
        padding-right: 0;
        text-align: center;
    }

    .hero-badge {
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-features {
        max-width: 500px;
        margin: 0 auto 30px auto;
        text-align: left;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-img {
        max-height: 380px;
        margin-top: 50px;
        margin-bottom: -50px;
    }

    .decor-rocket,
    .decor-wheel,
    .decor-balloon {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .pad {
        padding: 50px 0;
    }

    .logo {
        width: 180px;
    }

    .welcome-sec {
        padding: 30px 15px;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 50px 0 60px 0;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 13px 24px;
    }

    .hero-img {
        max-height: 280px;
        margin-top: 40px;
        margin-bottom: -30px;
    }
}