/* Font Family */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #f4f1f8; /* Soft light purple background */
}

/* Utilities */
.tracking-wider {
    letter-spacing: 0.1em;
}

/* Topbar & Navbar */
.topbar {
    background-color: #20b2aa; /* Nice vibrant green/teal */
    color: #ffffff;
    font-size: 0.9rem;
}
.navbar {
    background-color: #4b0082 !important; /* Indigo/Purple */
}
.navbar-brand img {
    background: white;
    padding: 5px;
    border-radius: 8px;
}
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.85);
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffd700; /* Gold */
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.social-icon:hover {
    transform: translateY(-3px);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #e6e6fa 0%, #d8bfd8 100%); /* Purple gradient */
    padding: 60px 0 100px;
    overflow: hidden;
}
.hero-img {
    transition: transform 0.5s ease;
}
.hero-img:hover {
    transform: scale(1.02);
}
.wave-bottom {
    position: relative;
}
.wave-bottom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V95.8C59.71,118.08,130.83,119.34,188.8,103.88,235.25,91.53,278.36,65.73,321.39,56.44Z" fill="%23ffffff"></path></svg>') no-repeat center bottom;
    background-size: cover;
}
.since-badge {
    display: inline-block;
    background-color: #ffd700;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Products Grid */
.product-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.product-item img {
    height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.product-item:hover img {
    transform: scale(1.1) rotate(2deg);
}
.product-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}
.product-item:hover .product-label {
    transform: translateY(0);
    opacity: 1;
}
.bg-teal { background-color: #20b2aa; }
.bg-purple { background-color: #663399; }
.bg-cyan { background-color: #00bcd4; }
.bg-yellow { background-color: #ffd700; }

/* Parallax Section */
.parallax-section {
    background-color: #212529;
}
.parallax-text {
    padding: 80px!important;
}
.parallax-img {
    height: 500px;
    object-fit: cover;
    opacity: 0.8;
}

/* Features */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.feature-icon:hover {
    transform: translateY(-10px);
}

/* Animations (Scroll) */
.animate-on-scroll {
    opacity: 0;
}
.fade-in {
    transform: translateY(0);
}
.fade-in-up {
    transform: translateY(50px);
}
.slide-in-left {
    transform: translateX(-50px);
}
.slide-in-right {
    transform: translateX(50px);
}
.scale-in {
    transform: scale(0.9);
}

/* Animation Classes added via JS */
.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Floating Action Buttons */
.floating-container {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}
.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffd700; /* Gold */
    color: #4b0082;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.floating-button:hover {
    transform: rotate(45deg);
    background-color: #4b0082;
    color: #ffd700;
}
.element-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}
.floating-container:hover .element-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.float-element {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: transform 0.3s ease;
}
.float-element:hover {
    transform: scale(1.1);
    color: white;
}
