:root {
    --primary-blue: #0093d0;
    --secondary-blue: #0077a8;
    --aqua-light: #e1f5fe;
    --dark-blue: #01579b;
    --text-color: #212529;
    --bg-white: #fff;
    --bg-accent: #e1f5fe;
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --nav-link-color: #0093d0;
}

[data-bs-theme="dark"] {
    --text-color: #e1f5fe;
    --bg-white: #121212;
    --bg-accent: #1e293b;
    --navbar-bg: rgba(18, 18, 18, 0.95);
    --nav-link-color: #e1f5fe;
}

.bg-light {
    background-color: var(--bg-accent) !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 75px; /* Further increased for prominence */
    transition: all 0.3s ease;
}

.hero-logo {
    height: 120px;
    background: white;
    border-radius: 10px;
    padding: 10px;
}

[data-bs-theme="dark"] .navbar-brand img,
[data-bs-theme="dark"] .footer img,
[data-bs-theme="dark"] .hero-logo {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--nav-link-color) !important;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-tagline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0 20px;
}

.footer h5 {
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--aqua-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Wave SVG Animation */
.waves {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    min-height: 100px;
    max-height: 150px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Card Styling */
.card {
    background-color: var(--bg-white);
    color: var(--text-color);
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

[data-bs-theme="dark"] .card {
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* Product Section Styling */
.product-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 147, 208, 0.2);
}

.product-img-wrapper {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #e1f5fe 100%);
    border: 1px solid rgba(0, 147, 208, 0.1);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.product-img {
    max-height: 200px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
}

.tiktok {
    color: darkgray;
}
.tiktok-icon {
    color: #2d2e2d; 
}
.youtube {
    color: #dc3545;
}

.tiktok-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 120px;
    background-color: #2d2e2d;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tiktok-float:hover {
    background-color: #3a4040;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
}

.youtube-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 200px;
    background-color: #9d1414;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.youtube-float:hover {
    background-color: #7f1414;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
}

@media screen and (max-width: 768px) {
    .whatsapp-float, .tiktok-float, .youtube-float {
        width: 50px;
        height: 50px;
        right: 20px;
        font-size: 25px;
    }

    .whatsapp-float {
        bottom: 20px;
    }

    .tiktok-float {
        bottom: 80px;
    }

    .youtube-float {
        bottom: 140px;
    }
}

/* Theme Toggle Button */
#theme-toggle {
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    transition: background 0.3s;
    color: var(--primary-blue);
}

#theme-toggle:hover {
    background: rgba(0, 147, 208, 0.1);
}

[data-bs-theme="dark"] #theme-toggle {
    color: #ffc107;
}